:root {
    /* Palette from inspiration files */
    --ink: #1c0d2e;
    --ink-soft: #3a1858;
    --paper: #f8f1e7;
    --cream: #efe3d0;
    --ember: #f47820;
    --ember-soft: #ff9d4d;
    --gold: #f5c34c;
    --plum: #5a2877;
    --violet: #2a0e44;
    --line: rgba(28, 13, 46, 0.12);

    /* Fonts */
    --display: 'Fraunces', 'Times New Roman', serif;
    --sans: 'Geist', ui-sans-serif, system-ui, sans-serif;
    --mono: 'Geist Mono', ui-monospace, monospace;

    /* Transitions */
    --ease: cubic-bezier(0.23, 1, 0.32, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--sans);
    color: var(--ink);
    background: var(--paper);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
    line-height: 1.6;
}

/* ---------- Atmospheric Background ---------- */
.atmosphere {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background:
        radial-gradient(800px 500px at 12% -8%, rgba(244, 120, 32, 0.10), transparent 60%),
        radial-gradient(700px 600px at 92% 18%, rgba(90, 40, 119, 0.08), transparent 60%),
        radial-gradient(900px 700px at 50% 110%, rgba(245, 195, 76, 0.08), transparent 60%);
}

.grain {
    position: fixed;
    inset: -2px;
    pointer-events: none;
    z-index: 1;
    opacity: 0.45;
    mix-blend-mode: multiply;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.11 0 0 0 0 0.05 0 0 0 0 0.18 0 0 0 0.18 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

main,
header,
footer,
section,
nav {
    position: relative;
    z-index: 2;
}

/* ---------- Typography ---------- */
h1,
h2,
h3 {
    font-family: var(--display);
    font-weight: 300;
    line-height: 1.1;
}

em {
    font-style: italic;
    color: var(--ember);
    font-weight: 400;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.container.small {
    max-width: 800px;
}

/* ---------- Navigation ---------- */
.nav-wrap {
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(16px) saturate(160%);
    -webkit-backdrop-filter: blur(16px) saturate(160%);
    background: rgba(248, 241, 231, 0.8);
    border-bottom: 1px solid var(--line);
    transition: all 0.4s var(--ease);
}

.nav-wrap.scrolled {
    padding: 4px 0;
    background: rgba(248, 241, 231, 0.95);
    box-shadow: 0 10px 30px -10px rgba(28, 13, 46, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 40px;
    max-width: 1360px;
    margin: 0 auto;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--ink);
}

.brand-logo {
    height: 40px;
    width: auto;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.brand-name {
    font-family: var(--display);
    font-weight: 800;
    font-size: 20px;
}

.brand-tag {
    font-family: var(--mono);
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    opacity: 0.6;
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--ink);
    font-size: 14px;
    font-weight: 500;
    opacity: 0.7;
    transition: opacity 0.3s var(--ease);
}

.nav-links a:hover {
    opacity: 1;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 101;
}

.mobile-menu-toggle span {
    display: block;
    width: 28px;
    height: 2px;
    background: var(--ink);
    transition: all 0.3s var(--ease);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    transform: scaleX(0);
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.nav-cta {
    background: var(--ink);
    color: var(--paper);
    padding: 10px 20px;
    border-radius: 999px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s var(--ease);
}

.nav-cta:hover {
    background: var(--ember);
    transform: translateY(-2px);
}

.nav-cta .dot {
    width: 6px;
    height: 6px;
    background: var(--ember);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--ember);
}

/* ---------- Hero ---------- */
.hero {
    padding: 80px 0 100px;
    overflow: hidden;
}

.hero .container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--mono);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--plum);
    padding: 8px 16px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.4);
    margin-bottom: 24px;
}

.hero-title {
    font-size: clamp(48px, 8vw, 92px);
    margin-bottom: 24px;
    color: var(--ink);
}

.accent-dot {
    display: inline-block;
    width: 0.15em;
    height: 0.15em;
    background: var(--ember);
    border-radius: 50%;
    margin-left: 4px;
    box-shadow: 0 0 20px var(--ember-soft);
}

.hero-description {
    font-size: 20px;
    color: var(--ink-soft);
    max-width: 500px;
    margin-bottom: 40px;
}

