/* ===========================
   RESET & BASE
=========================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

html, body {
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    background-color: var(--cream-100);
    color: var(--ink);
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

img, svg {
    display: block;
    max-width: 100%;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    font-family: inherit;
    background: none;
    border: none;
    cursor: pointer;
}

a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--gold-on-light);
    outline-offset: 3px;
}

/* ===========================
   CUSTOM PROPERTIES
=========================== */
:root {
    --brown-950: #1C1108;
    --brown-900: #2A1B10;
    --brown-800: #3A2717;

    --cream-100: #FAF3E9;
    --cream-50:  #FFFDF8;

    --gold-on-dark:  #D8B478;
    --gold-on-light: #855A1A;

    --green-500: #1FAE63;
    --green-600: #0E8A4C;

    --hero-green: #2C3B0F;

    --ink:        #241608;
    --ink-muted:  #6B5D4E;

    /* Padrão de texto claro sobre fundo escuro — títulos, subtítulos e descrições */
    --color-text-light: #F8F1E6;
    --paper:      var(--color-text-light);
    --paper-muted: #C7B7A0;

    --border-light: rgba(43, 26, 16, 0.10);
    --border-dark:  rgba(255, 255, 255, 0.12);
    --shadow-card:  0 10px 30px rgba(43, 26, 16, 0.08);

    --radius-card: 16px;
    --radius-btn:  999px;

    --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
    --font-body: 'Inter', system-ui, -apple-system, sans-serif;

    --header-h: 84px;

    --fs-h1: clamp(2.2rem, 1.35rem + 3.6vw, 3.6rem);
    --fs-h2: clamp(1.75rem, 1.35rem + 1.7vw, 2.5rem);
}

/* ===========================
   TYPOGRAPHY BASE
=========================== */
h1, h2, h3 {
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--ink);
    line-height: 1.15;
}

p { color: var(--ink-muted); }

/* ===========================
   UTILITIES
=========================== */
.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    background: var(--cream-100);
    padding: 100px 0;
}

.section--dark {
    background: var(--brown-900);
    color: var(--color-text-light);
}

.section-title {
    font-size: var(--fs-h2);
    color: var(--ink);
    line-height: 1.18;
    margin-bottom: 20px;
}

.section-title--onDark {
    color: var(--paper);
}

.eyebrow {
    display: block;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold-on-light);
    margin-bottom: 14px;
}

.eyebrow::after {
    content: "";
    display: block;
    width: 30px;
    height: 2px;
    background: var(--gold-on-light);
    margin-top: 12px;
}

.eyebrow--onDark {
    color: var(--gold-on-dark);
}

.eyebrow--onDark::after {
    background: var(--gold-on-dark);
}

.hero .eyebrow {
    color: var(--paper);
}

.hero .eyebrow::after {
    display: none;
}

/* ===========================
   BUTTONS
=========================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.92rem;
    letter-spacing: 0.01em;
    padding: 15px 28px;
    border-radius: var(--radius-btn);
    transition: background 0.2s ease, transform 0.15s ease, border-color 0.2s ease, color 0.2s ease;
    white-space: nowrap;
}

.btn--primary {
    background: linear-gradient(135deg, var(--green-500), var(--green-600));
    color: #ffffff;
}

.btn--primary:hover {
    background: linear-gradient(135deg, var(--green-600), var(--green-600));
    transform: translateY(-1px);
}

.btn--outline {
    background: transparent;
    color: var(--paper);
    border: 1.5px solid rgba(243, 233, 218, 0.45);
}

.btn--outline:hover {
    background: rgba(243, 233, 218, 0.1);
    border-color: var(--paper);
}

.btn--sm {
    padding: 11px 20px;
    font-size: 0.85rem;
}

.btn--lg {
    padding: 18px 36px;
    font-size: 1rem;
}

.btn .icon {
    width: 1.1rem;
    height: 1.1rem;
}

/* ===========================
   ICONS
=========================== */
.icon {
    display: inline-block;
    width: 1.2em;
    height: 1.2em;
    vertical-align: middle;
    flex-shrink: 0;
}

