/* ==========================================================================
   CSS PRINCIPAL - KEROS PIZZA
   Diseño Premium, Oscuro, Cálido y Responsive con Glassmorphism
   ========================================================================== */

:root {
    --bg-dark: #0a0a0a;
    --bg-dark-accent: #141414;
    --bg-glass: rgba(18, 18, 18, 0.7);
    --primary: #d63031;
    --primary-hover: #ff7675;
    --accent: #fdcb6e;
    --text-light: #f5f6fa;
    --text-muted: #b2bec3;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
    --navbar-height: 80px;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset y Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    background-color: var(--bg-dark);
    color: var(--text-light);
    font-family: var(--font-body);
}

body {
    overflow-x: hidden;
}

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #000;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader-content {
    text-align: center;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: 4px;
    color: var(--text-light);
    margin-bottom: 20px;
    animation: pulse 2s infinite ease-in-out;
}

.logo-text::after {
    content: '.';
    color: var(--primary);
}

.spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    border-top-color: var(--primary);
    margin: 0 auto 15px auto;
    animation: spin 1s ease-in-out infinite;
}

#preloader-status {
    font-size: 0.9rem;
    color: var(--text-muted);
    letter-spacing: 1px;
}

/* Animaciones del Preloader */
@keyframes spin {
    to { transform: rotate(360deg); }
}
@keyframes pulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}
/* Ocultamiento del preloader vía clase */
#preloader.preloader-hidden {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
}

/* ==========================================================================
   ANIMACIONES DE ENTRADA DEL HERO VÍA CSS (Resistente a bloqueos de JS/GSAP)
   ========================================================================== */

/* Estados iniciales (ocultos y desplazados) */
.navbar {
    opacity: 0;
    transform: translateY(-50px);
}

.hero-text-wrapper {
    opacity: 0;
    transform: translateY(50px);
}

.scroll-indicator {
    opacity: 0;
    transform: translate(-50%, 20px);
}

/* Estados finales (se activan al añadir .hero-animated al body) */
.hero-animated .navbar {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--navbar-height);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 8%;
    z-index: 99999 !important; /* Usar z-index máximo absoluto para flotar por encima de spacers y videos */
    background: transparent;
    transition: background 0.4s ease, height 0.4s ease; /* Excluir transform y opacity para evitar conflictos con animaciones GSAP */
}

.navbar.scrolled {
    background: var(--bg-glass);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    height: 70px;
}

/* Ocultamiento global de la barra de navegación */
.navbar.navbar-hidden {
    transform: translateY(-100%) !important; /* !important para anular estilos en línea de GSAP */
    box-shadow: none !important;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

/* Regreso del menú a su posición visible */
.navbar:not(.navbar-hidden) {
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), background 0.4s ease, height 0.4s ease;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-light);
    letter-spacing: 1px;
}

.logo-accent {
    color: var(--primary);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-light);
    font-size: 0.95rem;
    font-weight: 600;
    transition: var(--transition-smooth);
    position: relative;
    padding: 5px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition-smooth);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--primary-hover);
}

/* Botones */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition-smooth);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--primary);
    color: var(--text-light);
    box-shadow: 0 4px 15px rgba(214, 48, 49, 0.4);
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(214, 48, 49, 0.6);
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--text-light);
}

.btn-secondary:hover {
    background: var(--text-light);
    color: var(--bg-dark);
    transform: translateY(-2px);
}

/* Selector de Video en Demo */
.video-selector {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1001;
    background: rgba(10, 10, 10, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 15px;
    border-radius: 8px;
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
}

.video-selector select {
    background: #222;
    color: #fff;
    border: 1px solid #444;
    padding: 5px 8px;
    border-radius: 4px;
    cursor: pointer;
}

/* Indicador de Scroll */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translate(-50%, 20px);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    pointer-events: none;
}

