/* ==============================================
   JRTECH - Página HB20 Styles
   Sintomas, Comparativo, Timeline, CTA
   ============================================== */

/* ---- Hero Interna ---- */
.page-hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    position: relative;
    overflow: hidden;
}

.page-hero::after {
    content: '';
    position: absolute;
    top: 0;
    right: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, hsla(210, 100%, 56%, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.page-hero-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    align-items: center;
}

.page-hero-text .badge {
    margin-bottom: 1.25rem;
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.page-hero-text h1 {
    animation: fadeInUp 0.7s 0.1s ease forwards;
    opacity: 0;
    margin-bottom: 1.25rem;
}

.page-hero-text p {
    font-size: 1.1rem;
    animation: fadeInUp 0.7s 0.2s ease forwards;
    opacity: 0;
}

.page-hero-cta {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    animation: fadeInUp 0.7s 0.3s ease forwards;
    opacity: 0;
}

.page-hero-visual {
    animation: fadeInScale 0.8s 0.3s ease forwards;
    opacity: 0;
}

.page-hero-visual img {
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
}

/* ---- Sintomas ---- */
.symptoms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.25rem;
}

.symptom-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
}

.symptom-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.symptom-text h4 { margin-bottom: 0.35rem; }
.symptom-text p { font-size: 0.9rem; margin-bottom: 0; }

/* ---- Verdade / Explicação ---- */
.truth-section {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.06) 0%, rgba(245, 158, 11, 0.03) 100%);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 3rem;
}

.truth-section h2 { margin-bottom: 1.5rem; text-align: left; }

.truth-section p {
    font-size: 1.05rem;
    line-height: 1.8;
    max-width: 800px;
}

.truth-highlight {
    color: var(--accent);
    font-weight: 700;
}

/* ---- Comparativo ---- */
.compare-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.compare-card { padding: 2.5rem; text-align: center; }

.compare-card.negative {
    border-top: 3px solid var(--danger);
    background: linear-gradient(145deg, rgba(239, 68, 68, 0.04) 0%, var(--glass-bg) 100%);
}

.compare-card.positive {
    border-top: 3px solid var(--success);
    background: linear-gradient(145deg, rgba(34, 197, 94, 0.04) 0%, var(--glass-bg) 100%);
}

.compare-label {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
}

.compare-card.negative .compare-label { color: var(--danger); }
.compare-card.positive .compare-label { color: var(--success); }

.compare-card h3 { margin-bottom: 1rem; }

.compare-list {
    text-align: left;
    margin-top: 1.5rem;
}

.compare-list li {
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--glass-border);
    font-size: 0.95rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.compare-list li:last-child { border-bottom: none; }

/* ---- Processo / Timeline ---- */
.timeline {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 29px;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary), var(--accent));
    border-radius: 1px;
}

.timeline-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    position: relative;
}

.timeline-dot {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--bg-surface);
    border: 2px solid var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--primary);
    z-index: 1;
}

.timeline-content {
    padding: 1.5rem 2rem;
    flex: 1;
}

.timeline-content h4 { margin-bottom: 0.4rem; }
.timeline-content p { font-size: 0.9rem; margin-bottom: 0; }

/* ---- Responsivo ---- */
@media (max-width: 992px) {
    .page-hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .page-hero-cta { justify-content: center; }
    .page-hero-visual {
        max-width: 450px;
        margin: 0 auto;
    }
    .compare-grid { grid-template-columns: 1fr; }
    .truth-section { padding: 2rem 1.5rem; }
}

@media (max-width: 768px) {
    .page-hero-cta { flex-direction: column; }
    .page-hero-cta .btn { width: 100%; }
    .symptoms-grid { grid-template-columns: 1fr; }
}
