/* CSS Variaveis & Base */
:root {
    --bg-offwhite: #0D0D17; /* Main Background */
    --bg-light-cards: #FFFFFF; /* Off-white for reading sections */
    --text-main: #FFFFFF;
    --text-muted: #A0A0A0;
    --color-primary: #E91E63; /* Pink Magenta */
    --color-secondary: #0D0D17; 
    --color-highlight: #6C63FF; /* Purple/Blue */
    --bg-dark: #000000;
    --bg-darker: #05050C;
    
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --shadow-soft: 0px 10px 20px rgba(0,0,0,0.5);
    --shadow-medium: 0px 15px 30px rgba(0,0,0,0.6);
    --shadow-hover: 0px 0px 20px rgba(233, 30, 99, 0.4);
    
    --border-radius-md: 10px;
    --border-radius-lg: 16px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-main);
    letter-spacing: -0.5px;
}

.text-gradient {
    background: linear-gradient(90deg, var(--color-primary), var(--color-highlight));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-solid-highlight {
    color: var(--color-primary);
}

.text-white { color: #FFFFFF !important; }
.text-muted { color: var(--text-muted); }
.text-center { text-align: center; }
.text-left { text-align: left; }
.font-medium { font-weight: 500; }
.font-bold { font-weight: 700; }
.italic { font-style: italic; }

.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }
.mt-16 { margin-top: 4rem; }
.pb-0 { padding-bottom: 0 !important; }
.pb-20 { padding-bottom: 5rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.w-full { width: 100%; }
.block { display: block; }

.section {
    padding: 4rem 1.5rem;
}
.section-bg-light { background-color: var(--bg-dark); }
.section-bg-white { background-color: #05050C; }
.bg-dark { background-color: var(--bg-dark); }
.bg-darker { background-color: var(--bg-darker); padding: 2rem 1.5rem; }
.bg-gradient-dark { background: linear-gradient(135deg, var(--bg-darker), var(--color-secondary)); }
.bg-white { background-color: #0D0D17; } /* Remapped to dark */

.container {
    max-width: 1200px;
    margin: 0 auto;
}
.container-narrow { max-width: 800px; }
.container-md { max-width: 900px; }
.container-sm { max-width: 700px; }

/* Buttons */
.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    font-family: var(--font-heading);
    font-weight: 800;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: var(--border-radius-md);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    letter-spacing: 1px;
}

.btn-primary {
    background: var(--color-primary);
    color: #FFFFFF;
    box-shadow: 0 5px 15px rgba(233, 30, 99, 0.3);
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(233, 30, 99, 0.5);
    background: #F06292;
}

.btn-secondary {
    background: #333333;
    color: #FFFFFF;
}

.btn-large {
    font-size: 1.1rem;
    padding: 1.2rem 2.5rem;
}

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

@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(233, 30, 99, 0.7); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(233, 30, 99, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(233, 30, 99, 0); }
}

/* Hero Section & Premium look */
.hero-section {
    background: var(--bg-offwhite);
    padding-top: 5rem;
    padding-bottom: 3rem;
    position: relative;
    overflow: hidden;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: var(--color-primary);
    filter: blur(200px);
    opacity: 0.3;
    z-index: 0;
}

@media(min-width: 900px) {
    .hero-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        align-items: center;
    }
}

.headline-main {
    font-size: 2.8rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 800;
    letter-spacing: -1px;
}

.hero-asset-wrapper {
    margin: 3rem auto;
    position: relative;
    max-width: 100%;
}

@media(min-width: 768px) {
    .hero-asset-wrapper {
        max-width: 950px;
    }
}

.mockup-img {
    width: 100%;
    height: auto;
    display: block;
    transform: scale(1.1); /* To make it larger and pop more */
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.15));
}

.animate-float {
    animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.glass-box {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-soft);
    margin-bottom: 2rem;
    border: 1px solid rgba(255,255,255,0.4);
}

