:root {
    --dark-teal: #072422;
    --red: #e34749;
    --yellow: #ffde59;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --dark-gray: #6c757d;
    --gradient-primary: linear-gradient(135deg, var(--dark-teal) 0%, #0a3330 100%);
    --gradient-accent: linear-gradient(135deg, var(--red) 0%, #d63447 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--dark-teal);
    overflow-x: hidden;
}

/* Header - Transparente inicial con transición a color */
.header {
    background: transparent; /* INICIAL: Completamente transparente */
    backdrop-filter: none;
    box-shadow: none;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.4s ease;
    border-bottom: none;
}

/* Header después del scroll - Color del favicon */
.header.scrolled {
    background: rgba(7, 36, 34, 0.95); /* Color dark-teal del favicon */
    backdrop-filter: blur(15px);
    box-shadow: 0 2px 20px rgba(7, 36, 34, 0.3);
    border-bottom: 1px solid rgba(255, 222, 89, 0.2); /* Borde amarillo sutil */
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem; /* Aumenté padding inicial */
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.4s ease;
}

/* Reducir padding cuando haga scroll */
.header.scrolled .nav-container {
    padding: 0.8rem 2rem;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.02);
}

.logo-img {
    width: 160px;
    height: 60px;    
    object-fit: cover;
    filter: drop-shadow(0 2px 8px rgba(255, 255, 255, 0.116)); /* Sombra blanca inicial */
    transition: filter 0.4s ease;
}

/* Logo con sombra oscura cuando haga scroll */
.header.scrolled .logo-img {
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.2));
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--white); /* INICIAL: Texto blanco para contrastar con fondo transparente */
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.4s ease;
    position: relative;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3); /* Sombra para legibilidad */
}

/* Color del texto cuando haga scroll */
.header.scrolled .nav-link {
    color: var(--white); /* Mantener blanco sobre fondo oscuro */
    text-shadow: none;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--yellow); /* Subrayado amarillo */
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--yellow); /* Hover amarillo */
    transition: color 0.3s ease;
  background-color: transparent;
  font-size: 22px;
  border-radius: 4px;
  transform: scale(1.05);
}

.nav-link:hover::after {
    width: 100%;
}

.cta-button {
    background: var(--gradient-accent);
    color: var(--white);
    padding: 0.8rem 1.8rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.4s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(227, 71, 73, 0.3);
}

/* CTA button mejorado cuando haga scroll */
.header.scrolled .cta-button {
    background: var(--yellow);
    color: var(--dark-teal);
    box-shadow: 0 4px 15px rgba(255, 222, 89, 0.4);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(227, 71, 73, 0.4);
}

.header.scrolled .cta-button:hover {
    box-shadow: 0 8px 25px rgba(255, 222, 89, 0.6);
    background: var(--white);
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--dark-teal); /* Inicial: blanco */
    cursor: pointer;
    transition: color 0.4s ease;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.header.scrolled .mobile-menu-toggle {
    color: var(--white); /* Mantener blanco */
    text-shadow: none;
}

/* Responsive - Menú móvil */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(7, 36, 34, 0.98); /* Siempre color oscuro en móvil */
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
        border-top: 1px solid rgba(255, 222, 89, 0.2);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu .nav-link {
        color: var(--dark-teal) !important;
        text-shadow: none;
        font-size: 1.1rem;
        padding: 0.5rem 0;
    }

    .logo-img {
        width: 120px;
        max-height: 45px;
    }
    
    .nav-container {
        padding: 1rem;
    }
    
    .header.scrolled .nav-container {
        padding: 0.8rem 1rem;
    }
}