.hero-actions {
    display: flex;
    gap: 16px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s var(--ease);
    border: 1px solid transparent;
}

.btn-primary {
    background: var(--ember);
    color: var(--paper);
}

.btn-primary:hover {
    background: var(--ink);
    transform: translateY(-3px);
    box-shadow: 0 20px 40px -10px rgba(28, 13, 46, 0.3);
}

.btn-ghost {
    background: transparent;
    border-color: var(--line);
    color: var(--ink);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.5);
    border-color: var(--ink);
}

.btn.lg {
    padding: 20px 48px;
    font-size: 18px;
}

.hero-visual {
    position: relative;
}

.tent-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 100%;
}

.tent-glow {
    position: absolute;
    inset: 10%;
    background: radial-gradient(circle, var(--gold) 0%, transparent 70%);
    filter: blur(40px);
    opacity: 0.3;
    animation: pulse 6s infinite ease-in-out;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.2;
        transform: scale(1);
    }

    50% {
        opacity: 0.4;
        transform: scale(1.1);
    }
}

.tent-svg,
.tent-image {
    position: absolute;
    top: -40%;
    left: -40%;
    width: 180%;
    height: 180%;
    object-fit: contain;
    filter: drop-shadow(0 20px 50px rgba(28, 13, 46, 0.15));
}

.floating-elements {
    position: absolute;
    inset: 0;
}

.float-item {
    position: absolute;
    color: var(--gold);
    font-size: 24px;
    animation: float 8s infinite ease-in-out;
}

.float-item:nth-child(1) {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.float-item:nth-child(2) {
    top: 20%;
    right: 20%;
    animation-delay: 2s;
}

.float-item:nth-child(3) {
    bottom: 30%;
    left: 40%;
    animation-delay: 4s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
        opacity: 0.5;
    }

    50% {
        transform: translateY(-20px);
        opacity: 1;
    }
}

/* ---------- Marquee ---------- */
.marquee {
    background: var(--ink);
    color: var(--paper);
    padding: 24px 0;
    overflow: hidden;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.marquee-track {
    display: flex;
    white-space: nowrap;
    gap: 40px;
    animation: scroll 30s linear infinite;
}

.marquee-track span {
    display: flex;
    align-items: center;
    gap: 40px;
    font-family: var(--display);
    font-size: 24px;
    font-style: italic;
    opacity: 0.9;
}

.marquee-track .star {
    color: var(--ember);
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* ---------- Sections ---------- */
.section {
    padding: 80px 0;
}

.section.darker {
    background: var(--cream);
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-tag {
    font-family: var(--mono);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--plum);
    margin-bottom: 16px;
    display: block;
}

.section-title {
    font-size: clamp(32px, 5vw, 56px);
    margin-bottom: 24px;
}

.section-subtitle {
    font-size: 18px;
    opacity: 0.7;
    max-width: 600px;
    margin: 0 auto;
}

/* ---------- Método Grid ---------- */
.metodo-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    margin-top: 40px;
}

.metodo-card {
    background: rgba(255, 255, 255, 0.4);
    border: 1px solid var(--line);
    padding: 30px 20px;
    border-radius: 28px;
    transition: all 0.4s var(--ease);
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-height: 320px;
}

.metodo-card:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: translateY(-8px);
    box-shadow: 0 30px 60px -20px rgba(28, 13, 46, 0.1);
    border-color: var(--ember);
}

.metodo-icon {
    font-family: var(--display);
    font-size: 80px;
    line-height: 0.8;
    color: var(--ember);
    opacity: 0.2;
}

.metodo-label {
    font-family: var(--mono);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    opacity: 0.5;
    margin-bottom: 8px;
    display: block;
}

.metodo-card h3 {
    font-size: 28px;
    margin-bottom: 12px;
}

.metodo-card p {
    font-size: 15px;
    opacity: 0.8;
}

