:root {
    --verde-escuro: #0d3d28;
    --verde-medio: #1a5c3e;
    --dourado: #d4a017;
    --dourado-claro: #f0bf3a;
    --creme: #f8f4ee;
    --branco: #ffffff;
    --cinza-claro: #f0f0f0;
    --texto-escuro: #1a1a1a;
    --texto-claro: #ffffff;

    --font-serif: 'Playfair Display', serif;
    --font-sans: 'DM Sans', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    color: var(--texto-escuro);
    background-color: var(--creme);
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-serif);
    font-weight: 700;
    line-height: 1.2;
}

em,
i {
    font-style: italic;
    font-weight: normal;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.tag {
    display: inline-block;
    font-family: var(--font-sans);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
    font-weight: 600;
    position: relative;
    padding-left: 1rem;
}

.tag::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background-color: var(--dourado);
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    font-family: var(--font-sans);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-gold {
    background-color: var(--dourado);
    color: var(--verde-escuro);
    font-size: 1.1rem;
}

.btn-gold:hover {
    background-color: var(--dourado-claro);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 160, 23, 0.3);
}

.btn-large {
    padding: 1.5rem 3rem;
    font-size: 1.2rem;
}

.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* SEÇÃO 1 - NAV */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: var(--verde-medio);
    padding: 1rem 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(212, 160, 23, 0.3);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--branco);
}

.logo span {
    color: var(--dourado);
    font-style: italic;
    font-weight: normal;
}

/* SEÇÃO 2 - HERO */
.hero {
    background-color: var(--verde-escuro);
    color: var(--texto-claro);
    padding: 12rem 0 8rem;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-tag {
    display: inline-block;
    color: var(--dourado);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    border-left: 2px solid var(--dourado);
    padding-left: 12px;
    margin-bottom: 32px;
    font-family: var(--font-sans);
}

.hero-headline {
    font-size: clamp(2.4rem, 5vw, 4rem);
    line-height: 1.1;
    margin-bottom: 20px;
    font-family: var(--font-serif);
}

.hero-headline em {
    display: block;
    color: var(--dourado);
    font-style: italic;
}

.hero-sub {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.7;
    max-width: 580px;
    margin-bottom: 48px;
}

.hero-sub strong {
    color: rgba(255, 255, 255, 0.9);
}

.btn-hero-cta {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    font-weight: 700;
}

/* SEÇÃO 3 - VERDADE DURA */
.truth-section {
    background-color: var(--verde-medio);
    color: var(--texto-claro);
    padding: 8rem 0;
}

.truth-headline {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    line-height: 1.25;
    margin-bottom: 3rem;
    font-family: var(--font-serif);
    color: var(--texto-claro);
}

.truth-headline em {
    color: var(--dourado);
    font-style: italic;
}

.truth-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
    align-items: start;
}

.truth-col p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
}

.truth-col strong {
    color: var(--dourado-claro);
}

.truth-divider {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.12);
    margin: 2rem 0;
}

.identity-shift {
    background: rgba(0, 0, 0, 0.2);
    border-left: 3px solid var(--dourado);
    padding: 24px 28px;
    margin-top: 1.5rem;
}

.identity-shift p {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 0;
}

.identity-shift .arrow {
    color: var(--dourado);
    font-style: normal;
    font-size: 1.4rem;
    margin: 10px 0;
}

/* SEÇÃO 4 - DOR */
.pain-section {
    background-color: var(--creme);
    padding: 5rem 0;
}

.pain-section .tag {
    color: var(--verde-escuro);
}

.pain-section h2 {
    font-size: 3rem;
    color: var(--verde-escuro);
    margin-bottom: 4rem;
    text-align: center;
}

.pain-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.pain-card {
    background: var(--branco);
    border-top: 4px solid var(--verde-medio);
    padding: 3rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pain-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(13, 61, 40, 0.05);
}

.pain-card h3 {
    color: var(--verde-escuro);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-family: var(--font-sans);
}

.pain-card p {
    color: #555;
}

/* SEÇÃO 5 - MÓDULOS */
.modules-section {
    background-color: var(--verde-escuro);
    color: var(--texto-claro);
    padding: 5rem 0;
}

.modules-section .tag {
    color: var(--dourado);
}

.modules-header {
    text-align: center;
    margin-bottom: 5rem;
}

.modules-header h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.modules-header p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.8;
}

.module-card {
    border-top: 2px solid var(--dourado);
    padding: 3rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.module-card:last-child {
    border-bottom: none;
}

.module-tag {
    color: var(--dourado);
    font-family: var(--font-sans);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    display: block;
}

.module-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-family: var(--font-serif);
}