.gov-logo {
    max-width: 70px;
    margin-bottom: 1rem;
    display: inline-block;
}

.hero-benefits {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.benefit-tag-clean {
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    text-align: left;
    gap: 0.5rem;
    color: var(--text-main);
}
@media(max-width: 899px) {
    .hero-benefits {
        align-items: flex-start;
        text-align: left;
    }
}

.inline-gov {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    text-align: left;
    background: #FFF;
    border: 1px solid #EBEBEB;
    border-radius: var(--border-radius-md);
    padding: 1rem;
    color: #0D0D17;
}
.inline-gov .gov-logo {
    margin-bottom: 0;
    flex-shrink: 0;
}
.inline-gov .gov-text {
    margin-top: 0;
    font-size: 0.85rem;
    color: #0D0D17;
}

@media(max-width: 899px) {
    .hero-content {
        text-align: left;
    }
    .w-full-mobile {
        width: 100%;
        display: block;
    }
    .hero-grid {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
    .hero-visual {
        order: -1; /* puts image on top on mobile if we wanted, but let's keep order */
    }
}

/* Dores & Desejos */
.headline-impact {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.dores-composition {
    position: relative;
    margin: 4rem auto;
    max-width: 500px;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.prof-exausta {
    max-width: 250px;
    z-index: 10;
}

.thought-bubbles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.bubble {
    position: absolute;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: white;
    padding: 0.8rem 1rem;
    border-radius: var(--border-radius-lg);
    font-size: 0.8rem;
    max-width: 150px;
    box-shadow: var(--shadow-medium);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.bubble.loaded {
    opacity: 1;
    transform: translateY(0);
}

.bubble-1 { top: 10%; left: 0; }
.bubble-2 { top: 5%; right: 0; }
.bubble-3 { top: 40%; left: -5%; }
.bubble-4 { top: 35%; right: -5%; }
.bubble-5 { top: 70%; right: 5%; }

.tags-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.tag-base {
    background: #FFF;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: var(--shadow-soft);
    border: 1px solid #FFEBEB;
    color: var(--color-accent);
}

.headline-fechamento {
    font-size: 1.5rem;
    color: #FFF;
}
.highlight-white {
    color: var(--color-primary);
}

/* O que falta */
.cards-stack {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 2rem;
}

.info-card {
    background: #FFF;
    border-radius: var(--border-radius-lg);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    box-shadow: var(--shadow-soft);
    text-align: left;
    transition: transform 0.3s ease;
    color: #0D0D17;
}

.info-card:hover {
    transform: translateY(-5px);
}

.icon-box {
    background: #F0F0F0;
    width: 60px;
    height: 60px;
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    flex-shrink: 0;
}

.card-text {
    color: #0D0D17;
    font-weight: 500;
}

/* O que recebe */
.grid-2-cols {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media(min-width: 768px) {
    .grid-2-cols {
        grid-template-columns: 1fr 1fr;
    }
    .hero-benefits {
        flex-direction: row;
        justify-content: center;
    }
}

.content-card {
    background: #FFF;
    border: 1px solid #EBEBEB;
    border-radius: var(--border-radius-md);
    padding: 1.5rem;
    text-align: left;
    box-shadow: var(--shadow-soft);
}

.block-title {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #0D0D17;
    font-weight: 800;
}

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

.block-desc {
    color: #0D0D17;
    font-size: 0.95rem;
}

/* Carousel */
.carousel-container {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.carousel-track {
    display: flex;
    width: calc(200px * 20); /* Approx width */
    animation: scroll 15s linear infinite;
    gap: 1rem;
    margin-bottom: 1rem;
    will-change: transform;
}

.carousel-track.reverse {
    animation: scroll-reverse 18s linear infinite;
    will-change: transform;
}

.carousel-img {
    height: 250px;
    width: auto;
    object-fit: cover;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-soft);
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-200px * 10 - 10rem)); }
}
@keyframes scroll-reverse {
    0% { transform: translateX(calc(-200px * 10 - 10rem)); }
    100% { transform: translateX(0); }
}

/* Bônus */
.glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--border-radius-md);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

@media(min-width: 768px) {
    .glass-card {
        flex-direction: row;
        text-align: left;
        gap: 2rem;
    }
}

.bonus-logo {
    max-width: 100px;
    height: auto;
    margin-bottom: 1rem;
}
@media(min-width: 768px) {
    .bonus-logo { margin-bottom: 0; }
}

.bonus-title { font-size: 1.2rem; margin-bottom: 0.5rem; color: #FFF; }
.bonus-desc { color: #DDD; font-size: 0.95rem; }

/* Prints grid */
.prints-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}
@media(min-width: 768px) {
    .prints-grid { grid-template-columns: repeat(4, 1fr); }
}

.print-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-soft);
}

/* Dor cards */
.dor-cards {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.dor-card {
    background: #FFF;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.dor-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.dor-text {
    background: #FFF;
    color: #0D0D17;
    padding: 1.5rem;
    text-align: left;
    font-weight: 500;
}

/* Planos */
.pricing-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 400px;
    margin: 0 auto;
}

@media(min-width: 768px) {
    .pricing-container {
        flex-direction: row;
        max-width: 1000px;
        align-items: stretch;
    }
    .pricing-card {
        flex: 1;
    }
}

.pricing-card {
    background: #FFF;
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-medium);
    position: relative;
    border: 2px solid transparent;
}