/* Hero Section */
.hero {
    background-image: linear-gradient(#0a3330f5, #072422e3, #000000ea), url('../images/favicon.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--white);
    min-height: 110vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/favicon.png');
   /* background-image: url('https://images.unsplash.com/photo-1460925895917-afdab827c52f?ixlib=rb-4.0.3&auto=format&fit=crop&w=2426&q=80'); */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: 0.3;
    z-index: -1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="a" cx="0" cy="0" r="1"><stop offset="0%" stop-color="%23ffde59" stop-opacity="0.1"/><stop offset="100%" stop-color="%23ffde59" stop-opacity="0"/></radialGradient></defs><circle cx="200" cy="200" r="300" fill="url(%23a)"/><circle cx="800" cy="600" r="400" fill="url(%23a)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 6rem 2rem 2rem;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 4rem;
    align-items: start;
    position: relative;
    z-index: 2;
}

.hero-content {
    padding-top: 2rem;
}

.hero-content h1 {
    font-size: 3.2rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.hero-content h2 {
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.cta-primary {
    background: var(--yellow);
    color: var(--dark-teal);
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(255, 222, 89, 0.3);
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 222, 89, 0.4);
}

.cta-secondary {
    background: var(--red);
    color: var(--light-gray);
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;    
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background: var(--white);
    color: var(--dark-teal);
}

/* Results Card en Hero */
.results-container {
    margin-top: 1rem;
}

.results-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 1.5rem;
    color: var(--white);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center; /* Por defecto centrado para escritorio */    
    transform: rotate(-1deg);
    transition: all 0.3s ease;    
}

/* Para tablets */
@media (max-width: 968px) {
    .results-card {
        text-align: left;
    }
}

/* Para móviles */
@media (max-width: 768px) {
    .results-card {
        text-align: left;        
    }
}

.results-card:hover {
    transform: rotate(0deg) translateY(-5px);
    background: rgba(255, 255, 255, 0.2);
}

.results-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.results-card p {
    line-height: 1.6;
    font-size: 1rem;
    color: var(--white);
}

/* Lead Form - Efecto Vidrio Flotante 3D */
.lead-form {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(25px);
    border-radius: 25px;
    padding: 2.5rem;
    box-shadow: 
        0 25px 60px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: all 0.4s ease;
    position: sticky;
    top: 100px;
}

.lead-form:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg) translateY(-10px);
    box-shadow: 
        0 35px 80px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.form-title {
    color: var(--white);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.form-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    color: var(--white);
    font-weight: 500;
    text-align: left;
    margin-bottom: 0.3rem;
    font-size: 0.9rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    backdrop-filter: blur(10px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--yellow);
    box-shadow: 0 0 0 3px rgba(255, 222, 89, 0.2);
    background: rgba(255, 255, 255, 0.15);
}

.form-group select {
    cursor: pointer;
}

.form-group select option {
    background: var(--dark-teal);
    color: var(--white);
}

.form-submit {
    width: 100%;
    background: var(--gradient-accent);
    color: var(--white);
    padding: 1rem;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
    box-shadow: 0 8px 20px rgba(227, 71, 73, 0.3);
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(227, 71, 73, 0.4);
}

.form-privacy {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.8rem;
    line-height: 1.4;
}

/* Modal de éxito - CSS CORREGIDO */
.modal-overlay {
    display: none; /* IMPORTANTE: Oculto por defecto */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    overflow-y: auto;
    padding: 20px;
}

.modal-overlay.show {
    display: flex; /* Cambiar a flex cuando se muestre */
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: var(--white);
    border-radius: 20px;
    max-width: 500px;
    width: 100%;
    margin: 0;
    position: relative;
    animation: modalSlideIn 0.3s ease-out;
    min-height: auto;
}

/* Para pantallas pequeñas */
@media (max-height: 600px) {
    .modal-overlay.show {
        align-items: flex-start;
        padding-top: 50px;
    }
}

.modal-header {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 1.5rem;
    border-radius: 20px 20px 0 0;
    position: relative;
    text-align: center;
}

.modal-header h3 {
    margin: 0;
    font-size: 1.3rem;
    padding-right: 40px;
}

.modal-close {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.3s ease;
    z-index: 10001; /* Asegurar que esté por encima */
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

.modal-body {
    padding: 2rem;
    text-align: center;
}

.success-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.modal-body p {
    margin-bottom: 2rem;
    color: var(--dark-gray);
    line-height: 1.6;
}

.modal-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--gradient-accent);
    color: var(--white);
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: transform 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary:hover {
    transform: translateY(-2px);
}