/* ===========================
   HEADER
=========================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    background: #895129;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.site-header.is-solid {
    background: #895129;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.18);
}

/* Compactação suave do cabeçalho ao rolar — somente desktop (>=1024px) */
@media (min-width: 1024px) {
    .site-header.is-compact .site-header__inner {
        height: 64px;
    }

    .site-header.is-compact .site-header__mark-wrap {
        width: 36px;
        height: 36px;
    }

    .site-header.is-compact .site-header__mark-wrap .site-header__mark {
        height: 33px;
    }

    .site-header.is-compact .site-header__wordmark {
        font-size: 0.92rem;
    }
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    height: var(--header-h);
    transition: height 0.3s ease;
}

.site-header__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.site-header__mark {
    width: auto;
    height: 44px;
}

.site-header__mark-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #1C270A;
    overflow: hidden;
    flex-shrink: 0;
    transition: width 0.3s ease, height 0.3s ease;
}

.site-header__mark-wrap .site-header__mark {
    width: auto;
    height: 41px;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: height 0.3s ease;
}

.site-header__wordmark {
    font-family: var(--font-display);
    font-size: 1.05rem;
    letter-spacing: 0.04em;
    color: var(--paper);
    transition: font-size 0.3s ease;
}

.site-header__wordmark strong {
    color: var(--gold-on-dark);
    font-weight: 600;
}

.site-header__nav {
    display: flex;
    align-items: center;
    gap: 36px;
    margin: 0 auto;
}

.nav-link {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--paper-muted);
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: var(--gold-on-dark);
}

.site-header__actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

/* ===========================
   HAMBURGER / MOBILE NAV
=========================== */
.hamburger {
    display: none;
    position: relative;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    color: var(--paper);
    flex-shrink: 0;
}

.hamburger__icon {
    position: absolute;
    width: 22px;
    height: 22px;
    transition: opacity 0.15s ease;
}

.hamburger__icon--close {
    opacity: 0;
}

.hamburger[aria-expanded="true"] .hamburger__icon--open {
    opacity: 0;
}

.hamburger[aria-expanded="true"] .hamburger__icon--close {
    opacity: 1;
}

.mobile-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: #895129;
    padding: 4px 24px 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.35s ease, opacity 0.25s ease, padding 0.35s ease;
}

.mobile-nav.is-open {
    max-height: 480px;
    opacity: 1;
    padding: 12px 24px 28px;
}

.mobile-nav__link {
    padding: 12px 4px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--paper);
    border-bottom: 1px solid var(--border-dark);
}

.mobile-nav__cta {
    justify-content: center;
    margin-top: 16px;
}

/* ===========================
   HERO
=========================== */
.hero {
    position: relative;
    overflow: hidden;
    background: var(--hero-green);
    padding: calc(var(--header-h) + 64px) 0 88px;
    display: flex;
    align-items: center;
    min-height: 680px;
}

.hero__visual {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 58%;
    background-image: url('../images/logo.png?v=20260806-reviews-01');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, var(--hero-green) 0%, var(--hero-green) 36%, rgba(20,28,8,0.55) 55%, rgba(20,28,8,0) 72%),
        linear-gradient(180deg, rgba(20,28,8,0) 55%, rgba(20,28,8,0.85) 100%);
}

.hero__grid {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero__content {
    max-width: 600px;
}

.hero__title {
    font-size: var(--fs-h1);
    color: var(--paper);
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero__subtitle {
    font-size: 1.05rem;
    color: var(--color-text-light);
    max-width: 520px;
    line-height: 1.7;
    margin-bottom: 32px;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 44px;
}

/* ===========================
   PATTERNS (Talvez não seja falta de força)
=========================== */
.patterns {
    background: var(--color-text-light);
}

.patterns__header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 36px;
}

.patterns__title {
    font-size: var(--fs-h2);
    color: var(--gold-on-light);
    line-height: 1.18;
    margin-bottom: 20px;
}

.patterns__subtitle {
    font-size: 1.05rem;
    color: var(--ink-muted);
    line-height: 1.7;
}

.patterns__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 920px;
    margin: 0 auto;
}

