* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: #FFFFFF;
    color: #111827;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
header {
    background: #FFFFFF;
    border-bottom: 1px solid #E5E7EB;
    position: sticky;
    top: 0;
    z-index: 50;
}
.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo {
    height: 28px;
    width: auto;
    display: block;
}
.btn-acessar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 20px;
    border: 2px solid #8B5CF6;
    color: #8B5CF6;
    background: transparent;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}
.btn-acessar:hover {
    background: #F5F3FF;
}

/* HERO */
.hero {
    padding: 56px 24px 40px;
    text-align: center;
}
.hero-inner {
    max-width: 840px;
    margin: 0 auto;
}
.social-proof {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 24px;
}
.social-proof img {
    height: 32px;
    width: auto;
}
.social-proof-text {
    font-size: 14px;
    color: #6B7280;
}
.social-proof-text strong {
    color: #111827;
    font-weight: 700;
}
h1 {
    font-size: 40px;
    font-weight: 700;
    color: #111827;
    line-height: 1.1;
    max-width: 700px;
    margin: 0 auto 16px;
    letter-spacing: -0.02em;
}
.subtitle {
    font-size: 18px;
    color: #6B7280;
    line-height: 1.6;
    max-width: 640px;
    margin: 0 auto 28px;
}
.feito-para {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 32px;
    color: #6B7280;
    font-size: 15px;
}
.feito-para .icons {
    display: flex;
    gap: 10px;
    align-items: center;
}
.feito-para .platform-logo {
    width: auto;
    object-fit: contain;
    display: block;
}

.feito-para .platform-logo-youtube {
    height: 18px;
}

.feito-para .platform-logo-tiktok {
    height: 24px;
}
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #8B5CF6;
    color: white;
    padding: 14px 28px;
    border-radius: 999px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 8px 24px -8px rgba(139, 92, 246, 0.5), 0 2px 6px rgba(139, 92, 246, 0.2);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn-primary svg {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    display: block;
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 28px -8px rgba(139, 92, 246, 0.55), 0 4px 8px rgba(139, 92, 246, 0.25);
}
.hero-note {
    margin-top: 14px;
    font-size: 14px;
    color: #6B7280;
}
.hero-video-marquee {
    position: relative;
    margin-top: 28px;
    overflow: hidden;
    padding: 8px 0;
}
.hero-video-marquee::before,
.hero-video-marquee::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 72px;
    z-index: 2;
    pointer-events: none;
}
.hero-video-marquee::before {
    left: 0;
    background: linear-gradient(90deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%);
}
.hero-video-marquee::after {
    right: 0;
    background: linear-gradient(270deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%);
}
.hero-video-track {
    display: flex;
    gap: 18px;
    width: max-content;
    animation: hero-video-scroll 36s linear infinite;
}
.hero-video-card {
    width: 168px;
    aspect-ratio: 9 / 16;
    border-radius: 22px;
    overflow: hidden;
    background: #0F172A;
    flex: 0 0 auto;
}
.hero-video-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@keyframes hero-video-scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(calc(-50% - 9px));
    }
}

/* COMO FUNCIONA */
.como-funciona {
    background: #FFFFFF;
    padding: 40px 0 120px;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
}
.eyebrow {
    text-align: center;
    color: #8B5CF6;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 12px;
}
.section-title {
    text-align: center;
    font-size: 48px;
    font-weight: 700;
    color: #111827;
    letter-spacing: -0.02em;
    line-height: 1.1;
}
.steps {
    margin-top: 64px;
    display: flex;
    flex-direction: column;
    gap: 100px;
}
.step {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.step-image-wrapper {
    background: #EEF2FF;
    border-radius: 24px;
    padding: 32px;
}
.step-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    border: 2px solid #8B5CF6;
    border-radius: 12px;
    box-shadow: 0 12px 32px -12px rgba(139, 92, 246, 0.35), 0 4px 12px rgba(0,0,0,0.08);
    background: white;
}
.step-content {
    padding: 0 12px;
}
.badge {
    display: inline-block;
    background: #F5F3FF;
    border: 1px solid #DDD6FE;
    color: #8B5CF6;
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 16px;
    letter-spacing: 0.01em;
}
.step-title {
    font-size: 36px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 16px;
    line-height: 1.2;
    letter-spacing: -0.01em;
}
.step-text {
    font-size: 18px;
    color: #4B5563;
    line-height: 1.6;
    max-width: 520px;
}

/* Passo 2 invertido no desktop */
.step-2 .step-image-wrapper {
    grid-column: 2 / 3;
    grid-row: 1;
}
.step-2 .step-content {
    grid-column: 1 / 2;
    grid-row: 1;
}

@media (min-width: 1024px) {
    h1 {
        font-size: 52px;
    }
}
@media (max-width: 900px) {
    .header-inner {
        padding: 0 20px;
        height: 64px;
    }
    h1 {
        font-size: 32px;
        max-width: 600px;
    }
    .subtitle {
        font-size: 16px;
    }
    .hero-video-card {
        width: 132px;
        border-radius: 18px;
    }
    .hero-video-track {
        gap: 14px;
        animation-duration: 30s;
    }
    .como-funciona {
        padding: 32px 0 80px;
    }
    .container {
        padding: 0 20px;
    }
    .section-title {
        font-size: 36px;
    }
    .steps {
        margin-top: 48px;
        gap: 72px;
    }
    .step {
        display: flex;
        flex-direction: column;
        gap: 32px;
    }
    .step-image-wrapper {
        padding: 20px;
        border-radius: 20px;
        width: 100%;
    }
    .step-content {
        padding: 0;
        text-align: left;
    }
    .step-title {
        font-size: 28px;
    }
    .step-text {
        font-size: 16px;
        max-width: none;
    }
    /* Garante imagem sempre em cima no mobile */
    .step-2 .step-image-wrapper,
    .step-2 .step-content {
        grid-column: auto;
        grid-row: auto;
    }
}