.btn-secondary {
    background: #25D366;
    color: var(--white);
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: transform 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-secondary:hover {
    transform: translateY(-2px);
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@media (max-width: 768px) {
    .modal-overlay {
        padding: 10px;
    }
    
    .modal-content {
        width: calc(100% - 20px);
        max-width: none;
    }
    
    .modal-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .modal-body {
        padding: 1.5rem;
    }
    
    .success-icon {
        font-size: 3rem;
    }
}

/* Sections - Ajuste de espaciado */
.section {
    padding: 4rem 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--dark-teal);
}

.section-subtitle {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--dark-gray);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.section-subtitle-bonus {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 4rem;
    color: rgba(255, 255, 255, 0.74);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-subtitle-features {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 4rem;
    color: rgba(41, 41, 41, 0.925);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* About Section - Reducir separación */
.about {
    background: var(--white);
    padding: 3rem 0;
    margin-top: -2rem;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
}

.highlight {
    color: var(--red);
    font-weight: 600;
}

/* Features Grid con imagen */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
}

.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(7, 36, 34, 0.1);
    transition: all 0.3s ease;
    border-top: 4px solid var(--yellow);
}

.feature-card:hover {
    transform: translateY(-5px);
    background-color: transparent;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 50px rgba(7, 36, 34, 0.15);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: var(--white);
}

.feature-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark-teal);
}

/* Imagen decorativa en features */


.features-floating-image {
    position: absolute;
    right: 5px;
    bottom: -63px;
    width: 275px;
    height: auto;
    opacity: 0.9;
    pointer-events: none;
    z-index: 1;
    
    filter: drop-shadow(0 20px 40px rgba(7, 36, 34, 0.2));
    transition: all 0.4s ease;
}

.features-floating-image:hover {
    transform: perspective(1000px) rotateY(-10deg) rotateX(2deg) translateY(-10px);
    filter: drop-shadow(0 30px 60px rgba(7, 36, 34, 0.3));
}

/* Process Steps */
.process {
    background: var(--dark-teal);
    color: var(--white);
}

.process .section-title {
    color: var(--white);
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.step-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    text-align: center;
    transition: all 0.3s ease;
}

.step-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--yellow);
    color: var(--dark-teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 auto 1.5rem;
}

.step-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

/* Sectors Section - Modernizada */
/* Sectors Section - Grid 4x2 */
.sectors {
    background: linear-gradient(135deg, var(--light-gray) 0%, #f1f3f5 100%);
    position: relative;
    overflow: hidden;
}

.sectors::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="%23072422" stroke-width="0.5" opacity="0.05"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.sectors .container {
    position: relative;
    z-index: 2;
}

/* CLAVE: Grid fijo de 4 columnas */
.sectors-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 columnas exactas */
    grid-template-rows: repeat(2, 1fr); /* 2 filas exactas */
    gap: 1.5rem;
    margin-top: 4rem;
    perspective: 1000px;
    max-width: 1000px; /* Controlar ancho máximo para mejor proporción */
    margin-left: auto;
    margin-right: auto;
}

/* Tarjetas de sectores modernizadas */
.sector-item {
    background: var(--white);
    padding: 2rem 1.5rem;
    border-radius: 20px;
    text-align: center;
    font-weight: 600;
    color: var(--dark-teal);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(7, 36, 34, 0.08);
    transform-style: preserve-3d;
    font-size: 1.1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 140px; /* Altura mínima uniforme */
}

/* Efecto de fondo animado */
.sector-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 222, 89, 0.1), 
        transparent
    );
    transition: left 0.6s ease;
    z-index: 1;
}

.sector-item:hover::before {
    left: 100%;
}

/* Efecto de brillo superior */
.sector-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent, 
        var(--yellow), 
        transparent
    );
    transform: scaleX(0);
    transition: transform 0.4s ease;
    z-index: 3;
}

.sector-item:hover::after {
    transform: scaleX(1);
}

/* Estados de hover */
.sector-item:hover {
    transform: translateY(-8px) rotateX(5deg);
    box-shadow: 
        0 20px 40px rgba(7, 36, 34, 0.15),
        0 0 0 1px rgba(255, 222, 89, 0.3);
    border-color: var(--yellow);
    background: linear-gradient(135deg, var(--white) 0%, rgba(255, 222, 89, 0.05) 100%);
}

/* Efectos específicos por sector */
.sector-item:nth-child(1):hover { /* Automotriz */
    background: linear-gradient(135deg, var(--white) 0%, rgba(220, 38, 127, 0.05) 100%);
    color: #dc267f;
}

.sector-item:nth-child(2):hover { /* Médico */
    background: linear-gradient(135deg, var(--white) 0%, rgba(46, 125, 50, 0.05) 100%);
    color: #2e7d32;
}

