/* ==========================================================================
   VITAL SHOTS - STYLE SHEET
   ========================================================================== */

/* variables y reset */
:root {
    --primary: #1e4d3a;
    --primary-light: #2c7257;
    --primary-dark: #123326;
    --accent: #84cc16;
    --accent-hover: #a3e635;
    --accent-orange: #f97316;
    --text-dark: #1e293b;
    --text-muted: #64748b;
    --bg-light: #f7faf6;
    --bg-white: #ffffff;
    --border-color: #e2e8f0;
    --shadow-soft: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
    --shadow-medium: 0 20px 25px -5px rgba(18, 51, 38, 0.15), 0 10px 10px -5px rgba(18, 51, 38, 0.1);
    --shadow-glow: 0 0 20px rgba(132, 204, 22, 0.5);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Montserrat', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-index: border-box;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--bg-white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* utilidades de contenedor */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* tipografía general */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

strong {
    font-weight: 700;
}

.text-primary {
    color: var(--primary) !important;
}

/* ==========================================================================
   COMPONENTES: BOTONES
   ========================================================================== */
.btn {
    display: inline-block;
    padding: 14px 28px;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--accent);
    color: var(--primary-dark);
    box-shadow: 0 4px 14px rgba(132, 204, 22, 0.4);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(132, 204, 22, 0.6);
}

.btn-glow {
    position: relative;
    overflow: hidden;
}

.btn-glow::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 20%;
    height: 200%;
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(30deg);
    transition: none;
}

.btn-glow:hover::after {
    left: 120%;
    transition: all 0.7s ease-in-out;
}

.btn-nav {
    padding: 10px 20px;
    font-size: 14px;
    background-color: var(--primary);
    color: var(--bg-light);
    border: 2px solid var(--primary-light);
}

.btn-nav:hover {
    background-color: var(--accent);
    color: var(--primary-dark);
    border-color: var(--accent);
}

.btn-cta {
    font-size: 20px;
    padding: 20px 40px;
    background-color: var(--accent);
    color: var(--primary-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-glow);
}

.btn-cta:hover {
    background-color: var(--accent-hover);
    transform: scale(1.03) translateY(-3px);
}

/* animaciones keyframe */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(132, 204, 22, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(132, 204, 22, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(132, 204, 22, 0);
    }
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-10px) rotate(1deg);
    }
    100% {
        transform: translateY(0px) rotate(0deg);
    }
}

/* ==========================================================================
   TOP BAR & HEADER
   ========================================================================== */
.top-bar {
    background-color: var(--accent-orange);
    color: var(--bg-light);
    padding: 8px 10px;
    text-align: center;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.top-bar i {
    margin-right: 5px;
}

.header {
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    position: sticky;
    top: 35px;
    z-index: 999;
    padding: 12px 0;
    transition: var(--transition);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img {
    height: 48px;
    width: auto;
    display: block;
}

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

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: var(--transition);
}

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

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--primary);
    cursor: pointer;
}

/* ==========================================================================
   SECCION HERO
   ========================================================================== */
.hero {
    position: relative;
    padding: 80px 0 100px;
    background: radial-gradient(circle at 80% 20%, #eff6e8 0%, var(--bg-white) 60%);
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background-color: rgba(30, 77, 58, 0.08);
    color: var(--primary);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 46px;
    color: var(--primary-dark);
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.hero-features {
    list-style: none;
    margin-bottom: 35px;
}

.hero-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 16px;
    margin-bottom: 12px;
}

.hero-features li i {
    color: var(--accent);
    font-size: 20px;
    margin-top: 2px;
}

.hero-cta-box {
    margin-top: 20px;
}

.hero-guarantees {
    display: flex;
    gap: 20px;
    margin-top: 15px;
    font-size: 12px;
    color: var(--text-muted);
}

.hero-guarantees span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mockup-glow {
    position: absolute;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(132, 204, 22, 0.18) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: 1;
}

.hero-mockup {
    position: relative;
    z-index: 2;
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 25px 30px rgba(18, 51, 38, 0.25));
    animation: float 6s ease-in-out infinite;
}

.floating-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 3;
    background: var(--primary-dark);
    color: var(--bg-light);
    padding: 15px;
    border-radius: 12px;
    box-shadow: var(--shadow-medium);
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 2px solid var(--accent);
}

