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

:root {
    --bg: #ffffff;
    --text-primary: #1a1a1a;
    --text-secondary: #6b6b6b;
    --text-tertiary: #9a9a9a;
    --accent: #6B8FD4;
    --accent-dark: #2D5A8C;
    --btn-bg: #F1ECF5;
    --btn-bg-hover: #E8E0EF;
    --btn-bg-active: #DCD0E5;
    --cta-bg: #2D5A8C;
    --cta-bg-hover: #244873;
    --cta-bg-disabled: #B6C5D9;
    --footer-link: #8a8a8a;
    --border-soft: #E2E2EA;
    --border-softer: #DCDCE2;
    --multi-bg: #F6F2FA;
    --battery-low: #E74C3C;
    --battery-mid: #F39C12;
    --battery-high: #27AE60;
}

html, body {
    background-color: var(--bg);
    color: var(--text-primary);
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

body {
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 20px 24px;
}

/* ============ HEADER ============ */
.page-header {
    width: 100%;
    max-width: 420px;
    display: flex;
    align-items: center;
    margin-bottom: 18px;
    min-height: 32px;
}

.page-header.with-title {
    justify-content: center;
    position: relative;
}

.page-header.with-title .back-btn {
    position: absolute;
    left: 0;
}

.header-title {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-primary);
    letter-spacing: 0.01em;
}

.back-btn {
    background: none;
    border: none;
    color: var(--text-primary);
    cursor: pointer;
    padding: 8px;
    margin-left: -8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.18s ease;
    font-family: inherit;
}

.back-btn:hover { opacity: 0.55; }
.back-btn:active { opacity: 0.35; }