.mouse {
    width: 26px;
    height: 44px;
    border: 2px solid var(--text-light);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.wheel {
    width: 4px;
    height: 8px;
    background-color: var(--primary);
    border-radius: 2px;
    animation: scrollMouse 1.5s infinite;
}

.scroll-text {
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
    text-align: center;
}

@keyframes scrollMouse {
    0% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(6px); opacity: 0.3; }
    100% { transform: translateY(0); opacity: 1; }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translate(-50%, 20px); }
    to { opacity: 1; transform: translate(-50%, 0); }
}

/* ==========================================================================
   SECCIÓN HERO (STICKY & VIDEO SCROLL)
   ========================================================================== */

.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
    z-index: 1;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.5) 0%,
        rgba(0,0,0,0) 25%,
        rgba(0,0,0,0) 93%,
        rgba(10, 10, 10, 0.8) 97%,
        #0a0a0a 100%
    );
    pointer-events: none;
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    width: 100%;
    max-width: 900px;
    padding: 0 20px;
}

.hero-text-wrapper {
    background: rgba(10, 10, 10, 0.45);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transform: translateY(0);
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 15px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.1;
    letter-spacing: -1px;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 35px auto;
    line-height: 1.6;
    font-weight: 300;
}

/* ==========================================================================
   SECCIONES DE CONTENIDO
   ========================================================================== */

.content-section {
    position: relative;
    padding: 80px 0;
    background-color: var(--bg-dark);
    z-index: 5;
    margin-top: -2px; /* Soluciona la línea blanca por sub-pixel rounding del navegador */
}

#menu {
    padding-bottom: 40px;
}

#nosotros {
    padding-top: 40px;
    padding-bottom: 60px;
}

.alternate-bg {
    background-color: var(--bg-dark-accent);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 4%;
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-tag {
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    display: block;
    margin-bottom: 10px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.section-divider {
    width: 80px;
    height: 3px;
    background: var(--primary);
    margin: 0 auto;
}

/* Grid del Menú */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.menu-card {
    background: var(--bg-dark-accent);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-smooth);
}

.menu-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border-color: rgba(214, 48, 49, 0.3);
}

.menu-video-container {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    position: relative;
    background-color: #000;
}

.menu-video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: var(--transition-smooth);
}

.menu-card:hover .menu-video-container video {
    transform: scale(1.05);
}

.menu-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, var(--bg-dark-accent) 0%, rgba(20, 20, 20, 0) 50%);
    pointer-events: none;
    z-index: 2;
}

.menu-info {
    padding: 30px;
}

.menu-info h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

.menu-price {
    color: var(--accent);
    font-size: 1.3rem;
    font-weight: 600;
    font-family: var(--font-body);
}

.menu-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-top: 10px;
}

/* Layout Dividido (Split) */
.split-layout {
    display: flex;
    gap: 60px;
    align-items: center;
}

.split-video-container {
    flex: 1;
    aspect-ratio: 16 / 9;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 40px rgba(0,0,0,0.6);
    background-color: #000;
}

.split-video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: var(--transition-smooth);
}

.split-video-container:hover video {
    transform: scale(1.03);
}

.split-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 80%, rgba(20, 20, 20, 0.8) 100%);
    pointer-events: none;
}

.split-info {
    flex: 1;
}

.combo-price-featured {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 15px;
    font-family: var(--font-body);
}

.combo-desc-featured {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 25px;
    font-size: 1.05rem;
}

.combo-features {
    display: flex;
    gap: 12px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.feature-badge {
    background: rgba(253, 203, 110, 0.08);
    color: var(--accent);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(253, 203, 110, 0.2);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-smooth);
}

.feature-badge:hover {
    background: rgba(253, 203, 110, 0.15);
    border-color: var(--accent);
    transform: translateY(-2px);
}

.feature-icon {
    width: 16px;
    height: 16px;
}

/* Formulario de Contacto */
.text-center {
    text-align: center;
}

