/* =========================================
   RESET
========================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #0a0a0a;
    color: #f5f1e8;
    font-family: 'Manrope', sans-serif;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

h1,
h2 {
    font-family: 'Fraunces', serif;
    color: #e8c766;
}

.container {
    width: min(1200px, calc(100% - 80px));
    margin: 0 auto;
}


/* =========================================
   HEADER
========================================= */

/* =========================================
   HEADER
========================================= */

.site-header {
    position: relative;
    z-index: 10;
    height: 90px;
    padding: 0;
}

.nav {
    position: relative;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* LOGO GRANDE SEM AUMENTAR O HEADER */

.logo {
    position: absolute;
    left: 0;
    top: 8px;
    z-index: 20;
    display: flex;
    align-items: flex-start;
}

.logo img {
    width: 300px;
    height: auto;
}

.logo img {
    width: 300px;
    height: auto;
}

/* Linha dourada sutil abaixo do header */
.site-header::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(232, 199, 102, 0.18) 20%,
        rgba(232, 199, 102, 0.45) 50%,
        rgba(232, 199, 102, 0.18) 80%,
        transparent 100%
    );
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 70px;
}

/* =========================================
   LOGO
========================================= */

.logo {
    position: relative;
    display: flex;
    align-items: center;
}

.logo img {
    width: 300px;
    height: auto;
}

/* =========================================
   NAVEGAÇÃO
========================================= */

.nav-links {
    display: flex;
    align-items: center;
    gap: 34px;
    list-style: none;
}

.nav-links li {
    position: relative;
}

.nav-links li:first-child::before {
    content: "";
    display: inline-block;
    width: 4px;
    height: 4px;
    margin-right: 12px;
    margin-bottom: 2px;
    border-radius: 50%;
    background: #c9a227;
}

.nav-links a {
    position: relative;
    color: rgba(245, 241, 232, 0.72);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #e8c766;
}

.nav-links a.active {
    color: #e8c766;
}

.nav-links a.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 100%;
    height: 1px;
    background: #e8c766;
}

/* =========================================
   HERO
========================================= */

.hero {
    position: relative;
    min-height: calc(100vh - 90px);
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 50px 0 100px;
}

.hero-glow {
    position: absolute;
    width: 700px;
    height: 700px;
    right: -250px;
    top: 50%;
    transform: translateY(-50%);
    background: radial-gradient(
        circle,
        rgba(232, 199, 102, 0.10) 0%,
        rgba(232, 199, 102, 0.04) 35%,
        transparent 70%
    );
    pointer-events: none;
}

.hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 20px;
}

.hero-text {
    max-width: 680px;
}

.hero-eyebrow {
    display: inline-block;
    margin-bottom: 22px;
    color: #c9a227;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
}

.hero h1 {
    max-width: 720px;
    font-size: clamp(3.2rem, 5vw, 5.2rem);
    line-height: 0.98;
    letter-spacing: -0.035em;
}

.hero h1 span {
    display: block;
}

.hero-subtitle {
    max-width: 580px;
    margin-top: 28px;
    color: rgba(245, 241, 232, 0.72);
    font-size: 1.12rem;
    line-height: 1.7;
}

.hero-action {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 13px;
    margin-top: 35px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 58px;
    padding: 0 32px;
    background: #c9a227;
    color: #0a0a0a;
    font-size: 0.92rem;
    font-weight: 700;
    transition:
        transform 0.3s ease,
        background 0.3s ease,
        box-shadow 0.3s ease;
}

.btn-primary:hover {
    background: #e8c766;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(201, 162, 39, 0.18);
}

.hero-note {
    color: rgba(245, 241, 232, 0.45);
    font-size: 0.72rem;
}