/* ============ CONTAINER ============ */
.container {
    width: 100%;
    max-width: 420px;
    display: flex;
    flex-direction: column;
    flex: 1;
    animation: fadeIn 0.5s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ============ INTRO (PÁGINA 1) ============ */
.logo {
    text-align: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 500;
    font-style: italic;
    letter-spacing: -0.5px;
    margin-bottom: 36px;
    line-height: 1;
    color: var(--text-primary);
}

.logo sup {
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    margin-left: 1px;
    top: -0.7em;
}

.intro-h1 {
    text-align: center;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 0.06em;
    line-height: 1.25;
    margin-bottom: 22px;
    padding: 0 8px;
    color: var(--text-primary);
}

.intro-subtitle {
    text-align: center;
    font-size: 15px;
    font-weight: 400;
    margin-bottom: 6px;
    line-height: 1.5;
    color: var(--text-primary);
}

.intro-subtitle .accent {
    color: var(--accent);
    font-weight: 500;
}

.intro-meta {
    text-align: center;
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.intro-content {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 32px;
}

.intro-image {
    flex: 0 0 44%;
    display: flex;
    justify-content: center;
}

.intro-image img {
    width: 100%;
    height: auto;
    max-width: 180px;
    object-fit: contain;
    display: block;
}

.intro-options {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.intro-option-btn {
    background-color: var(--btn-bg);
    border: none;
    padding: 18px 22px;
    border-radius: 14px;
    font-family: inherit;
    font-size: 16px;
    font-weight: 400;
    color: var(--text-primary);
    cursor: pointer;
    transition: background-color 0.18s ease, transform 0.12s ease;
    text-align: left;
    width: 100%;
    letter-spacing: 0.01em;
}

@media (hover: hover) {
    .intro-option-btn:hover { background-color: var(--btn-bg-hover); }
}

.intro-option-btn:active {
    background-color: var(--btn-bg-active);
    transform: scale(0.98);
}

.footer-terms {
    text-align: center;
    font-size: 11.5px;
    color: var(--footer-link);
    line-height: 1.7;
    padding: 0 12px;
    margin-top: auto;
}

.footer-terms a {
    color: var(--footer-link);
    text-decoration: underline;
    text-underline-offset: 2px;
    text-decoration-thickness: 0.7px;
}

.footer-terms a:hover { color: var(--accent); }

/* ============ PERGUNTA SINGLE-SELECT (EMOJI) ============ */
.question-title {
    text-align: center;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.32;
    color: var(--text-primary);
    margin-bottom: 14px;
    letter-spacing: -0.01em;
    padding: 0 4px;
}

.question-subtitle {
    text-align: center;
    font-size: 14.5px;
    font-weight: 400;
    color: var(--text-secondary);
    line-height: 1.55;
    margin-bottom: 34px;
    padding: 0 8px;
}

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

.option-card {
    background-color: var(--btn-bg);
    border: none;
    padding: 20px 22px;
    border-radius: 16px;
    font-family: inherit;
    font-size: 16px;
    font-weight: 500;
    color: var(--text-primary);
    cursor: pointer;
    transition: background-color 0.18s ease, transform 0.12s ease;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
    letter-spacing: 0.01em;
}

.option-card .emoji {
    font-size: 26px;
    line-height: 1;
    flex-shrink: 0;
}

.option-card .label { flex: 1; }

@media (hover: hover) {
    .option-card:hover { background-color: var(--btn-bg-hover); }
}

.option-card:active,
.option-card.selected {
    background-color: var(--btn-bg-active);
    transform: scale(0.98);
}

/* Variante sem emoji (4 botões textuais Likert) */
.option-card.text-only {
    justify-content: center;
    text-align: center;
}

.option-card.text-only .label {
    flex: initial;
}

/* ============ PROVA SOCIAL ============ */
.social-title {
    text-align: center;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--accent-dark);
    line-height: 1.25;
    margin-bottom: 8px;
    letter-spacing: -0.015em;
}

.social-subtitle {
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    color: var(--text-primary);
    margin-bottom: 28px;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin-bottom: 24px;
}

.hero-image img {
    width: 100%;
    max-width: 340px;
    height: auto;
    object-fit: contain;
    display: block;
}

/* ============ PÁGINA SCIENCE ============ */
.science-image {
    display: flex;
    justify-content: center;
    margin: 8px 0 28px;
}

.science-image img {
    width: 100%;
    max-width: 280px;
    height: auto;
    object-fit: contain;
    display: block;
}

.science-text {
    text-align: center;
    font-size: 14.5px;
    color: var(--text-secondary);
    line-height: 1.62;
    padding: 0 8px;
}

.science-text strong {
    color: var(--text-primary);
    font-weight: 700;
}

/* ============ BARRA DE PROGRESSO ============ */
.progress-bar-container {
    width: 100%;
    margin-bottom: 4px;
}

.progress-bar {
    display: flex;
    align-items: center;
    margin-bottom: 28px;
    padding: 0 2px;
}

.progress-step {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: #ffffff;
    border: 2px solid var(--border-softer);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.progress-step.completed {
    background-color: var(--accent-dark);
    border-color: var(--accent-dark);
}

.progress-step.current {
    border-color: var(--border-softer);
}

.progress-step svg {
    width: 12px;
    height: 12px;
    color: #ffffff;
}

.progress-line {
    flex: 1;
    height: 2px;
    background-color: var(--border-softer);
    margin: 0 -1px;
    transition: background-color 0.2s ease;
}

.progress-line.completed {
    background-color: var(--accent-dark);
}

/* ============ LIKERT ============ */
.likert-title {
    text-align: center;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.32;
    color: var(--text-primary);
    margin-bottom: 12px;
    letter-spacing: -0.01em;
    padding: 0 4px;
}

.likert-sub {
    text-align: center;
    font-size: 14.5px;
    color: var(--text-secondary);
    margin-bottom: 30px;
    line-height: 1.5;
}

.likert-sub .accent {
    color: var(--accent);
}

.likert-options {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 14px;
}

.likert-btn {
    flex: 1;
    aspect-ratio: 1;
    background-color: #ffffff;
    border: 1.5px solid var(--border-soft);
    border-radius: 14px;
    font-family: inherit;
    font-size: 18px;
    font-weight: 500;
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.18s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (hover: hover) {
    .likert-btn:hover {
        background-color: #F1ECF5;
        border-color: var(--accent);
    }
}

.likert-btn:active,
.likert-btn.selected {
    background-color: var(--btn-bg-active);
    border-color: var(--accent);
    transform: scale(0.96);
}

.likert-labels {
    display: flex;
    justify-content: space-between;
    font-size: 12.5px;
    color: var(--accent);
    padding: 0 2px;
    letter-spacing: 0.01em;
}

/* ============ MULTI-SELECT (CHECKBOX) ============ */
.multi-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
}

.multi-option {
    background-color: var(--multi-bg);
    border: 1.5px solid transparent;
    border-radius: 12px;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.18s ease;
    font-family: inherit;
    font-size: 15.5px;
    font-weight: 500;
    color: var(--text-primary);
    text-align: left;
    width: 100%;
    letter-spacing: 0.01em;
}

.multi-option .emoji {
    font-size: 22px;
    line-height: 1;
    flex-shrink: 0;
    width: 28px;
    text-align: center;
}

.multi-option .label {
    flex: 1;
}

.multi-checkbox {
    width: 22px;
    height: 22px;
    border-radius: 5px;
    border: 1.5px solid var(--border-soft);
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.18s ease;
}

.multi-checkbox svg {
    width: 13px;
    height: 13px;
    color: #ffffff;
    opacity: 0;
    transition: opacity 0.15s ease;
}

@media (hover: hover) {
    .multi-option:hover {
        background-color: var(--btn-bg-hover);
    }
}

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

.multi-option.selected {
    background-color: var(--btn-bg);
    border-color: var(--accent-dark);
}

.multi-option.selected .multi-checkbox {
    background-color: var(--accent-dark);
    border-color: var(--accent-dark);
}

.multi-option.selected .multi-checkbox svg {
    opacity: 1;
}

/* ============ BATERIA (PÁG 19) ============ */
.battery-container {
    display: flex;
    justify-content: center;
    margin: 8px 0 32px;
}

.battery {
    display: flex;
    align-items: center;
    gap: 3px;
}

.battery-body {
    width: 110px;
    height: 46px;
    border: 3px solid var(--accent-dark);
    border-radius: 8px;
    padding: 4px;
    overflow: hidden;
    position: relative;
    background: #ffffff;
}

.battery-fill {
    height: 100%;
    border-radius: 3px;
    background: var(--battery-high);
    animation: batteryPulse 3s ease-in-out infinite;
}

.battery-cap {
    width: 5px;
    height: 18px;
    background: var(--accent-dark);
    border-radius: 0 3px 3px 0;
}

@keyframes batteryPulse {
    0%   { width: 25%; background: var(--battery-low); }
    35%  { width: 55%; background: var(--battery-mid); }
    70%  { width: 92%; background: var(--battery-high); }
    100% { width: 25%; background: var(--battery-low); }
}

/* ============ CTA ============ */
.cta-footer {
    width: 100%;
    max-width: 420px;
    padding: 12px 0 4px;
    margin-top: auto;
}

.cta-btn {
    width: 100%;
    background-color: var(--cta-bg);
    color: #ffffff;
    border: none;
    padding: 18px 24px;
    border-radius: 999px;
    font-family: inherit;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.18s ease, transform 0.12s ease;
    letter-spacing: 0.01em;
}

@media (hover: hover) {
    .cta-btn:hover { background-color: var(--cta-bg-hover); }
}

.cta-btn:active {
    transform: scale(0.985);
    background-color: var(--cta-bg-hover);
}

.cta-btn.disabled,
.cta-btn:disabled {
    background-color: var(--cta-bg-disabled);
    cursor: not-allowed;
}

.cta-btn.disabled:active {
    transform: none;
}

/* ============ RESPONSIVO ============ */
@media (max-width: 360px) {
    body { padding: 16px 16px 20px; }
    .logo { font-size: 26px; margin-bottom: 28px; }
    .intro-h1 { font-size: 19px; }
    .question-title, .likert-title { font-size: 19px; }
    .question-subtitle { font-size: 13.5px; margin-bottom: 28px; }
    .option-card { padding: 18px; font-size: 15px; }
    .option-card .emoji { font-size: 24px; }
    .multi-option { padding: 12px 14px; font-size: 14.5px; }
    .multi-option .emoji { font-size: 20px; width: 24px; }
    .social-title { font-size: 22px; }
    .social-subtitle { font-size: 15px; }
    .cta-btn { padding: 16px; font-size: 15px; }
    .intro-option-btn { padding: 16px 18px; font-size: 15px; }
    .likert-btn { font-size: 16px; border-radius: 12px; }
    .likert-labels { font-size: 11px; }
    .progress-step { width: 22px; height: 22px; }
    .science-image img { max-width: 240px; }
    .battery-body { width: 100px; height: 42px; }
}

@media (min-width: 480px) {
    body { padding: 32px 24px; }
    .container { max-width: 440px; }
    .page-header, .cta-footer { max-width: 440px; }
}

/* ============ LOGO NO HEADER (TRANSIÇÃO) ============ */
.page-header .logo-mini {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 500;
    font-style: italic;
    letter-spacing: -0.3px;
    color: var(--text-primary);
    line-height: 1;
}

.page-header .logo-mini sup {
    font-size: 11px;
    font-style: normal;
    font-weight: 400;
    margin-left: 1px;
    top: -0.5em;
}

/* ============ PÁGINAS DE CREDENCIAIS ============ */
.credentials-title {
    text-align: center;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.32;
    color: var(--text-primary);
    margin-bottom: 12px;
    padding: 0 6px;
    letter-spacing: -0.01em;
}

.credentials-title .accent {
    color: var(--accent-dark);
}

.credentials-subtitle {
    text-align: center;
    font-size: 14.5px;
    color: var(--text-secondary);
    margin-bottom: 28px;
    padding: 0 8px;
    line-height: 1.5;
}

.credentials-subtitle .accent {
    color: var(--accent);
    font-weight: 500;
}

.universities-image {
    display: flex;
    justify-content: center;
    margin: 4px 0 24px;
}

.universities-image img {
    width: 100%;
    max-width: 280px;
    height: auto;
    object-fit: contain;
    display: block;
}

.science-footnote {
    text-align: center;
    font-size: 11px;
    color: var(--text-tertiary);
    line-height: 1.7;
    padding: 0 12px;
    margin-bottom: 18px;
}

/* ============ MÉDICOS ============ */
.doctors-stars {
    display: flex;
    justify-content: center;
    margin-bottom: 22px;
    color: var(--accent-dark);
}

.doctors-stars svg {
    width: 78px;
    height: auto;
    display: block;
}

.doctors-list {
    display: flex;
    flex-direction: column;
    gap: 11px;
    margin-bottom: 20px;
}

.doctor-card {
    background: #ffffff;
    border: 1px solid var(--border-soft);
    border-radius: 14px;
    padding: 12px 14px;
    display: flex;
    align-items: center;
    gap: 13px;
}

.doctor-photo {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    background: var(--btn-bg);
}

.doctor-info {
    flex: 1;
    min-width: 0;
}

.doctor-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 3px;
    line-height: 1.3;
}

.doctor-bio {
    font-size: 12px;
    font-weight: 400;
    color: var(--text-secondary);
    line-height: 1.4;
}

/* ============ RESUMO DO PERFIL ============ */
.summary-title {
    text-align: center;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
    margin-top: 4px;
    margin-bottom: 18px;
    padding: 0 8px;
    letter-spacing: -0.01em;
}

.summary-card {
    background: #F4F4F8;
    border-radius: 18px;
    padding: 20px 18px;
    margin-bottom: 16px;
}

.summary-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 22px;
}

.summary-label {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-primary);
}