.lead-text {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.contact-form {
    max-width: 700px;
    margin: 50px auto 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: flex;
    gap: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    background: var(--bg-dark-accent);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px 20px;
    border-radius: 8px;
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 10px rgba(214, 48, 49, 0.2);
}

/* Footer */
footer {
    background: #050505;
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 5;
    position: relative;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.social-links a:hover {
    color: var(--primary);
}

/* ==========================================================================
   MEDIA QUERIES (RESPONSIVE)
   ========================================================================== */

@media (max-width: 992px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .split-layout {
        flex-direction: column;
        gap: 40px;
    }
    
    .split-video-container {
        width: 100%;
        aspect-ratio: 16 / 9;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 0 5%;
    }
    
    .nav-links {
        display: none; /* Ocultar enlaces de navegación de escritorio en móviles */
    }
    
    .nav-cta {
        display: none; /* Ocultar botón CTA en navbar de móvil para no saturar */
    }
    
    .hamburger-menu-btn {
        display: flex; /* Mostrar botón de hamburguesa en móvil */
    }
    
    .hero-title {
        font-size: 2.4rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .form-row {
        flex-direction: column;
        gap: 20px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

/* ==========================================================================
   ESTILOS PARA BOTÓN DE CONTROL DE VOLUMEN (VÍDEOS DE COMBOS)
   ========================================================================== */
.volume-toggle-btn {
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(10, 10, 10, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition-smooth);
    padding: 0;
    outline: none;
}

.volume-toggle-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: scale(1.1);
}

.volume-icon {
    width: 18px;
    height: 18px;
    pointer-events: none;
}

/* Animación y visibilidad según el estado del audio */
.volume-waves, .volume-mute-line {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.volume-toggle-btn.muted .volume-waves {
    opacity: 0;
    transform: scale(0.8);
}

.volume-toggle-btn.muted .volume-mute-line {
    opacity: 1;
}

.volume-toggle-btn.unmuted .volume-waves {
    opacity: 1;
    transform: scale(1);
}

.volume-toggle-btn.unmuted .volume-mute-line {
    opacity: 0;
}

/* ==========================================================================
   ESTILOS DE LA PÁGINA DE CONTACTO (contacto.html)
   ========================================================================== */
.contact-page-body {
    background-color: var(--bg-dark);
}

.contact-detail-section {
    padding-top: 140px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: stretch !important;
    margin-bottom: 60px;
}

.contact-info-panel {
    display: flex;
    flex-direction: column;
}

.contact-main-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-divider-left {
    width: 80px;
    height: 3px;
    background: var(--primary);
    margin-bottom: 40px;
}

.info-block {
    margin-bottom: 35px;
}

.info-block h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--accent);
    margin-bottom: 12px;
}

.info-block p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.6;
}

.whatsapp-contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
    text-transform: none;
    font-size: 0.95rem;
    padding: 14px 28px;
}

.contact-social-links {
    display: flex;
    gap: 15px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.social-link-item {
    text-decoration: none;
    color: var(--text-light);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.social-link-item:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.sister-site-card {
    background: var(--bg-dark-accent);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.sister-site-card h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--text-light);
}

.sister-site-card p {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 30px;
    font-size: 0.95rem;
}

/* Contenedor del Mapa - Ancho Completo */
.contact-map-wrapper {
    width: 100%;
    height: 480px;
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background-color: #000;
    overflow: hidden;
    position: relative; /* Para el overlay absoluto */
}

.contact-map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
    /* Modo oscuro premium inicial */
    filter: grayscale(100%) invert(90%) contrast(120%);
    opacity: 0.7;
    transition: filter 0.5s ease, opacity 0.5s ease;
}

/* Capa overlay interactiva */
.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.55);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    opacity: 1;
    visibility: visible;
}

.map-overlay span {
    color: var(--text-light);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    background: rgba(10, 10, 10, 0.8);
    padding: 12px 24px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.3s ease;
}

.map-overlay:hover span {
    transform: scale(1.05);
    border-color: var(--primary);
    color: var(--primary);
}

/* Estado Activado: El mapa cambia a color real y el overlay desaparece */
.contact-map-wrapper.activated iframe {
    filter: none !important;
    opacity: 1 !important;
}

.contact-map-wrapper.activated .map-overlay {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
}