/* ---------- Jornada Timeline ---------- */
.jornada-timeline {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.jornada-timeline::before {
    content: "";
    position: absolute;
    left: 24px;
    top: 0;
    bottom: 0;
    width: 1px;
    background: var(--line);
    z-index: 0;
}

.jornada-item {
    display: flex;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.jornada-dot {
    width: 48px;
    height: 48px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--display);
    font-size: 20px;
    font-weight: 700;
    color: var(--ember);
    flex-shrink: 0;
    transition: all 0.4s var(--ease);
}

.jornada-item:hover .jornada-dot {
    background: var(--ember);
    color: var(--paper);
    border-color: var(--ember);
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(244, 120, 32, 0.3);
}

.jornada-step-label {
    display: block;
    font-family: var(--mono);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--ember);
    margin-bottom: 8px;
    font-weight: 600;
}

.jornada-content {
    background: rgba(255, 255, 255, 0.4);
    padding: 32px;
    border-radius: 24px;
    border: 1px solid var(--line);
    flex-grow: 1;
    transition: all 0.4s var(--ease);
}

.jornada-item:hover .jornada-content {
    background: white;
    transform: translateX(10px);
    box-shadow: 0 10px 30px -10px rgba(28, 13, 46, 0.1);
    border-color: var(--ember);
}

.jornada-content h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

.jornada-content p {
    font-size: 15.5px;
    opacity: 0.9;
    line-height: 1.75;
    text-align: justify;
    text-justify: inter-word;
    margin-bottom: 16px;
}

.jornada-deliverable {
    display: inline-block;
    padding: 6px 12px;
    background: var(--cream);
    color: var(--plum);
    border-radius: 8px;
    font-family: var(--mono);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

/* ---------- Entregáveis Grid ---------- */
.entregaveis-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.entregavel-card {
    padding: 28px 24px;
    background: white;
    border-radius: 28px;
    border: 1px solid var(--line);
    transition: all 0.4s var(--ease);
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.entregavel-card:hover {
    transform: translateY(-8px);
    border-color: var(--ember);
    box-shadow: 0 20px 40px -10px rgba(28, 13, 46, 0.1);
}

.entregavel-icon {
    color: var(--ember);
    background: var(--paper);
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s var(--ease);
}

.entregavel-card:hover .entregavel-icon {
    transform: scale(1.1) rotate(5deg);
    background: var(--ember);
    color: var(--paper);
}

.entregavel-card h3 {
    font-size: 22px;
}

.entregavel-card p {
    font-size: 15px;
    opacity: 0.7;
    line-height: 1.6;
}

@media (max-width: 992px) {
    .entregaveis-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .entregaveis-grid {
        grid-template-columns: 1fr;
    }

    .jornada-item {
        gap: 20px;
    }

    .jornada-timeline::before {
        left: 20px;
    }

    .jornada-dot {
        width: 40px;
        height: 40px;
    }
}

/* ---------- Guias & Video Column Grid ---------- */
.guias-video-section {
    background: var(--cream);
    padding: 140px 0;
}

.guias-video-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 48px;
    align-items: center;
    margin-top: 40px;
}

.video-column {
    width: 100%;
}

.mentores-column {
    width: 100%;
}

.mentores-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mentor-card-compact {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.45);
    border: 1px solid var(--line);
    padding: 24px;
    border-radius: 24px;
    transition: all 0.3s var(--ease);
}

.mentor-card-compact:hover {
    background: white;
    border-color: var(--ember);
    transform: translateX(4px);
    box-shadow: 0 10px 30px -10px rgba(28, 13, 46, 0.1);
}

.mentor-avatar {
    width: 52px;
    height: 52px;
    background: var(--ink);
    color: var(--paper);
    font-family: var(--display);
    font-weight: 700;
    font-size: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 2px solid var(--cream);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s var(--ease);
}

.mentor-card-compact:hover .mentor-avatar {
    background: var(--ember);
    color: var(--paper);
    transform: scale(1.05);
}

.mentor-info-compact h3 {
    font-size: 20px;
    font-family: var(--display);
    color: var(--ink);
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.mentor-role-compact {
    font-family: var(--mono);
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--ember);
    background: rgba(244, 120, 32, 0.15);
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 600;
}

.mentor-info-compact p {
    font-size: 14px;
    opacity: 0.8;
    line-height: 1.5;
}

/* ---------- Target Audience (Dentro de Realidade) ---------- */
.target-audience {
    margin-top: 60px;
    border-top: 1px solid var(--line);
    padding-top: 50px;
    text-align: center;
}