.sector-item:nth-child(3):hover { /* Transporte */
    background: linear-gradient(135deg, var(--white) 0%, rgba(255, 152, 0, 0.05) 100%);
    color: #ff9800;
}

.sector-item:nth-child(4):hover { /* Restaurantes */
    background: linear-gradient(135deg, var(--white) 0%, rgba(229, 57, 53, 0.05) 100%);
    color: #e53935;
}

.sector-item:nth-child(5):hover { /* Muebles */
    background: linear-gradient(135deg, var(--white) 0%, rgba(121, 85, 72, 0.05) 100%);
    color: #795548;
}

.sector-item:nth-child(6):hover { /* Tarjetas de Crédito */
    background: linear-gradient(135deg, var(--white) 0%, rgba(63, 81, 181, 0.05) 100%);
    color: #3f51b5;
}

.sector-item:nth-child(7):hover { /* Hipotecas */
    background: linear-gradient(135deg, var(--white) 0%, rgba(0, 150, 136, 0.05) 100%);
    color: #009688;
}

.sector-item:nth-child(8):hover { /* Servicios Profesionales */
    background: linear-gradient(135deg, var(--white) 0%, rgba(156, 39, 176, 0.05) 100%);
    color: #9c27b0;
}

/* Iconos y texto */
.sector-emoji {
    font-size: 2.5rem;
    transition: all 0.4s ease;
    display: inline-block;
    margin-bottom: 0.5rem;
}

.sector-text {
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.4s ease;
    line-height: 1.2;
    text-align: center;
}

.sector-item:hover .sector-emoji {
    transform: scale(1.2) rotateY(10deg);
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.2));
}

.sector-item:hover .sector-text {
    font-weight: 700;
    transform: translateY(2px);
}

/* Efecto de partículas en hover */
.sector-item:hover {
    animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 
            0 20px 40px rgba(7, 36, 34, 0.15),
            0 0 0 1px rgba(255, 222, 89, 0.3);
    }
    50% {
        box-shadow: 
            0 25px 50px rgba(7, 36, 34, 0.2),
            0 0 0 2px rgba(255, 222, 89, 0.5),
            0 0 20px rgba(255, 222, 89, 0.2);
    }
}

/* Efecto de click */
.sector-item:active {
    transform: translateY(-5px) scale(0.98);
}

/* Responsive mejorado */
@media (max-width: 1200px) {
    .sectors-grid {
        max-width: 900px;
        gap: 1.2rem;
    }
    
    .sector-item {
        min-height: 130px;
        padding: 1.8rem 1.2rem;
    }
    
    .sector-text {
        font-size: 0.95rem;
    }
}

@media (max-width: 968px) {
    .sectors-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columnas en tablet */
        grid-template-rows: repeat(4, 1fr); /* 4 filas */
        max-width: 600px;
        gap: 1rem;
    }
    
    .sector-item {
        min-height: 120px;
        padding: 1.5rem 1rem;
    }
    
    .sector-emoji {
        font-size: 2.2rem;
    }
    
    .sector-text {
        font-size: 0.9rem;
    }
}

@media (max-width: 640px) {
    .sectors-grid {
        grid-template-columns: repeat(2, 1fr); /* Mantener 2 columnas */
        grid-template-rows: repeat(4, 1fr); /* 4 filas */
        gap: 0.8rem;
        max-width: 100%;
    }
    
    .sector-item {
        min-height: 100px;
        padding: 1rem 0.8rem;
    }
    
    .sector-emoji {
        font-size: 2rem;
        margin-bottom: 0.3rem;
    }
    
    .sector-text {
        font-size: 0.85rem;
        line-height: 1.1;
    }
    
    .sector-item:hover {
        transform: translateY(-4px);
    }
}

/* Bonus Section - Corregida */
/* Bonus Section - Móvil Corregido */
.bonus {
    background: var(--gradient-accent);
    color: var(--white);
    text-align: center;
    overflow: hidden;
    position: relative;
    padding: 4rem 0 6rem 0;
}