.patterns__block {
    border: 1.5px solid var(--hero-green);
    border-radius: var(--radius-card);
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.patterns__block-title {
    font-size: 1.15rem;
    color: var(--ink);
    margin-bottom: 10px;
}

.patterns__block-text {
    font-size: 0.92rem;
    color: var(--ink-muted);
    line-height: 1.7;
}

.patterns__transition {
    text-align: center;
    max-width: 640px;
    margin: 56px auto 0;
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.15rem;
    color: var(--gold-on-light);
    line-height: 1.6;
}

/* ===========================
   COMO ATENDEMOS (processo)
=========================== */
.process {
    background: #1C270A;
}

.process__header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 72px;
}

.process__subtitle {
    font-size: 1.02rem;
    color: var(--color-text-light);
    line-height: 1.7;
}

.process__steps {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 940px;
    margin: 0 auto;
}

.process__steps::before {
    content: "";
    position: absolute;
    top: 27px;
    left: 16.6%;
    right: 16.6%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-on-dark) 20%, var(--gold-on-dark) 80%, transparent);
    opacity: 0.45;
}

.step {
    position: relative;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step__circle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 1.5px solid var(--gold-on-dark);
    background: #1C270A;
    color: var(--gold-on-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.05rem;
    margin-bottom: 22px;
}

.step__title {
    font-size: 1.1rem;
    color: var(--paper);
    margin-bottom: 10px;
}

.step__desc {
    font-size: 0.9rem;
    color: var(--color-text-light);
    line-height: 1.7;
    max-width: 260px;
}

.process__cta {
    display: flex;
    justify-content: center;
    margin-top: 64px;
}

/* ===========================
   DEPOIMENTOS
=========================== */
.testimonials__header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 48px;
}

.testimonials__grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    max-width: 1080px;
    margin: 0 auto;
}

.testimonial {
    display: flex;
    flex-direction: column;
    flex: 1 1 320px;
    max-width: 344px;
    background: var(--cream-50);
    border: 1.5px solid var(--hero-green);
    border-radius: var(--radius-card);
    padding: 28px;
    box-shadow: var(--shadow-card);
}

.testimonial__head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--border-light);
}

.testimonial__avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--hero-green);
    color: var(--paper);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.88rem;
    letter-spacing: 0.02em;
    flex-shrink: 0;
}

.testimonial__name {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--ink);
}

.testimonial__quote::before {
    content: "\201C";
    display: block;
    font-family: var(--font-display);
    font-size: 2.2rem;
    line-height: 1;
    color: var(--gold-on-light);
    opacity: 0.5;
    margin-bottom: 6px;
}

.testimonial__quote p {
    font-size: 0.94rem;
    color: var(--ink-muted);
    line-height: 1.75;
}

.testimonials__note {
    text-align: center;
    max-width: 640px;
    margin: 48px auto 0;
    font-size: 0.85rem;
    color: var(--ink-muted);
}

/* ===========================
   CONHEÇA SUA TERAPEUTA (about)
=========================== */
.about__title {
    max-width: 640px;
    margin-bottom: 40px;
}

.about__grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 72px;
    align-items: center;
}

.about__photo img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    object-position: center 20%;
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-card);
}

.about__photo-caption {
    margin-top: 14px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.about__photo-name {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--gold-on-light);
    letter-spacing: 0.02em;
}

.about__photo-role {
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: var(--ink-muted);
}

.about__text p {
    font-size: 0.98rem;
    line-height: 1.8;
    margin-bottom: 18px;
}

.about__text p.about__lead {
    font-family: var(--font-display);
    font-size: 1.35rem;
    color: var(--ink);
    line-height: 1.45;
    margin-bottom: 20px;
}

.about__text p.about__signature {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.05rem;
    color: var(--gold-on-light);
    border-left: 3px solid var(--hero-green);
    padding-left: 18px;
    line-height: 1.6;
    margin: 28px 0;
}

.about__cta {
    margin-top: 8px;
}

/* ===========================
   FAQ
=========================== */
.faq {
    background: #895129;
}

.faq__header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 48px;
}

.accordion {
    max-width: 720px;
    margin: 0 auto;
}

.accordion-item {
    border-bottom: 1px solid var(--border-dark);
}

