:root {
    --color-bg: #050505;
    --color-bg-light: #111111;
    --color-text: #ffffff;
    --color-text-muted: #dcdcdc;
    --color-gold: #D4AF37;
    --color-gold-light: #F9DF7B;
    --color-gold-dark: #b89729;
    --color-green-btn: #2B8206; /* Botão verde original caso queira, mas vou usar dourado para manter o padrão. Se preferir verde, é só alterar para var(--color-green-btn) no .cta-button */
    --font-main: 'Poppins', sans-serif;
    --transition-smooth: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

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

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.reveal-left {
    transform: translateX(-50px);
}

.reveal.reveal-right {
    transform: translateX(50px);
}

.reveal.reveal-top {
    transform: translateY(-50px);
}

.reveal.reveal-bottom {
    transform: translateY(50px);
}

.reveal.active {
    opacity: 1;
    transform: translate(0, 0) !important;
}

/* Navbar */
.navbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 40px 10%;
    z-index: 100;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

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

.logo-text {
    font-weight: 800;
    font-size: 32px;
    letter-spacing: -1px;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 12px;
    font-style: italic;
}

.logo-sub {
    font-weight: 400;
    font-size: 14px;
    letter-spacing: 4px;
    color: #fff;
    font-style: normal;
    padding-top: 4px;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 100px; /* Espaço para o menu */
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 40px;
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1400px;
    padding: 0 10%;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    max-width: 600px;
}

.headline {
    font-size: clamp(32px, 4vw, 54px);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.5px;
}

.headline .highlight {
    color: var(--color-gold); /* Usando dourado no lugar do vermelho do exemplo */
}

.description {
    font-size: clamp(16px, 1.5vw, 20px);
    color: var(--color-text-muted);
    font-weight: 300;
    line-height: 1.5;
    max-width: 90%;
}

.description strong {
    color: #fff;
    font-weight: 700;
}

/* CTA Button */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 40px;
    background-color: #2B8206;
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    letter-spacing: 0px;
    transition: var(--transition-smooth);
    border: none;
    box-shadow: 0 4px 15px rgba(43, 130, 6, 0.3);
    white-space: nowrap;
}

.cta-button:hover {
    background-color: #1e5c04;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(43, 130, 6, 0.5);
}

.cta-note {
    font-size: 13px;
    font-style: italic;
    color: var(--color-text-muted);
    margin-top: 12px;
    display: block;
}

/* Hero Image */
.hero-image {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    height: 100%;
    width: 100%;
    position: relative;
}

.hero-image img {
    max-width: 120%;
    height: auto;
    max-height: 95vh;
    object-fit: cover;
    object-position: bottom;
    /* Efeito de fade na parte de baixo da imagem para mesclar com o fundo escuro */
    -webkit-mask-image: linear-gradient(to top, transparent 0%, black 15%);
    mask-image: linear-gradient(to top, transparent 0%, black 15%);
    position: relative;
    right: -10%; /* Puxa a imagem mais para a direita conforme a referência */
}

/* Background Gradients (Simulando o efeito de luz focal) */
.bg-gradient {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    z-index: 1;
    pointer-events: none;
}

.bg-gradient-1 {
    top: 40%;
    left: 45%;
    width: 600px;
    height: 150px;
    background: rgba(212, 175, 55, 0.4);
    transform: translate(-50%, -50%) rotate(-25deg);
}

.bg-gradient-2 {
    bottom: 0%;
    right: 0%;
    width: 800px;
    height: 600px;
    background: rgba(212, 175, 55, 0.15);
}

/* Elemento de linhas no fundo (Simulando as linhas topográficas) */
.bg-lines {
    position: absolute;
    bottom: -10%;
    right: -10%;
    width: 80%;
    height: 60%;
    background-image: 
        repeating-radial-gradient(
            ellipse at bottom right,
            transparent,
            transparent 20px,
            rgba(212, 175, 55, 0.05) 20px,
            rgba(212, 175, 55, 0.05) 21px
        );
    z-index: 0;
    pointer-events: none;
    transform: rotate(-15deg);
}