.bonus::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="b" cx="0" cy="0" r="1"><stop offset="0%" stop-color="%23ffde59" stop-opacity="0.1"/><stop offset="100%" stop-color="%23ffde59" stop-opacity="0"/></radialGradient></defs><circle cx="100" cy="100" r="200" fill="url(%23b)"/><circle cx="900" cy="800" r="300" fill="url(%23b)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.bonus .container {
    position: relative;
    z-index: 2;
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

/* Contenedor de la tarjeta con flip */
.bonus-card-container {
    position: relative;
    width: 100%;
    height: 320px;
    perspective: 1000px;
    margin-bottom: 2rem;
    /* CLAVE PARA MÓVIL: Forzar hardware acceleration */
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -o-transform: translateZ(0);
    transform: translateZ(0);
}

.bonus-card {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.6s ease-in-out;
    cursor: pointer;
    transform-origin: center center;
    /* CLAVE PARA MÓVIL: Prefijos para mejor compatibilidad */
    -webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    -ms-transform-style: preserve-3d;
    -o-transform-style: preserve-3d;
}

/* Hover solo en el contenedor */
.bonus-card-container:hover .bonus-card {
    transform: rotateY(180deg);
    -webkit-transform: rotateY(180deg);
    -moz-transform: rotateY(180deg);
    -ms-transform: rotateY(180deg);
    -o-transform: rotateY(180deg);
}

/* Caras de la tarjeta - BACKFACE VISIBILITY MEJORADO */
.bonus-card-front,
.bonus-card-back {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* CLAVE: Backface visibility con prefijos para móvil */
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -o-backface-visibility: hidden;
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
    transform-origin: center center;
    /* FORZAR HARDWARE ACCELERATION en móvil */
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -o-transform: translateZ(0);
    transform: translateZ(0);
}

/* Cara frontal - ASEGURAR QUE SE OCULTE EN MÓVIL */
.bonus-card-front {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    /* Asegurar que esté al frente inicialmente */
    z-index: 2;
}

.bonus-card-front::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(7, 36, 34, 0.85), rgba(227, 71, 73, 0.75));
    border-radius: 20px;
    z-index: 1;
}

.bonus-card-front-content {
    position: relative;
    z-index: 2;
}

/* Cara trasera - ROTACIÓN Y Z-INDEX MEJORADOS */
.bonus-card-back {
    background: linear-gradient(135deg, var(--dark-teal), var(--red));
    transform: rotateY(180deg);
    -webkit-transform: rotateY(180deg);
    -moz-transform: rotateY(180deg);
    -ms-transform: rotateY(180deg);
    -o-transform: rotateY(180deg);
    backdrop-filter: blur(20px);
    /* Asegurar que esté atrás inicialmente */
    z-index: 1;
}

/* CLAVE: Cuando está volteada, cambiar z-index */
.bonus-card-container:hover .bonus-card-front {
    z-index: 1;
}

.bonus-card-container:hover .bonus-card-back {
    z-index: 2;
}

/* Estilos específicos para cada tarjeta */
.bonus-card-googlemaps .bonus-card-front {
    background-image: url('https://images.unsplash.com/photo-1524661135-423995f22d0b?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80');
}

.bonus-card-website .bonus-card-front {
    background-image: url('https://images.unsplash.com/photo-1460925895917-afdab827c52f?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80');
}

.bonus-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    animation: iconFloat 3s ease-in-out infinite;
}

.bonus-title {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.bonus-card-back p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

/* Botón en la parte trasera */
.bonus-cta {
    background: var(--yellow);
    color: var(--dark-teal);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(255, 222, 89, 0.3);
    margin-top: auto;
}

.bonus-cta:hover {
    background: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 222, 89, 0.4);
}

/* Indicador de hover */
.hover-indicator {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    z-index: 4;
    transition: all 0.3s ease;
}

.bonus-card-container:hover .hover-indicator {
    transform: rotate(180deg);
    background: rgba(255, 222, 89, 0.8);
    color: var(--dark-teal);
}

/* Mejora de texto en cara trasera */
.bonus-card-back .bonus-icon {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.bonus-card-back .bonus-title {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
}

/* Animaciones */
@keyframes iconFloat {
    0%, 100% { 
        transform: translateY(0px);
    }
    50% { 
        transform: translateY(-8px);
    }
}

/* Efecto de elevación */
.bonus-card-container {
    transition: transform 0.3s ease;
}

.bonus-card-container:hover {
    transform: translateY(-3px);
    z-index: 10;
}

.bonus-card-container:hover .bonus-card-front,
.bonus-card-container:hover .bonus-card-back {
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.4);
}