.summary-badge {
    font-size: 13.5px;
    font-weight: 700;
    color: #E89A47;
    letter-spacing: 0.02em;
}

.gradient-bar-wrap {
    position: relative;
    margin-bottom: 24px;
    padding-top: 32px;
}

.gradient-bar {
    width: 100%;
    height: 8px;
    border-radius: 4px;
    background: linear-gradient(90deg,
        #4A6FB5 0%,
        #5DA85D 35%,
        #F0C040 60%,
        #E89A47 80%,
        #D85F4E 100%);
    position: relative;
}

.gradient-marker {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #ffffff;
    border: 2.5px solid #888888;
    z-index: 2;
}

.gradient-pointer {
    position: absolute;
    top: 0;
    transform: translateX(-50%);
    background: #2D3142;
    color: #ffffff;
    font-size: 11.5px;
    font-weight: 600;
    padding: 5px 9px;
    border-radius: 6px;
    white-space: nowrap;
}

.gradient-pointer::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #2D3142;
}

.gradient-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    font-size: 11.5px;
    color: var(--text-secondary);
    padding: 0 1px;
}

.warning-callout {
    background: #FCEFE0;
    border-radius: 12px;
    padding: 14px 16px;
    margin-bottom: 20px;
}

.warning-callout-title {
    font-size: 14px;
    font-weight: 700;
    color: #6B4925;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.warning-callout-text {
    font-size: 13px;
    color: #6B4925;
    line-height: 1.55;
}