/* Responsividad para la página de Contacto */
@media (max-width: 992px) {
    .contact-detail-section {
        padding-top: 110px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .contact-main-title {
        font-size: 2.8rem;
    }
    
    .sister-site-card {
        position: static;
        padding: 30px;
    }
    
    .contact-map-wrapper {
        height: 380px;
    }
}

/* ==========================================================================
   ESTILOS DE MENÚ MÓVIL (HAMBURGUESA Y OVERLAY)
   ========================================================================== */

/* Botón de Hamburguesa */
.hamburger-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1010;
    outline: none;
}

.hamburger-menu-btn .bar {
    width: 100%;
    height: 3px;
    background-color: var(--text-light);
    border-radius: 5px;
    transition: var(--transition-smooth);
}

/* Animaciones del botón a cruz "X" */
.hamburger-menu-btn.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
    background-color: var(--primary);
}

.hamburger-menu-btn.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger-menu-btn.active .bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
    background-color: var(--primary);
}

/* Menú Móvil Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), 
                opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
                visibility 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-menu-overlay.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    width: 100%;
    padding: 20px;
}

.mobile-nav-links a {
    text-decoration: none;
    color: var(--text-light);
    font-size: 1.8rem;
    font-weight: 700;
    font-family: var(--font-heading);
    transition: var(--transition-smooth);
    letter-spacing: 2px;
}

.mobile-nav-links a:hover,
.mobile-nav-links a.active {
    color: var(--primary);
    transform: scale(1.05);
}

.mobile-cta-btn {
    margin-top: 20px;
    font-size: 1.1rem;
    padding: 15px 40px;
    text-transform: uppercase;
    font-weight: 600;
}

/* Responsividad para móviles y tablets (menú hamburguesa y comportamiento auto-ocultable) */
@media (max-width: 1024px) {
    .nav-links {
        display: none !important; /* Ocultar enlaces de navegación de escritorio en móviles/tablets */
    }
    
    .nav-cta {
        display: none !important; /* Ocultar botón CTA en navbar de móvil para no saturar */
    }
    
    .hamburger-menu-btn {
        display: flex !important; /* Mostrar botón de hamburguesa en móvil/tablet */
    }
    
    .scroll-indicator {
        display: none !important; /* Ocultar indicador de scroll en móviles y tabletas */
    }
}

/* ==========================================================================
   ESTILOS PARA SECCIÓN DE VIDEO BANNER
   ========================================================================== */
.video-banner-section {
    position: relative;
    width: 90% !important;
    max-width: 1100px !important;
    aspect-ratio: 16 / 9 !important;
    height: auto !important;
    min-height: auto !important;
    margin: 60px auto !important;
    padding: 0 !important;
    border-radius: 20px !important;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6) !important;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    background-color: #000;
}

.video-banner-container {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    z-index: 1 !important;
}

.video-banner-container video {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    z-index: 1 !important;
    transition: transform 0.5s cubic-bezier(0.76, 0, 0.24, 1), 
                filter 0.5s cubic-bezier(0.76, 0, 0.24, 1), 
                opacity 0.5s cubic-bezier(0.76, 0, 0.24, 1) !important;
    transform: translateX(0);
    filter: blur(0px) brightness(1);
    opacity: 1;
}

/* Transiciones de Videos en Playlist */
.video-banner-container video.slide-out-left {
    transform: translateX(-100%) scale(0.95) !important;
    filter: blur(12px) brightness(1.3) !important;
    opacity: 0 !important;
}

.video-banner-container video.slide-prepare-right {
    transition: none !important;
    transform: translateX(100%) scale(0.95) !important;
    filter: blur(12px) brightness(1.3) !important;
    opacity: 0 !important;
}

.video-banner-container video.slide-in-right {
    transform: translateX(0) scale(1) !important;
    filter: blur(0px) brightness(1) !important;
    opacity: 1 !important;
}

.video-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(10, 10, 10, 0.8) 0%,
        rgba(10, 10, 10, 0.45) 50%,
        rgba(10, 10, 10, 0.8) 100%
    );
    z-index: 2;
}

.video-banner-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 0 20px;
    max-width: 800px;
}

.video-banner-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--text-light);
    line-height: 1.35;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
    letter-spacing: 1px;
}