.module-desc {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    font-family: var(--font-sans);
}

.module-content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.module-list {
    list-style: none;
}

.module-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    opacity: 0.8;
}

.module-list li::before {
    content: "•";
    color: var(--dourado);
    position: absolute;
    left: 0;
}

.module-deliverable {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
}

.module-deliverable strong {
    display: block;
    color: var(--dourado);
    margin-bottom: 0.5rem;
}

.module-deliverable .transform {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.2rem;
    margin-top: 1rem;
    color: var(--branco);
}

/* SEÇÃO 6 - TRANSFORMAÇÃO */
.transformation-section {
    background-color: var(--cinza-claro);
    padding: 5rem 0;
}

.transformation-section .tag {
    color: var(--verde-escuro);
}

.transformation-header {
    text-align: center;
    margin-bottom: 4rem;
}

.transformation-header h2 {
    font-size: 3rem;
    color: var(--verde-escuro);
}

.transformation-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.trans-col {
    padding: 4rem;
}

.trans-before {
    background: var(--branco);
    border-top: 4px solid #aaa;
}

.trans-before h3 {
    color: #555;
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.trans-before ul li {
    color: #666;
    margin-bottom: 1rem;
    list-style: none;
    position: relative;
    padding-left: 1.5rem;
}

.trans-before ul li::before {
    content: "✕";
    position: absolute;
    left: 0;
    color: #999;
}

.trans-after {
    background: var(--verde-escuro);
    color: var(--branco);
    border-top: 4px solid var(--dourado);
}

.trans-after h3 {
    color: var(--dourado);
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.trans-after ul li {
    margin-bottom: 1rem;
    list-style: none;
    position: relative;
    padding-left: 1.5rem;
    opacity: 0.9;
}

.trans-after ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--dourado);
}

.trans-identity {
    margin-top: 3rem;
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.trans-after .trans-identity {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--dourado);
}

/* SEÇÃO 7 - MANTRAS */
.mantras-section {
    background-color: var(--verde-escuro);
    color: var(--branco);
    padding: 5rem 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mantras-section .tag {
    color: var(--dourado);
}

.mantras-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
}

.mantra {
    font-family: var(--font-serif);
    font-size: 3rem;
}

.mantra strong {
    color: var(--dourado);
    font-weight: normal;
    font-style: italic;
}

/* SEÇÃO 8 - CTA */
.cta-section {
    background: linear-gradient(135deg, var(--verde-escuro), var(--verde-medio));
    color: var(--branco);
    padding: 5rem 0;
    text-align: center;
}

.cta-section .tag {
    color: var(--dourado);
}

.cta-section h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.cta-section p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 3rem;
    opacity: 0.9;
}

.cta-price {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--dourado);
}

.cta-guarantee {
    margin-top: 2rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* SEÇÃO 9 - FRASE FINAL */
.final-quote {
    background-color: var(--dourado);
    color: var(--verde-escuro);
    padding: 4rem 0;
    text-align: center;
}

.final-quote h2 {
    font-size: 3rem;
    margin-bottom: 3rem;
    line-height: 1.4;
}

.final-quote .btn {
    background-color: var(--verde-escuro);
    color: var(--branco);
}

.final-quote .btn:hover {
    background-color: #111;
    color: var(--dourado);
}

/* SEÇÃO 10 - RODAPÉ */
footer {
    background-color: #082618;
    /* Verde mais escuro que a principal */
    color: rgba(255, 255, 255, 0.6);
    padding: 3rem 0;
    text-align: center;
    font-size: 0.9rem;
}

footer .logo {
    color: var(--branco);
    margin-bottom: 1rem;
}

footer .links {
    margin-top: 2rem;
}

footer .links a {
    margin: 0 1rem;
}

footer .links a:hover {
    color: var(--branco);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .hero {
        padding: 6rem 0 3rem;
    }

    .truth-section,
    .pain-section,
    .modules-section,
    .transformation-section,
    .mantras-section,
    .cta-section {
        padding: 4rem 0;
    }

    .final-quote {
        padding: 3rem 0;
    }

    .hero-headline {
        font-size: 2.5rem;
    }

    .truth-grid,
    .pain-grid,
    .transformation-grid,
    .module-content-grid {
        grid-template-columns: 1fr;
    }

    .truth-section h2,
    .pain-section h2,
    .modules-header h2,
    .cta-section h2,
    .final-quote h2 {
        font-size: 2.2rem;
    }

    .mantra {
        font-size: 2rem;
    }

    .trans-col {
        padding: 3rem 2rem;
    }

    .btn.btn-large {
        width: 100%;
        padding: 1rem;
    }
}