.summary-divider {
    height: 1px;
    background: #DDDDE3;
    margin-bottom: 18px;
}

.summary-grid {
    display: flex;
    gap: 16px;
    align-items: center;
}

.summary-metrics {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.summary-metric-label {
    font-size: 11.5px;
    color: var(--text-secondary);
    margin-bottom: 2px;
    line-height: 1.3;
}

.summary-metric-value {
    font-size: 14.5px;
    font-weight: 700;
    color: var(--accent-dark);
    line-height: 1.3;
}

.summary-image {
    flex: 0 0 36%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.summary-image img {
    width: 100%;
    max-width: 115px;
    height: auto;
    object-fit: contain;
}

@media (max-width: 360px) {
    .doctor-photo { width: 50px; height: 50px; }
    .doctor-name { font-size: 13px; }
    .doctor-bio { font-size: 11.5px; }
    .summary-card { padding: 18px 14px; }
    .summary-metric-value { font-size: 13.5px; }
    .summary-image img { max-width: 90px; }
    .gradient-pointer { font-size: 11px; padding: 4px 8px; }
    .universities-image img { max-width: 240px; }
    .credentials-title { font-size: 19px; }
    .summary-title { font-size: 19px; }
}

/* ============ TÍTULO COM ALINHAMENTO ESQUERDO ============ */
.credentials-title.left-align,
.credentials-subtitle.left-align {
    text-align: left;
    padding: 0;
}

.credentials-title strong,
.credentials-subtitle strong {
    font-weight: 700;
    color: var(--text-primary);
}

/* ============ CHART (CURVAS) ============ */
.chart-container {
    position: relative;
    width: 100%;
    margin: 4px 0 16px;
    padding-bottom: 24px;
}

.chart-svg {
    width: 100%;
    height: auto;
    display: block;
}

.chart-grid {
    stroke: #EEEEF2;
    stroke-width: 1;
    fill: none;
}

.chart-curve {
    fill: none;
    stroke-width: 4;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.chart-weeks {
    display: flex;
    justify-content: space-between;
    margin-top: 6px;
    font-size: 12px;
    color: var(--text-primary);
    font-weight: 500;
    padding: 0 4px;
}

.chart-badge {
    position: absolute;
    padding: 6px 11px;
    border-radius: 14px;
    font-size: 11.5px;
    font-weight: 600;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    z-index: 2;
    line-height: 1.2;
}

.chart-badge::after {
    content: '';
    display: inline-block;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: currentColor;
    margin-left: 8px;
}

.chart-badge.green { background: #5DA85D; }
.chart-badge.purple { background: #8B7AB8; }
.chart-badge.orange { background: #E89A47; }
.chart-badge.red { background: #E96A8C; }
.chart-badge.neutral {
    background: #F0F0F4;
    color: var(--text-primary);
    font-weight: 700;
}
.chart-badge.neutral::after { display: none; }

.chart-badge.no-dot::after { display: none; }

/* ============ CITAÇÕES DE PESQUISA ============ */
.research-citations {
    display: flex;
    flex-direction: column;
    gap: 9px;
    margin-bottom: 18px;
}

.research-item {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.research-dot {
    width: 22px;
    height: 22px;
    border-radius: 4px;
    flex-shrink: 0;
    margin-top: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
}

.research-text {
    font-size: 11.5px;
    color: var(--text-secondary);
    line-height: 1.5;
    flex: 1;
}

.research-text strong {
    color: var(--accent);
    font-weight: 600;
}

/* ============ NÍVEL DE CARGA — LABEL ============ */
.body-charge-label {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
    padding: 0 2px;
}

/* ============ LOADING BAR ============ */
.loading-bar-wrap {
    width: 100%;
    height: 10px;
    background: #EAEAEF;
    border-radius: 999px;
    overflow: hidden;
    margin-top: 20px;
    margin-bottom: 10px;
}

.loading-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent), var(--accent-dark));
    border-radius: 999px;
    width: 0%;
    transition: width 0.18s ease-out;
}

.loading-percent {
    text-align: center;
    font-size: 13.5px;
    color: var(--text-secondary);
    font-weight: 500;
    margin-bottom: 8px;
}

/* ============ TEXT INPUT ============ */
.text-input-wrap {
    margin-bottom: 16px;
}

.text-input {
    width: 100%;
    padding: 17px 22px;
    border: 1.5px solid var(--border-soft);
    border-radius: 999px;
    font-family: inherit;
    font-size: 15.5px;
    color: var(--text-primary);
    background: #F8F7FA;
    outline: none;
    transition: all 0.18s ease;
    -webkit-appearance: none;
    appearance: none;
}

.text-input::placeholder {
    color: var(--text-tertiary);
}

.text-input:focus {
    border-color: var(--accent);
    background: #ffffff;
}

/* ============ SOCIAL PROOF BADGE (EMAIL) ============ */
.social-proof-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #E8F5E8;
    border: 1.5px solid #7BC57B;
    border-radius: 16px;
    padding: 14px 16px;
    font-size: 13px;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: 0.04em;
    margin-bottom: 14px;
    text-align: center;
}

.social-proof-badge .star {
    color: #F0B232;
    font-size: 16px;
}

/* ============ PRIVACY ROW ============ */
.privacy-row {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin-bottom: 18px;
    font-size: 11.5px;
    color: var(--accent);
    line-height: 1.55;
    padding: 0 4px;
}

.privacy-row svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 1px;
    color: var(--text-tertiary);
}

.privacy-row a {
    color: var(--accent);
    text-decoration: underline;
}

/* ============ GREETING (PLANO PERSONALIZADO) ============ */
.greeting-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.35;
    color: var(--text-primary);
    margin-bottom: 28px;
    letter-spacing: -0.01em;
    padding: 0 2px;
}

.greeting-title .accent {
    color: var(--accent-dark);
}

/* ============ NAME INPUT TITLE ============ */
.input-title {
    text-align: center;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.32;
    color: var(--text-primary);
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}

.input-title .accent {
    color: var(--accent);
}

@media (max-width: 360px) {
    .chart-badge { font-size: 10.5px; padding: 5px 9px; }
    .greeting-title { font-size: 19px; }
    .input-title { font-size: 19px; }
    .text-input { padding: 15px 18px; font-size: 15px; }
    .social-proof-badge { font-size: 12px; padding: 12px 14px; }
}

/* ============ CIRCULAR PROGRESS (LOADING) ============ */
.circular-progress {
    position: relative;
    width: 180px;
    height: 180px;
    margin: 16px auto 22px;
}

.circular-svg {
    width: 100%;
    height: 100%;
    display: block;
}

.circular-arc {
    fill: none;
    stroke: var(--accent-dark);
    stroke-width: 8;
    stroke-linecap: round;
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
    transition: stroke-dashoffset 0.18s ease-out;
}

.circular-percent {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 34px;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.creating-label {
    text-align: center;
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 32px;
    padding: 0 16px;
    line-height: 1.5;
}

.loading-social-heading {
    text-align: center;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--accent-dark);
    margin-bottom: 4px;
    letter-spacing: -0.01em;
}

.loading-social-sub {
    text-align: center;
    font-size: 14.5px;
    color: var(--text-primary);
    margin-bottom: 22px;
}

/* ============ TESTIMONIAL CARD ============ */
.testimonial-card {
    background: #F4F4F8;
    border-radius: 14px;
    padding: 16px 18px;
    margin-bottom: 16px;
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.trustpilot-stars {
    display: inline-flex;
    gap: 2px;
}

.tp-star {
    width: 18px;
    height: 18px;
    background: #00B67A;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    line-height: 1;
    border-radius: 1px;
}

.testimonial-author {
    font-size: 12.5px;
    color: var(--text-secondary);
    font-weight: 500;
}

.testimonial-title {
    font-size: 14.5px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
    line-height: 1.35;
}

.testimonial-body {
    font-size: 12.5px;
    color: var(--text-secondary);
    line-height: 1.6;
}

@media (max-width: 360px) {
    .circular-progress { width: 160px; height: 160px; }
    .circular-percent { font-size: 30px; }
    .loading-social-heading { font-size: 21px; }
    .testimonial-title { font-size: 13.5px; }
    .testimonial-body { font-size: 12px; }
    .tp-star { width: 16px; height: 16px; font-size: 11px; }
}

/* ============ SCRATCH CARD (CUPOM) ============ */
.scratch-wrap {
    display: flex;
    justify-content: center;
    margin: 12px 0 28px;
}

.scratch-card {
    position: relative;
    width: 100%;
    max-width: 260px;
    aspect-ratio: 0.78;
    border-radius: 22px;
    overflow: hidden;
    background: #3D2A1F;
    user-select: none;
    -webkit-user-select: none;
    isolation: isolate;
}

.scratch-card::before,
.scratch-card::after {
    content: '';
    position: absolute;
    top: 65%;
    transform: translateY(-50%);
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--bg);
    z-index: 3;
}

.scratch-card::before { left: -7px; }
.scratch-card::after { right: -7px; }

.scratch-prize {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 22px 18px;
    color: #ffffff;
    text-align: center;
    background: linear-gradient(165deg, #6CC36C 0%, #4A8A4A 100%);
    gap: 8px;
    z-index: 1;
}

.prize-trophy {
    font-size: 38px;
    line-height: 1;
    margin-bottom: 2px;
}

.prize-label {
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.prize-sub {
    font-size: 12.5px;
    opacity: 0.92;
    margin-top: 2px;
}

.prize-percent {
    font-size: 42px;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1;
    margin: 4px 0 6px;
    text-shadow: 0 2px 0 rgba(0,0,0,0.12);
}

.prize-code-wrap {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(0,0,0,0.22);
    border: 1.5px dashed rgba(255,255,255,0.5);
    padding: 8px 12px;
    border-radius: 8px;
    margin: 4px 0 6px;
}

.prize-code {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: #ffffff;
    font-family: 'Plus Jakarta Sans', monospace;
}

.prize-copy {
    background: #ffffff;
    color: #2E6F2E;
    border: none;
    padding: 8px 18px;
    border-radius: 999px;
    font-family: inherit;
    font-size: 12.5px;
    font-weight: 700;
    cursor: pointer;
    margin-top: 6px;
    transition: transform 0.15s ease;
}

.prize-copy:active { transform: scale(0.96); }

.scratch-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    cursor: grab;
    touch-action: none;
    display: block;
    z-index: 2;
    transition: opacity 0.6s ease;
}

.scratch-canvas:active { cursor: grabbing; }

@media (max-width: 360px) {
    .scratch-card { max-width: 220px; }
    .prize-percent { font-size: 36px; }
    .prize-label { font-size: 14px; }
    .prize-code { font-size: 13px; }
}

/* ============ PÁGINA DE VENDAS ============ */
body.sales-body {
    padding: 0;
    align-items: stretch;
}

.sales-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: #ffffff;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border-bottom: 1px solid #f0f0f4;
    box-shadow: 0 1px 6px rgba(0,0,0,0.04);
}

.sales-timer {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
    min-width: 78px;
}

.sales-timer-time {
    font-size: 22px;
    font-weight: 700;
    color: var(--accent-dark);
    line-height: 1;
    letter-spacing: -0.01em;
}

.sales-timer-label {
    font-size: 9.5px;
    color: var(--accent);
    margin-top: 3px;
    letter-spacing: 0.02em;
}

.sales-cta-mini {
    background: var(--cta-bg);
    color: #ffffff;
    border: none;
    padding: 13px 22px;
    border-radius: 999px;
    font-family: inherit;
    font-weight: 700;
    font-size: 13.5px;
    letter-spacing: 0.06em;
    cursor: pointer;
    text-transform: uppercase;
    flex: 1;
    max-width: 240px;
    transition: background 0.18s, transform 0.12s;
}

.sales-cta-mini:active {
    transform: scale(0.98);
    background: var(--cta-bg-hover);
}

.sales-main {
    width: 100%;
    max-width: 440px;
    margin: 0 auto;
    padding: 18px 20px 32px;
    display: flex;
    flex-direction: column;
}

/* ============ BEFORE / AFTER ============ */
.ba-card {
    background: #E8E8EE;
    border-radius: 18px;
    padding: 14px;
    margin-bottom: 12px;
}

.ba-tabs {
    background: #ffffff;
    border-radius: 999px;
    display: flex;
    padding: 4px;
    margin-bottom: 14px;
}

.ba-tab {
    flex: 1;
    text-align: center;
    padding: 10px;
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary);
    border-radius: 999px;
    cursor: pointer;
    transition: all 0.2s;
}

.ba-tab.active {
    background: var(--bg);
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}

.ba-photos {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 4px;
    align-items: center;
    margin-bottom: 6px;
}

.ba-photo {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

.ba-arrow {
    color: var(--accent-dark);
    font-size: 30px;
    font-weight: 800;
    line-height: 1;
    text-align: center;
}

.ba-comparisons {
    background: #ffffff;
    border-radius: 14px;
    padding: 14px;
    margin-top: 10px;
}

.ba-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    padding: 12px 0;
    border-bottom: 1px solid #E5E5EA;
}

.ba-row:first-child { padding-top: 0; }
.ba-row:last-child { border-bottom: none; padding-bottom: 0; }

.ba-cell { display: flex; flex-direction: column; }

.ba-label {
    font-size: 12px;
    color: var(--text-secondary);
    margin-bottom: 4px;
}

.ba-value {
    font-size: 14.5px;
    font-weight: 700;
    color: var(--text-primary);
}

.ba-bars {
    display: flex;
    gap: 4px;
    margin-top: 8px;
}

.ba-bar {
    flex: 1;
    height: 6px;
    border-radius: 3px;
    background: #DCDCE2;
}

.ba-bar.red { background: #E97B7B; }
.ba-bar.green { background: #5DA85D; }

/* ============ HEADING PERSONALIZADO ============ */
.sales-heading {
    text-align: center;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.32;
    color: var(--text-primary);
    margin: 24px 0 16px;
    padding: 0 2px;
    letter-spacing: -0.01em;
}

.sales-heading .accent {
    color: var(--accent-dark);
}

/* ============ PROMO CARD ============ */
.promo-card {
    background: #F4F4F8;
    border-radius: 14px;
    padding: 14px 16px;
    margin-bottom: 14px;
    position: relative;
}

.promo-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary);
}

.promo-header svg {
    color: var(--accent-dark);
    flex-shrink: 0;
}

.promo-divider {
    border-top: 1.5px dashed #C0C0C8;
    margin: 0 -16px 14px;
    position: relative;
    height: 0;
}

.promo-divider::before,
.promo-divider::after {
    content: '';
    position: absolute;
    top: -7px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--bg);
}