.target-audience h3 {
    font-family: var(--display);
    font-size: 28px;
    margin-bottom: 32px;
    color: var(--ink);
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    text-align: left;
}

.audience-chip {
    background: rgba(255, 255, 255, 0.45);
    border: 1px solid var(--line);
    padding: 20px 24px;
    border-radius: 20px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    transition: all 0.3s var(--ease);
}

.audience-chip:hover {
    background: white;
    border-color: var(--ember);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -5px rgba(28, 13, 46, 0.05);
}

.chip-star {
    color: var(--ember);
    font-size: 16px;
    line-height: 1.2;
}

.chip-text {
    font-size: 15px;
    opacity: 0.9;
    line-height: 1.5;
    color: var(--ink-soft);
}

.chip-text strong {
    color: var(--ink);
    font-weight: 600;
}

/* ---------- About Grid ---------- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-content p,
.persuasive-paragraph {
    font-size: 16px;
    line-height: 1.8;
    color: var(--ink-soft);
    text-align: justify;
    text-justify: inter-word;
    margin-bottom: 20px;
}

.check-list {
    list-style: none;
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.check-list li {
    display: flex;
    gap: 16px;
    font-size: 17px;
}

.check-list li::before {
    content: "✦";
    color: var(--ember);
    flex-shrink: 0;
}

.about-card {
    position: relative;
    padding: 60px;
    background: var(--ink);
    border-radius: 40px;
    color: var(--paper);
    overflow: hidden;
}

.about-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 100% 0%, var(--ember) 0%, transparent 60%);
    opacity: 0.2;
}

.quote-icon {
    font-family: var(--display);
    font-size: 120px;
    line-height: 1;
    color: var(--ember);
    opacity: 0.3;
    margin-bottom: -40px;
}

.quote-text {
    font-family: var(--display);
    font-style: italic;
    font-size: 28px;
    line-height: 1.3;
    position: relative;
    margin-bottom: 24px;
}

cite {
    font-family: var(--mono);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    opacity: 0.6;
    font-style: normal;
}/* ---------- CTA Box (SaaS Dashboard & Pricing) ---------- */
.cta-box {
    background: linear-gradient(135deg, var(--ink) 0%, var(--plum) 100%);
    border-radius: 40px;
    padding: 80px 60px;
    color: var(--paper);
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 60px;
    align-items: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 50px 100px -30px rgba(28, 13, 46, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.cta-box::after {
    content: "";
    position: absolute;
    bottom: -150px;
    right: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(244, 120, 32, 0.25) 0%, transparent 70%);
    opacity: 0.8;
    pointer-events: none;
    z-index: 1;
}

.cta-box::before {
    content: "";
    position: absolute;
    top: -150px;
    left: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(90, 40, 119, 0.4) 0%, transparent 70%);
    opacity: 0.8;
    pointer-events: none;
    z-index: 1;
}

/* Coluna de Proposta de Valor */
.cta-value-column {
    position: relative;
    z-index: 2;
}

.cta-badge {
    display: inline-block;
    font-family: var(--mono);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--ember);
    background: rgba(244, 120, 32, 0.15);
    padding: 4px 12px;
    border-radius: 99px;
    margin-bottom: 24px;
    border: 1px solid rgba(244, 120, 32, 0.25);
}

.cta-title {
    font-size: clamp(32px, 4.5vw, 48px);
    margin-bottom: 20px;
    color: var(--paper);
    line-height: 1.15;
}

.cta-text {
    font-size: 17px;
    opacity: 0.85;
    margin-bottom: 36px;
    line-height: 1.6;
}

.cta-features-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cta-features-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 15.5px;
    opacity: 0.95;
    color: var(--paper);
}

.check-icon {
    color: var(--ember-soft);
    background: rgba(244, 120, 32, 0.15);
    border-radius: 50%;
    padding: 3px;
    flex-shrink: 0;
    box-shadow: 0 0 10px rgba(244, 120, 32, 0.2);
}

/* Coluna do Card de Preço */
.cta-pricing-column {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 32px;
    padding: 48px 40px;
    width: 100%;
    max-width: 380px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
    text-align: center;
    transition: all 0.4s var(--ease);
}

