
/* ========================================
   1. HERO SECTION MEJORADO
======================================== */

.hero-cro {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 100px 0 60px 0;
    position: relative;
    overflow: hidden;
}

.hero-imagen-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto 30px auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.hero-imagen {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 400px;
}

.badge-urgencia {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
    color: white;
    padding: 12px 20px;
    border-radius: 30px;
    font-weight: bold;
    font-size: 14px;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
    animation: pulse-urgencia 2s infinite;
    display: flex;
    align-items: center;
    gap: 8px;
}

@keyframes pulse-urgencia {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.hero-container-cro {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
}

.hero-titulo-principal {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.badge-destacado {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #333;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 18px;
    font-weight: bold;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(255, 165, 0, 0.3);
}

.hero-precio {
    font-size: 72px;
    font-weight: 900;
    color: #e97b03;
    line-height: 1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-subtitulo {
    font-size: 28px;
    color: #333;
    font-weight: 600;
    margin-bottom: 30px;
}

.hero-beneficios {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 30px 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.beneficio {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 18px;
    color: #333;
    font-weight: 500;
    background: white;
    padding: 15px 25px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.beneficio i {
    color: #25d366;
    font-size: 24px;
}

/* CTA Principal */
.hero-cta-container {
    margin: 40px 0;
}

.btn-cta-hero {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(135deg, #25d366, #20ba5a);
    color: white;
    padding: 20px 50px;
    border-radius: 60px;
    font-size: 24px;
    font-weight: bold;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    gap: 5px;
}

.btn-cta-hero:hover {
    background: linear-gradient(135deg, #20ba5a, #1fa851);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.5);
    color: white;
}

.btn-cta-hero i {
    font-size: 32px;
    margin-right: 10px;
}

.btn-cta-hero small {
    font-size: 14px;
    font-weight: normal;
    opacity: 0.95;
}

/* Prueba Social */
.hero-social-proof {
    margin: 30px 0;
}

.rating-stars {
    font-size: 32px;
    margin-bottom: 10px;
}

.rating-texto {
    font-size: 18px;
    color: #333;
    margin-bottom: 10px;
}

.rating-texto strong {
    color: #e97b03;
}

.frases-cortas {
    font-size: 14px;
    color: #666;
    font-style: italic;
}

.hero-experiencia {
    font-size: 16px;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.hero-experiencia i {
    color: #FFD700;
    font-size: 20px;
}

/* Marcas aliadas (discreto) */
.hero-marcas-discreto {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #ddd;
}

.marcas-titulo {
    font-size: 14px;
    color: #999;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.marcas-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.marcas-logos img {
    max-width: 80px;
    height: auto;
    opacity: 0.6;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.marcas-logos img:hover {
    opacity: 1;
    filter: grayscale(0%);
}

/* ========================================
   2. BOTÓN STICKY MOBILE (WhatsApp)
======================================== */

.cta-sticky-mobile {
    display: none;
    position: fixed;
    bottom: 0;
    left: 20%;
    right: 20%;
    border-radius: 20px;
    z-index: 9999;
    background: linear-gradient(135deg, #25d366, #20ba5a);
    padding: 15px 20px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    animation: slide-up 0.5s ease;
}

@keyframes slide-up {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.btn-sticky {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    background: white;
    color: #25d366;
    padding: 16px 25px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    border: 2px solid white;
    transition: all 0.3s ease;
}

.btn-sticky:hover {
    background: #25d366;
    color: white;
}

.btn-sticky i {
    font-size: 26px;
}

/* ========================================
   3. SECCIÓN ZONA DE COBERTURA
======================================== */

.seccion-cobertura {
    background: linear-gradient(135deg, #e97b03, #f7931e);
    padding: 50px 20px;
    color: white;
    text-align: center;
}

.cobertura-titulo {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.cobertura-titulo i {
    font-size: 40px;
}

.zonas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 900px;
    margin: 0 auto 30px auto;
}

.zona-item {
    background: rgba(255, 255, 255, 0.15);
    padding: 20px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.zona-item h4 {
    font-size: 22px;
    margin-bottom: 10px;
    font-weight: bold;
}

.zona-item p {
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

.cobertura-info {
    font-size: 18px;
    margin-top: 20px;
}

.cobertura-info strong {
    font-size: 20px;
}

/* ========================================
   4. MEJORAS GENERALES DE CONVERSIÓN
======================================== */

.precio-destacado {
    font-size: 28px;
    font-weight: bold;
    color: #e97b03;
    display: inline-block;
    background: rgba(233, 123, 3, 0.1);
    padding: 8px 15px;
    border-radius: 10px;
}

.badge-promo {
    background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: bold;
    display: inline-block;
    margin-left: 10px;
}

.urgencia-texto {
    color: #ff6b6b;
    font-weight: bold;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.urgencia-texto i {
    animation: pulse-urgencia 2s infinite;
}

/* ========================================
   5. RESPONSIVE (MOBILE FIRST)
======================================== */

@media (max-width: 768px) {
    .hero-cro {
        padding: 80px 030px 0;
    }
    .hero-imagen {
        max-height: 300px;
    }

    .hero-precio {
        font-size: 56px;
    }

    .hero-subtitulo {
        font-size: 22px;
    }

    .beneficio {
        font-size: 15px;
        padding: 12px 20px;
    }

    .btn-cta-hero {
        font-size: 20px;
        padding: 18px 35px;
        width: 90%;
    }

    .btn-cta-hero i {
        font-size: 28px;
    }

    .rating-stars {
        font-size: 26px;
    }

    .marcas-logos img {
        max-width: 60px;
    }

    .cta-sticky-mobile {
        display: block !important;
    }

    .zonas-grid {
        grid-template-columns: 1fr;
    }

    .cobertura-titulo {
        font-size: 26px;
    }
}

@media (max-width: 576px) {
    .hero-precio {
        font-size: 48px;
    }

    .hero-subtitulo {
        font-size: 18px;
    }

    .beneficio {
        font-size: 14px;
        padding: 10px 15px;
    }

    .beneficio i {
        font-size: 20px;
    }

    .btn-cta-hero {
        font-size: 18px;
        padding: 16px 30px;
    }

    .badge-urgencia {
        font-size: 12px;
        padding: 8px 15px;
        top: 10px;
        right: 10px;
    }
}

/* ========================================
   6. ANIMACIONES Y MICROINTERACCIONES
======================================== */

.btn-cta-hero,
.btn-sticky {
    position: relative;
    overflow: hidden;
}

.btn-cta-hero::before,
.btn-sticky::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-cta-hero:hover::before,
.btn-sticky:hover::before {
    width: 300px;
    height: 300px;
}

.fade-in {
    animation: fadeIn 0.8s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   7. MEJORAS DE ACCESIBILIDAD
======================================== */

.btn-cta-hero:focus,
.btn-sticky:focus {
    outline: 3px solid #FFD700;
    outline-offset: 3px;
}

.hero-subtitulo,
.beneficio,
.rating-texto {
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* ========================================
   8. PRINT STYLES
======================================== */

@media print {
    .cta-sticky-mobile,
    .badge-urgencia,
    .hero-cta-container {
        display: none;
    }
}