/* ================================================
   QUIZ FUNIL - MOBILE FIRST DESIGN
   Inspirado no estilo InLead/Movify
   ================================================ */

/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    font-size: 14px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #FAFAFA;
    color: #1A1A1A;
    min-height: 100vh;
    min-height: 100dvh; /* Dynamic viewport height para mobile */
    line-height: 1.5;
    overflow-x: hidden;
}

/* Container Principal */
.quiz-container {
    max-width: 100%;
    width: 100%;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    background: #FFFFFF;
}

/* ================================================
   PROGRESS BAR
   ================================================ */
.progress-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: #FFFFFF;
    padding: 6px 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.progress-bar {
    flex: 1;
    height: 6px;
    background: #E8E8E8;
    border-radius: 100px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #22C55E 0%, #16A34A 100%);
    border-radius: 100px;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.progress-text {
    font-size: 13px;
    font-weight: 600;
    color: #666;
    min-width: 40px;
    text-align: right;
}

/* ================================================
   STEPS CONTAINER
   ================================================ */
.steps-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding-top: 28px; /* Espaço mínimo para progress bar */
}

.step {
    display: none;
    flex-direction: column;
    min-height: calc(100vh - 60px);
    min-height: calc(100dvh - 60px);
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.step.active {
    display: flex;
    opacity: 1;
    transform: translateX(0);
}

.step.exit {
    opacity: 0;
    transform: translateX(-20px);
}

.step-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 8px 16px;
    padding-bottom: 24px;
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
}

/* ================================================
   CAPA - TELA INICIAL
   ================================================ */
.capa {
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 0;
    margin-top: -25px;
}

.capa .step-content {
    padding-top: 0;
}

.capa-logo {
    margin-bottom: 20px;
}

.logo-img {
    max-width: 180px;
    height: auto;
}

.capa-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #FEF3C7 0%, #FDE68A 100%);
    padding: 8px 16px;
    border-radius: 100px;
    margin-bottom: 24px;
}

.badge-icon {
    font-size: 16px;
}

.badge-text {
    font-size: 12px;
    font-weight: 700;
    color: #92400E;
    letter-spacing: 0.5px;
}

.capa-title {
    font-size: 28px;
    font-weight: 800;
    line-height: 1.2;
    color: #1A1A1A;
    margin-bottom: 16px;
}

.highlight {
    color: #22C55E;
    position: relative;
}

.capa-subtitle {
    font-size: 16px;
    color: #666;
    margin-bottom: 32px;
    line-height: 1.6;
}

.capa-benefits {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
    width: 100%;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #F8FFF8;
    padding: 14px 16px;
    border-radius: 12px;
    border: 1px solid #E8F5E8;
}

.benefit-icon {
    width: 24px;
    height: 24px;
    background: #22C55E;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
}

.benefit-item span:last-child {
    font-size: 14px;
    color: #333;
    text-align: left;
}

.btn-start {
    width: 100%;
    max-width: 320px;
}

.capa-disclaimer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 13px;
    color: #888;
    margin-top: 16px;
}

.lock-icon {
    font-size: 14px;
}

/* ================================================
   BOTÕES
   ================================================ */
.btn-primary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px 20px;
    font-size: 16px;
    font-weight: 700;
    color: #FFFFFF;
    background: #1A1A1A;
    border: none;
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
    -webkit-appearance: none;
    appearance: none;
}

.btn-primary:hover {
    background: #333;
    transform: translateY(-1px);
}

.btn-primary:active {
    transform: translateY(0);
    background: #000;
}

.btn-primary:disabled {
    background: #E0E0E0;
    color: #999;
    cursor: not-allowed;
    transform: none;
}

.btn-arrow {
    font-size: 18px;
    transition: transform 0.2s ease;
}

.btn-primary:hover .btn-arrow {
    transform: translateX(3px);
}

.btn-continue {
    margin-top: auto;
}

/* ================================================
   PERGUNTAS - HEADER
   ================================================ */
.question-header {
    text-align: center;
    margin-bottom: 20px;
}

.question-emoji {
    font-size: 36px;
    display: block;
    margin-bottom: 10px;
}

.question-title {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
    color: #1A1A1A;
}

/* ================================================
   INPUTS
   ================================================ */
.input-wrapper {
    margin-bottom: 24px;
}

.input-text,
.input-phone {
    width: 100%;
    padding: 18px 20px;
    font-size: 18px;
    font-family: inherit;
    color: #1A1A1A;
    background: #F5F5F5;
    border: 2px solid transparent;
    border-radius: 14px;
    outline: none;
    transition: all 0.2s ease;
    -webkit-appearance: none;
}

.input-text:focus,
.input-phone:focus {
    background: #FFFFFF;
    border-color: #22C55E;
    box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.1);
}