.pricing-card:hover {
    transform: translateY(-8px);
    border-color: rgba(244, 120, 32, 0.4);
    box-shadow: 0 40px 80px rgba(244, 120, 32, 0.1);
}

.pricing-card-tag {
    display: inline-block;
    font-family: var(--mono);
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--paper);
    background: rgba(255, 255, 255, 0.08);
    padding: 4px 12px;
    border-radius: 99px;
    margin-bottom: 24px;
}

.price-stack {
    margin-bottom: 32px;
}

.price-from {
    font-size: 13px;
    opacity: 0.55;
    text-decoration: line-through;
    display: block;
}

.price-main {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 6px;
    margin: 8px 0;
    white-space: nowrap;
}

.price-main .currency {
    font-size: 20px;
    font-weight: 600;
    color: var(--ember-soft);
}

.price-main .amount {
    font-family: var(--display);
    font-size: 68px;
    line-height: 0.95;
    color: var(--paper);
    text-shadow: 0 0 30px rgba(244, 120, 32, 0.15);
}

.price-info {
    font-family: var(--mono);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.75;
    color: var(--paper);
}

.btn-checkout {
    width: 100%;
    box-shadow: 0 15px 30px -5px rgba(244, 120, 32, 0.3);
    margin-bottom: 24px;
}

.btn-checkout:hover {
    box-shadow: 0 20px 40px -5px rgba(244, 120, 32, 0.5);
}

.pricing-security {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 20px;
}

.security-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12.5px;
    opacity: 0.65;
    color: var(--paper);
}

.security-item svg {
    flex-shrink: 0;
    color: var(--ember-soft);
}

/* ---------- Video Section (Modo Cinema) ---------- */
.video-section {
    background: var(--ink);
    color: var(--paper);
    padding: 80px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.video-section .section-title {
    color: var(--paper);
}

.video-section .section-subtitle {
    color: var(--paper);
    opacity: 0.85;
}

.video-section .section-tag {
    color: var(--ember-soft);
}

/* ---------- Video Container Styles ---------- */

.video-container {
    position: relative;
    max-width: 1080px;
    margin: 0 auto;
    border-radius: 32px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.4);
    border: 1px solid var(--line);
    box-shadow: 0 40px 100px -30px rgba(28, 13, 46, 0.15);
    transition: all 0.4s var(--ease);
}

.video-container:hover {
    transform: translateY(-6px);
    border-color: var(--ember);
    box-shadow: 0 50px 120px -30px rgba(28, 13, 46, 0.25);
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    border-radius: 24px;
    overflow: hidden;
    background: var(--ink);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    z-index: 3;
}

/* YouTube Facade Premium Styles */
.video-wrapper.facade {
    cursor: pointer;
}

.facade-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s var(--ease);
    z-index: 0;
}

.video-wrapper.facade:hover .facade-thumbnail {
    transform: scale(1.04);
}

.facade-overlay {
    position: absolute;
    inset: 0;
    background: rgba(28, 13, 46, 0.40);
    backdrop-filter: blur(1px);
    -webkit-backdrop-filter: blur(1px);
    transition: all 0.4s var(--ease);
    z-index: 1;
}

.video-wrapper.facade:hover .facade-overlay {
    background: rgba(28, 13, 46, 0.25);
    backdrop-filter: blur(0px);
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: var(--paper);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    cursor: pointer;
    transition: all 0.4s var(--ease);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), inset 0 0 0 1px rgba(255, 255, 255, 0.25);
    animation: playPulse 2.5s infinite var(--ease);
}

.video-play-btn svg {
    margin-left: 4px; /* Visually centers the play triangle */
    transition: transform 0.4s var(--ease);
}

.video-wrapper.facade:hover .video-play-btn {
    background: var(--ember);
    color: var(--paper);
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 20px 40px rgba(244, 120, 32, 0.4);
    animation: none;
}

.video-wrapper.facade:hover .video-play-btn svg {
    transform: scale(1.1);
}

@keyframes playPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(244, 120, 32, 0.6), inset 0 0 0 1px rgba(255, 255, 255, 0.25);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(244, 120, 32, 0), inset 0 0 0 1px rgba(255, 255, 255, 0.25);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(244, 120, 32, 0), inset 0 0 0 1px rgba(255, 255, 255, 0.25);
    }
}

