/* ============================================
   CONCURSOCARDZZ - Landing Page
   ============================================ */

/* ---- RESET & BASE ---- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --azul-base: #1D4ED8;
    --roxo: #7C3AED;
    --gradiente: linear-gradient(135deg, #1D4ED8, #7C3AED);
    --branco: #FFFFFF;
    --cinza-fundo: #F8FAFC;
    --cinza-texto: #334155;
    --cinza-claro: #94A3B8;
    --rosa: #EC4899;
    --dark-bg: #0F172A;
    --dark-card: #1E293B;
    --dark-border: rgba(255, 255, 255, 0.1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Nunito', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6;
    color: var(--cinza-texto);
    background-color: var(--branco);
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   HEADER
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;
    z-index: 1000;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
}

.header.scrolled {
    height: 72px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 4px 30px rgba(29, 78, 216, 0.12);
}

.header-inner {
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 24px;
    background: var(--gradiente);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn-header {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 14px;
    padding: 10px 24px;
    border-radius: 50px;
    background: var(--gradiente);
    color: var(--branco);
    box-shadow: 0 6px 20px rgba(29, 78, 216, 0.35);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.btn-header:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(29, 78, 216, 0.5);
}

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    background: var(--cinza-fundo);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 90px;
}

.hero-spotlight {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.35;
    pointer-events: none;
}

.spotlight-blue {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--azul-base) 0%, transparent 70%);
    top: -100px;
    left: -100px;
}

.spotlight-purple {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--roxo) 0%, transparent 70%);
    bottom: -100px;
    right: -100px;
}

.hero-inner {
    position: relative;
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    z-index: 1;
}

.hero-content {
    max-width: 700px;
}

.hero-title {
    font-size: clamp(36px, 5vw, 64px);
    color: var(--cinza-texto);
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--cinza-claro);
    margin-bottom: 40px;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ---- Botões ---- */
.btn-primary {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 16px;
    padding: 16px 32px;
    border-radius: 50px;
    background: var(--gradiente);
    color: var(--branco);
    box-shadow: 0 8px 28px rgba(29, 78, 216, 0.4);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
    transition: left 0.6s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(29, 78, 216, 0.5);
}

.btn-primary:hover::after {
    left: 100%;
}

.btn-secondary {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 16px;
    padding: 16px 32px;
    border-radius: 50px;
    background: transparent;
    color: var(--cinza-texto);
    border: 1.5px solid #CBD5E1;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.btn-secondary:hover {
    border-color: var(--roxo);
    color: var(--roxo);
}

.btn-icon {
    width: 18px;
    height: 18px;
}

.btn-center {
    margin: 0 auto;
    display: inline-flex;
}

.btn-large {
    padding: 18px 40px;
    font-size: 18px;
}

/* ---- Floating Cards ---- */
.floating-card {
    position: absolute;
    background: var(--branco);
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    padding: 14px 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    font-family: 'Nunito', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--cinza-texto);
    display: flex;
    align-items: center;
    gap: 10px;
    animation: float 4s ease-in-out infinite;
    white-space: nowrap;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
}

.dot-blue { background: var(--azul-base); }
.dot-purple { background: var(--roxo); }
.dot-orange { background: #F59E0B; }
.dot-green { background: #10B981; }

.card-1 {
    top: 15%;
    left: 0%;
    animation-delay: 0s;
}

.card-2 {
    top: 25%;
    right: 0%;
    animation-delay: 0.8s;
}

.card-3 {
    bottom: 25%;
    left: 8%;
    animation-delay: 1.6s;
}

.card-4 {
    bottom: 15%;
    right: 8%;
    animation-delay: 2.4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

/* ============================================
   SEÇÃO 2: DORES (DARK MODE)
   ============================================ */
.dores {
    position: relative;
    background: var(--dark-bg);
    padding: 100px 0;
    overflow: hidden;
}

.dores-spotlight {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.2;
    pointer-events: none;
}

.spotlight-blue-dark {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--azul-base) 0%, transparent 70%);
    top: 10%;
    left: -5%;
}

.spotlight-purple-dark {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--roxo) 0%, transparent 70%);
    bottom: 10%;
    right: -5%;
}