.input-text::placeholder,
.input-phone::placeholder {
    color: #999;
}

.input-description {
    font-size: 14px;
    color: #666;
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.5;
}

.phone-input-group {
    display: flex;
    align-items: center;
    background: #F5F5F5;
    border-radius: 14px;
    border: 2px solid transparent;
    transition: all 0.2s ease;
    overflow: hidden;
}

.phone-input-group:focus-within {
    background: #FFFFFF;
    border-color: #22C55E;
    box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.1);
}

.phone-prefix {
    padding: 18px 16px;
    font-size: 16px;
    color: #666;
    background: transparent;
    border-right: 1px solid #E0E0E0;
    white-space: nowrap;
}

.phone-input-group .input-phone {
    border: none;
    background: transparent;
    border-radius: 0;
}

.phone-input-group .input-phone:focus {
    box-shadow: none;
}

.privacy-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 12px;
    color: #888;
    margin-top: 16px;
    text-align: center;
}

/* ================================================
   OPÇÕES - GRID (para seleção múltipla visual)
   ================================================ */
.options-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 24px;
}

.option-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 20px 16px;
    background: #FFFFFF;
    border: 2px solid #E8E8E8;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
    -webkit-appearance: none;
    min-height: 100px;
}

.option-btn:hover {
    border-color: #CCCCCC;
    background: #FAFAFA;
}

.option-btn:active {
    transform: scale(0.98);
}

.option-btn.selected {
    border-color: #22C55E;
    background: #F0FDF4;
    box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.1);
}

.option-icon {
    font-size: 28px;
}

.option-btn .option-text {
    font-size: 13px;
    font-weight: 600;
    color: #333;
    text-align: center;
    line-height: 1.3;
}

/* ================================================
   OPÇÕES - LISTA (para seleção única)
   ================================================ */
.options-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
}

.option-btn-full {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 12px 14px;
    background: #FFFFFF;
    border: 2px solid #E8E8E8;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    -webkit-appearance: none;
    text-align: left;
}

.option-btn-full:hover {
    border-color: #CCCCCC;
    background: #FAFAFA;
}

.option-btn-full:active {
    transform: scale(0.99);
}

.option-btn-full.selected {
    border-color: #22C55E;
    background: #F0FDF4;
}

.option-btn-full.selected .option-check {
    background: #22C55E;
    border-color: #22C55E;
}

.option-btn-full.selected .option-check::after {
    content: '✓';
    color: white;
    font-size: 14px;
    font-weight: 700;
}

.option-emoji {
    font-size: 20px;
    flex-shrink: 0;
}

.option-btn-full .option-text {
    flex: 1;
    font-size: 13px;
    font-weight: 500;
    color: #333;
}

.option-check {
    width: 20px;
    height: 20px;
    border: 2px solid #DDD;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

/* Percentual badges */
.option-percent {
    font-size: 13px;
    font-weight: 700;
    padding: 6px 10px;
    border-radius: 8px;
    flex-shrink: 0;
}

.option-percent.bad {
    background: #FEE2E2;
    color: #DC2626;
}

.option-percent.medium {
    background: #FEF3C7;
    color: #D97706;
}

.option-percent.ok {
    background: #FEF9C3;
    color: #CA8A04;
}

.option-percent.good {
    background: #DCFCE7;
    color: #16A34A;
}

.option-percent.great {
    background: #D1FAE5;
    color: #059669;
}

/* ================================================
   LOADING
   ================================================ */
.loading-content {
    justify-content: center;
    align-items: center;
    text-align: center;
}

.loading-wrapper {
    width: 100%;
    max-width: 320px;
}

.loading-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 32px;
}

.loading-bar-container {
    margin-bottom: 40px;
}

.loading-bar {
    width: 100%;
    height: 12px;
    background: #E8E8E8;
    border-radius: 100px;
    overflow: hidden;
    margin-bottom: 12px;
}

.loading-bar-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #1A1A1A 0%, #333 100%);
    border-radius: 100px;
    transition: width 0.1s linear;
}

.loading-percent {
    font-size: 20px;
    font-weight: 700;
    color: #1A1A1A;
}

.loading-steps {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.loading-step {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: #F5F5F5;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.loading-step.active {
    background: #FEF3C7;
}

.loading-step.completed {
    background: #F0FDF4;
}

.loading-step-icon {
    font-size: 18px;
    width: 24px;
    text-align: center;
}

.loading-step.completed .loading-step-icon::after {
    content: '✓';
}

.loading-step.completed .loading-step-icon {
    color: #22C55E;
}

.loading-step-text {
    font-size: 14px;
    color: #666;
}

.loading-step.active .loading-step-text,
.loading-step.completed .loading-step-text {
    color: #333;
    font-weight: 500;
}

/* ================================================
   RESULTADO
   ================================================ */
.result-content {
    padding-top: 20px;
}

.result-header {
    text-align: center;
    margin-bottom: 24px;
}

.result-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 16px;
}

