/* ═══════════════════════════════════════════
   Encontro con Jesús — Estilos
   Cores: Dourado #C5A059 + Creme #FAF9F6
   Fontes: Playfair Display + Inter
   ═══════════════════════════════════════════ */

:root {
    --dourado: #C5A059;
    --dourado-escuro: #A6842F;
    --dourado-claro: #D4B86A;
    --creme: #FAF9F6;
    --creme-escuro: #F0EDE5;
    --texto: #2D2D2D;
    --texto-light: #6B6B6B;
    --branco: #FFFFFF;
    --verde: #4CAF50;
    --radius: 12px;
    --shadow: 0 2px 16px rgba(0,0,0,0.06);
}

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

body {
    font-family: 'Inter', -apple-system, sans-serif;
    background: var(--creme);
    color: var(--texto);
    line-height: 1.6;
    min-height: 100vh;
}

/* ── Header ─────────────────────────── */
.site-header {
    text-align: center;
    padding: 24px 20px 16px;
    background: var(--branco);
    border-bottom: 1px solid var(--creme-escuro);
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--dourado-escuro);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

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

/* ── Main ───────────────────────────── */
.site-main {
    max-width: 480px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ── Vagas Banner ───────────────────── */
.vagas-banner {
    text-align: center;
    margin: 20px 0 8px;
}

.vagas-banner span {
    display: inline-block;
    background: var(--dourado);
    color: var(--branco);
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
}

/* ── Hero ───────────────────────────── */
.hero {
    text-align: center;
    padding: 32px 0 24px;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 600;
    line-height: 1.3;
    color: var(--texto);
    margin-bottom: 12px;
}

.hero-sub {
    font-size: 15px;
    color: var(--texto-light);
    margin-bottom: 24px;
    line-height: 1.5;
}

.hero-sub strong {
    color: var(--dourado-escuro);
}

.hero-img {
    text-align: center;
    margin: 24px 0;
}

.hero-img img {
    width: 56%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

.hero-note {
    font-size: 13px;
    color: var(--texto-light);
    margin-top: 10px;
}

.hero-proof {
    margin-top: 20px;
    font-size: 14px;
    color: var(--texto-light);
}

.hero-proof .stars { color: #F5A623; }

.hero-selo {
    font-size: 13px;
    color: var(--verde);
    margin-top: 6px;
}

/* ── Botões ─────────────────────────── */
.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: var(--radius);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all 0.2s;
}

.btn-primary {
    background: #43D063;
    color: #fff;
    font-weight: 700;
    letter-spacing: 0.5px;
}

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

.btn-large {
    padding: 16px 36px;
    font-size: 17px;
    width: 100%;
}

.btn-outline {
    background: transparent;
    color: var(--dourado);
    border: 2px solid var(--dourado);
}

.btn-outline:hover {
    background: var(--dourado);
    color: var(--branco);
}

/* ── Como Funciona ──────────────────── */
.como-funciona {
    padding: 40px 0;
    text-align: center;
}

.como-funciona h2 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: var(--dourado-escuro);
    margin-bottom: 28px;
    letter-spacing: 1px;
}

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

.step {
    display: flex;
    align-items: center;
    gap: 16px;
    text-align: left;
    background: var(--branco);
    padding: 16px 20px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.step-num {
    width: 36px;
    height: 36px;
    background: var(--dourado);
    color: var(--branco);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
}

.step p {
    font-size: 15px;
    color: var(--texto);
}

/* ── Quiz / Formulários ─────────────── */
.quiz-container {
    padding: 20px 0;
    text-align: center;
}

.quiz-step-label {
    font-size: 13px;
    color: var(--dourado);
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.quiz-question {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 28px;
    line-height: 1.3;
}

.quiz-subtitle {
    font-size: 14px;
    color: var(--texto-light);
    margin-bottom: 20px;
}

.quiz-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.quiz-option {
    display: block;
    width: 100%;
    padding: 14px 18px;
    background: var(--branco);
    border: 1.5px solid var(--creme-escuro);
    border-radius: var(--radius);
    text-align: left;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.2s;
    font-family: 'Inter', sans-serif;
    color: var(--texto);
}

.quiz-option:hover {
    border-color: var(--dourado);
    background: #FFFBF0;
}

.quiz-option.selected {
    border-color: var(--dourado);
    background: #FFF8E1;
}

.quiz-input {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid var(--creme-escuro);
    border-radius: var(--radius);
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    margin-bottom: 20px;
    background: var(--branco);
}

.quiz-input:focus {
    outline: none;
    border-color: var(--dourado);
}

.quiz-skip {
    display: block;
    font-size: 13px;
    color: var(--texto-light);
    text-decoration: underline;
    cursor: pointer;
    background: none;
    border: none;
    margin-top: 12px;
}

/* ── Upload ──────────────────────────── */
.upload-container {
    text-align: center;
    padding: 20px 0;
}

.upload-title {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 12px;
}

.upload-instruction {
    font-size: 14px;
    color: var(--texto-light);
    margin-bottom: 20px;
}

.upload-dica {
    background: #FFFBF0;
    border: 1px solid var(--dourado-claro);
    border-radius: var(--radius);
    padding: 14px 16px;
    margin-bottom: 24px;
    font-size: 14px;
    color: var(--texto);
}

.upload-area strong {
    font-size: 14px;
    white-space: nowrap;
}

.upload-area {
    border: 2px dashed var(--dourado-claro);
    border-radius: var(--radius);
    padding: 30px 16px;
    cursor: pointer;
    transition: all 0.2s;
    margin-bottom: 16px;
    background: var(--branco);
    display: block;
}

.upload-area:hover {
    border-color: var(--dourado);
    background: #FFFBF0;
}

.upload-privacy {
    font-size: 12px;
    color: var(--texto-light);
    margin-top: 12px;
}

/* ── Loading ─────────────────────────── */
.loading-card {
    background: var(--branco);
    border-radius: var(--radius);
    padding: 32px 24px;
    text-align: center;
    box-shadow: var(--shadow);
    margin: 20px 0;
}

.loading-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.loading-foto {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    margin: 16px auto;
    border: 3px solid var(--dourado);
}

.loading-steps {
    text-align: left;
    margin: 20px 0;
    font-size: 14px;
}

.loading-step {
    padding: 8px 0;
    color: var(--texto-light);
    display: flex;
    align-items: center;
    gap: 8px;
}

.loading-step.done {
    color: var(--verde);
}

.loading-step.active {
    color: var(--dourado);
    font-weight: 500;
}

.progress-bar {
    height: 6px;
    background: var(--creme-escuro);
    border-radius: 3px;
    margin-top: 12px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--dourado);
    border-radius: 3px;
    transition: width 0.6s ease;
}

/* ── Preview ─────────────────────────── */
.preview-watermark {
    position: relative;
    display: inline-block;
}

.preview-watermark img {
    max-width: 100%;
    border-radius: var(--radius);
    display: block;
}

.watermark-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: rgba(255,255,255,0.85);
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
    pointer-events: none;
    letter-spacing: 4px;
    line-height: 1.4;
}

.preview-note {
    background: #FFF9E6;
    border: 1px solid var(--dourado-claro);
    border-radius: var(--radius);
    padding: 16px;
    margin: 16px 0;
    font-size: 14px;
}

/* ── Prova Social ────────────────────── */
.depoimentos {
    padding: 20px 0;
}

.depoimentos h3 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    margin-bottom: 16px;
}