.badge-discount {
    font-size: 18px;
    font-weight: 800;
    color: var(--accent);
}

.badge-text {
    font-size: 12px;
    font-weight: 600;
}

/* ==========================================================================
   BANNER DE TRANSICION
   ========================================================================== */
.banner-transition {
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    color: var(--bg-light);
}

.banner-content {
    max-width: 600px;
}

.section-title {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--primary-dark);
}

.banner-content .section-title {
    color: var(--bg-light);
}

.banner-text {
    font-size: 16px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.banner-highlight {
    display: flex;
    gap: 30px;
}

.highlight-item {
    display: flex;
    flex-direction: column;
}

.highlight-num {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 900;
    color: var(--accent);
}

.highlight-desc {
    font-size: 12px;
    opacity: 0.8;
}

/* ==========================================================================
   SECCION GENERALES
   ========================================================================== */
.section {
    padding: 90px 0;
}

.bg-light {
    background-color: var(--bg-light);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-subtitle {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: var(--primary-light);
    display: block;
    margin-bottom: 10px;
}

.section-desc {
    font-size: 16px;
    color: var(--text-muted);
    margin-top: 15px;
}

.mt-4 {
    margin-top: 30px;
}

/* ==========================================================================
   GRID DE BENEFICIOS
   ========================================================================== */
.beneficios-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.benefit-card {
    background-color: var(--bg-white);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(226, 232, 240, 0.5);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.benefit-card:hover::before {
    transform: scaleX(1);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    background-color: rgba(132, 204, 22, 0.15);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 25px;
    transition: var(--transition);
}

.benefit-card:hover .benefit-icon {
    background-color: var(--primary);
    color: var(--accent);
}

.benefit-title {
    font-size: 20px;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.benefit-description {
    font-size: 14px;
    color: var(--text-muted);
}

/* ==========================================================================
   ESTILO DE VIDA (LIFESTYLE SECTION)
   ========================================================================== */
.lifestyle-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.lifestyle-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    position: relative;
}

.image-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.img-1 {
    transform: translateY(-20px);
}

.img-2 {
    transform: translateY(20px);
}

.lifestyle-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.image-wrapper:hover .lifestyle-img {
    transform: scale(1.05);
}

.lifestyle-content .section-title {
    margin-bottom: 25px;
}

.lifestyle-text {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.feature-list-item {
    display: flex;
    gap: 10px;
    align-items: center;
    font-weight: 500;
}

.feature-list-item i {
    font-size: 18px;
}

/* ==========================================================================
   QUE INCLUYE EL EBOOK (RECETAS CATEGORÍAS)
   ========================================================================== */
.recetas-categories {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.category-item {
    background-color: var(--bg-white);
    padding: 30px;
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    gap: 15px;
    border-left: 5px solid var(--primary);
}

.category-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary-dark);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.category-item h3 {
    font-size: 20px;
    color: var(--primary-dark);
}

.category-item p {
    font-size: 14px;
    color: var(--text-muted);
}

/* ==========================================================================
   SECCION BONOS EXCLUSIVOS
   ========================================================================== */
.bonos {
    background-color: var(--primary-dark);
    position: relative;
    overflow: hidden;
}

.bonos::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(132, 204, 22, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
}

.text-white {
    color: var(--bg-white) !important;
}

.text-white-muted {
    color: rgba(248, 250, 246, 0.6) !important;
}

.bonos-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 50px;
}

.bono-card {
    background-color: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px;
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 40px;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.bono-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: var(--accent);
    color: var(--primary-dark);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 800;
}

.bono-image {
    display: flex;
    justify-content: center;
}

.bono-img {
    max-width: 220px;
    height: auto;
    filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.4));
    transition: transform 0.3s ease;
}

.bono-card:hover .bono-img {
    transform: scale(1.05) rotate(2deg);
}

.bono-label {
    display: inline-block;
    color: var(--accent);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.bono-title {
    font-size: 26px;
    color: var(--bg-white);
    margin-bottom: 15px;
}

.bono-text {
    font-size: 15px;
    color: rgba(248, 250, 246, 0.8);
    margin-bottom: 25px;
}

.bono-value {
    font-size: 14px;
    color: var(--bg-white);
    font-weight: 600;
}

.old-price {
    text-decoration: line-through;
    color: #ef4444;
}

.free-text {
    color: var(--accent);
}

/* ==========================================================================
   INFOGRAFIA SECCION
   ========================================================================== */
.infografia-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    border: 1px solid var(--border-color);
}

.infografia-img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ==========================================================================
   TESTIMONIOS SECCION
   ========================================================================== */
.testimonios {
    background: radial-gradient(circle at 10% 80%, #f1f8e9 0%, var(--bg-white) 60%);
}

.testimonios-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background-color: var(--bg-white);
    padding: 35px;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(226, 232, 240, 0.7);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.user-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--accent);
}