.result-badge.iniciante {
    background: #FEE2E2;
    color: #DC2626;
}

.result-badge.travado {
    background: #FEF3C7;
    color: #D97706;
}

.result-badge.competitivo {
    background: #DCFCE7;
    color: #16A34A;
}

.result-badge.reta-final {
    background: #DBEAFE;
    color: #2563EB;
}

.result-greeting {
    font-size: 22px;
    font-weight: 700;
    color: #1A1A1A;
    line-height: 1.3;
}

.result-profile {
    background: #F8F8F8;
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 24px;
}

.profile-title {
    font-size: 16px;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 12px;
}

.profile-description {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.result-analysis {
    margin-bottom: 32px;
}

.analysis-title {
    font-size: 16px;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 16px;
}

.analysis-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.analysis-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
    background: #FFFFFF;
    border: 1px solid #E8E8E8;
    border-radius: 12px;
}

.analysis-icon {
    font-size: 20px;
    flex-shrink: 0;
}

.analysis-text {
    font-size: 14px;
    color: #333;
    line-height: 1.5;
}

/* ================================================
   CAPTURA - FORMULÁRIO
   ================================================ */
.capture-step {
    padding-top: 16px;
}

.capture-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.input-label {
    font-size: 13px;
    font-weight: 600;
    color: #333;
    padding-left: 4px;
}

.btn-capture {
    margin-top: 8px;
}

/* ================================================
   CTA - FLASHCARDS (ALTA CONVERSÃO)
   ================================================ */