.promo-divider::before { left: -7px; }
.promo-divider::after { right: -7px; }

.promo-content {
    display: flex;
    gap: 10px;
}

.promo-code-box {
    flex: 1;
    background: #ffffff;
    border-radius: 10px;
    padding: 12px 14px;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.04em;
}

.promo-timer-box {
    flex: 1;
    background: #ffffff;
    border-radius: 10px;
    padding: 8px 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.promo-timer-time {
    font-size: 20px;
    font-weight: 700;
    color: var(--accent-dark);
    line-height: 1;
}

.promo-timer-label {
    font-size: 10px;
    color: var(--accent);
    margin-top: 4px;
}

/* ============ PRICING TIERS ============ */
.pricing-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 18px;
}

.pricing-tier {
    background: #F4F4F8;
    border: 1.5px solid transparent;
    border-radius: 14px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.18s;
    position: relative;
}

.pricing-tier.selected {
    background: #ffffff;
    border-color: var(--accent-dark);
    border-width: 2px;
    padding: 15.5px;
}

.pricing-radio {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 1.5px solid var(--border-softer);
    flex-shrink: 0;
    position: relative;
    background: #ffffff;
    transition: all 0.18s;
}

.pricing-tier.selected .pricing-radio {
    border-color: var(--accent-dark);
    background: var(--accent-dark);
}

