/* --- Design Tokens & Global Variables --- */
:root {
    /* Main colors */
    --color-primary-blue: #0288D1;
    --color-primary-blue-dark: #01579B;
    --color-primary-blue-light: #E1F5FE;
    
    --color-primary-green: #388E3C;
    --color-primary-green-dark: #1B5E20;
    --color-primary-green-light: #E8F5E9;
    
    --color-primary-yellow: #FFA000;
    --color-primary-yellow-light: #FFF8E1;
    
    --color-primary-orange: #F4511E;
    --color-primary-orange-light: #FBE9E7;
    
    --color-primary-pink: #D81B60;
    --color-primary-pink-light: #FCE4EC;
    
    --color-cta: #D32F2F;
    --color-cta-hover: #B71C1C;
    
    --color-text-dark: #37474F;
    --color-text-light: #FFFFFF;
    
    /* Fonts */
    --font-heading: 'Fredoka', sans-serif;
    --font-body: 'Outfit', sans-serif;
    
    /* Layout */
    --container-width: 1200px;
    --border-radius-sm: 12px;
    --border-radius-md: 20px;
    --border-radius-lg: 32px;
    
    /* Transitions */
    --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    
    /* Shadows */
    --shadow-soft: 0 8px 30px rgba(0,0,0,0.06);
    --shadow-medium: 0 12px 40px rgba(0,0,0,0.1);
    --shadow-hover: 0 20px 48px rgba(0,0,0,0.15);
}

/* --- Base Resets --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

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

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

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: 90%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 15px;
}

/* --- Typographical styles --- */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
}

/* --- Buttons & Call to Actions --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-align: center;
    box-shadow: 0 6px 20px rgba(211, 47, 47, 0.3);
}

.btn-header {
    background-color: var(--color-cta);
    color: var(--color-text-light);
    font-size: 1rem;
    padding: 10px 24px;
}

.btn-header:hover {
    background-color: var(--color-cta-hover);
    transform: translateY(-2px);
}

.btn-purchase {
    background-color: var(--color-cta);
    color: var(--color-text-light);
    font-size: 1.6rem;
    padding: 18px 44px;
    width: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

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

/* Pulse Animation for buttons */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(211, 47, 47, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(211, 47, 47, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(211, 47, 47, 0);
    }
}

.btn-pulse {
    animation: pulse 2s infinite;
}

/* --- Header & Sticky Navigation --- */
.header {
    background-color: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: var(--shadow-soft);
    padding: 10px 0;
}

.sticky-header {
    /* Always fixed at top */
}

.sticky-header.visible {
    /* No-op now */
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-top {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 750;
    letter-spacing: -0.5px;
}

.logo-top span {
    display: inline-block;
}

.logo-top .b { color: var(--color-primary-blue-dark); }
.logo-top .r { color: var(--color-primary-orange); }
.logo-top .o { color: var(--color-primary-yellow); }
.logo-top .t { color: var(--color-primary-green); }
.logo-top .i { color: var(--color-primary-blue); }
.logo-top .n { color: var(--color-primary-pink); }
.logo-top .h { color: var(--color-primary-orange); }
.logo-top .o { color: var(--color-primary-green); }
.logo-top .s { color: var(--color-primary-blue-dark); }

.logo-sub {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--color-primary-blue);
    font-weight: 600;
    margin-left: 2px;
}

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

.nav-link {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text-dark);
    transition: var(--transition-smooth);
    padding: 8px 0;
    position: relative;
}

.nav-link:hover, .nav-link.active {
    color: var(--color-primary-blue-dark);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--color-primary-blue-dark);
    transition: var(--transition-smooth);
    border-radius: 2px;
}

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

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    border: none;
    background: transparent;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle span {
    width: 30px;
    height: 3px;
    background-color: var(--color-text-dark);
    border-radius: 2px;
    transition: var(--transition-smooth);
}

/* --- Hero Section Perfect --- */
.hero-section-perfect {
    position: relative;
    width: 100%;
    background-color: #FFFFFF;
    overflow: hidden;
}

.hero-aspect-ratio-box {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    aspect-ratio: 1000 / 885;
    overflow: hidden;
}