.testimonial-user h4 {
    font-size: 16px;
    color: var(--primary-dark);
}

.user-tag {
    font-size: 11px;
    font-weight: 700;
    color: var(--primary-light);
    display: flex;
    align-items: center;
    gap: 3px;
}

.testimonial-quote {
    font-size: 14px;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 25px;
    position: relative;
    flex-grow: 1;
}

.testimonial-quote::before {
    content: '“';
    font-size: 40px;
    color: rgba(132, 204, 22, 0.3);
    position: absolute;
    top: -20px;
    left: -15px;
    font-family: Georgia, serif;
}

.btn-whatsapp-view {
    background-color: rgba(37, 211, 102, 0.08);
    color: #128c7e;
    border: 1px solid rgba(37, 211, 102, 0.3);
    padding: 10px 15px;
    border-radius: 10px;
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    transition: var(--transition);
}

.btn-whatsapp-view:hover {
    background-color: #25d366;
    color: var(--bg-white);
    border-color: #25d366;
}

.text-whatsapp {
    font-size: 16px;
}

/* ==========================================================================
   MODALES PARA CAPTURAS DE WHATSAPP
   ========================================================================== */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(18, 51, 38, 0.8);
    backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.show {
    display: flex;
    opacity: 1;
}

.modal-content {
    background-color: var(--bg-white);
    padding: 30px;
    border-radius: 20px;
    width: 90%;
    max-width: 400px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    position: relative;
    text-align: center;
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal.show .modal-content {
    transform: scale(1);
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 30px;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition);
}

.close-modal:hover {
    color: var(--primary-dark);
}

.modal-content h3 {
    margin-bottom: 20px;
    font-size: 20px;
    color: var(--primary-dark);
}

