/* ===========================
   RESET E BASE
=========================== */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #1F2A37;
    background: #FFFFFF;
    line-height: 1.6;
}

/* Containers */
.container {
    width: min(1200px, 90%);
    margin: auto;
}

/* ===========================
   TIPOGRAFIA
=========================== */

h1, h2, h3, h4 {
    font-family: 'Fraunces', serif;
    color: #1F2A37;
}

h1 {
    font-size: 2.8rem;
    line-height: 1.2;
}

h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.4rem;
}

p.lead {
    font-size: 1.15rem;
    color: #4B5563;
}

.eyebrow {
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    color: #6A4DE8;
    font-weight: 600;
}

/* ===========================
   BOTÕES
=========================== */

.btn {
    display: inline-block;
    padding: 12px 22px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.2s ease;
}

.btn--primary {
    background: #6A4DE8;
    color: #fff;
}

.btn--primary:hover {
    background: #5538d6;
}

.btn--ghost {
    border: 2px solid #6A4DE8;
    color: #6A4DE8;
}

.btn--ghost:hover {
    background: #6A4DE8;
    color: #fff;
}

.btn--light {
    background: #E8EEF7;
    color: #1F2A37;
}

.btn-row {
    display: flex;
    gap: 1rem;
    margin-top: 1.4rem;
}

/* ===========================
   HEADER
=========================== */

.site-header {
    background: #FFFFFF;
    border-bottom: 1px solid #E5E7EB;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #1F2A37;
}

.brand small {
    display: block;
    font-size: 0.7rem;
    color: #6B7280;
}

.logo {
    width: 42px;
    height: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 22px;
}

.nav-links a {
    text-decoration: none;
    color: #374151;
    font-weight: 500;
}

.nav-links a.active {
    color: #6A4DE8;
}

/* Mobile toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
}

.nav-toggle span {
    width: 26px;
    height: 3px;
    background: #1F2A37;
    border-radius: 3px;
}

/* ===========================
   HERO
=========================== */

