/* ========== RESET & BASE ========== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Wix Madefor Display', sans-serif;
    background-color: #0e0e0e;
    color: #e8e6e6;
    line-height: 1.6;
}

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

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

ul {
    list-style: none;
}

/* ========== UTILITIES ========== */
.container {
    max-width: 1060px;
    margin: 0 auto;
    padding: 0 24px;
}

.narrow {
    max-width: 740px;
}

.gold {
    color: #c4b487;
}

.center {
    text-align: center;
}

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

/* ========== BUTTONS ========== */
.btn {
    display: inline-block;
    padding: 16px 40px;
    border-radius: 6px;
    font-family: 'Wix Madefor Display', sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-gold {
    background: linear-gradient(135deg, #c4b487, #a89560);
    color: #0e0e0e;
    box-shadow: 0 4px 20px rgba(196, 180, 135, 0.25);
}

.btn-gold:hover {
    background: linear-gradient(135deg, #d4c89e, #b8a570);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(196, 180, 135, 0.35);
}

.btn-large {
    padding: 20px 52px;
    font-size: 15px;
}

/* ========== HERO ========== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-image: url('images/hero-bg.webp');
    background-size: cover;
    background-position: center center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(14, 14, 14, 0.55) 0%, rgba(14, 14, 14, 0.70) 100%);
}

.hero-inner {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 80px 24px;
    max-width: 800px;
}

.hero-eyebrow {
    font-family: 'Wix Madefor Display', sans-serif;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.25em;
    color: #c4b487;
    margin-bottom: 32px;
    text-transform: uppercase;
}

.hero-headline {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    font-size: clamp(32px, 5vw, 52px);
    line-height: 1.15;
    color: #fff;
    margin-bottom: 28px;
}

.hero-sub {
    font-family: 'Wix Madefor Display', sans-serif;
    font-weight: 400;
    font-size: 17px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.75);
    max-width: 620px;
    margin: 0 auto 40px;
}

/* ========== GENERIC SECTIONS ========== */
.section {
    padding: 100px 0;
}

.section-dark {
    background: #0e0e0e;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.15;
    color: #fff;
    margin-bottom: 32px;
}

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

/* ========== SECTION 2 — PROBLEMA ========== */
.lead {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 24px;
}

.lead.accent {
    color: #c4b487;
    font-weight: 600;
    font-size: 22px;
}

.pull-quote {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: clamp(22px, 3vw, 32px);
    line-height: 1.3;
    color: #c4b487;
    border-left: 3px solid #c4b487;
    padding: 20px 0 20px 28px;
    margin: 40px 0;
}

.body-text {
    font-size: 17px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

.body-text strong {
    color: #fff;
    font-weight: 600;
}

.body-text.highlight {
    font-size: 19px;
    font-weight: 600;
    color: #c4b487;
}

/* ========== SECTION 3 — THAÍS ========== */
.section-thais {
    background: #131313;
}

.thais-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 60px;
    align-items: center;
}

.thais-photo {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(196, 180, 135, 0.3);
}

.thais-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thais-text p {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 16px;
}

.thais-text p strong {
    color: #fff;
}

.thais-text p em {
    color: #c4b487;
}

.thais-text .signature {
    margin-top: 24px;
    font-size: 18px;
    color: #c4b487;
    line-height: 1.5;
}

/* ========== SECTION 4 — PROVA SOCIAL ========== */
.section-proof {
    background: #0e0e0e;
}

.proof-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin: 48px 0;
}

.proof-card {
    background: linear-gradient(145deg, #1a1a1a, #141414);
    border: 1px solid rgba(196, 180, 135, 0.2);
    border-radius: 14px;
    padding: 40px 32px;
    position: relative;
    overflow: hidden;
}

.proof-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #c4b487, transparent);
}

.proof-profile {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
}

.proof-photo {
    width: 110px;
    height: 110px;
    border-radius: 12px;
    object-fit: cover;
    border: 1px solid rgba(196, 180, 135, 0.3);
    flex-shrink: 0;
}

.proof-title {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.proof-badge {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.2em;
    color: #c4b487;
    background: rgba(196, 180, 135, 0.1);
    display: inline-block;
    padding: 4px 12px;
    border-radius: 4px;
    margin-bottom: 8px;
    align-self: flex-start;
}

.proof-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 0;
}

.proof-card p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 12px;
}

.proof-result {
    margin-top: 16px;
    color: #c4b487 !important;
    font-weight: 600;
}

.big-number {
    display: block;
    font-family: 'Wix Madefor Display', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: #c4b487;
    margin-top: 6px;
}

.proof-note {
    font-style: italic;
    color: rgba(255, 255, 255, 0.5) !important;
    font-size: 14px !important;
}

.proof-closing {
    text-align: center;
    font-size: 17px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

/* ========== SECTION 5 — O QUE É ========== */
.divider-line {
    width: 60px;
    height: 2px;
    background: #c4b487;
    margin: 40px auto;
}

.callout-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(24px, 3.5vw, 36px);
    text-align: center;
    color: #c4b487;
    line-height: 1.3;
    margin-bottom: 24px;
}

/* ========== SECTION 6 — 3 ESFERAS ========== */
.section-spheres {
    background: #131313;
}

.spheres-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 48px 0;
}