.depoimento-card {
    background: var(--branco);
    border-radius: var(--radius);
    padding: 16px;
    margin-bottom: 10px;
    box-shadow: var(--shadow);
    font-size: 14px;
}

.depoimento-card .nome {
    font-weight: 600;
    color: var(--dourado-escuro);
    margin-top: 8px;
}

/* ── Preço / CTA ─────────────────────── */
.preco-card {
    background: var(--branco);
    border-radius: var(--radius);
    padding: 24px;
    text-align: center;
    box-shadow: var(--shadow);
    margin: 20px 0;
}

.preco-badge {
    color: var(--verde);
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 12px;
}

.preco-antigo {
    font-size: 16px;
    color: var(--texto-light);
    text-decoration: line-through;
}

.preco-atual {
    font-size: 36px;
    font-weight: 700;
    color: var(--texto);
}

.preco-parcelas {
    font-size: 14px;
    color: var(--texto-light);
    margin-top: 4px;
}

.preco-garantia {
    font-size: 13px;
    color: var(--verde);
    margin-top: 12px;
}

/* ── Garantia / FAQ ──────────────────── */
.garantia-block {
    background: var(--branco);
    border-radius: var(--radius);
    padding: 20px;
    margin: 16px 0;
    text-align: center;
    box-shadow: var(--shadow);
}

.garantia-block h4 {
    color: var(--dourado-escuro);
    margin-bottom: 8px;
}

.faq-item {
    border-bottom: 1px solid var(--creme-escuro);
    padding: 14px 0;
    cursor: pointer;
}

.faq-item summary {
    font-weight: 500;
    font-size: 15px;
}

.faq-item p {
    margin-top: 8px;
    font-size: 14px;
    color: var(--texto-light);
}

/* ── Sticky Footer / Botão Flutuante ─── */
.sticky-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--branco);
    padding: 12px 20px;
    box-shadow: 0 -2px 12px rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    z-index: 100;
    transform: translateY(0);
    opacity: 1;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.sticky-footer.hidden {
    transform: translateY(100%);
    opacity: 0;
    pointer-events: none;
}

.sticky-footer .info {
    font-size: 12px;
    color: var(--texto-light);
}

.sticky-footer .info strong {
    display: block;
    font-size: 16px;
    color: var(--texto);
}

.sticky-footer .btn {
    flex-shrink: 0;
    white-space: nowrap;
}

.btn-flutuante {
    position: fixed;
    bottom: 100px;
    right: 20px;
    z-index: 99;
    background: var(--dourado);
    color: var(--branco);
    border-radius: 50px;
    padding: 12px 24px;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(197, 160, 89, 0.4);
    animation: pulse-cta 2s infinite;
    cursor: pointer;
    border: none;
    font-size: 15px;
}

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

/* ── Card de benefícios ──────────────── */
.beneficios {
    margin: 16px 0;
}

.beneficios h4 {
    font-size: 13px;
    color: var(--texto-light);
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.beneficio-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    padding: 6px 0;
}

/* ── Copy block ──────────────────────── */
.copy-block {
    font-size: 14px;
    color: var(--texto-light);
    line-height: 1.7;
    padding: 20px 0;
    text-align: center;
}

/* ── WhatsApp input ──────────────────── */
.whatsapp-card {
    background: var(--branco);
    border-radius: var(--radius);
    padding: 24px;
    text-align: center;
    box-shadow: var(--shadow);
    margin: 20px 0;
}

.whatsapp-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

/* ── Footer ─────────────────────────── */
.site-footer {
    text-align: center;
    padding: 60px 20px 100px;
    font-size: 13px;
    color: var(--texto-light);
}