.video-banner-content::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: var(--primary);
    margin: 25px auto 0 auto;
    border-radius: 2px;
}



/* Responsividad para Banner */
@media (max-width: 768px) {
    .video-banner-section {
        width: 100% !important;
        max-width: 100% !important;
        margin: 20px 0 !important;
        border-radius: 0 !important;
    }

    .video-banner-title {
        font-family: var(--font-body) !important;
        font-size: 1.1rem !important;
        font-weight: 500 !important;
        line-height: 1.45 !important;
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.9) !important;
        letter-spacing: 0.5px !important;
    }
}

/* Estilos para el Icono de Teléfono Superior */
.landline-icon-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 65px !important;
    height: 65px !important;
    min-width: 65px !important;
    min-height: 65px !important;
    max-width: 65px !important;
    max-height: 65px !important;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    color: var(--accent) !important;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2) !important;
}

.landline-icon-link:hover {
    background: rgba(255, 170, 0, 0.15) !important;
    border-color: rgba(255, 170, 0, 0.5) !important;
    color: #ffaa00 !important;
    transform: translateY(-5px) !important;
    box-shadow: 0 8px 25px rgba(255, 170, 0, 0.25) !important;
}

.phone-icon-svg {
    width: 28px !important;
    height: 28px !important;
    min-width: 28px !important;
    min-height: 28px !important;
    max-width: 28px !important;
    max-height: 28px !important;
    color: var(--accent) !important;
}

/* Mostrar/Ocultar bloques según el dispositivo (Desktop vs Mobile) */
.desktop-phones-block {
    display: block !important;
}

.landline-call-wrapper {
    display: none !important;
}

/* Icono Rápido de Llamada en la Cabecera (Sólo Móvil) */
.mobile-nav-phone-btn {
    display: none !important;
}

@media (max-width: 768px) {
    /* En móviles ocultamos el texto plano y mostramos el wrapper interactivo */
    .desktop-phones-block {
        display: none !important;
    }
    
    .landline-call-wrapper {
        display: block !important;
    }
    
    /* Mostrar el icono redondo de llamada en la cabecera móvil con lucecita resplandeciente */
    .mobile-nav-phone-btn {
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 38px !important;
        height: 38px !important;
        min-width: 38px !important;
        min-height: 38px !important;
        max-width: 38px !important;
        max-height: 38px !important;
        border-radius: 50% !important;
        background: rgba(255, 255, 255, 0.08) !important;
        border: 1px solid rgba(255, 170, 0, 0.4) !important;
        color: var(--accent) !important;
        margin-right: 15px !important;
        box-shadow: 0 0 10px rgba(255, 170, 0, 0.4) !important;
        transition: all 0.3s ease !important;
        animation: pulseAmberGlow 2s infinite ease-in-out !important;
        padding: 0 !important;
    }
    
    .mobile-nav-phone-btn svg {
        width: 18px !important;
        height: 18px !important;
        min-width: 18px !important;
        min-height: 18px !important;
        color: var(--accent) !important;
    }
}

@keyframes pulseAmberGlow {
    0% {
        box-shadow: 0 0 5px rgba(255, 170, 0, 0.3);
        border-color: rgba(255, 170, 0, 0.4);
    }
    50% {
        box-shadow: 0 0 15px rgba(255, 170, 0, 0.7);
        border-color: rgba(255, 170, 0, 0.8);
    }
    100% {
        box-shadow: 0 0 5px rgba(255, 170, 0, 0.3);
        border-color: rgba(255, 170, 0, 0.4);
    }
}