/* Responsive - MÓVIL ESPECÍFICO */
@media (max-width: 768px) {
    .bonus-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .bonus-card-container {
        height: 300px;
        margin-bottom: 1.5rem;
        /* EXTRA PARA MÓVIL: Forzar re-renderizado */
        -webkit-transform: translate3d(0,0,0);
        transform: translate3d(0,0,0);
    }
    
    /* MÓVIL: Asegurar que las caras no se superpongan */
    .bonus-card {
        /* Más agresivo en móvil */
        -webkit-transform-style: preserve-3d !important;
        transform-style: preserve-3d !important;
    }
    
    .bonus-card-front,
    .bonus-card-back {
        /* Forzar ocultación en móvil */
        -webkit-backface-visibility: hidden !important;
        backface-visibility: hidden !important;
        /* Mejor separación en móvil */
        -webkit-transform: translateZ(1px);
        transform: translateZ(1px);
    }
    
    .bonus-card-back {
        -webkit-transform: rotateY(180deg) translateZ(1px);
        transform: rotateY(180deg) translateZ(1px);
    }
    
    .bonus-title {
        font-size: 1.5rem;
    }
    
    .bonus-icon {
        font-size: 3rem;
    }
    
    .bonus-card-back .bonus-title {
        font-size: 1.4rem;
    }
    
    .bonus {
        padding: 3rem 0 5rem 0;
    }
}

@media (max-width: 480px) {
    .bonus-card-container {
        height: 360px;
    }
    
    .bonus-card-front,
    .bonus-card-back {
        padding: 1.5rem;
        /* EXTRA separación para pantallas muy pequeñas */
        -webkit-transform: translateZ(2px);
        transform: translateZ(2px);
    }
    
    .bonus-card-back {
        -webkit-transform: rotateY(180deg) translateZ(2px);
        transform: rotateY(180deg) translateZ(2px);
    }
    
    .bonus-title {
        font-size: 1.3rem;
    }
    
    .bonus-card-back p {
        font-size: 1rem;
    }
}

/* CTA Section */
.final-cta {
    background: var(--dark-teal);
    color: var(--white);
    text-align: center;
    padding: 4rem 0;
}

.final-cta h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* Footer */
.footer {
    background: #000;
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: var(--yellow);
    margin-bottom: 1rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-info a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: var(--yellow);
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 1rem;
    text-align: center;
    color: #999;
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--dark-teal);
    cursor: pointer;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .features-floating-image {
        display: none;
    }
    
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 968px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
        padding: 8rem 2rem 2rem;
    }
    
    .lead-form {
        max-width: 400px;
        margin: 0 auto;
        transform: none;
        position: relative;
        top: auto;
    }
    
    .lead-form:hover {
        transform: translateY(-5px);
    }
    
    .results-container {
        margin-top: 2rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    
    .features-floating-image {
        display: none;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        display: flex;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-cta {
        justify-content: center;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .nav-container {
        padding: 1rem;
    }

    .section {
        padding: 3rem 0;
    }

    .logo-img {
        width: 120px;
        max-height: 45px;
    }
    
    .hero {
        min-height: 100vh;
    }
    
    .hero-container {
        padding: 6rem 2rem 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading animation */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loading.hide {
    opacity: 0;
    pointer-events: none;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid var(--light-gray);
    border-top: 5px solid var(--red);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none;
    cursor: pointer;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.5);
}

.whatsapp-float .tooltip {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--dark-teal);
    color: white;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.whatsapp-float .tooltip::after {
    content: '';
    position: absolute;
    right: -5px;
    top: 50%;
    transform: translateY(-50%);
    border: 5px solid transparent;
    border-left-color: var(--dark-teal);
}

.whatsapp-float:hover .tooltip {
    opacity: 1;
    visibility: visible;
    right: 75px;
}

/* Animación de pulso */
@keyframes pulse {
    0% {
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3), 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3), 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3), 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Responsive para móvil */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
    }
    
    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
    
    .whatsapp-float .tooltip {
        right: 65px;
        font-size: 13px;
        padding: 6px 10px;
    }
    
    .whatsapp-float:hover .tooltip {
        right: 70px;
    }
}