.dores-title {
    font-size: clamp(32px, 4vw, 48px);
    color: var(--branco);
    text-align: center;
    margin-bottom: 16px;
}

.highlight-pink {
    color: var(--rosa);
}

.dores-subtitle {
    font-size: 18px;
    color: var(--cinza-claro);
    text-align: center;
    margin-bottom: 60px;
}

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

.dores-card {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 20px;
    padding: 40px 28px;
    text-align: center;
    transition: background-color 0.3s ease;
}

.dores-card:hover {
    background-color: rgba(30, 41, 59, 0.85);
    background-color: #253449;
}

.dores-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 20px;
    color: var(--branco);
    display: flex;
    align-items: center;
    justify-content: center;
}

.dores-icon svg {
    width: 100%;
    height: 100%;
    stroke-width: 1.5;
}

.dores-card-title {
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: var(--branco);
    margin-bottom: 12px;
}

.dores-card-desc {
    font-size: 15px;
    color: var(--cinza-claro);
    line-height: 1.6;
}

/* ============================================
   SEÇÃO 3: SOLUÇÃO (BENTO BOX)
   ============================================ */
.solucao {
    background: var(--cinza-fundo);
    padding: 100px 0;
}

.solucao-title {
    font-size: clamp(32px, 4vw, 48px);
    color: var(--cinza-texto);
    text-align: center;
    margin-bottom: 20px;
}

.solucao-intro {
    font-size: 20px;
    color: var(--cinza-texto);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

/* Bento Grid */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 24px;
    max-width: 1280px;
    margin: 0 auto 80px;
}