/* Comparison Section */
.comparison-section {
    padding: 100px 10%;
    background-color: var(--color-bg);
    position: relative;
    z-index: 10;
}

.comparison-grid {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.comparison-card {
    background: #0d0d0d;
    border-radius: 12px;
    padding: 48px;
    flex: 1;
    min-width: 320px;
    max-width: 550px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.comparison-card.positive {
    background: #111111;
}

.card-header-icon {
    width: 48px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #333333;
    border-radius: 4px;
    align-self: flex-start;
}

.card-header-icon.bg-gold {
    background-color: var(--color-gold);
}

.comparison-title {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.3;
    color: #ffffff;
    letter-spacing: 0.5px;
}

.comparison-title .highlight {
    color: var(--color-gold);
}

.separator {
    border: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 8px 0;
}

.comparison-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 12px;
}

.comparison-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.icon-box {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 4px;
}

.icon-x {
    background-color: #554422; /* Um dourado escuro/marrom para manter o tema negativo */
}

.icon-check {
    background-color: var(--color-gold);
}

.comparison-list p {
    font-size: 16px;
    color: #b0b0b0;
    line-height: 1.6;
    font-weight: 300;
}

/* CTA Centered Section */
.cta-section {
    padding: 60px 10%;
    background-color: var(--color-bg);
    position: relative;
    z-index: 10;
}

.cta-section > .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

/* Marquee Section */
.marquee-section {
    width: 100%;
    background-color: #1a1a1a;
    padding: 24px 0;
    overflow: hidden;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.marquee-content {
    display: flex;
    white-space: nowrap;
    animation: marquee 24s linear infinite;
    gap: 40px;
    width: max-content;
}

.marquee-content span {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 4px;
    color: #444;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 40px;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Problems Intro Section */
.problems-intro {
    padding: 100px 10% 40px;
    background-color: var(--color-bg);
}

.sub-heading {
    font-size: 16px;
    letter-spacing: 6px;
    color: #666;
    margin-bottom: 24px;
    text-transform: uppercase;
    font-weight: 600;
}

.problems-title {
    font-size: clamp(32px, 4vw, 54px);
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
    letter-spacing: -0.5px;
}

.problems-title .highlight {
    color: var(--color-gold);
}

/* Problems Grid Section */
.problems-grid-section {
    padding: 20px 10% 100px;
    background-color: var(--color-bg);
}

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

.problem-card {
    background-color: #111111;
    border: 1px solid rgba(255, 255, 255, 0.03);
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: var(--transition-smooth);
}

.problem-card:hover {
    background-color: #161616;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border-color: rgba(212, 175, 55, 0.1);
}

.problem-icon {
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0) 70%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 32px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: inset 0 0 20px rgba(212, 175, 55, 0.1), 0 0 15px rgba(212, 175, 55, 0.05);
}

.problem-text {
    font-size: 19px;
    color: #ffffff;
    line-height: 1.6;
    font-weight: 500;
    letter-spacing: -0.3px;
}

.problem-text .highlight {
    color: var(--color-gold);
    font-weight: 700;
}

/* Solution Intro Section */
.solution-intro-section {
    padding: 0 10% 100px;
    background-color: var(--color-bg);
}

.solution-card {
    position: relative;
    background-color: #080808;
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    padding: 80px 40px;
    text-align: center;
    overflow: hidden;
    /* Efeito sutil de textura/noise via gradiente radial */
    background-image: radial-gradient(rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 4px 4px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.8);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.solution-glow {
    position: absolute;
    top: 50%;
    left: 40%;
    width: 600px;
    height: 300px;
    background: rgba(212, 175, 55, 0.25);
    filter: blur(100px);
    transform: translate(-50%, -50%) rotate(-35deg);
    z-index: 0;
    pointer-events: none;
}

.solution-title, .solution-desc, .solution-card .cta-button, .solution-card .cta-note {
    position: relative;
    z-index: 10;
}

.solution-title {
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 800;
    line-height: 1.3;
    color: #fff;
    letter-spacing: -0.5px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.solution-title .highlight {
    color: var(--color-gold);
}

.solution-desc {
    font-size: clamp(16px, 1.5vw, 18px);
    color: #ccc;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 40px;
    max-width: 800px;
}

/* Cycle Intro Section */
.cycle-intro-section {
    padding: 100px 10% 40px;
    background-color: #000; /* Fundo totalmente preto para contraste */
}

.cycle-title {
    font-size: clamp(32px, 4vw, 54px);
    font-weight: 800;
    line-height: 1.2;
    color: #fff;
    letter-spacing: -1px;
    text-transform: uppercase;
}

.cycle-title .highlight {
    color: var(--color-gold);
}

/* Objections Section */
.objections-section {
    padding: 20px 10% 100px;
    background-color: #000;
}

.objections-wrapper {
    background-color: transparent;
    padding: 0;
    box-shadow: none;
}

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

.objection-card {
    background-color: #111111;
    border-radius: 8px;
    padding: 40px 32px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border: 1px solid rgba(255, 255, 255, 0.03);
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: var(--transition-smooth);
}

.objection-card:hover {
    background-color: #161616;
    border-color: rgba(212, 175, 55, 0.15);
    box-shadow: 0 15px 35px rgba(0,0,0,0.6);
    transform: translateY(-3px);
}

.objection-title {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
    color: var(--color-gold); /* Trocado de vermelho para dourado */
    margin-bottom: 8px;
}

.objection-text {
    font-size: 15px;
    line-height: 1.6;
    color: #ccc;
    font-weight: 400;
}

/* Method Practice Section */
.method-practice-section {
    padding: 100px 10%;
    background-color: var(--color-bg);
}

.method-layout {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.method-middle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    gap: 40px;
}

.side-texts {
    display: flex;
    flex-direction: column;
    gap: 80px;
    flex: 1;
}

.left-texts {
    text-align: right;
}

.right-texts {
    text-align: left;
}

.method-text {
    max-width: 350px;
    margin: 0 auto;
}

.left-texts .method-text {
    margin-right: 0;
}

.right-texts .method-text {
    margin-left: 0;
}

.method-text p {
    font-size: 15px;
    color: #ccc;
    line-height: 1.6;
}

.method-text .highlight {
    color: var(--color-gold);
    font-weight: 700;
}

.diagram-center {
    flex-shrink: 0;
    width: 400px;
    height: 400px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hexagon-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.hex-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hex-node {
    position: absolute;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, rgba(0, 0, 0, 1) 80%);
    border: 2px solid rgba(212, 175, 55, 0.4);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3), inset 0 0 10px rgba(212, 175, 55, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.node-icon {
    font-size: 24px;
    filter: sepia(1) saturate(5) hue-rotate(10deg);
}

.node-top { top: 12.5%; left: 50%; }
.node-top-right { top: 31.25%; left: 82.5%; }
.node-bottom-right { top: 68.75%; left: 82.5%; }
.node-bottom { top: 87.5%; left: 50%; }
.node-bottom-left { top: 68.75%; left: 17.5%; }
.node-top-left { top: 31.25%; left: 17.5%; }

.hex-center-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Others Section */
.others-section {
    padding: 100px 10%;
    background-color: #050505; /* Fundo muito escuro */
}

.others-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.others-left {
    flex: 1;
}

.others-title {
    font-size: clamp(32px, 4vw, 54px);
    font-weight: 800;
    line-height: 1.2;
    color: #fff;
    letter-spacing: -1px;
}

.others-title .highlight {
    color: var(--color-gold); /* "OUTROS" em Dourado */
}

.others-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.bad-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.toggle-icon {
    width: 44px;
    height: 24px;
    background-color: #333;
    border-radius: 12px;
    position: relative;
    flex-shrink: 0;
    margin-top: 4px;
}

.toggle-knob {
    width: 18px;
    height: 18px;
    background-color: #fff;
    border-radius: 50%;
    position: absolute;
    top: 3px;
    left: 3px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.bad-item-text h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
}

.bad-item-text h4 .highlight {
    color: var(--color-gold); /* Títulos menores em Dourado */
}

.bad-item-text p {
    font-size: 15px;
    color: #ccc;
    font-weight: 400;
}

/* Author Section */
.author-section {
    padding: 60px 10% 100px;
    background-color: #000;
}

.author-card {
    position: relative;
    background-color: #080808;
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    padding: 60px;
    overflow: hidden;
    /* Efeito de noise/textura */
    background-image: radial-gradient(rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 4px 4px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.8);
}

.author-glow {
    position: absolute;
    top: 50%;
    left: 30%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    z-index: 0;
    pointer-events: none;
}

.author-content {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    position: relative;
    z-index: 10;
}

.author-image-col {
    flex: 0 0 35%;
    max-width: 400px;
}

.author-image-col img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    display: block;
}

.author-text-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.author-badges {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.badge-main {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.05);
    padding: 8px 16px 8px 8px;
    border-radius: 40px;
    border: 1px solid rgba(255,255,255,0.05);
}

.badge-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    overflow: hidden;
}

.badge-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.badge-info {
    display: flex;
    flex-direction: column;
}

.badge-info strong {
    font-size: 14px;
    color: #fff;
    line-height: 1;
}

.badge-info span {
    font-size: 10px;
    color: #888;
    margin-top: 4px;
    letter-spacing: 0.5px;
}

.badge-sub {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #fff;
    background: rgba(255, 255, 255, 0.03);
    padding: 10px 20px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.author-bio {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.author-bio p {
    font-size: 15px;
    line-height: 1.8;
    color: #ddd;
    font-weight: 300;
}

/* Footer */
.site-footer {
    background-color: #050505;
    padding: 60px 10%;
    border-top: 1px solid rgba(255,255,255,0.02);
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 30px;
}

.footer-logo h2 {
    font-size: 24px;
    color: #fff;
    font-weight: 800;
    letter-spacing: 2px;
}

.copyright {
    text-align: center;
    font-size: 11px;
    color: #555;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

/* Media Queries Adjustment */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 20px;
        padding: 0 5%;
    }
    
    .navbar {
        justify-content: center;
        padding: 30px 5%;
    }
    
    .hero-content {
        align-items: center;
        margin: 0 auto;
        padding-top: 60px;
        max-width: 100%;
    }
    
    .description {
        max-width: 100%;
    }
    .hero-image {
        justify-content: center;
    }
    
    .problems-grid, .objections-grid {
        grid-template-columns: 1fr;
    }
    
    .objections-wrapper {
        padding: 40px 20px;
    }

    .method-layout {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    .method-middle {
        display: contents;
    }
    
    .left-texts, .right-texts {
        text-align: center;
        display: flex;
        flex-direction: column;
        gap: 30px;
    }
    
    .diagram-center {
        order: 1;
        width: 300px;
        height: 300px;
        margin: 20px auto;
    }

    .top-text { order: 2; }
    .left-texts { order: 3; }
    .right-texts { order: 4; }
    .bottom-text { order: 5; }
    
    .method-text {
        text-align: center;
        margin: 0 auto !important;
    }

    .others-grid {
        flex-direction: column;
        gap: 40px;
    }
    
    .author-content {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .author-image-col {
        max-width: 260px;
        margin: 0 auto;
    }

    .badge-main {
        display: none;
    }

    .author-badges {
        justify-content: center;
        width: 100%;
    }
    
    .author-card {
        padding: 40px 20px;
    }
    .hero-image img {
        max-height: 70vh;
    }
    
    .bg-gradient-1 {
        top: 30%;
        left: 50%;
    }

    /* Otimizações de Espaçamento Mobile */
    .comparison-section,
    .others-section {
        padding: 60px 0;
    }

    .objections-section {
        padding: 40px 0;
    }

    .cta-section {
        padding: 30px 0;
    }

    .method-practice-section {
        padding: 45px 0 60px;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
    }

    .cycle-intro-section {
        padding: 40px 0 20px;
    }

    .problems-grid-section {
        padding: 20px 0 60px;
    }

    .solution-intro-section {
        padding: 0 0 60px;
    }

    .author-section {
        padding: 40px 0 60px;
    }

    .solution-card {
        padding: 60px 24px;
        border-radius: 12px;
    }

    .problem-card {
        padding: 40px 24px;
    }

    .comparison-card {
        padding: 32px 20px;
    }
}