/* intl-tel-input styling - VERSIÓN CORREGIDA */
/* intl-tel-input styling - VERSIÓN CORREGIDA */
.iti {
    width: 100% !important;
    display: block !important;
}

.iti__flag-container {
    width: 70px !important;
}

.iti__selected-flag {
    background: transparent !important;
    border: none !important;
    padding: 0 8px !important; /* MODIFICADO: Más padding para la flecha */
    height: 100% !important;
    width: 52px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important; /* MODIFICADO: Space-between para separar bandera y flecha */
    outline: none !important;
    cursor: pointer !important;
}

.iti__selected-flag:hover,
.iti__selected-flag:focus {
    background: rgba(255, 255, 255, 0.15) !important; /* MODIFICADO: Más visible en hover */
}

.iti__flag {
    margin: 0 auto;              /* centra horizontalmente */
  display: block;
  transform: scale(1.3);
}

/* CORREGIDO: Mostrar y estilizar la flecha */
.iti__arrow {
    display: block !important; /* CAMBIADO: Mostrar la flecha */
    border: none !important;
    width: 0 !important;
    height: 0 !important;
    border-left: 3px solid transparent !important;
    border-right: 3px solid transparent !important;
    border-top: 4px solid rgba(255, 255, 255, 0.7) !important;
    margin-left: 4px !important;
    transition: transform 0.3s ease !important;
}

/* Rotación de flecha cuando está abierto */
.iti--show-dropdown .iti__arrow {
    transform: rotate(180deg) !important;
    border-top-color: var(--yellow) !important;
}

.iti__selected-dial-code {
    display: none !important; /* Mantener oculto el código de marcación */
}

#telefono {
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 12px !important;
    color: var(--white) !important;
    padding: 0.9rem !important;
    padding-left: 60px !important; /* Espacio para la bandera */
    backdrop-filter: blur(10px);
    font-size: 0.9rem !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

#telefono::placeholder {
    color: rgba(255, 255, 255, 0.6) !important;
}

#telefono:focus {
    background: rgba(255, 255, 255, 0.15) !important;
    border-color: var(--yellow) !important;
    box-shadow: 0 0 0 3px rgba(255, 222, 89, 0.2) !important;
    outline: none !important;
}

/* CORREGIDO: Mejorar dropdown de países */
.iti__country-list {
    background: var(--dark-teal) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 12px !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3) !important;
    backdrop-filter: blur(15px) !important;
    max-height: 200px !important;
    z-index: 10001 !important;
    margin-top: 5px !important;
    overflow-y: auto !important; /* AGREGADO: Scroll cuando sea necesario */
}

.iti__country {
    background: transparent !important;
    color: var(--white) !important;
    padding: 8px 12px !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    cursor: pointer !important;
    transition: background-color 0.2s ease !important; /* AGREGADO: Transición suave */
}

.iti__country:hover {
    background: rgba(255, 255, 255, 0.1) !important;
}

.iti__country.iti__highlight {
    background: rgba(255, 222, 89, 0.2) !important;
}

.iti__country:last-child {
    border-bottom: none !important; /* AGREGADO: Remover borde del último elemento */
}

.iti__country-name {
    color: var(--white) !important;
    margin-left: 8px !important;
}

.iti__dial-code {
    color: rgba(255, 255, 255, 0.8) !important;
    margin-left: auto !important;
}

/* AGREGADO: Estado cuando el dropdown está abierto */
.iti--show-dropdown .iti__flag-container {
    background: rgba(255, 255, 255, 0.15) !important;
    border-color: var(--yellow) !important;
}

.iti--show-dropdown .iti__selected-flag {
    background: rgba(255, 255, 255, 0.1) !important;
}

.phone-format-hint {
    font-size: 0.75rem;
    margin-top: 0.3rem;
    transition: all 0.3s ease;
}

/* Responsive */
@media (max-width: 768px) {
    .iti__flag-container {
        width: 48px !important;
    }
    
    .iti__selected-flag {
        width: 48px !important;
    }
    
    #telefono {
        padding-left: 56px !important;
    }
    
    /* AGREGADO: Mejorar dropdown en móvil */
    .iti__country-list {
        max-height: 150px !important;
        font-size: 0.9rem !important;
    }
    
    .iti__country {
        padding: 10px 12px !important;
    }
}