/* Estilos para el Botón de Ámbar y Plástico/Vidrio */
.amber-glass-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 35px;
    border-radius: 50px; /* Ovalado */
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    
    /* Efecto Vidrio/Plástico de Ámbar Translúcido */
    background: linear-gradient(135deg, rgba(255, 179, 0, 0.45) 0%, rgba(230, 92, 0, 0.6) 100%) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    border: 1px solid rgba(255, 200, 80, 0.4) !important;
    
    /* Brillos y reflejos tridimensionales (efecto plástico/ámbar) */
    box-shadow: 
        inset 0 3px 6px rgba(255, 255, 255, 0.5), /* Brillo superior interno */
        inset 0 -3px 6px rgba(0, 0, 0, 0.3),     /* Sombra inferior interna */
        0 10px 25px rgba(230, 92, 0, 0.3),       /* Resplandor de base */
        0 4px 6px rgba(0, 0, 0, 0.2) !important;
        
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
    cursor: pointer;
    overflow: hidden;
    position: relative;
}

/* Texto suspendido en ámbar (profundidad tridimensional) */
.amber-glass-button .button-text {
    color: #ffffff !important;
    text-shadow: 
        0 1px 4px rgba(230, 92, 0, 0.9), 
        0 0 1px rgba(255, 255, 255, 0.9) !important;
}

.amber-glass-button .button-icon-svg {
    color: #ffffff !important;
    filter: drop-shadow(0 1px 3px rgba(230, 92, 0, 0.9)) !important;
}

/* Efecto hover: incrementa el brillo plástico y cambia el relieve */
.amber-glass-button:hover {
    transform: translateY(-3px) scale(1.03) !important;
    background: linear-gradient(135deg, rgba(255, 190, 20, 0.6) 0%, rgba(255, 115, 0, 0.75) 100%) !important;
    border-color: rgba(255, 220, 100, 0.6) !important;
    box-shadow: 
        inset 0 4px 8px rgba(255, 255, 255, 0.6), 
        inset 0 -4px 8px rgba(0, 0, 0, 0.2), 
        0 15px 35px rgba(230, 92, 0, 0.45), 
        0 6px 10px rgba(0, 0, 0, 0.25) !important;
}

/* Efecto activo (clic/tap): se hunde físicamente */
.amber-glass-button:active {
    transform: translateY(1px) scale(0.98) !important;
    box-shadow: 
        inset 0 2px 4px rgba(0, 0, 0, 0.4), 
        inset 0 -2px 4px rgba(255, 255, 255, 0.2), 
        0 5px 15px rgba(230, 92, 0, 0.3) !important;
}

/* Destello reflectivo que cruza el botón (reflejo de plástico/vidrio pulido) */
.amber-glass-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.4) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-20deg);
    transition: none;
}

.amber-glass-button:hover::before {
    left: 150%;
    transition: all 0.8s ease-in-out !important;
}

/* Sección de Llamado a la Acción de Supply (Negocio Hermano) */
.supply-cta-section {
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.95) 0%, rgba(35, 20, 10, 0.95) 100%) !important;
    border-top: 1px solid rgba(255, 170, 0, 0.15) !important;
    border-bottom: 1px solid rgba(255, 170, 0, 0.15) !important;
    padding: 70px 20px !important;
    text-align: center !important;
    position: relative !important;
    z-index: 5 !important;
}

.supply-cta-content {
    max-width: 750px !important;
    margin: 0 auto !important;
}

.supply-cta-title {
    font-family: var(--font-heading) !important;
    font-size: 2.2rem !important;
    color: var(--text-light) !important;
    margin-bottom: 15px !important;
    line-height: 1.35 !important;
}

.supply-cta-text {
    font-family: var(--font-body) !important;
    color: var(--text-muted) !important;
    font-size: 1.05rem !important;
    line-height: 1.7 !important;
    margin-bottom: 35px !important;
}

/* Responsividad */
@media (max-width: 768px) {
    .supply-cta-section {
        padding: 50px 15px !important;
    }
    .supply-cta-title {
        font-size: 1.7rem !important;
    }
    .supply-cta-text {
        font-size: 0.95rem !important;
    }
}

/* Columna Derecha de la Sección de Contacto */
.contact-sister-site {
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    gap: 30px !important;
}

/* Tarjeta del Video de metal - Proporción perfecta para no recortar el video */
.contact-video-card {
    background: #000 !important;
    border-radius: 20px !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3) !important;
    overflow: hidden !important;
    width: 100% !important;
    aspect-ratio: 16 / 9 !important; /* Mantiene la proporción exacta del video */
    height: auto !important; /* Evita el estiramiento vertical que causa recortes */
    display: block !important;
    position: relative !important;
}