.result-cta {
    background: linear-gradient(180deg, #FFFFFF 0%, #F8FFF8 100%);
    border-radius: 24px;
    padding: 28px 20px;
    text-align: center;
    border: 2px solid #22C55E;
    box-shadow: 0 8px 32px rgba(34, 197, 94, 0.15);
}

.cta-urgency {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(90deg, #FEF3C7 0%, #FDE68A 100%);
    padding: 10px 16px;
    border-radius: 100px;
    margin-bottom: 20px;
}

.urgency-icon {
    font-size: 16px;
}

.urgency-text {
    font-size: 12px;
    font-weight: 700;
    color: #92400E;
}

.cta-flashcard-preview {
    margin-bottom: 24px;
}

.flashcard-mini {
    display: inline-block;
    width: 220px;
    background: #FFFFFF;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    transform: rotate(-2deg);
    border: 1px solid #E8E8E8;
}

.flashcard-label {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    color: #22C55E;
    background: #F0FDF4;
    padding: 4px 10px;
    border-radius: 6px;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.flashcard-question {
    font-size: 14px;
    font-weight: 600;
    color: #1A1A1A;
    line-height: 1.4;
}

.flashcard-count {
    margin-top: 12px;
    font-size: 14px;
    color: #666;
}

.flashcard-count span {
    font-weight: 800;
    color: #22C55E;
    font-size: 18px;
}

.cta-title {
    font-size: 22px;
    font-weight: 800;
    color: #1A1A1A;
    margin-bottom: 12px;
    line-height: 1.3;
}

.cta-description {
    font-size: 15px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
}

.cta-benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 24px;
    text-align: left;
}

.cta-benefit {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 13px;
    color: #333;
}

.benefit-check {
    width: 20px;
    height: 20px;
    background: #22C55E;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    flex-shrink: 0;
}

/* Preço */
.cta-price-box {
    background: linear-gradient(135deg, #1A1A1A 0%, #333 100%);
    border-radius: 16px;
    padding: 24px 20px;
    margin-bottom: 20px;
    color: white;
}

.price-anchor {
    margin-bottom: 8px;
}

.price-from {
    font-size: 13px;
    color: #999;
}

.price-old {
    font-size: 18px;
    color: #999;
    text-decoration: line-through;
    margin-left: 6px;
}

.price-main {
    margin-bottom: 12px;
}

.price-for {
    font-size: 14px;
    color: #BBB;
    display: block;
    margin-bottom: 4px;
}

.price-value {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
}

.price-currency {
    font-size: 20px;
    font-weight: 600;
    color: #FFF;
}

.price-amount {
    font-size: 42px;
    font-weight: 800;
    color: #22C55E;
    line-height: 1;
}

.price-cash {
    font-size: 13px;
    color: #888;
    display: block;
    margin-top: 8px;
}

.price-economy {
    margin-top: 12px;
}

.economy-badge {
    display: inline-block;
    background: linear-gradient(90deg, #FDE68A 0%, #FEF3C7 100%);
    color: #92400E;
    font-size: 12px;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 100px;
}

/* Botão principal */
.btn-flashcards {
    background: linear-gradient(135deg, #22C55E 0%, #16A34A 100%);
    margin-bottom: 16px;
    font-size: 15px;
    padding: 20px 24px;
    box-shadow: 0 4px 16px rgba(34, 197, 94, 0.4);
}

.btn-flashcards:hover {
    background: linear-gradient(135deg, #16A34A 0%, #15803D 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(34, 197, 94, 0.5);
}

.btn-pulse {
    animation: btnPulse 2s ease-in-out infinite;
}

@keyframes btnPulse {
    0%, 100% {
        box-shadow: 0 4px 16px rgba(34, 197, 94, 0.4);
    }
    50% {
        box-shadow: 0 4px 32px rgba(34, 197, 94, 0.6);
    }
}

.btn-icon {
    font-size: 20px;
}

/* Garantia */
.cta-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: #F8F8F8;
    padding: 16px;
    border-radius: 12px;
    margin-bottom: 24px;
}

.guarantee-icon {
    font-size: 28px;
}

.guarantee-text {
    text-align: left;
}

.guarantee-text strong {
    display: block;
    font-size: 14px;
    color: #1A1A1A;
}

.guarantee-text span {
    font-size: 12px;
    color: #666;
}

/* Bônus */
.cta-bonus-section {
    background: #FFFBEB;
    border: 1px dashed #F59E0B;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 20px;
}

.bonus-title {
    font-size: 14px;
    font-weight: 700;
    color: #92400E;
    margin-bottom: 12px;
}

.bonus-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.bonus-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #333;
}

.bonus-icon {
    font-size: 16px;
}

/* Botão secundário */
.btn-secondary {
    display: block;
    width: 100%;
    padding: 14px 20px;
    font-size: 14px;
    font-weight: 600;
    color: #666;
    background: transparent;
    border: none;
    cursor: pointer;
    text-decoration: underline;
    transition: color 0.2s ease;
}

.btn-secondary:hover {
    color: #333;
}

/* ================================================
   NOVOS BLOCOS - QUIZ ALTA CONVERSÃO
   ================================================ */

/* Highlight vermelho */
.highlight-red {
    color: #DC2626;
    font-weight: 700;
}

/* Opção em destaque */
.option-destaque {
    border-color: #22C55E;
    background: #F0FDF4;
}

/* Botão verde */
.btn-verde {
    background: linear-gradient(135deg, #22C55E 0%, #16A34A 100%);
}

.btn-verde:hover {
    background: linear-gradient(135deg, #16A34A 0%, #15803D 100%);
}

/* ================================================
   BLOCO NOTÍCIA
   ================================================ */
.noticia-content {
    padding-top: 16px;
}

.noticia-card {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 24px 20px;
    margin-bottom: 24px;
    border: 1px solid #E8E8E8;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.noticia-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #FEE2E2;
    padding: 8px 14px;
    border-radius: 100px;
    margin-bottom: 16px;
    font-size: 12px;
    font-weight: 700;
    color: #DC2626;
}

.noticia-title {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 12px;
    color: #1A1A1A;
}

.noticia-text {
    font-size: 16px;
    color: #333;
    margin-bottom: 20px;
}

.noticia-detail {
    background: #F8F8F8;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 20px;
}

.noticia-detail p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 10px;
}

.noticia-detail p:last-child {
    margin-bottom: 0;
}

.noticia-conclusion {
    text-align: center;
    padding-top: 16px;
    border-top: 1px dashed #DDD;
}

.noticia-conclusion p {
    font-size: 15px;
    color: #333;
    margin-bottom: 6px;
}

/* ================================================
   BLOCO AUTORIDADE
   ================================================ */
.autoridade-content {
    padding-top: 16px;
}

.autoridade-card {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 24px 20px;
    margin-bottom: 24px;
    border: 1px solid #E8E8E8;
}

.autoridade-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid #EEE;
}

.autoridade-avatar {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #22C55E 0%, #16A34A 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.autoridade-logo {
    background: #1A1A1A;
    padding: 8px;
    overflow: hidden;
}

.autoridade-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

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

.autoridade-label {
    font-size: 11px;
    font-weight: 600;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.autoridade-name {
    font-size: 18px;
    font-weight: 700;
    color: #1A1A1A;
}

.autoridade-text {
    font-size: 15px;
    color: #444;
    line-height: 1.7;
    margin-bottom: 14px;
}

.autoridade-text:last-of-type {
    margin-bottom: 0;
}

/* ================================================
   BLOCO EXPLICAÇÃO (ARMADILHAS)
   ================================================ */
.explicacao-content {
    padding-top: 16px;
}

.explicacao-card {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 24px 20px;
    margin-bottom: 24px;
    border: 2px solid #FEE2E2;
}

.explicacao-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
}

.armadilhas-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.armadilha-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: #FEF2F2;
    border-radius: 12px;
    font-size: 14px;
    color: #7F1D1D;
}

.armadilha-icon {
    font-size: 18px;
    flex-shrink: 0;
}

.resultado-armadilhas {
    background: #1A1A1A;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    color: #FFF;
}

.resultado-titulo {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 12px;
}

.resultado-armadilhas p {
    font-size: 14px;
    color: #CCC;
    margin-bottom: 6px;
}

.resultado-armadilhas p:last-child {
    margin-bottom: 0;
}

/* ================================================
   BLOCO PRODUTO
   ================================================ */
.produto-content {
    padding-top: 16px;
}

.produto-card {
    background: linear-gradient(180deg, #F0FDF4 0%, #DCFCE7 100%);
    border-radius: 20px;
    padding: 24px 20px;
    margin-bottom: 24px;
    border: 2px solid #BBF7D0;
    text-align: center;
}

.produto-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #FFFFFF;
    padding: 8px 16px;
    border-radius: 100px;
    margin-bottom: 16px;
    font-size: 12px;
    font-weight: 700;
    color: #16A34A;
}

.produto-title {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 12px;
    color: #1A1A1A;
}

.produto-text {
    font-size: 15px;
    color: #333;
    margin-bottom: 20px;
}

.produto-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
    text-align: left;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    background: #FFFFFF;
    border-radius: 12px;
    font-size: 14px;
    color: #333;
}

.feature-icon {
    font-size: 20px;
    flex-shrink: 0;
}

.produto-destaque {
    font-size: 15px;
    font-weight: 600;
    color: #1A1A1A;
    padding: 16px;
    background: #FFFFFF;
    border-radius: 12px;
}

/* ================================================
   BLOCO TRANSIÇÃO
   ================================================ */
.transicao-content {
    padding-top: 16px;
    text-align: center;
}

.transicao-card {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 32px 24px;
    margin-bottom: 24px;
    border: 1px solid #E8E8E8;
}

.transicao-emoji {
    font-size: 56px;
    display: block;
    margin-bottom: 20px;
}

.transicao-title {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 24px;
    color: #1A1A1A;
}

.entrega-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
    text-align: left;
}

.entrega-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: #333;
}