.hero {
    padding: 5rem 0;
    background: linear-gradient(135deg, #E8EEF7, #FFFFFF);
    position: relative;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-photo {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.hero-geo {
    position: absolute;
    width: 280px;
    height: 280px;
    background: rgba(106, 77, 232, 0.08);
    border-radius: 50%;
    top: -40px;
    right: -40px;
    z-index: -1;
}

/* Pills */
.pill-row {
    margin-top: 1.4rem;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.pill {
    background: #E8EEF7;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    color: #1F2A37;
}

/* ===========================
   SEÇÕES
=========================== */

.section {
    padding: 4.5rem 0;
}

.section--tint {
    background: #F7F8FC;
}

.section--sage {
    background: #F2F7F3;
}

.center {
    text-align: center;
}

.narrow {
    max-width: 650px;
    margin: auto;
}

/* ===========================
   CARDS
=========================== */

.grid {
    display: grid;
    gap: 2rem;
}

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

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

.card {
    background: #FFFFFF;
    padding: 2rem;
    border-radius: 14px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
    transition: 0.2s ease;
}

.card:hover {
    transform: translateY(-4px);
}

.card--link {
    text-decoration: none;
    color: inherit;
}

.ico {
    font-size: 2rem;
    margin-bottom: 1rem;
}

/* ===========================
   DEPOIMENTOS
=========================== */

.testimonial-carousel {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 1rem;
}

.testimonial {
    min-width: 300px;
    background: #FFFFFF;
    padding: 2rem;
    border-radius: 14px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
    scroll-snap-align: start;
}

.avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    margin-bottom: 0.8rem;
}

.origin {
    font-size: 0.8rem;
    color: #6B7280;
}

.stars {
    color: #FBBF24;
    margin-top: 0.6rem;
}

/* ===========================
   CTA FINAL
=========================== */

.cta {
    background: #6A4DE8;
    color: #FFFFFF;
    text-align: center;
    padding: 4rem 0;
}

.cta h2 {
    color: #FFFFFF;
}

/* ===========================
   FOOTER
=========================== */

.site-footer {
    background: #1F2A37;
    color: #FFFFFF;
    padding: 3rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.site-footer a {
    color: #E5E7EB;
    text-decoration: none;
}

.footer-bottom {
    margin-top: 2rem;
    text-align: center;
    font-size: 0.85rem;
    color: #9CA3AF;
}

/* ===========================
   ANIMAÇÕES (REVEAL)
=========================== */

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===========================
   RESPONSIVIDADE
=========================== */

@media (max-width: 900px) {

    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

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

    .nav-links {
        display: none;
        position: absolute;
        top: 72px;
        right: 0;
        background: #FFFFFF;
        width: 100%;
        padding: 2rem;
        flex-direction: column;
        gap: 1.4rem;
        box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    }

    .nav-links.open {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }

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

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* ===========================
   ADIÇÕES v1.5.2
   (não modifica nada acima)
=========================== */

/* ---- PAGE HERO ---- */

.page-hero {
    background: linear-gradient(135deg, #E8EEF7, #FFFFFF);
    padding: 5rem 0 4rem;
}

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

.page-hero--center {
    text-align: center;
}

.about-photo {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
    max-height: 480px;
    object-fit: cover;
    object-position: top;
}

/* ---- GRID 4 ---- */

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

/* ---- SCALE CARDS ---- */

.card--scale {
    border-top: 3px solid #6A4DE8;
    position: relative;
    padding-top: 2.4rem;
}

.scale-badge {
    position: absolute;
    top: -1px;
    right: 1.2rem;
    background: #6A4DE8;
    color: #fff;
    font-size: 0.72rem;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 0 0 6px 6px;
}

.scale-cta {
    display: inline-block;
    margin-top: 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: #6A4DE8;
}

/* ---- FORMULÁRIO PREVIEW (index) ---- */

.formulario-preview {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 6px 24px rgba(0,0,0,0.08);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
}

.fp-step {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    opacity: 0.5;
}

.fp-step.active {
    opacity: 1;
}

.fp-num {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #E8EEF7;
    color: #6A4DE8;
    font-weight: 700;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.fp-step.active .fp-num {
    background: #6A4DE8;
    color: #fff;
}

.fp-step strong {
    display: block;
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.fp-step p {
    font-size: 0.85rem;
    color: #6B7280;
    margin: 0;
}

/* ---- FEATURE LIST ---- */

.feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.feature-list li {
    font-size: 0.95rem;
    color: #374151;
}

/* ---- TIMELINE (sobre) ---- */

.timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 760px;
    margin: 0 auto;
}

.tl-item {
    display: grid;
    grid-template-columns: 20px 1fr;
    gap: 0 1.4rem;
    padding-bottom: 2.5rem;
    position: relative;
}

.tl-item:last-child {
    padding-bottom: 0;
}

.tl-marker {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #6A4DE8;
    margin-top: 4px;
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}

.tl-item:not(:last-child) .tl-marker::after {
    content: '';
    position: absolute;
    top: 16px;
    left: 7px;
    width: 2px;
    height: calc(100% + 2rem);
    background: #E5E7EB;
}

.tl-year {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #6A4DE8;
    margin-bottom: 0.3rem;
}

.tl-content h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.tl-content p {
    color: #6B7280;
    font-size: 0.95rem;
}

/* ---- APPROACH LIST (sobre) ---- */

.approach-list {
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
}

.approach-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.approach-icon {
    font-size: 1.6rem;
    flex-shrink: 0;
    width: 40px;
    text-align: center;
}

.approach-item h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.approach-item p {
    font-size: 0.85rem;
    color: #6B7280;
    margin: 0;
}

/* ---- QUOTE BLOCK (sobre) ---- */

.quote-block {
    background: #fff;
    border-left: 4px solid #6A4DE8;
    padding: 2rem 2rem 2rem 2.4rem;
    border-radius: 0 14px 14px 0;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}

.quote-text {
    font-family: 'Fraunces', serif;
    font-size: 1.25rem;
    line-height: 1.6;
    color: #1F2A37;
    margin-bottom: 1rem;
}

.quote-author {
    font-size: 0.85rem;
    color: #6B7280;
}

/* ---- FLOW STEPS (como-funciona) ---- */

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

.flow-step {
    display: grid;
    grid-template-columns: 48px 1fr 60px;
    gap: 1.4rem;
    align-items: start;
    background: #fff;
    border-radius: 14px;
    padding: 2rem;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.flow-num {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #6A4DE8;
    color: #fff;
    font-family: 'Fraunces', serif;
    font-size: 1.2rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.flow-content h3 {
    font-size: 1.1rem;
    margin-bottom: 0.6rem;
}

.flow-content p {
    color: #6B7280;
    font-size: 0.95rem;
    margin-bottom: 0;
}

.flow-detail {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #F3F4F6;
}

.flow-detail span {
    font-size: 0.85rem;
    color: #374151;
}

.flow-icon {
    font-size: 2rem;
    text-align: center;
    padding-top: 0.4rem;
}

.flow-connector {
    width: 2px;
    height: 2rem;
    background: #E5E7EB;
    margin: 0 auto;
}

/* ---- SCALES PREVIEW (como-funciona) ---- */

.scales-preview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.sp-item {
    background: #F7F8FC;
    border: 2px solid transparent;
    border-radius: 10px;
    padding: 1rem 1.2rem;
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
}

.sp-item:hover {
    border-color: #6A4DE8;
    background: #fff;
    transform: translateY(-2px);
}

.sp-meta {
    font-size: 0.72rem;
    color: #9CA3AF;
    margin-bottom: 0.3rem;
    font-weight: 500;
}

.sp-name {
    font-family: 'Fraunces', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1F2A37;
    margin-bottom: 0.2rem;
}

.sp-desc {
    font-size: 0.8rem;
    color: #6B7280;
}

.sp-item--more {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed #D1D5DB;
    background: transparent;
}

.sp-item--more .sp-name {
    font-size: 0.9rem;
    color: #6A4DE8;
    font-family: 'Poppins', sans-serif;
}

/* ---- FAQ (como-funciona) ---- */

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.faq-item {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    overflow: hidden;
}

.faq-item summary {
    padding: 1.2rem 1.6rem;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.95rem;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    font-size: 1.4rem;
    color: #6A4DE8;
    font-weight: 300;
    transition: transform 0.2s;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-item p {
    padding: 0 1.6rem 1.4rem;
    color: #6B7280;
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
    border-top: 1px solid #F3F4F6;
    padding-top: 1rem;
}

/* ---- BTN WHITE (footer CTA) ---- */

.btn--white {
    background: #fff;
    color: #6A4DE8;
    font-weight: 700;
}

.btn--white:hover {
    background: #F3F4F6;
}

/* ---- F-BRAND (footer lists) ---- */

.f-brand {
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: #fff;
}

.site-footer ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.site-footer p {
    color: #9CA3AF;
    font-size: 0.9rem;
}

/* ---- RESPONSIVIDADE NOVA ---- */

@media (max-width: 1100px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .page-hero-grid {
        grid-template-columns: 1fr;
    }

    .flow-step {
        grid-template-columns: 40px 1fr;
    }

    .flow-icon {
        display: none;
    }

    .scales-preview {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .grid-4 {
        grid-template-columns: 1fr;
    }

    .flow-step {
        grid-template-columns: 36px 1fr;
        padding: 1.4rem;
        gap: 1rem;
    }

    .flow-num {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.7rem;
    }
}

/* ============================================================
   COMO-FUNCIONA — Layout robusto (flexbox + prefixo cf-)
   Substitui qualquer estilo .flow-* anterior
============================================================ */

/* ---- Page hero compacto ---- */

.page-hero--compact {
    padding: 4rem 0 3rem;
}

.page-hero--compact h1 {
    font-size: 2.4rem;
    line-height: 1.15;
    margin-bottom: 1rem;
}

.page-hero--compact .lead {
    font-size: 1.1rem;
    max-width: 620px;
    margin: 0 auto;
}

/* ---- Botão pequeno ---- */

.btn--sm {
    padding: 9px 16px;
    font-size: 0.9rem;
}

/* ---- Fluxo de passos ---- */

.cf-flow {
    list-style: none;
    padding: 0;
    margin: 3rem auto 0;
    max-width: 780px;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.cf-step {
    display: flex;
    align-items: flex-start;
    gap: 1.4rem;
    background: #fff;
    border-radius: 14px;
    padding: 1.8rem 2rem;
    box-shadow: 0 4px 16px rgba(0,0,0,0.05);
    list-style: none;
}

.cf-step-num {
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #6A4DE8;
    color: #fff;
    font-family: 'Fraunces', serif;
    font-size: 1.15rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cf-step-body {
    flex: 1;
    min-width: 0;
}

.cf-step-body h3 {
    font-size: 1.15rem;
    margin: 0 0 0.5rem;
    line-height: 1.3;
}

.cf-step-body p {
    color: #4B5563;
    font-size: 0.96rem;
    margin: 0 0 0.8rem;
    line-height: 1.6;
}

.cf-step-body p:last-child {
    margin-bottom: 0;
}

/* ---- Bullets dentro de passos ---- */

.cf-bullets {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.cf-bullets li {
    font-size: 0.92rem;
    color: #374151;
    padding-left: 1.2rem;
    position: relative;
    line-height: 1.55;
}

.cf-bullets li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #6A4DE8;
}

.cf-bullets--inline {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.5rem 1.4rem;
}

.cf-bullets--inline li {
    font-size: 0.85rem;
    color: #6B7280;
}

/* ---- Seção escalas ---- */

.cf-scales-wrap {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.cf-scales-text {
    flex: 1 1 380px;
    max-width: 460px;
}

.cf-scales-text h2 {
    margin: 0.6rem 0 1.2rem;
}

.cf-scales-text p {
    color: #4B5563;
    margin-bottom: 1rem;
}

.cf-scales-text .btn {
    margin-top: 0.8rem;
}

.cf-scales-grid {
    flex: 1 1 360px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.9rem;
}

.cf-scale {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    background: #F7F8FC;
    border: 2px solid transparent;
    border-radius: 10px;
    padding: 1.1rem 1.2rem;
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
}

.cf-scale:hover {
    border-color: #6A4DE8;
    background: #fff;
    transform: translateY(-2px);
}

.cf-scale-meta {
    font-size: 0.72rem;
    color: #9CA3AF;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.cf-scale-name {
    font-family: 'Fraunces', serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: #1F2A37;
}

.cf-scale-desc {
    font-size: 0.82rem;
    color: #6B7280;
}

.cf-scale--more {
    border: 2px dashed #D1D5DB;
    background: transparent;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.cf-scale--more .cf-scale-name {
    font-size: 0.95rem;
    color: #6A4DE8;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

/* ---- FAQ ---- */

.cf-faq {
    max-width: 760px;
    margin: 2.5rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cf-faq-item {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
    overflow: hidden;
    transition: box-shadow 0.2s;
}

.cf-faq-item[open] {
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.cf-faq-item summary {
    padding: 1.4rem 1.8rem;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    color: #1F2A37;
}

.cf-faq-item summary::-webkit-details-marker { display: none; }
.cf-faq-item summary::marker { content: ''; }

.cf-faq-item summary::after {
    content: '+';
    font-size: 1.6rem;
    font-weight: 300;
    color: #6A4DE8;
    transition: transform 0.25s ease;
    line-height: 1;
    flex-shrink: 0;
}

.cf-faq-item[open] summary::after {
    transform: rotate(45deg);
}

.cf-faq-body {
    padding: 0 1.8rem 1.6rem;
    border-top: 1px solid #F3F4F6;
    padding-top: 1.2rem;
}

.cf-faq-body p {
    color: #4B5563;
    font-size: 0.96rem;
    line-height: 1.7;
    margin: 0 0 0.9rem;
}

.cf-faq-body p:last-child {
    margin-bottom: 0;
}

.cf-faq-body strong {
    color: #1F2A37;
}

/* ---- Responsivo ---- */

@media (max-width: 900px) {
    .cf-scales-wrap {
        flex-direction: column;
        gap: 2.5rem;
    }
    .cf-scales-text {
        max-width: none;
    }
    .cf-scales-grid {
        width: 100%;
    }
}

@media (max-width: 640px) {
    .cf-step {
        padding: 1.4rem 1.3rem;
        gap: 1rem;
    }
    .cf-step-num {
        flex: 0 0 38px;
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }
    .cf-step-body h3 {
        font-size: 1.05rem;
    }
    .cf-bullets--inline {
        flex-direction: column;
        gap: 0.5rem;
    }
    .cf-scales-grid {
        grid-template-columns: 1fr;
    }
    .cf-faq-item summary {
        padding: 1.2rem 1.4rem;
        font-size: 0.95rem;
    }
    .cf-faq-body {
        padding: 1.2rem 1.4rem 1.4rem;
    }
    .page-hero--compact h1 {
        font-size: 1.9rem;
    }
}