/* Picture Element Layout Compatibility */
picture {
    display: contents;
}

.video-glow {
    position: absolute;
    inset: -10px;
    background: radial-gradient(circle, var(--ember) 0%, var(--plum) 50%, transparent 70%);
    filter: blur(40px);
    opacity: 0.15;
    z-index: -1;
    pointer-events: none;
    transition: all 0.4s var(--ease);
}

.video-container:hover .video-glow {
    opacity: 0.3;
    transform: scale(1.05);
}
@media (max-width: 768px) {
    .video-container {
        border-radius: 24px;
        padding: 6px;
    }
    
    .video-wrapper {
        border-radius: 18px;
    }
}

/* ---------- FAQ ---------- */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    border: 1px solid var(--line);
    border-radius: 20px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.3);
    transition: all 0.3s var(--ease);
}

.faq-question {
    width: 100%;
    padding: 24px 32px;
    background: transparent;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    font-family: var(--display);
    font-size: 20px;
    color: var(--ink);
}

.faq-icon {
    font-size: 24px;
    transition: transform 0.4s var(--ease);
}

.faq-answer {
    padding: 0 32px 24px;
    display: none;
    opacity: 0.8;
}

.faq-item.active {
    background: white;
    border-color: var(--ember);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-item.active .faq-answer {
    display: block;
}

/* ---------- Footer ---------- */
.footer {
    background: var(--ink);
    color: var(--paper);
    padding: 100px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 80px;
    margin-bottom: 80px;
}

.footer h5 {
    font-family: var(--mono);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 12px;
    opacity: 0.5;
    margin-bottom: 24px;
}

.footer ul {
    list-style: none;
}

.footer ul li {
    margin-bottom: 12px;
}

.footer ul a {
    color: var(--paper);
    text-decoration: none;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.footer ul a:hover {
    opacity: 1;
    color: var(--ember);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
    opacity: 0.6;
}

.verse {
    font-family: var(--display);
    font-style: italic;
}

/* ---------- Animations ---------- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
}

/* ---------- Responsive ---------- */
@media (max-width: 1200px) {
    .metodo-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .hero-title {
        font-size: clamp(42px, 7vw, 72px);
    }
}

@media (max-width: 992px) {
    .hero .container {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0;
    }

    .hero-content {
        display: contents;
    }

    .hero-badge {
        order: 1;
        margin-bottom: 16px;
    }

    .hero-title {
        order: 2;
        margin-bottom: 24px;
    }

    .hero-visual {
        order: 3;
        width: 100%;
        max-width: 400px;
        margin: 0 auto 32px;
    }

    .hero-description {
        order: 4;
        margin-bottom: 32px;
        max-width: 500px;
    }

    .hero-actions {
        order: 5;
        justify-content: center;
        width: 100%;
    }

    .tent-image {
        width: 120%;
        height: 120%;
        top: -10%;
        left: -10%;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--paper);
        flex-direction: column;
        padding: 40px;
        gap: 24px;
        border-bottom: 1px solid var(--line);
        text-align: center;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        font-size: 18px;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .about-content {
        order: 1;
    }

    .about-card {
        order: 2;
    }

    .cta-box {
        grid-template-columns: 1fr;
        padding: 50px 30px;
        gap: 40px;
    }
    
    .cta-value-column {
        text-align: left;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .cta-features-list {
        align-items: flex-start;
    }

    .cta-title {
        font-size: 32px;
    }

    .pricing-card {
        padding: 36px 24px;
        margin: 0 auto;
    }

    .guias-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 50px 0;
    }

    .container {
        padding: 0 24px;
    }

    .section-header {
        margin-bottom: 32px;
    }

    .persuasive-paragraph,
    .about-content p {
        text-align: left;
    }

    .about-card {
        padding: 30px 20px;
        border-radius: 24px;
    }

    .jornada-content {
        padding: 20px;
        border-radius: 16px;
    }

    .jornada-item:hover .jornada-content {
        transform: none;
    }

    .metodo-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .audience-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .hero-title {
        font-size: 48px;
    }

    .hero-visual {
        order: 3;
        width: 100%;
        max-width: 300px;
        margin: 0 auto 32px;
    }

    .tent-image {
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
    }

    .nav-container {
        padding: 12px 20px;
    }

    .nav-cta {
        display: none;
    }

    .price-main .amount {
        font-size: 48px;
    }
}

@media (max-width: 480px) {
    .metodo-grid {
        grid-template-columns: 1fr;
    }

    .hero-actions {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .container {
        padding: 0 16px;
    }

    .about-card {
        padding: 24px 16px;
        border-radius: 20px;
    }

    .cta-box {
        padding: 40px 20px;
    }

    .jornada-content {
        padding: 16px;
    }
}

/* ==========================================================================
   ELEMENTOS DE CONVERSÃO — BANNER, PROVA SOCIAL E ACESSO IMEDIATO
   ========================================================================== */

/* ---------- Urgency Top Banner ---------- */
.urgency-banner {
    background: linear-gradient(90deg, var(--ink) 0%, var(--plum) 50%, var(--ink) 100%);
    border-bottom: 1px solid rgba(244, 120, 32, 0.3);
    color: var(--paper);
    padding: 12px 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    position: relative;
    z-index: 150;
    text-align: center;
    flex-wrap: wrap;
    font-size: 13.5px;
}

.banner-content {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
}

.banner-badge {
    background: var(--ember);
    color: var(--paper);
    font-family: var(--mono);
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    padding: 3px 8px;
    border-radius: 4px;
    box-shadow: 0 0 10px rgba(244, 120, 32, 0.4);
}

.banner-text {
    opacity: 0.95;
}

.banner-text strong {
    color: var(--gold);
    font-weight: 600;
}

.banner-link {
    color: var(--ember-soft);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s var(--ease);
    border-bottom: 1px solid transparent;
}

.banner-link:hover {
    color: var(--gold);
    border-bottom-color: var(--gold);
}

.banner-close {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: var(--paper);
    font-size: 24px;
    cursor: pointer;
    line-height: 1;
    opacity: 0.6;
    transition: opacity 0.3s var(--ease);
    padding: 4px;
}

.banner-close:hover {
    opacity: 1;
}

/* ---------- Testimonials Section ---------- */
.testimonials-section {
    background: var(--cream);
    padding: 100px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    position: relative;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 48px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--line);
    border-radius: 28px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 28px;
    transition: all 0.4s var(--ease);
}

.testimonial-card:hover {
    background: white;
    transform: translateY(-8px);
    border-color: var(--ember);
    box-shadow: 0 30px 60px -20px rgba(28, 13, 46, 0.08);
}

.stars {
    color: var(--gold);
    font-size: 15px;
    letter-spacing: 2px;
}

.testimonial-quote {
    font-size: 15px;
    line-height: 1.7;
    color: var(--ink-soft);
    font-style: italic;
    flex-grow: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
    border-top: 1px solid var(--line);
    padding-top: 24px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--display);
    font-weight: 700;
    font-size: 16px;
    color: var(--paper);
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.avatar-purple {
    background: linear-gradient(135deg, var(--plum) 0%, var(--violet) 100%);
}

.avatar-orange {
    background: linear-gradient(135deg, var(--ember) 0%, var(--plum) 100%);
}

.avatar-gold {
    background: linear-gradient(135deg, var(--gold) 0%, var(--ember) 100%);
    color: var(--ink);
}

.author-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.author-info strong {
    font-size: 15px;
    color: var(--ink);
    font-weight: 600;
}

.author-info span {
    font-family: var(--mono);
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--ember);
    font-weight: 600;
}

/* ---------- Immediate Access Highlight ---------- */
.immediate-access-highlight {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: rgba(245, 195, 76, 0.08);
    border: 1px solid rgba(245, 195, 76, 0.2);
    padding: 12px 16px;
    border-radius: 16px;
    margin-bottom: 24px;
    font-size: 12px;
    color: var(--paper);
    letter-spacing: 0.05em;
    animation: subtlePulse 3s infinite ease-in-out;
}

.immediate-access-highlight strong {
    color: var(--gold);
    font-weight: 700;
}

.flash-icon {
    animation: lightningStrike 2s infinite ease-in-out;
}

.delivery-guarantee {
    font-size: 11.5px;
    opacity: 0.55;
    line-height: 1.5;
    margin-top: -12px;
    margin-bottom: 24px;
    color: var(--paper);
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
}

@keyframes lightningStrike {
    0%, 100% { opacity: 0.8; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.15); }
}