.sphere-card {
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    padding: 36px 28px;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.sphere-card:hover {
    border-color: rgba(196, 180, 135, 0.3);
    transform: translateY(-4px);
}

.sphere-featured {
    border-color: rgba(196, 180, 135, 0.4);
    background: linear-gradient(160deg, #1e1c17, #1a1a1a);
}

.sphere-number {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #c4b487, #a89560);
    color: #0e0e0e;
    font-weight: 800;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.sphere-card h3 {
    font-family: 'Wix Madefor Display', sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.12em;
    color: #c4b487;
    margin-bottom: 6px;
}

.sphere-subtitle {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 20px;
}

.sphere-card ul li {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.75);
    padding-left: 18px;
    position: relative;
    margin-bottom: 10px;
}

.sphere-card ul li::before {
    content: '·';
    position: absolute;
    left: 0;
    color: #c4b487;
    font-weight: 700;
}

.sphere-highlight {
    margin-top: 16px;
    font-size: 14px;
    font-weight: 600;
    color: #c4b487;
    font-style: italic;
}

.spheres-closing {
    text-align: center;
    font-size: 17px;
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
}

/* ========== SECTION 7 — IMPLEMENTAÇÃO ========== */
.section-implement {
    background: #0e0e0e;
}

.implement-badge {
    text-align: center;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.2em;
    color: #0e0e0e;
    background: linear-gradient(135deg, #c4b487, #a89560);
    display: inline-block;
    padding: 6px 18px;
    border-radius: 5px;
    margin-bottom: 24px;
    margin-left: 50%;
    transform: translateX(-50%);
}

.implement-list {
    max-width: 540px;
    margin: 36px auto;
}

.implement-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
}

.implement-icon {
    color: #c4b487;
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
}

/* ========== SECTION 8 — BÔNUS ========== */
.section-bonus {
    background: #131313;
}

.bonus-label {
    text-align: center;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.2em;
    color: #c4b487;
    margin-bottom: 12px;
}

.bonus-items {
    max-width: 480px;
    margin: 32px auto;
}

.bonus-item {
    text-align: center;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* ========== SECTION 9 — PREÇO ========== */
.section-price {
    background: #0e0e0e;
}

.price-compare {
    display: flex;
    align-items: center;
    gap: 24px;
    margin: 48px 0;
    justify-content: center;
}

.price-waste {
    flex: 1;
    background: #1a1a1a;
    border: 1px solid rgba(255, 50, 50, 0.15);
    border-radius: 12px;
    padding: 28px 24px;
    text-align: center;
}

.price-waste-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    margin-bottom: 8px;
}

.price-waste-val {
    font-size: 15px;
    color: rgba(255, 100, 100, 0.8);
    line-height: 1.5;
}

.price-waste-val strong {
    color: rgba(255, 100, 100, 1);
}

.price-arrow {
    font-size: 28px;
    color: #c4b487;
    flex-shrink: 0;
}

.price-invest {
    flex: 1;
    background: linear-gradient(160deg, #1e1c17, #1a1a1a);
    border: 1px solid rgba(196, 180, 135, 0.3);
    border-radius: 12px;
    padding: 28px 24px;
    text-align: center;
}

.price-invest-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #c4b487;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.price-main {
    font-family: 'Wix Madefor Display', sans-serif;
    font-size: 42px;
    font-weight: 800;
    color: #c4b487;
    margin-bottom: 8px;
}

.price-invest-note {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.5;
}

.section-price .btn {
    display: block;
    text-align: center;
    max-width: 480px;
    margin: 40px auto 0;
}

/* ========== SECTION 10 — CTA ========== */
.section-cta {
    background: #131313;
    text-align: center;
}

.section-cta .btn {
    margin-top: 32px;
}

/* ========== SECTION 11 — FECHAMENTO ========== */
.section-close {
    background: #0e0e0e;
    text-align: center;
    padding-bottom: 80px;
}

.close-text {
    font-size: 17px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.close-text.accent {
    color: #c4b487;
    font-weight: 500;
}

.close-bold {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(24px, 3vw, 36px);
    color: #fff;
    font-weight: 500;
    margin: 32px 0 24px;
}

.close-question {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    margin-bottom: 36px;
}

.section-close .btn {
    margin-top: 0;
}

/* ========== FOOTER ========== */
.footer {
    text-align: center;
    padding: 40px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    background: #0a0a0a;
}

.footer-brand {
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.1em;
    color: #c4b487;
    margin-bottom: 6px;
}

.footer-copy {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.35);
    letter-spacing: 0.05em;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 900px) {
    .spheres-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 90vh;
    }

    .section {
        padding: 64px 0;
    }

    .thais-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .thais-photo {
        max-width: 320px;
        margin: 0 auto;
    }

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

    .price-compare {
        flex-direction: column;
    }

    .price-arrow {
        transform: rotate(90deg);
    }

    .price-waste,
    .price-invest {
        width: 100%;
    }

    .btn-large {
        padding: 18px 32px;
        font-size: 13px;
    }
}