.modal-screenshot {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* ==========================================================================
   CIERRE DE VENTA (CTA BOX SECTION)
   ========================================================================== */
.section-cta {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    padding: 100px 0;
    position: relative;
}

.section-cta::before {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(132, 204, 22, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
}

.container-cta {
    display: flex;
    justify-content: center;
}

.cta-card {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    padding: 60px 40px;
    max-width: 800px;
    width: 100%;
    text-align: center;
    color: var(--bg-light);
    box-shadow: var(--shadow-medium);
}

.cta-tag {
    display: inline-block;
    color: var(--accent);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.cta-card h2 {
    font-size: 40px;
    color: var(--bg-white);
    margin-bottom: 15px;
}

.cta-subtitle {
    font-size: 16px;
    color: rgba(248, 250, 246, 0.8);
    margin-bottom: 40px;
}

.cta-price-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
}

.price-old {
    font-size: 18px;
    text-decoration: line-through;
    color: rgba(248, 250, 246, 0.5);
    margin-bottom: 5px;
}

.price-current {
    font-family: var(--font-heading);
    font-size: 56px;
    font-weight: 900;
    color: var(--accent);
    text-shadow: 0 2px 10px rgba(132, 204, 22, 0.2);
}

.price-alert {
    font-size: 12px;
    color: rgba(248, 250, 246, 0.6);
    margin-top: 5px;
}

.cta-actions {
    margin-bottom: 40px;
}

.btn-cta {
    width: 100%;
    max-width: 500px;
}

.cta-security {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 30px;
}

.security-badge {
    font-size: 12px;
    font-weight: 600;
    color: rgba(248, 250, 246, 0.8);
    display: flex;
    align-items: center;
    gap: 6px;
}

.security-badge i {
    color: var(--accent);
}

.payment-methods {
    font-size: 13px;
    color: rgba(248, 250, 246, 0.6);
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    font-size: 24px;
    margin-top: 10px;
    color: rgba(248, 250, 246, 0.7);
}

/* ==========================================================================
   SECCION DE GARANTIA
   ========================================================================== */
.guarantee-container {
    display: flex;
    align-items: center;
    gap: 40px;
    background-color: var(--bg-white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(226, 232, 240, 0.8);
}

.guarantee-icon-box {
    font-size: 70px;
    color: var(--accent-orange);
    display: flex;
    align-items: center;
    justify-content: center;
}

.guarantee-text-box h2 {
    font-size: 24px;
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.guarantee-text-box p {
    font-size: 14px;
    color: var(--text-muted);
}

/* ==========================================================================
   SECCION PREGUNTAS FRECUENTES (FAQ)
   ========================================================================== */
.faq {
    background-color: var(--bg-light);
}

.faq-container {
    max-width: 800px;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background-color: var(--bg-white);
    border-radius: 12px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(226, 232, 240, 0.5);
    overflow: hidden;
    transition: var(--transition);
}

.faq-question {
    width: 100%;
    padding: 22px 28px;
    background: none;
    border: none;
    text-align: left;
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 700;
    color: var(--primary-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--primary-light);
}

.faq-question i {
    font-size: 14px;
    transition: transform 0.3s ease;
    color: var(--primary-light);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0, 1, 0, 1), padding 0.3s ease;
    padding: 0 28px;
    font-size: 14px;
    color: var(--text-muted);
}

.faq-item.active .faq-answer {
    max-height: 1000px; /* valor maximo seguro */
    padding-bottom: 22px;
    transition: max-height 0.3s cubic-bezier(1, 0, 1, 0), padding 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
    background-color: #0c231a;
    color: rgba(248, 250, 246, 0.7);
    padding: 60px 0 40px;
    border-top: 4px solid var(--accent);
}

.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    text-align: center;
}

.footer-logo img {
    height: 40px;
    width: auto;
}

.footer-disclaimer {
    max-width: 800px;
    font-size: 12px;
    line-height: 1.6;
    color: rgba(248, 250, 246, 0.5);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    margin: 10px 0;
}

.footer-disclaimer strong {
    color: var(--accent-orange);
}

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

.footer-links a {
    color: rgba(248, 250, 246, 0.7);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-copy {
    font-size: 11px;
    color: rgba(248, 250, 246, 0.4);
}

/* ==========================================================================
   MEDIA QUERIES - RESPONSIVIDAD
   ========================================================================== */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 38px;
    }
    
    .beneficios-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonios-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .header {
        top: 32px;
        padding: 15px 0;
    }

    .nav-menu {
        display: none; /* simple hidden state, can toggled via js if expanded mobile menu wanted */
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--bg-white);
        flex-direction: column;
        gap: 0;
        box-shadow: 0 10px 15px rgba(0,0,0,0.05);
        border-bottom: 1px solid var(--border-color);
    }

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

    .nav-menu .nav-link {
        padding: 15px 20px;
        border-bottom: 1px solid rgba(226, 232, 240, 0.5);
    }
    
    .mobile-menu-btn {
        display: block;
    }

    .btn-nav {
        display: none; /* oculta en header movil para ahorrar espacio */
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-features {
        text-align: left;
    }

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

    .hero-visual {
        order: -1; /* visual va primero en movil */
    }

    .banner-transition {
        padding: 70px 0;
        text-align: center;
    }

    .banner-highlight {
        justify-content: center;
        margin-top: 20px;
    }

    .lifestyle-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .lifestyle-images {
        max-width: 450px;
        margin: 0 auto;
    }

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

    .lifestyle-content .section-title {
        text-align: center;
    }

    .features-list {
        align-items: center;
        text-align: left;
    }

    .recetas-categories {
        grid-template-columns: 1fr;
    }

    .bono-card {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 30px 20px;
    }

    .bono-image {
        margin-bottom: 10px;
    }

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

    .cta-card {
        padding: 40px 20px;
    }

    .cta-card h2 {
        font-size: 28px;
    }

    .price-current {
        font-size: 42px;
    }

    .cta-security {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .guarantee-container {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 30px;
    }

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

    .banner-highlight {
        flex-direction: column;
        gap: 20px;
    }
}