.entrega-check {
    width: 24px;
    height: 24px;
    background: #22C55E;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
}

.transicao-pergunta {
    font-size: 18px;
    color: #1A1A1A;
    margin-bottom: 8px;
}

.transicao-hook {
    font-size: 16px;
    color: #666;
}

/* ================================================
   RESULTADO - DIAGNÓSTICO E DEPOIMENTOS
   ================================================ */
.diagnostico-resumo {
    background: #F8F8F8;
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 24px;
}

.diagnostico-intro {
    font-size: 14px;
    color: #666;
    margin-bottom: 12px;
}

.diagnostico-problema {
    background: #FFFFFF;
    border-radius: 12px;
    padding: 0;
}

.diagnostico-card {
    background: #FFFFFF;
    border-radius: 12px;
    overflow: hidden;
}

.diagnostico-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    background: linear-gradient(135deg, #FEE2E2 0%, #FECACA 100%);
}

.diagnostico-icone {
    font-size: 24px;
}

.diagnostico-titulo {
    font-size: 16px;
    font-weight: 700;
    color: #991B1B;
}

.diagnostico-desc {
    font-size: 14px;
    color: #555;
    line-height: 1.5;
    padding: 14px 16px;
    border-bottom: 1px solid #E8E8E8;
}

.diagnostico-solucao {
    padding: 14px 16px;
    background: #F0FDF4;
}

.solucao-label {
    font-size: 12px;
    font-weight: 700;
    color: #16A34A;
    display: block;
    margin-bottom: 6px;
}

.solucao-texto {
    font-size: 13px;
    color: #166534;
    line-height: 1.5;
}

.depoimentos-section {
    margin-bottom: 24px;
}

.depoimentos-titulo {
    font-size: 16px;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 16px;
}

.depoimento-card {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 18px;
    margin-bottom: 12px;
    border: 1px solid #E8E8E8;
}

.depoimento-texto {
    font-size: 14px;
    color: #333;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 10px;
}

.depoimento-autor {
    font-size: 13px;
    font-weight: 600;
    color: #22C55E;
}

/* Depoimentos com foto */
.depoimento-com-foto {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 16px;
}