.bento-card {
    background: #FFFFFF;
    border: 1px solid rgba(203, 213, 225, 0.4);
    border-radius: 24px;
    padding: 36px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bento-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.bento-card-large {
    grid-column: span 2;
    flex-direction: row;
    align-items: center;
    gap: 32px;
}

.bento-card-dark {
    background: #1E293B;
    border-color: rgba(255, 255, 255, 0.08);
}

.bento-card-dark .bento-card-title {
    color: #FFFFFF;
}

.bento-card-dark .bento-card-text {
    color: #94A3B8;
}

.bento-card-content {
    flex: 1;
}

.bento-card-title {
    font-size: 22px;
    color: #0F172A;
    margin-bottom: 14px;
    line-height: 1.3;
}

.bento-card-text {
    font-size: 15px;
    color: #64748B;
    line-height: 1.7;
}

/* Visual Elements */
.bento-visual {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Spaced Repetition Visual */
.spaced-visual {
    flex-direction: column;
    gap: 12px;
    min-width: 220px;
}

.dot-row {
    display: flex;
    align-items: center;
    gap: 0;
}

.sv-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    flex-shrink: 0;
}

.sv-active {
    background: linear-gradient(135deg, #1D4ED8, #7C3AED);
}

.sv-future {
    background: #E2E8F0;
    border: 2px dashed #CBD5E1;
}

.sv-gap {
    height: 2px;
    background: linear-gradient(90deg, #1D4ED8, #7C3AED);
    width: 30px;
}

.sv-gap-lg {
    width: 50px;
}

.sv-gap-xl {
    width: 70px;
}

.sv-labels {
    display: flex;
    justify-content: space-between;
    width: 100%;
    font-size: 11px;
    color: #94A3B8;
    font-weight: 600;
}

/* Edital Visual */
.edital-visual {
    flex-direction: column;
    gap: 10px;
    min-width: 140px;
}

.edital-tag {
    background: linear-gradient(135deg, #1D4ED8, #7C3AED);
    color: #FFFFFF;
    padding: 8px 18px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
    text-align: center;
    box-shadow: 0 4px 12px rgba(29, 78, 216, 0.25);
    transform: rotate(-3deg);
}

.edital-tag-alt {
    background: linear-gradient(135deg, #7C3AED, #EC4899);
    transform: rotate(2deg);
    margin-left: 10px;
}

.edital-tag-alt2 {
    background: linear-gradient(135deg, #1D4ED8, #0EA5E9);
    transform: rotate(-1deg);
    margin-left: -5px;
}

/* Streak Visual */
.streak-visual {
    flex-direction: column;
    align-items: center;
    min-width: 120px;
}

.streak-icon {
    font-size: 36px;
    margin-bottom: 4px;
}

.streak-number {
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    font-size: 42px;
    color: #F59E0B;
    line-height: 1;
}

.streak-label {
    font-size: 12px;
    color: #94A3B8;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Dark bento card */
.bento-dark { background: var(--dark-card); border-color: rgba(255,255,255,0.08); }

.dark-visual { flex-shrink: 0; width: 200px; }
.dark-card-sim {
  background: #0F172A;
  border-radius: 14px;
  padding: 16px;
  border: 1px solid rgba(255,255,255,0.08);
}
.dark-card-header { display: flex; gap: 6px; margin-bottom: 16px; }
.dark-dot { width: 10px; height: 10px; border-radius: 50%; }
.dark-dot.red    { background: #FF5F57; }
.dark-dot.yellow { background: #FFBD2E; }
.dark-dot.green  { background: #28C840; }
.dark-card-line { height: 10px; border-radius: 100px; margin-bottom: 10px; background: rgba(255,255,255,0.08); }
.dark-card-line.short  { width: 45%; }
.dark-card-line.long   { width: 90%; }
.dark-card-line.medium { width: 70%; }
.dark-answer-btns { display: flex; gap: 8px; margin-top: 16px; }
.dark-btn {
  flex: 1;
  font-size: 11px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  text-align: center;
  padding: 6px 4px;
  border-radius: 8px;
}
.dark-btn.easy { background: rgba(29,78,216,0.25); color: #93C5FD; }
.dark-btn.hard { background: rgba(239,68,68,0.18); color: #FCA5A5; }

/* Fechamento */
.solucao-fechamento {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.solucao-strong {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 22px;
    color: var(--cinza-texto);
    margin-bottom: 16px;
}

.solucao-complemento {
    font-size: 17px;
    color: #64748B;
    margin-bottom: 32px;
}

.solucao-disclaimer {
    font-size: 13px;
    color: var(--cinza-claro);
    margin-top: 16px;
}

/* ============================================
   SEÇÃO 4: POR QUE FUNCIONA
   ============================================ */
.porque-funciona {
    background: var(--cinza-fundo);
    padding: 100px 0;
}

.porque-dois-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.porque-title {
    font-size: clamp(26px, 3vw, 40px);
    font-weight: 800;
    color: #0F172A;
    line-height: 1.3;
    margin-bottom: 36px;
}

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

.beneficio-card {
    background: var(--branco);
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.beneficio-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: var(--gradiente);
    transform: scaleY(0);
    transform-origin: center;
    transition: transform 0.4s ease;
}

.beneficio-card:hover {
    transform: translateX(6px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

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

.beneficio-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.beneficio-icon svg {
    width: 100%;
    height: 100%;
}

.beneficio-texto {
    font-size: 16px;
    color: var(--cinza-texto);
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    margin: 0;
}

/* COLUNA DIREITA */
.porque-direita {
    display: flex;
    align-items: center;
    justify-content: center;
}

.porque-imagem {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
    display: block;
}

/* RESPONSIVO */
@media (max-width: 900px) {
    .porque-dois-col {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .porque-title {
        margin-bottom: 0;
    }

    .porque-esquerda {
        display: contents;
    }

    .porque-title {
        order: 1;
    }

    .porque-direita {
        order: 2;
    }

    .beneficios-grid {
        order: 3;
    }
}

/* ============================================
   SEÇÃO 5: CIÊNCIA
   ============================================ */
.ciencia {
    position: relative;
    background: var(--dark-bg);
    padding: 100px 0;
    overflow: hidden;
    text-align: center;
}

.ciencia-spotlight {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.15;
    pointer-events: none;
}

.ciencia-title {
    font-size: clamp(32px, 4vw, 48px);
    color: var(--branco);
    margin-bottom: 16px;
}

.ciencia-intro {
    font-size: 18px;
    color: var(--cinza-claro);
    margin-bottom: 60px;
}

.ciencia-fonte {
    font-size: 12px;
    color: #64748B;
    margin-top: 8px;
    font-style: italic;
}

.graficos-container {
    display: flex;
    flex-direction: column;
    gap: 32px;
    max-width: 800px;
    margin: 0 auto;
}

.grafico-card {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 20px;
    padding: 36px 40px;
    text-align: left;
}

.grafico-titulo {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: var(--branco);
    margin-bottom: 28px;
}

.barra-container {
    margin-bottom: 20px;
}

.barra-container:last-of-type {
    margin-bottom: 24px;
}

.barra-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    font-size: 14px;
    color: var(--cinza-claro);
}

.barra-percent {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: var(--branco);
}

.barra-track {
    width: 100%;
    height: 28px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    overflow: hidden;
}

.barra-fill {
    height: 100%;
    border-radius: 14px;
    width: 0;
    transition: width 1.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.barra-fill.animated {
    width: var(--target-width);
}

.barra-gradient {
    background: var(--gradiente);
}

.barra-gray {
    background: #475569;
}

.grafico-conclusao {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: var(--branco);
    margin-top: 8px;
}

/* ============================================
   SEÇÃO 6: COMPARATIVO DE MÉTODOS
   ============================================ */
.comparativo {
    background: var(--dark-bg);
    padding: 100px 0;
    text-align: center;
}

.comparativo .badge-light {
    background: rgba(124, 58, 237, 0.2);
    color: #A78BFA;
}

.comparativo-title {
    font-size: clamp(32px, 4vw, 48px);
    color: var(--branco);
    margin-bottom: 16px;
}

.comp-fechamento-title {
    color: var(--branco) !important;
}

.comp-fechamento-text {
    color: #94A3B8 !important;
}

.comparativo-badge {
    margin-bottom: 48px;
}

.comparativo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 900px;
    margin: 0 auto 16px;
    text-align: left;
}

.comp-card {
    border-radius: 20px;
    padding: 36px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.comp-card-red {
    background: rgba(127, 29, 29, 0.25);
    border: 1px solid rgba(248, 113, 113, 0.35);
}

.comp-card-green {
    background: rgba(6, 78, 59, 0.25);
    border: 1px solid rgba(74, 222, 128, 0.35);
}

.comp-icon {
    width: 44px;
    height: 44px;
}

.comp-icon svg {
    width: 100%;
    height: 100%;
}

.comp-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: var(--branco);
    line-height: 1.3;
}

.comp-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.comp-list li {
    font-size: 15px;
    color: #94A3B8;
    padding-left: 16px;
    position: relative;
}

.comp-list li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: #64748B;
}

.comp-badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
}

.comp-badge-red {
    background: rgba(127, 29, 29, 0.5);
    color: #FCA5A5;
}

.comp-badge-green {
    background: rgba(6, 78, 59, 0.5);
    color: #86EFAC;
}

.comp-destaque {
    font-size: 14px;
    color: var(--branco);
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    line-height: 1.5;
}

.comp-fonte {
    font-size: 12px;
    color: #64748B;
    margin-top: 8px;
    /*margin-bottom: 48px;*/
    font-style: italic;
}

.comparativo-divider {
    width: 100%;
    max-width: 900px;
    margin: 0 auto 40px;
    height: 1px;
    background: #E2E8F0;
}

.comp-fechamento-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: clamp(24px, 3vw, 32px);
    color: #0F172A;
    margin-bottom: 20px;
}

.comp-fechamento-text {
    font-size: 17px;
    color: #64748B;
    margin-bottom: 8px;
}

/* ============================================
   SEÇÃO 6.5: A DIFERENÇA
   ============================================ */
.diferenca {
    position: relative;
    background: var(--cinza-fundo);
    padding: 100px 0;
    text-align: center;
    overflow: hidden;
}

.diferenca-container{
    position: relative;
    z-index: 2;
}

.diferenca-spotlight {
    position: absolute;
    border-radius: 50%;    
    width: 1200px;
    height: 1200px;
    filter: blur(60px);
    opacity: 0.2;
    z-index: 1;
    pointer-events: none;
    animation: floatGlow 12s ease-in-out infinite;
}

.diferenca-spotlight-blue {
    position: absolute;
    background: radial-gradient(circle, var(--azul-base) 0%, transparent 70%);
    top: -75%;
    left: -25%;
}

.diferenca-spotlight-purple {
    background: radial-gradient(circle, var(--roxo) 0%, transparent 70%);
    bottom: -75%;
    right: -25%;
    animation-delay: 3s;
}

.diferenca-card {
    position: relative;
    background: var(--branco);
    border: 1px solid #E2E8F0;
    border-radius: 28px;
    padding: 64px 48px;
    max-width: 720px;
    margin: 0 auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.07);
    overflow: hidden;
}

.diferenca-card-stripe {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradiente);
}

.diferenca-title {
    font-size: clamp(28px, 4vw, 42px);
    color: #0F172A;
    margin-bottom: 16px;
    line-height: 1.3;
}

.diferenca-subtitle {
    font-size: 18px;
    color: #64748B;
    margin-bottom: 40px;
}

.diferenca-btn {
    margin: 0 auto;
    display: inline-flex;
}

.diferenca-disclaimer {
    font-size: 13px;
    color: #94A3B8;
    margin-top: 20px;
}

/* ============================================
   SEÇÃO 7: COMO FUNCIONA (STEPS)
   ============================================ */
.como-funciona-sec {
    position: relative;
    background: var(--dark-bg);
    padding: 100px 0;
    text-align: center;
    overflow: hidden;
}

.como-spotlight {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.18;
    pointer-events: none;
}

.como-spotlight-blue {
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, var(--azul-base) 0%, transparent 70%);
    top: 0;
    left: -10%;
}

.como-spotlight-purple {
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, var(--roxo) 0%, transparent 70%);
    bottom: 0;
    right: -10%;
}

.como-title {
    font-size: clamp(28px, 4vw, 44px);
    color: var(--branco);
    margin: 20px 0 64px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.como-steps {
    max-width: 640px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.como-step {
    padding: 28px 0;
    position: relative;
    z-index: 1;
}

.como-step-inner {
    display: flex;
    align-items: center;
    gap: 32px;
    text-align: left;
}

.como-numero {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 80px;
    line-height: 1;
    background: var(--gradiente);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.15;
    flex-shrink: 0;
    width: 100px;
    text-align: right;
}

.como-texto {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: clamp(18px, 2.5vw, 24px);
    color: var(--branco);
    line-height: 1.4;
}

.como-divider {
    width: 80%;
    max-width: 400px;
    margin: 0 auto;
    height: 1px;
    background: rgba(255, 255, 255, 0.07);
}

.como-rodape {
    font-size: 17px;
    color: var(--cinza-claro);
    margin-top: 56px;
}

/* ============================================
   SEÇÃO 8: O QUE VOCÊ VAI SENTIR
   ============================================ */
   .sentir {
    position: relative;
    background: #F0F1FF;
    padding: 100px 0 80px;
    text-align: center;
    overflow: hidden;
}

/* Blobs de fundo difusos azul/roxo */
.sentir-bg-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
    opacity: 0.35;
}

.sentir-blob-left {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #C7D2FE 0%, transparent 70%);
    top: -80px;
    left: -100px;
}

.sentir-blob-right {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #DDD6FE 0%, transparent 70%);
    bottom: 0;
    right: -100px;
}

.sentir-container {
    position: relative;
    z-index: 1;
}

/* Badge de topo */
.sentir-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--roxo);
    background: rgba(124, 58, 237, 0.1);
    border: 1px solid rgba(124, 58, 237, 0.2);
    padding: 8px 18px;
    border-radius: 50px;
    margin-bottom: 28px;
}

.sentir-badge svg {
    color: var(--roxo);
    flex-shrink: 0;
}

/* Título principal */
.sentir-title {
    font-size: clamp(44px, 7vw, 80px);
    color: #0F172A;
    margin-bottom: 20px;
    line-height: 1.1;
    letter-spacing: -2px;
}

.sentir-destaque {
    background: var(--gradiente);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Subtítulo */
.sentir-subtitulo {
    font-size: 17px;
    color: #64748B;
    line-height: 1.7;
    margin-bottom: 64px;
}

.sentir-subtitulo strong {
    color: var(--roxo);
    font-weight: 700;
}

/* Wrapper do trilho + cards */
.sentir-trilho-wrapper {
    max-width: 1100px;
    margin: 0 auto 32px;
    border: 1.5px solid rgba(124, 58, 237, 0.18);
    border-radius: 28px;
    padding: 0 0 0;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(8px);
    overflow: hidden;
}

/* Trilho de dots no topo */
.sentir-trilho {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 10%;
    gap: 0;
}

.sentir-trilho-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
    border: 2px solid;
}

.sentir-dot-azul  { border-color: var(--azul-base); background: var(--azul-base); }
.sentir-dot-roxo  { border-color: var(--roxo);      background: var(--roxo); }
.sentir-dot-rosa  { border-color: #A855F7;           background: #A855F7; }

.sentir-trilho-linha {
    flex: 1;
    height: 1.5px;
    background: linear-gradient(90deg, rgba(29,78,216,0.25), rgba(124,58,237,0.25));
}

/* Grid de 3 cards lado a lado */
.sentir-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}

.sentir-card {
    padding: 28px 36px 36px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    border-right: 1px solid rgba(124, 58, 237, 0.1);
    background: #FFFFFF;
    transition: background 0.3s ease, transform 0.3s ease;
    position: relative;
}

.sentir-card:last-child {
    border-right: none;
}

.sentir-card:hover {
    background: #FAFBFF;
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(29, 78, 216, 0.08);
    z-index: 2;
}

/* Topo do card: ícone + número */
.sentir-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

/* Círculos de ícone */
.sentir-icone {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sentir-icone i {
    width: 26px;
    height: 26px;
}

.sentir-icone-azul {
    background: rgba(29, 78, 216, 0.1);
    color: var(--azul-base);
}
.sentir-icone-roxo {
    background: rgba(124, 58, 237, 0.1);
    color: var(--roxo);
}
.sentir-icone-rosa {
    background: rgba(168, 85, 247, 0.1);
    color: #A855F7;
}

/* Número decorativo */
.sentir-numero {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 52px;
    color: rgba(29, 78, 216, 0.08);
    line-height: 1;
    letter-spacing: -2px;
}

/* Corpo do card */
.sentir-card-body {
    flex: 1;
}

.sentir-card-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: #0F172A;
    margin-bottom: 10px;
    line-height: 1.3;
}

.sentir-card-desc {
    font-size: 15px;
    color: #64748B;
    line-height: 1.65;
}

/* Barra colorida no rodapé do card */
.sentir-card-barra {
    height: 3px;
    width: 40px;
    border-radius: 4px;
    margin-top: 8px;
}

.sentir-barra-azul  { background: var(--azul-base); }
.sentir-barra-roxo  { background: var(--roxo); }
.sentir-barra-rosa  { background: #A855F7; }

/* Banner de conclusão */
.sentir-banner {
    max-width: 1100px;
    margin: 0 auto;
    background: var(--gradiente);
    border-radius: 20px;
    padding: 28px 36px;
    display: flex;
    align-items: center;
    gap: 24px;
    text-align: left;
    box-shadow: 0 16px 48px rgba(29, 78, 216, 0.35);
}

.sentir-banner-icone {
    width: 52px;
    height: 52px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #FFFFFF;
}

.sentir-banner-icone i {
    width: 26px;
    height: 26px;
}

.sentir-banner-texto {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.sentir-banner-texto strong {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: #FFFFFF;
}

.sentir-banner-texto span {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.sentir-banner-seta {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #FFFFFF;
    transition: background 0.3s ease, transform 0.3s ease;
    cursor: pointer;
}

.sentir-banner-seta:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateX(4px);
}

.sentir-banner-seta i {
    width: 20px;
    height: 20px;
}

/* ---- Responsividade da Seção 8 ---- */
@media (max-width: 900px) {
    .sentir-grid {
        grid-template-columns: 1fr;
    }
    .sentir-card {
        border-right: none;
        border-bottom: 1px solid rgba(124, 58, 237, 0.1);
    }
    .sentir-card:last-child {
        border-bottom: none;
    }
    .sentir-trilho {
        display: none;
    }
    .sentir-banner {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 600px) {
    .sentir-title {
        font-size: 40px;
        letter-spacing: -1px;
    }
    .sentir-banner {
        padding: 24px 20px;
        gap: 16px;
    }
    .sentir-banner-seta {
        display: none;
    }
}


/* ============================================
   SEÇÃO 9: CTA FINAL
   ============================================ */
.cta-final {
    background: var(--dark-bg);
    padding: 100px 0;
    text-align: center;
}

.cta-card {
    position: relative;
    background: var(--branco);
    border: 1px solid #E2E8F0;
    border-radius: 28px;
    padding: 64px 48px;
    max-width: 720px;
    margin: 0 auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.07);
    overflow: hidden;
}

.cta-card-stripe {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradiente);
}

.cta-title {
    font-size: clamp(28px, 4vw, 42px);
    color: #0F172A;
    margin-bottom: 16px;
    line-height: 1.3;
}

.cta-subtitle {
    font-size: 18px;
    color: #64748B;
    margin-bottom: 40px;
}

.cta-btn {
    margin: 0 auto;
    display: inline-flex;
}

.cta-disclaimer {
    font-size: 13px;
    color: #94A3B8;
    margin-top: 20px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--dark-bg);
    padding: 40px 0;
    text-align: center;
}

.footer-divider {
    width: 100%;
    height: 1px;
    background: #E2E8F0;
    margin-bottom: 40px;
}

.footer-inner-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.footer-logo {
    font-size: 22px;
}

.footer-copy {
    font-size: 14px;
    color: #94A3B8;
}

/* ============================================
   RESPONSIVIDADE
   ============================================ */
@media (max-width: 1024px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bento-card-large {
        grid-column: span 2;
    }

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

@media (max-width: 768px) {
    .header {
        height: 60px;
    }

    .header.scrolled {
        height: 56px;
    }

    .logo-text {
        font-size: 18px;
    }

    .btn-header {
        padding: 8px 16px;
        font-size: 12px;
    }

    .hero {
        padding-top: 60px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
        padding: 16px;
        min-height: 52px;
    }

    .floating-card {
        display: none;
    }

    .floating-card.card-1,
    .floating-card.card-3 {
        display: flex;
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
        margin: 8px auto;
        font-size: 12px;
        padding: 10px 14px;
    }

    .dores-grid {
        grid-template-columns: 1fr;
    }

    .dores-card {
        padding: 32px 24px;
    }

    .bento-grid {
        grid-template-columns: 1fr;
    }

    .bento-card-large {
        grid-column: span 1;
        flex-direction: column;
    }

    .bento-card {
        min-height: auto;
        padding: 28px;
    }

    .beneficios-grid {
        grid-template-columns: 1fr;
    }

    .beneficio-card {
        padding: 24px;
    }

    .grafico-card {
        padding: 28px 24px;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
    }

    .solucao-intro {
        font-size: 17px;
    }

    .diferenca-text {
        font-size: 17px;
    }

    .bento-card-title {
        font-size: 20px;
    }

    .solucao-strong {
        font-size: 20px;
    }

    .grafico-titulo {
        font-size: 18px;
    }

    .barra-track {
        height: 22px;
    }

    .barra-fill {
        border-radius: 11px;
    }
}

/* ============================================
   RESPONSIVIDADE - NOVAS SEÇÕES (6-9)
   ============================================ */
@media (max-width: 1024px) {
    .comparativo-grid {
        gap: 20px;
    }
    .sentir-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
    }
}

@media (max-width: 768px) {
    /* Seção 6 */
    .comparativo {
        padding: 80px 0;
    }
    .comparativo-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
    }

    /* Seção 6.5 */
    .diferenca {
        padding: 80px 0;
    }
    .diferenca-card {
        padding: 48px 24px;
    }
    .diferenca-title {
        font-size: 26px;
    }

    /* Seção 7 */
    .como-funciona-sec {
        padding: 80px 0;
    }
    .como-numero {
        font-size: 56px;
        width: 72px;
    }
    .como-title {
        margin-bottom: 40px;
    }
    /* Seção 8 */
    .sentir {
        padding: 80px 0;
    }
    .sentir-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
    }
    /* Seção 9 */
    .cta-final {
        padding: 80px 0;
    }
    .cta-card {
        padding: 48px 24px;
    }
    .cta-title {
        font-size: 26px;
    }
}