.hero-perfect-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Hotspots overlay styles to interact directly with image_0 elements */
.hotspot-btn-cta {
    position: absolute;
    left: 34.6%;
    top: 50.8%;
    width: 30.8%;
    height: 6.8%;
    border-radius: 50px;
    z-index: 10;
    cursor: pointer;
    transition: var(--transition-smooth);
    background-color: rgba(211, 47, 47, 0); /* Invisible overlay */
}

.hotspot-btn-cta:hover {
    background-color: rgba(211, 47, 47, 0.15); /* Feedback flash on hover */
    transform: scale(1.02);
}

.hotspot-nav {
    position: absolute;
    top: 4%;
    height: 5%;
    z-index: 10;
    cursor: pointer;
    background-color: rgba(0, 0, 0, 0);
}

.hotspot-nav:hover {
    background-color: rgba(0, 0, 0, 0.04);
    border-radius: 6px;
}

.hotspot-btn-header {
    position: absolute;
    left: 82.5%;
    top: 4.2%;
    width: 13.5%;
    height: 4.8%;
    border-radius: 20px;
    z-index: 10;
    cursor: pointer;
    background-color: rgba(0, 0, 0, 0);
}

.hotspot-btn-header:hover {
    background-color: rgba(211, 47, 47, 0.15);
}

/* --- O Que Você Recebe Section --- */
.recebe-section {
    padding: 100px 0;
    background-color: #FFFFFF;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.receive-card {
    padding: 40px 24px;
    border-radius: var(--border-radius-md);
    text-align: center;
    transition: var(--transition-smooth);
    border: 3px solid transparent;
    box-shadow: var(--shadow-soft);
}

.receive-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.card-icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px auto;
    background-color: rgba(255, 255, 255, 0.7);
    box-shadow: inset 0 2px 6px rgba(0,0,0,0.05);
}

.receive-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.receive-card p {
    font-size: 0.95rem;
    color: #546E7A;
    line-height: 1.5;
}

/* Individual Card Themes */
.card-blue {
    background-color: var(--color-primary-blue-light);
    border-color: #B3E5FC;
    color: var(--color-primary-blue-dark);
}
.card-blue .card-icon-wrapper { color: var(--color-primary-blue-dark); }

.card-yellow {
    background-color: var(--color-primary-yellow-light);
    border-color: #FFE082;
    color: var(--color-primary-yellow);
}
.card-yellow .card-icon-wrapper { color: var(--color-primary-yellow); }
.card-yellow h3 { color: #B78103; }

.card-green {
    background-color: var(--color-primary-green-light);
    border-color: #C8E6C9;
    color: var(--color-primary-green-dark);
}
.card-green .card-icon-wrapper { color: var(--color-primary-green); }

.card-orange {
    background-color: var(--color-primary-orange-light);
    border-color: #FFCCBC;
    color: var(--color-primary-orange);
}
.card-orange .card-icon-wrapper { color: var(--color-primary-orange); }
.card-orange h3 { color: #C93B0F; }

.card-pink {
    background-color: var(--color-primary-pink-light);
    border-color: #F8BBD0;
    color: var(--color-primary-pink);
}
.card-pink .card-icon-wrapper { color: var(--color-primary-pink); }
.card-pink h3 { color: #C2185B; }

/* --- Beneficios Section --- */
.beneficios-section {
    padding: 100px 0;
    background-color: #F1F8E9;
}

.beneficios-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

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

.illustration-img {
    filter: drop-shadow(0 15px 25px rgba(0,0,0,0.08));
    border-radius: var(--border-radius-md);
}

.beneficios-content {
    flex: 1.2;
}

.benefits-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--color-text-dark);
}

.check-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #4CAF50;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* --- Materials Slider Section --- */
.materials-section {
    padding: 100px 0;
    background-color: #FFFFFF;
}

.carousel-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    max-width: 1050px;
    margin: 0 auto;
    gap: 20px;
}

.carousel-track-container {
    overflow: hidden;
    width: 100%;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    gap: 20px;
}

.carousel-slide {
    flex: 0 0 calc(50% - 10px);
    min-width: 0;
}