.depoimento-foto {
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.depoimento-foto img {
    width: 100%;
    height: auto;
    display: block;
}

.depoimento-conteudo {
    flex: 1;
}

.depoimento-com-foto .depoimento-texto {
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 12px;
}

.depoimento-com-foto .depoimento-autor {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.autor-nome {
    font-size: 14px;
    font-weight: 700;
    color: #1A1A1A;
}

.autor-cargo {
    font-size: 12px;
    font-weight: 600;
    color: #22C55E;
}

/* Depoimentos compactos em grid */
.depoimentos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.depoimento-mini {
    background: #FFFFFF;
    border-radius: 12px;
    padding: 10px;
    border: 1px solid #E8E8E8;
    text-align: center;
}

.depoimento-mini img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 8px;
}

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

.mini-nome {
    font-size: 11px;
    font-weight: 700;
    color: #1A1A1A;
    line-height: 1.2;
}

.mini-cargo {
    font-size: 10px;
    font-weight: 600;
    color: #22C55E;
}

/* Recapitulação */
.recapitulacao {
    background: #F8F8F8;
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 20px;
    text-align: left;
}

.recap-titulo {
    font-size: 15px;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 14px;
}

.recap-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.recap-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #333;
}

.recap-check {
    width: 20px;
    height: 20px;
    background: #22C55E;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
}

/* FAQ */
.faq-section {
    background: #F8F8F8;
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 20px;
    text-align: left;
}

.faq-titulo {
    font-size: 15px;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 16px;
}

.faq-item {
    padding: 14px 0;
    border-bottom: 1px solid #E8E8E8;
}

.faq-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.faq-pergunta {
    font-size: 14px;
    font-weight: 600;
    color: #1A1A1A;
    margin-bottom: 6px;
}

.faq-resposta {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
}

/* ================================================
   PÁGINA DE DIAGNÓSTICO ELABORADO
   ================================================ */
.diagnostico-page {
    padding-top: 10px;
}

.diagnostico-header-page {
    text-align: center;
    margin-bottom: 24px;
}

.conquista-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #F0FDF4 0%, #DCFCE7 100%);
    padding: 10px 18px;
    border-radius: 100px;
    margin-bottom: 16px;
    font-size: 12px;
    font-weight: 700;
    color: #16A34A;
    border: 1px solid #BBF7D0;
}

.diagnostico-greeting {
    font-size: 24px;
    font-weight: 800;
    color: #1A1A1A;
    line-height: 1.3;
}

.diagnostico-main-card {
    background: #F8F8F8;
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 20px;
}

.diagnostico-label {
    font-size: 13px;
    color: #666;
    margin-bottom: 12px;
}

.diagnostico-insights {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid #E8E8E8;
}

.insights-titulo {
    font-size: 15px;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 16px;
}

.insight-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #F0F0F0;
}

.insight-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.insight-icon {
    font-size: 18px;
    flex-shrink: 0;
}

.insight-item p {
    font-size: 14px;
    color: #333;
    line-height: 1.5;
}