.contact-video-card video {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
}

/* ==========================================================================
   ESTILOS DE LA PÁGINA "NOSOTROS"
   ========================================================================== */

.about-page-body {
    background-color: var(--bg-dark);
}

/* Cabecera Hero */
.about-hero-section {
    position: relative;
    height: 60vh;
    min-height: 400px;
    background-image: linear-gradient(to bottom, rgba(10, 10, 10, 0) 75%, rgba(10, 10, 10, 1) 100%), url('im/LOCAL/Panoramica_Local_Kero_Pizza_Managua_3.jpeg');
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 90px 20px 0 20px;
    z-index: 10;
}

.about-hero-content {
    max-width: 800px;
    z-index: 2;
}

.about-hero-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-light);
    margin-top: 10px;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.about-hero-desc {
    font-family: var(--font-body);
    font-size: 1.2rem;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 650px;
    margin: 0 auto;
}

/* Sección del Video de Introducción */
.about-intro-video-section {
    padding: 100px 0;
    background-color: var(--bg-dark);
}

.intro-video-wrapper {
    position: relative;
    max-width: 1000px;
    margin: 40px auto 20px auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
    aspect-ratio: 16 / 9;
}

.intro-video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.intro-video-hint {
    text-align: center;
    color: var(--accent);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 10px;
}

/* Botones de Volumen Flotantes Premium */
.volume-toggle-btn {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(18, 18, 18, 0.8);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition-smooth);
}

.volume-toggle-btn:hover {
    background: var(--primary);
    transform: scale(1.1);
    border-color: var(--primary);
}

.volume-icon {
    width: 22px;
    height: 22px;
}

/* Lógica de mute/unmute por clases en CSS */
.volume-toggle-btn.muted .volume-waves {
    display: none;
}
.volume-toggle-btn:not(.muted) .volume-mute-line {
    display: none;
}

/* Secciones de Características */
.about-feature-section {
    padding: 100px 0;
    background-color: var(--bg-dark);
}

.about-feature-section.alternate-bg {
    background-color: var(--bg-dark-accent);
}

.split-image-container {
    flex: 1;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.05);
    width: 100%;
}

.split-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.split-image-container:hover img {
    transform: scale(1.03);
}

.image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0));
    color: var(--text-light);
    font-size: 0.85rem;
    font-family: var(--font-body);
    font-weight: 500;
    text-align: center;
}

.about-text {
    font-family: var(--font-body);
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-text.text-highlight {
    color: var(--text-light);
    border-left: 3px solid var(--primary);
    padding-left: 15px;
    font-weight: 500;
}

/* Sección de Video Responsivo Intercalado */
.about-responsive-video-section {
    position: relative;
    width: 100%;
    background-color: #000;
    padding: 0;
    overflow: hidden;
}

.responsive-video-container {
    position: relative;
    width: 100%;
    height: 60vh;
    min-height: 350px;
    max-height: 600px;
}

.responsive-video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.video-overlay-dark {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.4) 0%,
        rgba(0, 0, 0, 0.1) 50%,
        rgba(10, 10, 10, 0.9) 100%
    );
    z-index: 2;
    pointer-events: none;
}

.responsive-video-content {
    position: absolute;
    bottom: 40px;
    left: 8%;
    right: 8%;
    z-index: 3;
    text-align: left;
}

.video-overlay-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 10px;
}

.video-overlay-subtitle {
    font-family: var(--font-body);
    font-size: 1.05rem;
    color: var(--text-muted);
}

/* Mostrar/Ocultar Video según la orientación (CSS Puro Responsivo) */
.video-horizontal {
    display: none !important;
}
.video-vertical {
    display: block !important;
}

/* Si la pantalla es ancha (landscape o laptop/desktop) */
@media (min-width: 768px) and (orientation: landscape), (min-width: 1024px) {
    .video-horizontal {
        display: block !important;
    }
    .video-vertical {
        display: none !important;
    }
}