.hero-visual {
    position: relative;
    min-height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-circle {
    position: absolute;
    width: 600px;
    height: 600px;
    border: 1px solid rgba(232, 199, 102, 0.13);
    border-radius: 50%;
}

.hero-circle::before {
    content: "";
    position: absolute;
    inset: 45px;
    border: 1px solid rgba(232, 199, 102, 0.07);
    border-radius: 50%;
}

.hero-img {
    position: relative;
    z-index: 2;
    width: 700px;
    transform: translateY(15px);
    filter: drop-shadow(0 25px 35px rgba(0, 0, 0, 0.45));
}

.hero-scroll {
    position: absolute;
    z-index: 3;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(245, 241, 232, 0.32);
    font-size: 0.58rem;
    letter-spacing: 0.18em;
}

.scroll-line {
    width: 1px;
    height: 35px;
    background: linear-gradient(
        to bottom,
        rgba(232, 199, 102, 0.6),
        transparent
    );
}


/* =========================================
   PAIN
========================================= */

.pain {
    padding: 130px 0;
    text-align: center;
}

.pain h2 {
    max-width: 760px;
    margin: 0 auto;
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    line-height: 1.1;
}

.pain-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 55px;
}

.pain-card {
    min-height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    border: 1px solid rgba(232, 199, 102, 0.25);
    background: rgba(232, 199, 102, 0.015);
    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        background 0.3s ease;
}

.pain-card:hover {
    transform: translateY(-5px);
    border-color: rgba(232, 199, 102, 0.55);
    background: rgba(232, 199, 102, 0.035);
}

.pain-card p {
    color: rgba(245, 241, 232, 0.82);
    font-size: 1rem;
    line-height: 1.5;
}


/* =========================================
   PRODUCT
========================================= */

.product {
    padding: 130px 0;
}

.product-inner {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    align-items: center;
    gap: 80px;
}

.product-img {
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
}

.product-text h2 {
    font-size: clamp(2.3rem, 4vw, 3.6rem);
    line-height: 1.05;
}

.product-text > p {
    margin-top: 22px;
    color: rgba(245, 241, 232, 0.68);
    font-size: 1.05rem;
    line-height: 1.6;
}

.product-text .price {
    color: #e8c766;
    font-size: 2rem;
    font-weight: 700;
}

.feature-list {
    list-style: none;
    margin-top: 35px;
}

.feature-list li {
    padding: 20px 0;
    border-bottom: 1px solid rgba(232, 199, 102, 0.16);
    color: rgba(245, 241, 232, 0.78);
    font-size: 0.95rem;
    line-height: 1.6;
}


/* =========================================
   DEVICES
========================================= */

.devices {
    padding: 130px 0;
    text-align: center;
}

.devices h2 {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
}

.devices-img {
    width: min(900px, 100%);
    margin: 55px auto 35px;
}

.devices > .container > p {
    color: rgba(245, 241, 232, 0.72);
    font-size: 1rem;
}

.social-proof {
    margin-top: 12px;
    color: #c9a227 !important;
    font-size: 0.75rem !important;
}


/* =========================================
   FINAL CTA
========================================= */

.final-cta {
    position: relative;
    overflow: hidden;
    padding: 150px 0;
    text-align: center;
}

.final-cta::before {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(
        circle,
        rgba(232, 199, 102, 0.07),
        transparent 68%
    );
    pointer-events: none;
}

.final-cta .container {
    position: relative;
    z-index: 2;
}

.final-cta h2 {
    font-size: clamp(2.5rem, 5vw, 4.3rem);
}

.final-cta .price {
    margin: 25px 0 38px;
    color: #f5f1e8;
    font-size: 3rem;
}


/* =========================================
   REVEAL ANIMATIONS
========================================= */

.reveal {
    opacity: 0;
    transform: translateY(35px);
    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: 0.12s;
}

.reveal-delay-2 {
    transition-delay: 0.22s;
}

.reveal-delay-3 {
    transition-delay: 0.32s;
}