.card-premium {
    border-color: var(--color-primary);
    transform: scale(1.02);
    box-shadow: var(--shadow-hover);
}

.most-popular {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-primary);
    color: #FFF;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

.pricing-header h3 { font-size: 1.5rem; margin-bottom: 1rem; }
.pricing-header .price { display: flex; flex-direction: column; align-items: center; margin-bottom: 1.5rem; }
.pricing-header .installment { font-size: 0.9rem; color: var(--text-muted); }
.pricing-header .value { font-size: 3rem; font-weight: 800; color: var(--text-main); line-height: 1; margin: 0.5rem 0; }
.pricing-header .cash { font-size: 0.9rem; color: var(--text-muted); }
.price-highlight .value { color: var(--color-primary); }

.pricing-features { text-align: left; margin-bottom: 2rem; }
.pricing-features ul { list-style: none; }
.pricing-features li { margin-bottom: 0.8rem; font-size: 0.9rem; display: flex; gap: 0.5rem; }
.pricing-features .disabled { color: #999; }
.gift-box {
    background: #F9F9F9;
    border-radius: var(--border-radius-md);
    padding: 1rem;
    margin-top: 1rem;
    border: 1px dashed var(--color-primary);
}
.gift-title { font-weight: 700; color: var(--color-primary); margin-bottom: 0.5rem; }

.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-4 { gap: 1rem; }


/* Balance Mobile - Complete Redesign */
.balance-container {
    position: relative;
    margin: 5rem auto;
    width: 100%;
    max-width: 600px;
    height: 250px;
}

.balance-div-or {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.5rem;
    font-weight: 900;
    color: #FFF;
    background-color: var(--color-primary);
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    z-index: 10;
    box-shadow: 0 5px 15px rgba(233, 30, 99, 0.4);
}

.balance-scale {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.scale-center-base {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 180px;
    background: linear-gradient(180deg, #CBD5E1, #94A3B8);
    border-radius: 15px 15px 0 0;
    box-shadow: inset 0 0 10px rgba(0,0,0,0.1), 0 10px 15px rgba(0,0,0,0.1);
}

.scale-arm {
    position: absolute;
    top: 60px;
    left: 5%;
    width: 90%;
    height: 12px;
    background: linear-gradient(90deg, #94A3B8, #CBD5E1, #94A3B8);
    border-radius: 10px;
    transform: rotate(6deg);
    transform-origin: center;
    box-shadow: 0 5px 10px rgba(0,0,0,0.15);
}

.scale-plate {
    position: absolute;
    width: 140px;
    text-align: center;
}

.left-plate { top: 0px; left: 0; }
.right-plate { top: 70px; right: 0; }

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

.plate-text {
    font-size: 0.9rem;
    font-weight: 800;
    color: #0D0D17;
    margin-bottom: 70px;
    padding: 0.8rem 1rem;
    background: #FFF;
    border-radius: 8px;
    box-shadow: var(--shadow-soft);
    position: relative;
    z-index: 15;
    line-height: 1.3;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.plate-icon-container {
    position: relative;
    width: 100px;
    height: 40px;
}

.plate-icon-container::before, .plate-icon-container::after {
    content: '';
    position: absolute;
    width: 2px;
    height: 80px;
    background: #CBD5E1;
    bottom: 30px;
}
.plate-icon-container::before { left: 10px; transform: rotate(-20deg); transform-origin: bottom left; }
.plate-icon-container::after { right: 10px; transform: rotate(20deg); transform-origin: bottom right; }

.plate-icon {
    font-size: 2.5rem;
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    filter: drop-shadow(0 5px 5px rgba(0,0,0,0.2));
}

.plate-base {
    width: 100px;
    height: 25px;
    background: linear-gradient(180deg, #E2E8F0, #CBD5E1);
    border-radius: 0 0 50px 50px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: inset 0 -3px 5px rgba(0,0,0,0.1), 0 5px 10px rgba(0,0,0,0.1);
}

.plate-base-highlight {
    width: 100px;
    height: 25px;
    background: linear-gradient(180deg, #2ECC71, #27AE60);
    border-radius: 0 0 50px 50px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: inset 0 -3px 5px rgba(0,0,0,0.2), 0 8px 15px rgba(46, 204, 113, 0.4);
}

.tag-highlight {
    background-color: var(--color-primary);
    color: white;
    padding: 0.2rem 0.8rem;
    border-radius: 20px;
}

/* Footer Adjustments */
.footer-text {
    color: #CBD5E1; /* High contrast light gray against dark background */
}

/* Perguntas Reflexão */
.emoji-3d {
    max-width: 150px;
    height: auto;
}

.question-box {
    font-weight: 600;
    font-size: 1.1rem;
    color: #0D0D17;
    box-shadow: var(--shadow-soft);
    border: 1px solid #EAEAEA;
    background: #FFF;
    border-radius: var(--border-radius-md);
    padding: 1.5rem;
}

.alert-red {
    background: #FEF2F2;
    color: #991B1B;
    padding: 1.5rem;
    border-radius: var(--border-radius-md);
    border: 1px solid #F87171;
}

/* User Bio */
.author-img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #38BDF8;
    box-shadow: var(--shadow-medium);
}
.author-bio p {
    margin-bottom: 1rem;
    color: var(--text-muted);
}
.author-bio strong {
    color: var(--text-main);
}

/* Garantia */
.garantia-img {
    width: 180px;
    height: auto;
}
.highlight-yellow { color: #F1C40F; }

/* FAQ */
.faq-accordion {
    text-align: left;
}
.faq-item {
    background: #FFF;
    border-radius: var(--border-radius-md);
    margin-bottom: 1rem;
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}
.faq-question {
    width: 100%;
    text-align: left;
    padding: 1.5rem;
    background: none;
    border: none;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.1rem;
    color: #0D0D17;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: #1A1A2E;
    font-size: 1rem;
}
.faq-answer.open {
    padding: 0 1.5rem 1.5rem 1.5rem;
    max-height: 300px;
}

/* Animations Trigger JS */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Adjustments */
@media(max-width: 767px) {
    .headline-main { font-size: 1.6rem; }
    .hidden-mobile { display: none; }
    .section-title { font-size: 1.5rem; }
    .headline-impact { font-size: 1.4rem; }
    .btn-primary, .btn-secondary { width: 100%; text-align: center; }
}