.accordion-item:first-child {
    border-top: 1px solid var(--border-dark);
}

.accordion__trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 22px 4px;
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
    color: var(--paper);
}

.accordion__trigger:focus-visible {
    outline-color: var(--gold-on-dark);
}

.accordion__icon {
    color: var(--gold-on-dark);
    flex-shrink: 0;
    transition: transform 0.25s ease;
}

.accordion-item.is-open .accordion__icon {
    transform: rotate(45deg);
}

.accordion__panel {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.3s ease;
}

.accordion-item.is-open .accordion__panel {
    grid-template-rows: 1fr;
}

.accordion__panel-inner {
    overflow: hidden;
    min-height: 0;
}

.accordion__panel-inner p {
    font-size: 0.92rem;
    line-height: 1.75;
    padding-bottom: 24px;
    padding-right: 40px;
    color: var(--color-text-light);
}

/* ===========================
   CTA FINAL
=========================== */
.final-cta {
    padding: 110px 0;
    text-align: center;
    background: #1C270A;
}

.final-cta__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 640px;
    margin: 0 auto;
}

.final-cta__title {
    font-size: var(--fs-h2);
    color: var(--paper);
    line-height: 1.2;
    margin-bottom: 20px;
}

.final-cta__text {
    font-size: 1rem;
    color: var(--color-text-light);
    margin-bottom: 14px;
}

.final-cta__text:last-of-type {
    margin-bottom: 36px;
}

/* ===========================
   RODAPÉ
=========================== */
.site-footer {
    background: var(--brown-900);
    border-top: 3px solid var(--gold-on-dark);
    padding-top: 72px;
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
}

.footer__name {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--paper);
    margin-bottom: 4px;
}

.footer__role {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    color: var(--paper-muted);
    margin-bottom: 16px;
}

.footer__heading {
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--paper);
    margin-bottom: 20px;
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer__links a {
    font-size: 0.9rem;
    color: var(--paper-muted);
    transition: color 0.2s ease;
}

.footer__links a:hover {
    color: var(--gold-on-dark);
}

.footer__pending {
    display: inline-block;
    font-size: 0.9rem;
    color: var(--paper-muted);
    opacity: 0.55;
    cursor: default;
}

.footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    padding: 24px;
    border-top: 1px solid var(--border-dark);
}

.footer__bottom p {
    font-size: 0.8rem;
    color: var(--paper-muted);
}

/* ===========================
   WHATSAPP FLOAT
=========================== */
.whatsapp-float {
    position: fixed;
    bottom: max(24px, env(safe-area-inset-bottom));
    right: 24px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--green-500), var(--green-600));
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 24px rgba(14, 138, 76, 0.4);
    z-index: 150;
    transition: transform 0.2s ease;
}

.whatsapp-float:hover {
    transform: scale(1.08);
}

.whatsapp-float .icon {
    width: 1.6rem;
    height: 1.6rem;
}

body.nav-open .whatsapp-float {
    display: none;
}

/* ===========================
   SCROLL REVEAL — BALÕES EM DUPLAS / ETAPAS UMA A UMA
=========================== */
.patterns__block,
.step,
.testimonial {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.patterns__grid.is-revealed .patterns__block,
.process__steps.is-revealed .step,
.testimonials__grid.is-revealed .testimonial {
    opacity: 1;
    transform: translateY(0);
}

.patterns__grid .patterns__block:nth-child(1),
.patterns__grid .patterns__block:nth-child(2) {
    transition-delay: 0ms;
}

.patterns__grid .patterns__block:nth-child(3),
.patterns__grid .patterns__block:nth-child(4) {
    transition-delay: 180ms;
}

.process__steps .step:nth-child(1) {
    transition-delay: 0ms;
}

.process__steps .step:nth-child(2) {
    transition-delay: 180ms;
}

.process__steps .step:nth-child(3) {
    transition-delay: 360ms;
}

.testimonials__grid .testimonial:nth-child(1) {
    transition-delay: 0ms;
}

.testimonials__grid .testimonial:nth-child(2) {
    transition-delay: 90ms;
}

.testimonials__grid .testimonial:nth-child(3) {
    transition-delay: 180ms;
}

.testimonials__grid .testimonial:nth-child(4) {
    transition-delay: 270ms;
}

.testimonials__grid .testimonial:nth-child(5) {
    transition-delay: 360ms;
}

/* ===========================
   SCROLL ANCHOR OFFSET
=========================== */
section[id], footer[id] {
    scroll-margin-top: var(--header-h);
}

/* ===========================
   PERFORMANCE / MOTION
=========================== */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    html { scroll-behavior: auto; }
}