.pricing-tier.selected .pricing-radio::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ffffff;
}

.pricing-info {
    flex: 1;
    min-width: 0;
}

.pricing-name {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 3px;
}

.pricing-prices {
    font-size: 12.5px;
    line-height: 1.3;
}

.pricing-old {
    text-decoration: line-through;
    text-decoration-color: #E97B7B;
    color: var(--text-tertiary);
    margin-right: 4px;
}

.pricing-new {
    color: var(--text-primary);
    font-weight: 600;
}

.pricing-day {
    text-align: right;
    flex-shrink: 0;
}

.pricing-day-old {
    font-size: 12px;
    color: var(--text-tertiary);
    text-decoration: line-through;
    text-decoration-color: #E97B7B;
    margin-bottom: 1px;
}

.pricing-day-value {
    font-size: 18px;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.05;
    letter-spacing: -0.01em;
}

.pricing-day-label {
    font-size: 10.5px;
    color: var(--text-secondary);
    margin-top: 1px;
}

.pricing-tier.popular {
    background: #ffffff;
    border-color: var(--accent-dark);
    border-width: 2px;
    padding: 15.5px;
    padding-top: 38px;
    margin-top: 6px;
}

.pricing-popular-badge {
    position: absolute;
    top: 0;
    left: -2px;
    right: -2px;
    background: var(--accent-dark);
    color: #ffffff;
    text-align: center;
    padding: 7px 10px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    border-radius: 12px 12px 0 0;
}