.material-card {
    background-color: #FFFFFF;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 3px solid #ECEFF1;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
}

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

.material-img-wrapper {
    background-color: #F8F9FA;
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 0;
}

.material-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    filter: drop-shadow(0 8px 16px rgba(0,0,0,0.06));
}

.material-img-tall img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.material-info {
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    border-top: 1px solid #ECEFF1;
    flex-grow: 1;
}

.material-info h3 {
    font-size: 1.4rem;
}

.material-info p {
    color: #607D8B;
    font-size: 1rem;
}

.text-blue h3 { color: var(--color-primary-blue-dark); }
.text-yellow h3 { color: #B78103; }
.text-green h3 { color: var(--color-primary-green-dark); }
.text-orange h3 { color: #C93B0F; }

.carousel-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #4CAF50;
    color: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    z-index: 10;
    transition: var(--transition-smooth);
    flex-shrink: 0;
}

.carousel-btn:hover {
    background-color: #388E3C;
    transform: scale(1.1);
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: #CFD8DC;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.dot.active {
    background-color: #4CAF50;
    transform: scale(1.2);
}

/* --- Depoimentos Section --- */
.depoimentos-section {
    padding: 100px 0;
    background-color: #FFFDE7;
}

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

.depoimento-card {
    border-radius: var(--border-radius-md);
    padding: 40px 30px;
    box-shadow: var(--shadow-soft);
    text-align: center;
    position: relative;
}

.depoimento-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

.avatar-blue { background-color: var(--color-primary-blue); }
.avatar-green { background-color: var(--color-primary-green); }
.avatar-pink { background-color: var(--color-primary-pink); }

.avatar-photo {
    background-color: transparent;
    overflow: hidden;
}
.avatar-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.bg-blue-light { background-color: var(--color-primary-blue-light); }
.bg-green-light { background-color: var(--color-primary-green-light); }
.bg-pink-light { background-color: var(--color-primary-pink-light); }

.depoimento-text {
    font-size: 1.1rem;
    color: #455A64;
    font-style: italic;
    margin-bottom: 24px;
    line-height: 1.6;
}

.depoimento-author {
    font-size: 1.2rem;
    color: var(--color-text-dark);
    margin-bottom: 6px;
}

.stars {
    color: #FFD54F;
    font-size: 1.4rem;
}

/* --- Bônus Exclusivos Section --- */
.bonus-section {
    padding: 100px 0;
    background-color: #FFFFFF;
}

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

.bonus-card {
    background-color: #E8F5E9;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    border: 3px solid #81C784;
    padding: 24px;
    text-align: center;
    transition: var(--transition-smooth);
    color: #1B5E20;
}

.bonus-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.bonus-img-wrapper {
    background-color: #FFFFFF;
    border-radius: var(--border-radius-sm);
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    overflow: hidden;
    padding: 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.bonus-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bonus-card h3 {
    font-size: 1.25rem;
    color: #1B5E20;
    margin-bottom: 10px;
}

.bonus-card p {
    color: #2E7D32;
    font-size: 0.95rem;
}

/* --- Purchase Section --- */
.purchase-section {
    background-color: #346FB6;
    position: relative;
    padding: 80px 0 100px 0;
    color: white;
}

/* --- Custom Shape Dividers --- */
.custom-shape-divider-top {
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 2;
}

.custom-shape-divider-top svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
}

.custom-shape-divider-bottom {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 2;
}

.custom-shape-divider-bottom svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
}

.custom-shape-divider-bottom.large svg {
    height: 100px;
}

.custom-shape-divider-top.large svg {
    height: 100px;
}

@media (min-width: 1200px) {
    .custom-shape-divider-top svg, 
    .custom-shape-divider-bottom svg {
        height: 80px;
    }
    .custom-shape-divider-bottom.large svg,
    .custom-shape-divider-top.large svg {
        height: 140px;
    }
}

.purchase-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.purchase-left {
    flex: 1.2;
}

.purchase-left h2 {
    font-size: 2.5rem;
    line-height: 1.3;
}

.text-yellow-light {
    color: #FFF59D;
}