.metodo-recomendado {
    background: linear-gradient(180deg, #FFFBEB 0%, #FEF3C7 100%);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 24px;
    border: 1px solid #FDE68A;
}

.metodo-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.metodo-icon {
    font-size: 20px;
}

.metodo-label {
    font-size: 11px;
    font-weight: 700;
    color: #92400E;
    letter-spacing: 0.5px;
}

.metodo-titulo {
    font-size: 18px;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 10px;
}

.metodo-desc {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 16px;
}

.metodo-beneficios {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.beneficio-mini {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #FFFFFF;
    padding: 8px 12px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    color: #16A34A;
}

.beneficio-mini span {
    color: #22C55E;
}

.diagnostico-disclaimer {
    text-align: center;
    font-size: 13px;
    color: #888;
    margin-top: 16px;
}

/* ================================================
   PÁGINA DE OFERTA
   ================================================ */
.oferta-page {
    padding-top: 10px;
}

.oferta-investimento {
    background: linear-gradient(180deg, #FFFFFF 0%, #F8FFF8 100%);
    border-radius: 20px;
    padding: 24px 20px;
    margin-bottom: 24px;
    border: 2px solid #22C55E;
    box-shadow: 0 8px 32px rgba(34, 197, 94, 0.15);
}

.oferta-header {
    text-align: center;
    margin-bottom: 20px;
}

.oferta-badge {
    display: inline-block;
    background: linear-gradient(90deg, #FDE68A 0%, #FEF3C7 100%);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    color: #92400E;
    margin-bottom: 12px;
}

.oferta-titulo {
    font-size: 22px;
    font-weight: 800;
    color: #1A1A1A;
    margin-bottom: 8px;
    line-height: 1.3;
}

.oferta-subtitulo {
    font-size: 15px;
    color: #555;
}

.incluso-lista {
    margin-bottom: 20px;
}

.incluso-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid #E8E8E8;
    font-size: 14px;
    color: #333;
}

.incluso-item:last-child {
    border-bottom: none;
}

.incluso-check {
    width: 20px;
    height: 20px;
    background: #22C55E;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
}

.preco-box {
    background: linear-gradient(135deg, #1A1A1A 0%, #333 100%);
    border-radius: 16px;
    padding: 24px 20px;
    margin-bottom: 20px;
    color: white;
    text-align: center;
}

.preco-de {
    margin-bottom: 8px;
    font-size: 14px;
    color: #999;
}

.preco-riscado {
    text-decoration: line-through;
    margin-left: 6px;
    font-size: 18px;
}

.preco-por {
    margin-bottom: 12px;
}

.preco-label {
    display: block;
    font-size: 14px;
    color: #BBB;
    margin-bottom: 4px;
}

.preco-valor {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
}

.preco-parcela {
    font-size: 20px;
    font-weight: 600;
}

.preco-numero {
    font-size: 42px;
    font-weight: 800;
    color: #22C55E;
    line-height: 1;
}

.preco-avista {
    font-size: 13px;
    color: #888;
    display: block;
    margin-top: 8px;
}

.preco-economia {
    display: inline-block;
    background: linear-gradient(90deg, #FDE68A 0%, #FEF3C7 100%);
    color: #92400E;
    font-size: 12px;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 100px;
}

.btn-comprar {
    background: linear-gradient(135deg, #22C55E 0%, #16A34A 100%);
    margin-bottom: 16px;
    font-size: 15px;
    padding: 20px 24px;
    box-shadow: 0 4px 16px rgba(34, 197, 94, 0.4);
}

.garantia-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: #F8F8F8;
    padding: 14px;
    border-radius: 12px;
}

.garantia-icon {
    font-size: 24px;
}

.garantia-texto {
    text-align: left;
}

.garantia-texto strong {
    display: block;
    font-size: 13px;
    color: #1A1A1A;
}

.garantia-texto span {
    font-size: 12px;
    color: #666;
}

/* Seção de depoimentos na oferta */
.oferta-depoimentos {
    margin-bottom: 24px;
}

.secao-titulo {
    font-size: 16px;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 16px;
}

/* Carrossel de Aprovados */
.aprovados-carousel {
    overflow: hidden;
    width: 100%;
    margin: 0 -20px;
    padding: 0 20px;
    width: calc(100% + 40px);
}

.aprovados-track {
    display: flex;
    gap: 16px;
    animation: scrollAprovados 60s linear infinite;
    width: max-content;
}

.aprovados-track:hover {
    animation-play-state: paused;
}

.aprovado-card {
    flex-shrink: 0;
    width: 250px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    background: #FFFFFF;
}

.aprovado-card img {
    width: 100%;
    height: auto;
    display: block;
}

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

/* Estilos antigos mantidos para compatibilidade */
.depoimento-card-full {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 16px;
    margin-bottom: 12px;
    border: 1px solid #E8E8E8;
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.depoimento-foto-container {
    width: 70px;
    height: 70px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
}

.depoimento-foto-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.depoimento-content {
    flex: 1;
}

.depoimento-card-full .depoimento-texto {
    font-size: 13px;
    color: #333;
    line-height: 1.5;
    font-style: italic;
    margin-bottom: 10px;
}

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

.depoimento-autor-info .autor-nome {
    font-size: 13px;
    font-weight: 700;
    color: #1A1A1A;
}

.autor-aprovacao {
    font-size: 11px;
    font-weight: 600;
    color: #22C55E;
}

/* FAQ na oferta */
.oferta-faq {
    background: #F8F8F8;
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 24px;
}

.oferta-faq .faq-item {
    padding: 12px 0;
    border-bottom: 1px solid #E8E8E8;
}

.oferta-faq .faq-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

/* CTA Final */
.cta-final {
    text-align: center;
}

.cta-final .btn-comprar {
    width: 100%;
}

.cta-final .btn-secondary {
    margin-top: 8px;
}

/* ================================================
   TOAST NOTIFICATION
   ================================================ */
.toast {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    background: #1A1A1A;
    color: #FFFFFF;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    z-index: 200;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.toast-icon {
    width: 22px;
    height: 22px;
    background: #22C55E;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

/* ================================================
   ANIMAÇÕES
   ================================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

.step.active .question-header,
.step.active .options-grid,
.step.active .options-list,
.step.active .input-wrapper {
    animation: fadeInUp 0.4s ease forwards;
}

.option-btn.selected,
.option-btn-full.selected {
    animation: pulse 0.3s ease;
}

/* ================================================
   RESPONSIVO - TABLET E DESKTOP
   ================================================ */
@media (min-width: 768px) {
    .quiz-container {
        max-width: 500px;
        margin: 0 auto;
        box-shadow: 0 0 60px rgba(0, 0, 0, 0.1);
        min-height: 100vh;
    }

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

    .question-title {
        font-size: 26px;
    }

    .options-grid {
        gap: 16px;
    }

    .option-btn {
        padding: 24px 20px;
        min-height: 120px;
    }

    .step-content {
        padding: 32px 28px;
    }
}

/* Ajustes para telas muito pequenas */
@media (max-width: 360px) {
    .capa-title {
        font-size: 24px;
    }

    .question-title {
        font-size: 20px;
    }

    .option-btn {
        padding: 16px 12px;
        min-height: 90px;
    }

    .option-btn .option-text {
        font-size: 12px;
    }

    .option-btn-full {
        padding: 14px 16px;
    }

    .option-btn-full .option-text {
        font-size: 14px;
    }
}

/* Safe area para iPhones com notch */
@supports (padding: max(0px)) {
    .progress-wrapper {
        padding-top: max(12px, env(safe-area-inset-top));
    }

    .step-content {
        padding-bottom: max(40px, env(safe-area-inset-bottom));
    }

    .toast {
        bottom: max(20px, env(safe-area-inset-bottom));
    }
}

/* Desabilitar scroll bounce no iOS */
html {
    overscroll-behavior: none;
}

body {
    overscroll-behavior-y: none;
}

/* Scrollbar customizada (para quando necessário) */
::-webkit-scrollbar {
    width: 4px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: #DDD;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #BBB;
}

/* ================================================
   CARROSSEL DE CONCURSOS (Quiz Concurso)
   ================================================ */
.concursos-carousel-section {
    margin-bottom: 24px;
}

.carousel-hint {
    font-size: 12px;
    color: #888;
    text-align: right;
    margin-bottom: 12px;
    animation: slideHint 2s ease-in-out infinite;
}

@keyframes slideHint {
    0%, 100% { opacity: 0.6; transform: translateX(0); }
    50% { opacity: 1; transform: translateX(5px); }
}

.concursos-carousel {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 4px 0 16px 0;
    margin: 0 -20px;
    padding-left: 20px;
    padding-right: 20px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.concursos-carousel::-webkit-scrollbar {
    display: none;
}

.concurso-info-card {
    flex-shrink: 0;
    width: 280px;
    background: #FFFFFF;
    border-radius: 16px;
    border: 1px solid #E8E8E8;
    overflow: hidden;
    scroll-snap-align: start;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.concurso-info-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.concurso-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
}

.concurso-card-icon {
    font-size: 28px;
}

.concurso-card-sigla {
    font-size: 20px;
    font-weight: 800;
}

.concurso-card-body {
    padding: 16px;
}

.concurso-card-nome {
    font-size: 14px;
    font-weight: 600;
    color: #1A1A1A;
    margin-bottom: 14px;
    line-height: 1.3;
}

.concurso-card-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 14px;
}

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

.info-label {
    font-size: 11px;
    color: #888;
    font-weight: 600;
}

.info-value {
    font-size: 13px;
    color: #333;
    font-weight: 500;
}

.info-value.status-solicitado {
    color: #D97706;
    font-weight: 600;
}

.info-value.status-aguardando {
    color: #6B7280;
}

.info-value.status-aberto {
    color: #16A34A;
    font-weight: 600;
}

.concurso-card-destaque {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    background: #FEF3C7;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    color: #92400E;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 12px;
}

.carousel-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #DDD;
    cursor: pointer;
    transition: all 0.2s ease;
}

.carousel-dots .dot.active {
    background: #22C55E;
    width: 24px;
    border-radius: 4px;
}

/* Destaque do concurso ideal no carrossel */
.concurso-info-card.ideal {
    border: 2px solid #22C55E;
    box-shadow: 0 4px 20px rgba(34, 197, 94, 0.2);
}

.concurso-info-card.ideal::before {
    content: '✓ SEU IDEAL';
    position: absolute;
    top: -10px;
    right: 16px;
    background: #22C55E;
    color: white;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 100px;
}

.concurso-info-card {
    position: relative;
}

/* ================================================
   CHECKBOXES DE CONCURSOS VIÁVEIS
   ================================================ */
.checkbox-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.checkbox-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    background: #FFFFFF;
    border: 2px solid #E8E8E8;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.checkbox-option:hover {
    border-color: #22C55E;
    background: #F0FDF4;
}

.checkbox-option.selected {
    border-color: #22C55E;
    background: #F0FDF4;
}

.checkbox-option input[type="checkbox"] {
    display: none;
}

.checkbox-content {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.checkbox-icon {
    font-size: 20px;
}

.checkbox-info {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.checkbox-title {
    font-size: 13px;
    font-weight: 600;
    color: #1A1A1A;
}

.checkbox-desc {
    font-size: 11px;
    color: #888;
}

.checkbox-check {
    width: 20px;
    height: 20px;
    border: 2px solid #DDD;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.checkbox-option.selected .checkbox-check {
    background: #22C55E;
    border-color: #22C55E;
}

.checkbox-option.selected .checkbox-check::after {
    content: '✓';
    color: white;
    font-size: 14px;
    font-weight: 700;
}

.question-subtitle {
    text-align: center;
}
