:root {
    --navy: #0A1628;
    --blue: #0D2B5E;
    --yellow: #F5C518;
    --gold: #E8A800;
    --white: #F0F4FF;
    --gray: #8A9BB8;
    --light-blue: #1A3A6E;
}

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

body {
    background: var(--navy);
    color: var(--white);
    font-family: 'Barlow', sans-serif;
    overflow-x: hidden;
}

/* ── HERO ── */
.hero {
    min-height: 100vh;
    background:
        radial-gradient(ellipse 80% 60% at 70% 50%, rgba(13, 43, 94, 0.9) 0%, transparent 70%),
        radial-gradient(ellipse 50% 50% at 10% 80%, rgba(245, 197, 24, 0.12) 0%, transparent 60%),
        linear-gradient(135deg, var(--navy) 0%, #071020 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 8vw;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    border: 1px solid rgba(245, 197, 24, 0.08);
    animation: pulse 6s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    border: 1px solid rgba(245, 197, 24, 0.15);
    animation: pulse 6s ease-in-out infinite 1s;
}

@keyframes pulse {

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

    50% {
        transform: scale(1.05);
        opacity: 0.6;
    }
}

.sun-rays {
    position: absolute;
    top: 40px;
    right: 8vw;
    width: 200px;
    height: 200px;
    opacity: 0.06;
}

.sun-rays::before {
    content: '☀';
    font-size: 200px;
    color: var(--yellow);
    animation: spin 20s linear infinite;
    display: block;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.tag {
    display: inline-block;
    background: rgba(245, 197, 24, 0.15);
    border: 1px solid rgba(245, 197, 24, 0.4);
    color: var(--yellow);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 2px;
    margin-bottom: 24px;
    animation: fadeUp 0.8s ease both;
}

.hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(52px, 8vw, 110px);
    line-height: 0.9;
    color: var(--white);
    margin-bottom: 8px;
    animation: fadeUp 0.8s ease 0.1s both;
}

.hero-title span {
    color: var(--yellow);
}

.hero-subtitle {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(18px, 3vw, 32px);
    font-weight: 400;
    color: var(--gray);
    letter-spacing: 1px;
    margin-bottom: 48px;
    animation: fadeUp 0.8s ease 0.2s both;
}

.hero-meta {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    animation: fadeUp 0.8s ease 0.3s both;
}

.meta-item {
    display: flex;
    flex-direction: column;
}

.meta-label {
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gray);
    margin-bottom: 4px;
}

.meta-value {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
}

.meta-value.highlight {
    color: var(--yellow);
    font-size: 22px;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ── SECTION BASE ── */
section {
    padding: 80px 8vw;
}

.section-eyebrow {
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--yellow);
    margin-bottom: 12px;
    font-weight: 700;
}

.section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(36px, 5vw, 64px);
    line-height: 1;
    margin-bottom: 16px;
}

.section-desc {
    color: var(--gray);
    font-size: 15px;
    line-height: 1.7;
    max-width: 600px;
    margin-bottom: 48px;
}

/* ── DIVIDER ── */
.divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(245, 197, 24, 0.3), transparent);
    margin: 0 8vw;
}

/* ── STRATEGY ── */
.strategy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2px;
    margin-top: 48px;
}

.strategy-card {
    background: var(--blue);
    padding: 36px 32px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
    cursor: default;
}

.strategy-card:hover {
    transform: translateY(-4px);
}

.strategy-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: var(--yellow);
    transform: scaleY(0);
    transition: transform 0.3s ease;
    transform-origin: bottom;
}

.strategy-card:hover::before {
    transform: scaleY(1);
}

.card-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 72px;
    color: rgba(245, 197, 24, 0.08);
    line-height: 1;
    position: absolute;
    top: 12px;
    right: 20px;
}

.card-icon {
    font-size: 28px;
    margin-bottom: 16px;
}

.card-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--yellow);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.card-text {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.6;
}

/* ── VIDEOS ── */
.videos-section {
    background: linear-gradient(180deg, var(--navy) 0%, #060e1f 100%);
}

.video-card {
    background: var(--blue);
    margin-bottom: 2px;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
}

.video-card:hover {
    background: var(--light-blue);
}

.video-header {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 24px;
    padding: 32px 36px;
    cursor: pointer;
}

.video-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 48px;
    color: var(--yellow);
    line-height: 1;
    min-width: 60px;
}

.video-info {
    flex: 1;
}

.video-tag {
    display: inline-block;
    background: rgba(245, 197, 24, 0.1);
    border: 1px solid rgba(245, 197, 24, 0.25);
    color: var(--yellow);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 1px;
    margin-bottom: 8px;
}

.video-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(20px, 3vw, 28px);
    font-weight: 900;
    line-height: 1.1;
    text-transform: uppercase;
}

.video-meta {
    display: flex;
    gap: 20px;
    margin-top: 8px;
    flex-wrap: wrap;
}