/* ============ CTA GRANDE + SAFE ============ */
.get-plan-btn {
    width: 100%;
    background: var(--cta-bg);
    color: #ffffff;
    border: none;
    padding: 18px 24px;
    border-radius: 999px;
    font-family: inherit;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.08em;
    cursor: pointer;
    margin-bottom: 12px;
    text-transform: uppercase;
    transition: background 0.18s, transform 0.12s;
}

.get-plan-btn:active {
    background: var(--cta-bg-hover);
    transform: scale(0.99);
}

.terms-text {
    font-size: 11px;
    color: var(--text-tertiary);
    line-height: 1.5;
    text-align: center;
    margin-bottom: 14px;
    padding: 0 8px;
}

.terms-text a {
    color: var(--accent);
    text-decoration: underline;
}

.safe-secure-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 14px;
}

.safe-secure {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #E8F5E8;
    border: 1.5px solid #7BC57B;
    color: #2E6F2E;
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
}

.payment-methods {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 32px;
}

.payment-method {
    background: #ffffff;
    border: 1px solid var(--border-soft);
    border-radius: 6px;
    padding: 6px 10px;
    font-size: 10.5px;
    font-weight: 700;
    min-width: 42px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    letter-spacing: 0.02em;
}

.payment-method.paypal { color: #003087; }
.payment-method.visa { color: #1A1F71; font-style: italic; }
.payment-method.mc { color: #EB001B; }

/* ============ PLAN GOALS ============ */
.goals-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 22px;
    font-weight: 700;
    text-align: center;
    margin: 0 0 18px;
    color: var(--text-primary);
    letter-spacing: -0.01em;
}

.goals-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 32px;
}

.goal-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-size: 14px;
    color: var(--text-primary);
    line-height: 1.4;
}

.goal-check {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--accent-dark);
    color: #ffffff;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
}

.goal-check svg {
    width: 12px;
    height: 12px;
}

/* ============ FEATURED ============ */
.featured-wrap {
    text-align: center;
    margin-bottom: 32px;
}

.featured-label {
    font-size: 12px;
    color: var(--text-secondary);
    margin-bottom: 4px;
}