.reveal-delay-4 {
    transition-delay: 0.42s;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 900px) {

    .container {
        width: min(100% - 40px, 700px);
    }

    .hero {
        min-height: auto;
        padding: 60px 0 100px;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text {
        max-width: 100%;
    }

    .hero h1 {
        margin: 0 auto;
        font-size: clamp(2.8rem, 9vw, 4.2rem);
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-action {
        align-items: center;
    }

    .hero-visual {
        min-height: 480px;
    }

    .hero-circle {
        width: 380px;
        height: 380px;
    }

    .pain-grid {
        grid-template-columns: 1fr;
    }

    .product-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .product-img {
        max-width: 350px;
    }

    .feature-list {
        text-align: left;
    }
}


@media (max-width: 600px) {

    .container {
        width: min(100% - 30px, 500px);
    }

    .site-header {
        padding: 14px 0;
    }

    .logo img {
        width: 90px;
    }

    .nav-links {
        gap: 20px;
    }

    .nav-links a {
        font-size: 0.72rem;
    }

    .hero {
        padding-top: 40px;
    }

    .hero-eyebrow {
        font-size: 0.6rem;
    }

    .hero h1 {
        font-size: 2.7rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .hero-visual {
        min-height: 370px;
    }

    .hero-circle {
        width: 290px;
        height: 290px;
    }

    .hero-img {
        width: 350px;
    }

    .hero-scroll {
        display: none;
    }

    .pain,
    .product,
    .devices {
        padding: 90px 0;
    }

    .final-cta {
        padding: 100px 0;
    }

    .final-cta .price {
        font-size: 2.5rem;
    }

    .btn-primary {
        width: 100%;
        padding: 0 20px;
    }
}


/* =========================================
   REDUCE MOTION
========================================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .btn-primary,
    .pain-card {
        transition: none;
    }
}

/* =========================================
   SEÇÃO — O PROBLEMA
========================================= */

.pain {
    position: relative;
    padding: 160px 0 180px;
    overflow: hidden;
}

.pain-container {
    position: relative;
}


/* =========================================
   INTRO
========================================= */

.pain-intro {
    max-width: 850px;
    margin: 0 auto 140px;
    text-align: center;
}

.section-eyebrow {
    display: inline-block;
    margin-bottom: 24px;

    color: #c9a227;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
}

.pain-intro h2 {
    margin: 0;
    font-size: clamp(2.5rem, 5vw, 4.2rem);
    line-height: 1.08;
}

.pain-intro h2 span {
    display: block;
}

.pain-intro p {
    max-width: 650px;
    margin: 30px auto 0;

    color: rgba(245, 241, 232, 0.65);
    font-size: 1.1rem;
    line-height: 1.8;
}


/* =========================================
   STORIES
========================================= */

.pain-story {
    min-height: 520px;

    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;

    gap: 100px;

    margin-bottom: 180px;
}


/* =========================================
   TEXTO
========================================= */

.pain-story-text {
    max-width: 600px;
}

.pain-number {
    display: block;
    margin-bottom: 22px;

    color: #c9a227;
    font-family: 'Fraunces', serif;
    font-size: 1rem;
    letter-spacing: 0.08em;
}

.pain-story-text h3 {
    margin: 0 0 24px;

    color: #f5f1e8;
    font-family: 'Fraunces', serif;
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 500;
    line-height: 1.1;
}

.pain-story-text p {
    max-width: 520px;

    color: rgba(245, 241, 232, 0.68);
    font-size: 1.1rem;
    line-height: 1.8;
}


/* =========================================
   EVIDÊNCIA — BLOCO 01
========================================= */

.pain-evidence {
    position: relative;

    min-height: 360px;
    padding: 50px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    border: 1px solid rgba(232, 199, 102, 0.25);

    background:
        linear-gradient(
            145deg,
            rgba(232, 199, 102, 0.06),
            rgba(255, 255, 255, 0.015)
        );
}

.pain-evidence::before {
    content: "";

    position: absolute;
    top: -1px;
    left: 40px;

    width: 80px;
    height: 1px;

    background: #e8c766;
}

.evidence-label {
    color: #c9a227;

    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
}

.evidence-number {
    margin: 25px 0;

    color: #f5f1e8;

    font-family: 'Fraunces', serif;
    font-size: clamp(3rem, 6vw, 5rem);
}

.evidence-divider {
    width: 100%;
    height: 1px;

    margin-bottom: 25px;

    background: rgba(232, 199, 102, 0.15);
}

.pain-evidence p {
    max-width: 420px;

    color: rgba(245, 241, 232, 0.65);
    line-height: 1.7;
}

.pain-evidence small {
    margin-top: 25px;

    color: rgba(232, 199, 102, 0.55);
    font-size: 0.72rem;
}


/* =========================================
   ILUSTRAÇÃO — BLOCO 02
========================================= */

.pain-story-02 .pain-illustration {
    min-height: 420px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.money-flow {
    width: 100%;
    max-width: 430px;

    display: flex;
    flex-direction: column;
    align-items: center;
}

.flow-box {
    width: 220px;

    padding: 22px;

    border: 1px solid rgba(232, 199, 102, 0.4);

    text-align: center;

    color: #e8c766;

    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
}

.flow-line {
    width: 1px;
    height: 55px;

    background: linear-gradient(
        to bottom,
        #c9a227,
        rgba(201, 162, 39, 0.15)
    );
}

.flow-branches {
    width: 100%;

    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 15px;

    margin-top: 35px;
}

.flow-branches span {
    padding: 25px 15px;

    border: 1px solid rgba(245, 241, 232, 0.08);

    color: rgba(245, 241, 232, 0.55);

    text-align: center;

    font-size: 0.7rem;
    letter-spacing: 0.05em;
}


/* =========================================
   FONTE
========================================= */

.source-note {
    display: block;

    margin-top: 28px;

    color: rgba(232, 199, 102, 0.55);

    font-size: 0.72rem;
    line-height: 1.7;
}


/* =========================================
   FLUXO DE CAIXA — BLOCO 03
========================================= */

.cashflow-visual {
    padding: 40px;

    border: 1px solid rgba(232, 199, 102, 0.2);

    background: rgba(255, 255, 255, 0.015);
}

.cashflow-item {
    padding: 20px 0;

    border-bottom: 1px solid rgba(245, 241, 232, 0.08);
}

.cashflow-item span {
    display: block;

    margin-bottom: 8px;

    color: rgba(245, 241, 232, 0.4);

    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
}

.cashflow-item strong {
    color: #f5f1e8;

    font-family: 'Fraunces', serif;
    font-size: 2rem;
    font-weight: 500;
}

.cashflow-arrow {
    padding: 8px 0;

    color: rgba(232, 199, 102, 0.4);

    text-align: center;
}

.cashflow-warning strong {
    color: #e8c766;
}

.cashflow-result {
    margin-top: 25px;
    padding: 18px;

    border: 1px solid rgba(232, 199, 102, 0.35);

    color: #e8c766;

    text-align: center;

    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}


/* =========================================
   CONCLUSÃO
========================================= */

.pain-conclusion {
    max-width: 850px;

    margin: 40px auto 160px;

    text-align: center;
}

.pain-conclusion p {
    margin: 8px 0;

    color: rgba(245, 241, 232, 0.55);

    font-family: 'Fraunces', serif;
    font-size: clamp(1.7rem, 3vw, 2.6rem);
    line-height: 1.3;
}

.pain-conclusion p span {
    color: #f5f1e8;
}


/* =========================================
   TRANSIÇÃO PARA O PCF
========================================= */

.pain-transition {
    max-width: 900px;

    margin: 0 auto;

    text-align: center;
}

.pain-transition > span {
    display: inline-block;

    margin-bottom: 25px;

    color: #c9a227;

    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.16em;
}

.pain-transition h2 {
    margin: 0;

    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
}

.pain-transition p {
    margin-top: 30px;

    color: rgba(245, 241, 232, 0.6);

    font-size: 1.1rem;
}

.pain-transition strong {
    color: #e8c766;
}

.formula {
  text-align: center;
  font-family: 'Fraunces', serif;
  font-size: 1.6rem;
  color: #F5F1E8;
  line-height: 1.6;
  margin-bottom: 24px;
}

.formula strong {
  color: #E8C766;
}

.formula .op {
  color: #A8967A;
  font-weight: 400;
  margin: 0 4px;
}

.pain-transition {
  text-align: center;
  max-width: 700px;
  margin: 60px auto 0;
}

.pain-transition span {
  display: block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  color: #C9A227;
  margin-bottom: 20px;
}

.pain-transition h2 {
  margin-bottom: 16px;
}

.pain-transition p {
  color: #A8967A;
  font-size: 1.05rem;
}

/* =========================================
   ALINHAMENTO DA SEÇÃO PAIN-INTRO
========================================= */

.pain-intro {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
    padding: 60px 20px;
}

/* Formatação e alinhamento do Título (Número + Frase) */
.pain-intro h2 {
    text-align: center;
    font-family: 'Fraunces', serif; /* Mantém a sua fonte atual */
    color: #e8c766;
    font-size: clamp(2.2rem, 4.5vw, 3.8rem);
    line-height: 1.25;
    margin-bottom: 35px;
}

/* Força a segunda frase (94,9%) a ir para a linha de baixo perfeitamente centralizada */
.pain-intro h2 span {
    display: block;
    margin-top: 10px;
}

/* Parágrafo descritivo centralizado e com largura controlada */
.pain-intro p {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
    color: rgba(245, 241, 232, 0.75);
    font-size: 1rem;
    line-height: 1.7;
    white-space: pre-line; /* Mantém as quebras de linha manuais do seu HTML */
}

/* =========================================
   PRICING (CTA FINAL)
========================================= */

.pricing-subtitle {
    max-width: 560px;
    margin: 20px auto 0;
    color: rgba(245, 241, 232, 0.65);
    font-size: 1.05rem;
    line-height: 1.7;
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    max-width: 880px;
    margin: 60px auto 0;
    text-align: left;
}

.pricing-card {
    position: relative;
    padding: 48px 36px;
    border: 1px solid rgba(232, 199, 102, 0.22);
    background: rgba(255, 255, 255, 0.015);
    display: flex;
    flex-direction: column;
}

.pricing-card.premium {
    border-color: rgba(232, 199, 102, 0.6);
    background: linear-gradient(160deg, rgba(232, 199, 102, 0.08), rgba(255, 255, 255, 0.015));
}

.plan-badge {
    position: absolute;
    top: -13px;
    left: 36px;
    padding: 5px 14px;
    background: #e8c766;
    color: #0a0a0a;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.plan-name {
    color: #c9a227;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
}

.plan-price {
    margin: 18px 0 32px;
    font-family: 'Fraunces', serif;
    font-size: 2.4rem;
    color: #f5f1e8;
}

.plan-price span {
    display: block;
    margin-top: 4px;
    font-family: 'Manrope', sans-serif;
    font-size: 0.78rem;
    color: rgba(245, 241, 232, 0.45);
}

.plan-features {
    list-style: none;
    flex-grow: 1;
    margin-bottom: 32px;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(245, 241, 232, 0.08);
    font-size: 0.92rem;
}

.plan-features li.available {
    color: rgba(245, 241, 232, 0.9);
}

.plan-features li.unavailable {
    color: rgba(245, 241, 232, 0.35);
}

.icon-check {
    color: #6fbf73;
    font-weight: 700;
}

.icon-x {
    color: rgba(245, 241, 232, 0.3);
    font-weight: 700;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    border: 1px solid rgba(232, 199, 102, 0.4);
    color: #e8c766;
    font-size: 0.88rem;
    font-weight: 700;
    transition: border-color 0.3s ease, background 0.3s ease;
}

.btn-secondary:hover {
    border-color: #e8c766;
    background: rgba(232, 199, 102, 0.06);
}

@media (max-width: 760px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
}