@keyframes subtlePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(245, 195, 76, 0); }
    50% { box-shadow: 0 0 15px 0 rgba(245, 195, 76, 0.15); border-color: rgba(245, 195, 76, 0.4); }
}

/* ---------- Responsive Adjustments ---------- */
@media (max-width: 992px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .urgency-banner {
        padding: 12px 32px 12px 20px;
        font-size: 12.5px;
    }
    
    .banner-close {
        right: 8px;
    }
    
    .testimonials-section {
        padding: 60px 0;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 32px;
    }
    
    .testimonial-card {
        padding: 30px 24px;
        border-radius: 20px;
    }
}

/* ==========================================================================
   PÁGINA DE INSCRIÇÕES ENCERRADAS (WHASTAPP WAITLIST)
   ========================================================================== */

.encerradas-body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

.encerradas-wrapper {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 20px;
    z-index: 10;
    width: 100%;
}

.encerradas-card {
    background: linear-gradient(135deg, var(--ink) 0%, var(--plum) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 36px;
    padding: 56px 48px;
    width: 100%;
    max-width: 520px;
    text-align: center;
    box-shadow: 0 50px 100px -30px rgba(28, 13, 46, 0.5);
    color: var(--paper);
    position: relative;
    overflow: hidden;
}

.encerradas-card::after {
    content: "";
    position: absolute;
    bottom: -150px;
    right: -150px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(244, 120, 32, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.encerradas-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
}

.brand-logo-img {
    height: 52px;
    width: auto;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.2));
}