.featured-title {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.featured-image {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    display: block;
}

/* ============ STATS / RESULTS ============ */
.stats-title {
    text-align: center;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.32;
    margin-bottom: 18px;
    padding: 0 8px;
    color: var(--text-primary);
}

.stats-title .accent {
    color: var(--accent-dark);
}

.stats-chart-image {
    display: block;
    width: 100%;
    max-width: 320px;
    margin: 0 auto 22px;
}

.stats-list {
    display: flex;
    flex-direction: column;
    gap: 22px;
    margin-bottom: 32px;
    text-align: center;
}

.stats-item-percent {
    font-size: 32px;
    font-weight: 700;
    color: var(--accent-dark);
    margin-bottom: 4px;
    letter-spacing: -0.02em;
    line-height: 1;
}

.stats-item-text {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
    padding: 0 16px;
}

.stats-item-text strong {
    color: var(--text-primary);
    font-weight: 700;
}

/* ============ COMPARE TABLE ============ */
.compare-table {
    margin-bottom: 32px;
    position: relative;
}

.compare-grid {
    display: grid;
    grid-template-columns: 1fr 80px 80px;
}

.compare-cell {
    padding: 14px 6px;
    font-size: 14px;
    color: var(--text-primary);
    border-bottom: 1px solid #E5E5EA;
    display: flex;
    align-items: center;
}

.compare-cell.text { padding-left: 4px; }

.compare-cell.center {
    justify-content: center;
}

.compare-cell.head {
    font-size: 11.5px;
    color: var(--text-secondary);
    font-weight: 500;
    border-bottom: none;
    padding-bottom: 12px;
    text-align: center;
    justify-content: center;
}

.compare-using-col {
    background: #E8F5E8;
    border-radius: 14px;
    padding-bottom: 6px;
}

.compare-using-cell {
    background: transparent;
    border-bottom: 1px solid rgba(125, 195, 125, 0.4);
}

.compare-grid > .compare-cell:nth-last-child(-n+3) {
    border-bottom: none;
}

.compare-icon-x,
.compare-icon-check {
    display: inline-flex;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
}

.compare-icon-x {
    background: var(--accent-dark);
    color: #ffffff;
}

.compare-icon-check {
    background: #5DA85D;
    color: #ffffff;
}

/* ============ FAQ ============ */
.faq-title {
    text-align: center;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 12px;
    color: var(--text-primary);
    letter-spacing: -0.01em;
}

.faq-list {
    margin-bottom: 32px;
}

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

.faq-item:first-child {
    border-top: 1px solid #E5E5EA;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 15.5px;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.35;
}

.faq-toggle {
    flex-shrink: 0;
    transition: transform 0.25s;
    color: var(--text-primary);
    margin-top: 2px;
    display: flex;
}

.faq-item.open .faq-toggle {
    transform: rotate(180deg);
}

.faq-answer {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.4s ease;
    font-size: 13.5px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.faq-item.open .faq-answer {
    max-height: 800px;
    padding-top: 12px;
}

/* ============ REVIEWS ============ */
.reviews-title {
    text-align: center;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 6px;
    color: var(--text-primary);
    letter-spacing: -0.01em;
}

.reviews-sub {
    text-align: center;
    font-size: 13.5px;
    color: var(--text-secondary);
    margin-bottom: 18px;
}

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

.review-card {
    background: #F4F4F8;
    border-radius: 14px;
    padding: 16px;
}

.review-author {
    font-size: 16px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.review-stars {
    color: #F0B232;
    font-size: 14px;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.review-body {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.6;
}

@media (max-width: 360px) {
    .sales-main { padding: 14px 16px 24px; }
    .sales-heading { font-size: 19px; }
    .goals-title, .stats-title, .faq-title, .reviews-title { font-size: 19px; }
    .pricing-day-value { font-size: 16px; }
    .pricing-name { font-size: 14px; }
    .ba-value { font-size: 13px; }
    .ba-label { font-size: 11px; }
    .sales-cta-mini { padding: 11px 16px; font-size: 12px; }
    .sales-timer-time { font-size: 19px; }
    .promo-code-box { font-size: 11.5px; }
    .promo-timer-time { font-size: 17px; }
    .compare-grid { grid-template-columns: 1fr 64px 64px; }
    .compare-cell { font-size: 13px; padding: 12px 4px; }
    .review-author { font-size: 14.5px; }
    .review-body { font-size: 12.5px; }
}

/* ============ GARANTIA ============ */
.guarantee-card {
    background: #F4F4F8;
    border-radius: 18px;
    padding: 28px 22px 24px;
    margin: 8px 0 16px;
    text-align: center;
}

.guarantee-badge {
    width: 60px;
    height: 60px;
    margin: 0 auto 14px;
    display: block;
}

.guarantee-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
    margin-bottom: 2px;
}

.guarantee-title-2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--accent-dark);
    line-height: 1.2;
    margin-bottom: 14px;
}

.guarantee-text {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.6;
    padding: 0 2px;
}

.guarantee-text a {
    color: var(--accent);
    text-decoration: underline;
}

.sales-footer-addr {
    text-align: center;
    font-size: 11px;
    color: var(--text-tertiary);
    margin: 18px 0 4px;
    line-height: 1.5;
    padding: 0 12px;
}

@media (max-width: 360px) {
    .guarantee-card { padding: 24px 16px 20px; }
    .guarantee-title, .guarantee-title-2 { font-size: 19px; }
    .guarantee-text { font-size: 12.5px; }
}