/* Sección de Ubicación y Tarjeta de Dirección */
.about-map-section {
    padding: 100px 0 0 0;
    background-color: var(--bg-dark);
}

.about-address-card {
    background: var(--bg-dark-accent);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px 30px;
    max-width: 800px;
    margin: 45px auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.about-hours, .about-phones {
    font-family: var(--font-body);
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-top: 15px;
}

.about-map-wrapper {
    width: 100%;
    height: 450px;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.about-map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Responsividad para Nosotros */
@media (max-width: 991px) {
    .about-hero-title {
        font-size: 2.8rem;
    }
    .about-hero-desc {
        font-size: 1.1rem;
    }
    .about-intro-video-section,
    .about-feature-section,
    .about-map-section {
        padding: 70px 0;
    }
    .about-map-section {
        padding-bottom: 0;
    }
    .intro-video-wrapper {
        margin: 30px auto 15px auto;
    }
    .split-layout {
        flex-direction: column !important;
        gap: 40px;
    }
    .split-image-container {
        flex: none !important;
        width: 100% !important;
    }
    .split-layout.reverse {
        flex-direction: column !important;
    }
    .split-info {
        text-align: center !important;
    }
    .section-divider-left {
        margin: 15px auto !important;
    }
    .about-text.text-highlight {
        border-left: none;
        border-top: 2px solid var(--primary);
        padding-left: 0;
        padding-top: 15px;
    }
    .video-overlay-title {
        font-size: 1.8rem;
    }
    .video-overlay-subtitle {
        font-size: 0.95rem;
    }
    .about-address-card {
        padding: 30px 20px;
        margin: 30px 15px;
    }
    .about-map-wrapper {
        height: 350px;
    }
}

@media (max-width: 576px) {
    .about-hero-title {
        font-size: 2.3rem;
    }
    .about-hero-desc {
        font-size: 0.95rem;
    }
    .about-hero-section {
        height: 50vh;
        min-height: 320px;
    }
    .volume-toggle-btn {
        width: 48px;
        height: 48px;
        bottom: 15px;
        right: 15px;
    }
    .volume-icon {
        width: 20px;
        height: 20px;
    }
    .responsive-video-container {
        height: 70vh;
        min-height: 400px;
    }
    .responsive-video-content {
        bottom: 30px;
    }
}

/* Sección Especial de Niños (Ancho Completo) */
.about-kids-section {
    padding: 100px 0;
    background-color: var(--bg-dark-accent);
}

.kids-text-wrapper {
    max-width: 800px;
    margin: 0 auto 40px auto;
}

.kids-text-wrapper .about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: center;
}

.kids-large-image-container {
    position: relative;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    aspect-ratio: 16 / 9;
}

.kids-large-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.kids-large-image-container:hover img {
    transform: scale(1.02);
}

@media (max-width: 991px) {
    .about-kids-section {
        padding: 70px 0;
    }
    .kids-large-image-container {
        aspect-ratio: 4 / 3;
    }
}

/* Ensanchar las secciones divididas (split-layouts) de la página Nosotros en pantallas grandes */
@media (min-width: 992px) {
    .about-feature-section .container.split-layout {
        max-width: 1550px !important;
        width: 94% !important;
        margin: 0 auto !important;
    }
    
    .about-feature-section .split-info {
        flex: 1.1 !important;
    }
    
    .about-feature-section .split-image-container {
        flex: 1.3 !important;
    }
}

/* Enlaces telefónicos y botón de llamada */
.phone-link {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.phone-link:hover {
    color: var(--primary);
}

.phone-link.whatsapp:hover {
    color: #25d366;
}

.conventional-wrapper {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.phone-call-icon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--primary);
    transition: var(--transition-smooth);
    vertical-align: middle;
}

.phone-call-icon-btn:hover {
    background: var(--primary);
    color: var(--text-light);
    transform: scale(1.1);
    box-shadow: 0 4px 10px rgba(229, 9, 20, 0.3);
}

.phone-svg-icon {
    width: 14px;
    height: 14px;
}