.encerradas-brand-name {
    font-family: var(--mono);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--gold);
    font-weight: 600;
}

.closed-icon-wrap {
    color: var(--ember);
    background: rgba(244, 120, 32, 0.1);
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    border: 1px solid rgba(244, 120, 32, 0.2);
}

.closed-icon {
    stroke-width: 1.5;
}

.encerradas-title {
    font-size: clamp(32px, 5vw, 44px);
    margin-bottom: 16px;
    color: var(--paper);
    line-height: 1.15;
}

.encerradas-description {
    font-size: 15px;
    line-height: 1.7;
    color: var(--paper);
    opacity: 0.8;
    margin-bottom: 24px;
}

.encerradas-callout {
    font-size: 13.5px;
    font-family: var(--sans);
    color: var(--gold);
    margin-bottom: 32px;
    font-weight: 600;
    line-height: 1.5;
    background: rgba(245, 195, 76, 0.08);
    border: 1px solid rgba(245, 195, 76, 0.15);
    padding: 12px 18px;
    border-radius: 16px;
}

.btn-whatsapp {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    padding: 18px 32px;
    border-radius: 999px;
    background: #25d366;
    color: #ffffff !important;
    font-weight: 700;
    font-size: 16px;
    box-shadow: 0 15px 35px -5px rgba(37, 211, 102, 0.3);
    border: none;
    transition: all 0.3s var(--ease);
    text-decoration: none;
}

.btn-whatsapp:hover {
    background: #1ebd59;
    transform: translateY(-3px);
    box-shadow: 0 20px 45px -5px rgba(37, 211, 102, 0.5);
}

.whatsapp-icon {
    flex-shrink: 0;
}

.encerradas-footer {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 24px;
}

.encerradas-back {
    color: var(--paper);
    opacity: 0.6;
    font-size: 13px;
    text-decoration: none;
    transition: all 0.3s var(--ease);
}

.encerradas-back:hover {
    opacity: 1;
    color: var(--gold);
}

.encerradas-footer .verse {
    font-size: 11px;
    opacity: 0.4;
}

@media (max-width: 480px) {
    .encerradas-card {
        padding: 40px 24px;
        border-radius: 28px;
    }
    
    .encerradas-wrapper {
        padding: 40px 16px;
    }
    
    .btn-whatsapp {
        padding: 16px 24px;
        font-size: 15px;
    }
}