/* DEPOIMENTOS */
.depoimentos {
    background: #FFFFFF;
    padding: 80px 24px 120px;
}
.depoimentos-inner {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}
.depoimentos-title {
    font-size: 48px;
    font-weight: 700;
    color: #111827;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
}
.depoimentos-title span {
    color: #8B5CF6;
    display: block;
}
.depoimentos-subtitle {
    font-size: 18px;
    color: #6B7280;
    margin-bottom: 48px;
}
.depoimentos-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-align: left;
}
.depoimento-card {
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.04);
}
.depoimento-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}
.depoimento-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}
.depoimento-nome {
    font-size: 17px;
    font-weight: 700;
    color: #111827;
    line-height: 1.2;
}
.depoimento-stars {
    display: flex;
    gap: 2px;
    margin-top: 4px;
}
.depoimento-stars svg {
    width: 18px;
    height: 18px;
    fill: #FBBF24;
}
.depoimento-texto {
    font-size: 16px;
    color: #4B5563;
    line-height: 1.6;
}
@media (max-width: 900px) {
    .depoimentos-title {
        font-size: 36px;
    }
    .depoimentos {
        padding: 64px 20px 80px;
    }
}


/* VEJA NA PRATICA */
.veja-pratica {
    background: #FFFFFF;
    padding: 80px 24px 100px;
    text-align: center;
}
.veja-pratica-inner {
    max-width: 960px;
    margin: 0 auto;
}
.veja-pratica-title {
    font-size: 48px;
    font-weight: 700;
    color: #111827;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}
.veja-pratica-subtitle {
    font-size: 18px;
    color: #6B7280;
    margin-bottom: 40px;
}
.video-wrapper {
    position: relative;
    background: #8B5CF6;
    padding: 8px;
    border-radius: 16px;
    box-shadow: 0 20px 40px -12px rgba(139, 92, 246, 0.35), 0 8px 16px rgba(0,0,0,0.08);
    margin: 0 auto 36px;
    max-width: 880px;
}
.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 10px;
    background: #000;
}
.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
.lite-youtube {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    padding: 0;
    background: #000;
    cursor: pointer;
}
.lite-youtube img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.lite-youtube::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.35) 100%);
}
.lite-youtube-play {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 88px;
    height: 62px;
    transform: translate(-50%, -50%);
    z-index: 1;
    transition: transform 0.15s ease;
}
.lite-youtube-play svg {
    width: 100%;
    height: 100%;
    display: block;
}
.lite-youtube:hover .lite-youtube-play {
    transform: translate(-50%, -50%) scale(1.05);
}
.btn-video-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #8B5CF6;
    color: white;
    padding: 14px 28px;
    border-radius: 999px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 8px 24px -8px rgba(139, 92, 246, 0.5);
    transition: transform 0.15s ease;
}
.btn-video-cta:hover {
    transform: translateY(-1px);
}
.btn-video-cta svg {
    width: 20px;
    height: 20px;
}
@media (max-width: 900px) {
    .veja-pratica-title { font-size: 36px; }
    .veja-pratica { padding: 64px 20px 80px; }
}

/* FAQ */
.faq {
    background: #FFFFFF;
    padding: 80px 24px 120px;
}
.faq-inner {
    max-width: 720px;
    margin: 0 auto;
}
.faq-title {
    font-size: 56px;
    font-weight: 700;
    color: #111827;
    text-align: center;
    letter-spacing: -0.02em;
    margin-bottom: 48px;
    line-height: 1.1;
}
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.faq-item {
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    background: #FFFFFF;
    overflow: hidden;
    transition: box-shadow 0.2s ease;
}
.faq-item[open] {
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
.faq-question {
    width: 100%;
    padding: 18px 22px;
    font-size: 17px;
    font-weight: 500;
    color: #111827;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    list-style: none;
    user-select: none;
}
.faq-question::-webkit-details-marker {
    display: none;
}
.faq-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: #4B5563;
    transition: transform 0.2s ease;
}
.faq-item[open] .faq-icon {
    transform: rotate(180deg);
}
.faq-answer {
    padding: 0 22px 18px;
    color: #4B5563;
    font-size: 16px;
    line-height: 1.6;
    border-top: 1px solid #F3F4F6;
    margin-top: -1px;
}
@media (max-width: 900px) {
    .faq-title { font-size: 40px; }
    .faq { padding: 64px 20px 80px; }
}


/* FOOTER */
footer {
    background: #FFFFFF;
    border-top: 1px solid #E5E7EB;
    padding: 56px 24px;
}
.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 64px;
}
.footer-brand {
    max-width: 320px;
}
.footer-logo {
    height: 28px;
    width: auto;
    margin-bottom: 16px;
    display: block;
}
.footer-desc {
    font-size: 15px;
    color: #4B5563;
    line-height: 1.6;
    margin-bottom: 16px;
}
.footer-copy {
    font-size: 14px;
    color: #6B7280;
}
.footer-links {
    display: flex;
    gap: 80px;
}
.footer-col h4 {
    font-size: 16px;
    font-weight: 700;
    color: #1E293B;
    margin-bottom: 14px;
}
.footer-col a {
    display: block;
    font-size: 15px;
    color: #111827;
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.15s;
}
.footer-col a:hover {
    color: #8B5CF6;
}
@media (max-width: 900px) {
    .footer-inner {
        flex-direction: column;
        gap: 40px;
    }
    .footer-links {
        gap: 48px;
    }
}