body.nav-open {
    overflow: hidden;
}

/* ===========================
   RESPONSIVE — TABLET (<=1024px)
=========================== */
@media (max-width: 1024px) {
    .site-header__nav,
    .site-header__cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .about__grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about__photo {
        max-width: 340px;
        margin: 0 auto;
    }

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

    .footer__brand {
        grid-column: 1 / -1;
    }
}

/* ===========================
   RESPONSIVE — SMALL TABLET (<=900px)
=========================== */
@media (max-width: 900px) {
    .section {
        padding: 76px 0;
    }

    .hero {
        min-height: 0;
        padding: calc(var(--header-h) + 40px) 0 64px;
    }

    .hero__visual {
        width: 100%;
        opacity: 0.5;
    }

    .hero__overlay {
        background: linear-gradient(180deg, rgba(20,28,8,0.55) 0%, rgba(20,28,8,0.92) 85%);
    }

    .hero__content {
        max-width: 100%;
    }

    .hero__subtitle {
        max-width: 100%;
    }

    .process__steps {
        grid-template-columns: 1fr;
        gap: 48px;
        max-width: 360px;
    }

    .process__steps::before {
        display: none;
    }

    .step__desc {
        max-width: 100%;
    }
}

/* ===========================
   RESPONSIVE — MOBILE (<=640px)
=========================== */
@media (max-width: 640px) {
    .container {
        padding: 0 20px;
    }

    .section {
        padding: 64px 0;
    }

    .hero__subtitle {
        margin-bottom: 52px;
    }

    .hero__actions {
        flex-direction: column;
        align-items: stretch;
        margin-bottom: 24px;
    }

    .hero__actions .btn {
        justify-content: center;
    }

    .eyebrow {
        font-size: 0.68rem;
        line-height: 1.4;
        letter-spacing: 0.1em;
        margin-bottom: 10px;
    }

    .eyebrow::after {
        margin-top: 8px;
    }

    .about__title {
        text-align: center;
    }

    .about__cta {
        display: flex;
        width: fit-content;
        margin-inline: auto;
    }

    .patterns__grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .patterns__block {
        padding: 24px;
    }

    .testimonials__grid {
        flex-direction: column;
        gap: 18px;
    }

    .testimonial {
        max-width: 100%;
        padding: 24px;
    }

    .patterns__transition {
        margin-top: 40px;
        font-size: 1.05rem;
    }

    .footer__grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .footer__bottom {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        right: 16px;
        bottom: max(16px, env(safe-area-inset-bottom));
    }

    .whatsapp-float .icon {
        width: 1.4rem;
        height: 1.4rem;
    }
}

/* ===========================
   RESPONSIVE — TITLE BREAKS ONE-LINE (>=641px)
=========================== */
@media (min-width: 641px) {
    .faq__title-break {
        display: none;
    }
}

/* ===========================
   RESPONSIVE — PATTERNS WIDE HEADER (>=860px)
=========================== */
@media (min-width: 860px) {
    .patterns__header {
        max-width: 820px;
    }
}

/* ===========================
   RESPONSIVE — HERO DESKTOP (>=1024px)
=========================== */
@media (min-width: 1024px) {
    .hero {
        background: #1C270A;
        min-height: 0;
    }

    .hero__visual {
        top: 50%;
        bottom: auto;
        height: 75%;
        transform: translateY(-50%);
    }

    .hero__overlay {
        background:
            linear-gradient(90deg, #1C270A 0%, #1C270A 36%, rgba(20,28,8,0.55) 55%, rgba(20,28,8,0) 72%),
            linear-gradient(180deg, rgba(20,28,8,0) 55%, rgba(20,28,8,0.85) 100%);
    }
}