.video-meta span {
    font-size: 12px;
    color: var(--gray);
    display: flex;
    align-items: center;
    gap: 5px;
}

.video-meta span::before {
    content: '▸';
    color: var(--yellow);
    font-size: 10px;
}

.toggle-btn {
    background: rgba(245, 197, 24, 0.1);
    border: 1px solid rgba(245, 197, 24, 0.25);
    color: var(--yellow);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
    user-select: none;
    flex-shrink: 0;
}

.toggle-btn:hover {
    background: var(--yellow);
    color: var(--navy);
}

.toggle-btn.open {
    transform: rotate(45deg);
}

.video-body {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.4s ease, padding 0.4s ease;
    padding: 0 36px;
    border-top: 1px solid rgba(245, 197, 24, 0);
    overflow: hidden;
}

.video-body.open {
    grid-template-rows: 1fr;
    padding: 0 36px 36px;
    border-top: 1px solid rgba(245, 197, 24, 0.1);
}

.video-body > div {
    min-height: 0;
}

.video-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 32px;
}

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

.block-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--yellow);
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(245, 197, 24, 0.15);
}

.roteiro-box {
    background: rgba(0, 0, 0, 0.3);
    border-left: 3px solid var(--yellow);
    padding: 20px 24px;
}

.roteiro-part {
    margin-bottom: 20px;
}

.roteiro-part:last-child {
    margin-bottom: 0;
}

.roteiro-label {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--yellow);
    opacity: 0.7;
    margin-bottom: 6px;
}

.roteiro-text {
    font-size: 14px;
    color: var(--white);
    line-height: 1.65;
}

.roteiro-text em {
    color: var(--yellow);
    font-style: normal;
    font-weight: 700;
}

.seg-list {
    list-style: none;
}

.seg-list li {
    padding: 8px 0;
    font-size: 14px;
    color: var(--gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    display: flex;
    gap: 10px;
    line-height: 1.5;
}

.seg-list li::before {
    content: '⚡';
    font-size: 12px;
    flex-shrink: 0;
    margin-top: 2px;
}

.funnel-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.funnel-step {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 12px 0;
    position: relative;
}

.funnel-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 14px;
    top: 40px;
    width: 1px;
    height: calc(100% - 16px);
    background: rgba(245, 197, 24, 0.2);
}

.funnel-dot {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid var(--yellow);
    background: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    color: var(--yellow);
    flex-shrink: 0;
    font-family: 'Barlow Condensed', sans-serif;
}

.funnel-content {
    flex: 1;
}

.funnel-stage {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--yellow);
    margin-bottom: 2px;
    font-family: 'Barlow Condensed', sans-serif;
}

.funnel-desc {
    font-size: 13px;
    color: var(--gray);
    line-height: 1.5;
}

/* ── PRICING ── */
.pricing-section {
    background: var(--blue);
    padding: 80px 8vw;
}

.pricing-box {
    background: var(--navy);
    border: 1px solid rgba(245, 197, 24, 0.2);
    padding: 48px;
    max-width: 680px;
    position: relative;
    overflow: hidden;
}

.pricing-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--yellow), var(--gold));
}

.price-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.price-line:last-of-type {
    border-bottom: none;
}

.price-item-name {
    font-size: 14px;
    color: var(--gray);
}

.price-item-val {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
}

.total-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 2px solid rgba(245, 197, 24, 0.3);
}

.total-label {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    color: var(--white);
    letter-spacing: 2px;
}

.total-value {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 52px;
    color: var(--yellow);
    line-height: 1;
}

.included-list {
    margin-top: 32px;
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

@media(max-width: 600px) {
    .included-list {
        grid-template-columns: 1fr;
    }
}

.included-list li {
    font-size: 13px;
    color: var(--gray);
    display: flex;
    gap: 8px;
    align-items: flex-start;
}

.included-list li::before {
    content: '✓';
    color: var(--yellow);
    font-weight: 900;
    flex-shrink: 0;
}

/* ── FOOTER / CTA ── */
.cta-section {
    padding: 80px 8vw;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(245, 197, 24, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.cta-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(40px, 7vw, 80px);
    line-height: 1;
    margin-bottom: 16px;
}

.cta-title span {
    color: var(--yellow);
}

.cta-sub {
    color: var(--gray);
    font-size: 15px;
    margin-bottom: 40px;
}

.cta-btn {
    display: inline-block;
    background: var(--yellow);
    color: var(--navy);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 18px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 18px 48px;
    text-decoration: none;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    background: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 16px 40px rgba(245, 197, 24, 0.2);
}

.footer-note {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 12px;
    color: var(--gray);
}

.logo-text {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 22px;
    letter-spacing: 2px;
    color: var(--yellow);
}

/* ── FRAMEWORK BADGE ── */
.fw-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(245, 197, 24, 0.08);
    border: 1px solid rgba(245, 197, 24, 0.2);
    padding: 6px 14px;
    border-radius: 2px;
    font-size: 11px;
    color: var(--yellow);
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 24px;
}