.purchase-middle {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: var(--border-radius-md);
    border: 2px dashed rgba(255, 255, 255, 0.3);
}

.old-price {
    font-size: 1.2rem;
    text-decoration: line-through;
    opacity: 0.75;
}

.price-label {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.new-price {
    display: flex;
    align-items: flex-start;
    margin-bottom: 4px;
}

.currency {
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 8px;
    margin-right: 2px;
}

.price-value {
    font-size: 4.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 0.95;
}

.cents {
    font-size: 1.8rem;
    font-weight: 700;
    margin-top: 10px;
}

.price-subtitle {
    font-size: 0.9rem;
    opacity: 0.9;
    font-weight: 550;
    text-align: center;
}

.purchase-right {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.security-badge-white {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.95rem;
    font-weight: 600;
}

.guarantee-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    background-color: rgba(0, 0, 0, 0.15);
    padding: 10px 18px;
    border-radius: 30px;
}

.check-circle {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #81C784;
    color: var(--color-primary-green-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

/* --- Footer --- */
.footer {
    background-color: #1B5E20;
    color: rgba(255, 255, 255, 0.8);
    padding: 40px 0;
    font-size: 0.95rem;
}

.footer-container {
    display: block;
}

.logo-footer {
    gap: 8px;
}

.logo-footer-text {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: white;
    font-weight: 700;
}

/* --- Responsive Adaptations --- */
@media (max-width: 1024px) {
    .cards-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .depoimentos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .purchase-container {
        flex-direction: column;
        text-align: center;
    }
    
    .purchase-left h2 {
        font-size: 2.2rem;
    }
    
    .purchase-middle {
        width: 100%;
        max-width: 400px;
    }
    
    .purchase-right {
        width: 100%;
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    .header-cta {
        display: none;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 60px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 60px);
        background-color: white;
        flex-direction: column;
        align-items: center;
        padding-top: 50px;
        gap: 30px;
        transition: var(--transition-smooth);
        box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    }
    
    .nav-menu.open {
        left: 0;
    }
    
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .beneficios-container {
        flex-direction: column;
        gap: 40px;
    }
    
    .section-title.left-align {
        text-align: center;
        justify-content: center;
    }
    
    .carousel-slide {
        flex: 0 0 100%;
    }
    
    .depoimentos-grid {
        grid-template-columns: 1fr;
    }
    
    .bonus-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-container {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .cards-grid {
        grid-template-columns: 1fr;
    }
}

/* --- Restante do Site Perfect --- */
.site-section-perfect {
    position: relative;
    width: 100%;
    background-color: #FFFFFF;
    overflow: hidden;
}

.site-aspect-ratio-box {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    aspect-ratio: 670 / 726;
    overflow: hidden;
}

.site-perfect-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.anchor {
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    visibility: hidden;
}

.hotspot-btn-cta-2 {
    position: absolute;
    left: 20%;
    top: 85%;
    width: 60%;
    height: 8%;
    border-radius: 50px;
    z-index: 10;
    cursor: pointer;
    transition: var(--transition-smooth);
    background-color: rgba(211, 47, 47, 0);
}

.hotspot-btn-cta-2:hover {
    background-color: rgba(211, 47, 47, 0.15);
    transform: scale(1.02);
}

/* --- Hero Section --- */
.hero-section {
    position: relative;
    padding: 160px 0 100px;
    background: url('hero/ChatGPT Image 22 de jul. de 2026, 15_57_40.png') no-repeat center center;
    background-size: cover;
    min-height: 85vh;
    display: flex;
    align-items: center;
    border-radius: 0 0 40px 40px;
}

.hero-content {
    max-width: 650px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(5px);
    padding: 40px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-medium);
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

.text-gradient {
    background: linear-gradient(90deg, #F4511E, #FFA000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #455A64;
    margin-bottom: 35px;
    font-weight: 500;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.hero-actions .btn-primary {
    background-color: var(--color-cta);
    color: white;
    font-size: 1.3rem;
    padding: 16px 36px;
    align-self: flex-start;
    border-radius: 50px;
    font-weight: bold;
    text-transform: uppercase;
}

.hero-security {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 0.9rem;
    color: #546E7A;
}

.security-badge {
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 600;
    color: var(--color-primary-green-dark);
}

.check-green {
    color: var(--color-primary-green);
    font-weight: bold;
}

/* --- Responsive Media Queries --- */
@media (max-width: 992px) {
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .depoimentos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .bonus-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .beneficios-container, .purchase-container {
        flex-direction: column;
        text-align: center;
    }
    
    .beneficios-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .benefits-list {
        display: inline-flex;
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }
    .benefits-list li {
        justify-content: flex-start;
    }
}

@media (max-width: 768px) {
    /* Header & Nav */
    .nav-menu {
        display: none;
        flex-direction: column;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        position: absolute;
        top: 100%;
        left: 0;
        padding: 20px 0;
        box-shadow: var(--shadow-medium);
        gap: 15px;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .header-cta {
        display: none; /* Hide header CTA on mobile to save space */
    }

    /* Hero */
    .hero-section {
        padding: 100px 0 50px;
        background-position: center center;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 25px;
    }
    
    .hero-actions .btn-primary {
        align-self: center;
        width: 100%;
        text-align: center;
        padding: 14px 20px;
        font-size: 1.1rem;
    }
    
    .hero-security {
        flex-direction: column;
        gap: 8px;
    }

    /* Grids */
    .cards-grid, .depoimentos-grid, .bonus-grid {
        grid-template-columns: 1fr;
    }
    
    /* Carousel */
    .carousel-slide {
        flex: 0 0 100%;
    }
    
    /* Purchase */
    .purchase-section {
        padding: 60px 0 80px;
    }
    
    .purchase-left h2 {
        font-size: 1.8rem;
    }
    
    .purchase-middle {
        width: 100%;
    }
    
    .btn-purchase {
        font-size: 1.3rem;
        padding: 15px 20px;
    }
    
    .section-title {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    .title-decor {
        display: block;
        padding: 0 10px;
    }
}

/* --- Hero Section Mobile Overrides --- */
@media (max-width: 768px) {
    .hero-section {
        padding: 100px 0 40px !important;
    }

    .hero-content {
        padding: 25px 15px !important;
        margin: 0 auto !important;
        text-align: center !important;
        width: 88% !important;
    }
    
    .hero-title {
        font-size: 1.7rem !important;
        margin-bottom: 15px !important;
    }
    
    .hero-subtitle {
        font-size: 1rem !important;
        margin-bottom: 20px !important;
    }

    .hero-actions {
        align-items: center !important;
    }
    
    .hero-actions .btn-primary {
        width: auto !important;
        padding: 12px 26px !important;
        font-size: 1.05rem !important;
    }
    
    .hero-security {
        flex-direction: column !important;
        gap: 6px !important;
        margin-top: 5px !important;
    }
}

/* --- CTA Wrapper for extra buttons --- */
.cta-wrapper {
    margin-top: 50px;
    display: flex;
}
.cta-center {
    justify-content: center;
}
.cta-left {
    justify-content: flex-start;
}
@media (max-width: 768px) {
    .cta-left {
        justify-content: center;
    }
}

/* --- FAQ Section --- */
.faq-section {
    padding: 100px 0;
    background-color: #FFFFFF;
    position: relative;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background-color: #F9FBE7;
    border-radius: var(--border-radius-sm);
    border: 2px solid #E8F5E9;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-item.active {
    border-color: #81C784;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

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

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

.faq-icon {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--color-primary-green);
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-answer p {
    padding: 0 20px 20px 20px;
    color: #455A64;
    font-size: 1.05rem;
    line-height: 1.6;
}

/* --- Footer Updates --- */
.footer-top {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 30px;
}

.footer-brand {
    flex: 1.5;
}

.footer-desc {
    margin-top: 15px;
    font-size: 0.95rem;
    opacity: 0.8;
}

.footer-links, .footer-contact {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links h4, .footer-contact h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: white;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: white;
    text-decoration: underline;
}

.footer-guarantee {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 12px;
    border-radius: 8px;
    font-weight: bold;
}

.footer-bottom {
    text-align: center;
}

@media (max-width: 768px) {
    .footer-top {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 30px;
    }
}
