﻿/* ============================================================
   DRA. JEANA SILVEIRA — SAÚDE & BELEZA · SANTA CECÍLIA SC
   Identidade: elegância · feminilidade · cuidado · confiança
   ============================================================ */

:root {
    --bg: #FBF8F3;
    --bg-soft: #F4EDE4;
    --bg-warm: #F7F1E8;
    --surface: #FFFFFF;
    --ink: #2C2622;
    --ink-soft: #6E645B;
    --muted: #9C8F84;
    --line: #E9DFD5;
    --accent: #A9707A;
    --accent-2: #8F5B64;
    --accent-soft: #DCC6C1;
    --gold: #C89B5C;
    --deep: #2E2723;
    --deep-soft: #3B322C;
    --light: #FDFBF8;
    --radius: 22px;
    --shadow: 0 30px 60px -28px rgba(60, 45, 38, 0.28);
    --shadow-soft: 0 12px 30px -18px rgba(60, 45, 38, 0.22);
    --font-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
    --font-body: 'Jost', 'Segoe UI', system-ui, sans-serif;
    --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 96px;
}

html,
body {
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--ink);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

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

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

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

.container {
    width: 100%;
    max-width: 1280px;
    margin-inline: auto;
    padding-inline: clamp(1.25rem, 5vw, 4rem);
}

::selection {
    background: var(--accent-soft);
    color: var(--ink);
}

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

.h2 {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    line-height: 1.08;
    letter-spacing: -0.015em;
}

.h2 em,
.hero-title em,
.acorde-title em,
.cta-final-title em,
.section-head em {
    font-style: italic;
    font-weight: 400;
    color: var(--accent-2);
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    text-transform: uppercase;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.34em;
    color: var(--accent-2);
    margin-bottom: 1.4rem;
}

.eyebrow-line {
    display: block;
    width: 34px;
    height: 1px;
    background: var(--accent-soft);
}

.eyebrow--light {
    color: rgba(253, 251, 248, 0.78);
}

.eyebrow--light .eyebrow-line {
    background: rgba(253, 251, 248, 0.45);
}

.section {
    padding-block: clamp(4.5rem, 10vw, 8rem);
}

.section-head {
    max-width: 46rem;
    margin-bottom: clamp(2.5rem, 6vw, 4rem);
}

.section-sub {
    margin-top: 1.2rem;
    color: var(--ink-soft);
    font-weight: 300;
    font-size: clamp(1rem, 1.6vw, 1.15rem);
    max-width: 52ch;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.85rem 1.7rem;
    border-radius: 999px;
    font-size: 0.74rem;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    line-height: 1.2;
    border: 1px solid transparent;
    transition: background 0.32s var(--ease), color 0.32s var(--ease),
        border-color 0.32s var(--ease), transform 0.32s var(--ease),
        box-shadow 0.32s var(--ease);
    will-change: transform;
    min-height: 44px;
}

.btn svg {
    width: 17px;
    height: 17px;
    transition: transform 0.32s var(--ease);
}

.btn:hover svg {
    transform: translateX(3px);
}

.btn-primary {
    background: var(--accent);
    color: #fff;
    box-shadow: 0 14px 30px -16px rgba(143, 91, 100, 0.55);
    position: relative;
    overflow: hidden;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -120%;
    height: 100%;
    width: 55%;
    background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.32), transparent);
    transform: skewX(-20deg);
    pointer-events: none;
}

.btn-primary:hover::after {
    animation: btnShine 0.9s var(--ease);
}

@keyframes btnShine {
    to {
        left: 140%;
    }
}

.btn-primary:hover {
    background: var(--accent-2);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 18px 36px -16px rgba(143, 91, 100, 0.6);
}

.btn-ghost {
    border-color: rgba(44, 38, 34, 0.28);
    color: var(--ink);
    background: transparent;
}

.btn-ghost:hover {
    border-color: var(--accent);
    color: var(--accent-2);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 16px 32px -22px rgba(143, 91, 100, 0.45);
}

.btn-light {
    background: var(--light);
    color: var(--ink);
    box-shadow: 0 16px 34px -20px rgba(20, 14, 10, 0.6);
}

.btn-light:hover {
    background: #fff;
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 22px 42px -22px rgba(20, 14, 10, 0.55);
}

/* Brilho de luz também no CTA claro */
.btn-light {
    position: relative;
    overflow: hidden;
}

.btn-light::after {
    content: '';
    position: absolute;
    top: 0;
    left: -40%;
    width: 55%;
    height: 100%;
    background: linear-gradient(105deg, transparent, rgba(169, 112, 122, 0.14), transparent);
    transform: skewX(-20deg);
    pointer-events: none;
}

.btn-light:hover::after {
    animation: btnShine 0.9s var(--ease);
}

.btn-lg {
    padding: 1.05rem 2.1rem;
    font-size: 0.8rem;
}

.btn-sm {
    padding: 0.72rem 1.15rem;
    font-size: 0.68rem;
}

/* Botão-link usado nos cards de procedimentos */
.btn-service {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    min-height: 44px;
    color: var(--accent);
    border-bottom: 1px solid transparent;
    transition: color 0.3s var(--ease), border-color 0.3s var(--ease);
}

.btn-service span {
    transition: transform 0.3s var(--ease);
}

.btn-service:hover {
    color: var(--accent-2);
    border-color: var(--accent-soft);
}

.btn-service:hover span {
    transform: translateX(4px);
}

/* ============ ESTRELAS ============ */

.stars {
    color: var(--gold);
    letter-spacing: 0.08em;
    font-size: 0.82rem;
}

.stars-lg {
    font-size: 1.15rem;
}

/* ============ REVEAL ============ */

.rv {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.9s var(--ease), transform 1.05s var(--ease);
    transition-delay: var(--rv, 0ms);
    will-change: opacity, transform;
}

.rv.in-view {
    opacity: 1;
    transform: none !important;
}

/* Variantes utilitárias do reveal (mesmo motor IO) */
.fade-in {
    opacity: 0;
    transition: opacity 0.95s var(--ease);
    transition-delay: var(--rv, 0ms);
    will-change: opacity;
}

.fade-left {
    opacity: 0;
    transform: translateX(-34px);
    transition: opacity 0.95s var(--ease), transform 1.05s var(--ease);
    transition-delay: var(--rv, 0ms);
    will-change: opacity, transform;
}

.fade-right {
    opacity: 0;
    transform: translateX(34px);
    transition: opacity 0.95s var(--ease), transform 1.05s var(--ease);
    transition-delay: var(--rv, 0ms);
    will-change: opacity, transform;
}

.scale-in {
    opacity: 0;
    transform: scale(0.93) translateY(10px);
    transition: opacity 0.95s var(--ease), transform 1.05s var(--ease);
    transition-delay: var(--rv, 0ms);
    will-change: opacity, transform;
}

.fade-in.in-view,
.fade-left.in-view,
.fade-right.in-view,
.scale-in.in-view {
    opacity: 1;
    transform: none;
}

/* Direção de entrada dos cards em grade */
.services-grid > *:nth-child(3n + 1) {
    transform: translateX(-38px);
}

.services-grid > *:nth-child(3n) {
    transform: translateX(38px);
}

.results-grid > *:nth-child(2) {
    transform: translateX(34px);
}

.results-grid > *:nth-child(3) {
    transform: scale(0.94);
}

.insta-grid > *:nth-child(even) {
    transform: translateY(26px) scale(0.96);
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    .rv,
    .fade-in,
    .fade-left,
    .fade-right,
    .scale-in,
    .stagger > * {
        opacity: 1;
        transform: none;
        transition: none;
    }
    * {
        animation: none !important;
        transition: none !important;
    }
}

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

.header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 50;
    transition: background 0.4s var(--ease), border-color 0.4s var(--ease),
        backdrop-filter 0.4s var(--ease);
    border-bottom: 1px solid transparent;
}

.header.scrolled {
    background: rgba(251, 248, 243, 0.82);
    -webkit-backdrop-filter: blur(16px) saturate(1.25);
    backdrop-filter: blur(16px) saturate(1.25);
    border-color: rgba(233, 223, 213, 0.65);
    box-shadow: 0 18px 44px -30px rgba(44, 38, 34, 0.35);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    height: 78px;
}

.brand {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
    gap: 0.32rem;
    z-index: 51;
}

.brand-name {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.3rem;
    letter-spacing: 0.01em;
    color: var(--ink);
}

.brand-last {
    font-size: 0.56rem;
    font-weight: 500;
    letter-spacing: 0.44em;
    text-transform: uppercase;
    color: var(--accent-2);
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-list > li {
    list-style: none;
}

.nav-list a:not(.btn) {
    position: relative;
    font-size: 0.74rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ink-soft);
    padding: 0.3rem 0;
    transition: color 0.3s var(--ease), transform 0.3s var(--ease);
}

.nav-list a:not(.btn)::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s var(--ease);
}

.nav-list a:not(.btn):hover {
    color: var(--accent-2);
    transform: translateY(-1px);
}

.nav-list a:not(.btn):hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.btn-nav {
    padding: 0.78rem 1.5rem;
}

.nav-mobile {
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 46px;
    height: 46px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: rgba(253, 251, 248, 0.7);
    align-items: center;
    transition: background 0.3s var(--ease);
}

.nav-toggle span {
    display: block;
    width: 18px;
    height: 1.6px;
    background: var(--ink);
    border-radius: 2px;
    transition: transform 0.35s var(--ease), opacity 0.3s var(--ease);
}

.nav-toggle[aria-expanded='true'] span:nth-child(1) {
    transform: translateY(6.6px) rotate(45deg);
}

.nav-toggle[aria-expanded='true'] span:nth-child(2) {
    opacity: 0;
}

.nav-toggle[aria-expanded='true'] span:nth-child(3) {
    transform: translateY(-6.6px) rotate(-45deg);
}

/* Painel mobile */
@media (max-width: 1023px) {
    .nav-list {
        position: fixed;
        top: 78px;
        left: 0;
        right: 0;
        bottom: 0;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 0;
        padding: 2rem clamp(1.25rem, 5vw, 4rem);
        background: rgba(251, 248, 243, 0.97);
        -webkit-backdrop-filter: blur(18px);
        backdrop-filter: blur(18px);
        transform: translateX(100%);
        transition: transform 0.45s var(--ease);
        z-index: 49;
        overflow-y: auto;
    }

    .nav-list.open {
        transform: translateX(0);
    }

    .nav-list a:not(.btn) {
        font-size: 1.05rem;
        letter-spacing: 0.18em;
        padding: 0.95rem 0;
        color: var(--ink);
        display: block;
        width: 100%;
    }

    .nav-list .btn-nav {
        margin-top: 1.6rem;
        width: 100%;
        justify-content: center;
    }
}

@media (min-width: 1024px) {
    .nav-mobile {
        display: none;
    }
}

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

.hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: center;
    padding-block: calc(78px + clamp(3rem, 8vh, 6rem)) 6rem;
    background:
        radial-gradient(60% 55% at 88% 12%, rgba(169, 112, 122, 0.12), transparent 62%),
        radial-gradient(45% 45% at 6% 88%, rgba(200, 155, 92, 0.1), transparent 60%),
        var(--bg);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(2.5rem, 6vw, 4.5rem);
    align-items: center;
}

.hero-title {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: clamp(2.6rem, 8vw, 4.6rem);
    line-height: 1.06;
    letter-spacing: -0.015em;
    margin-bottom: 1.5rem;
}

.hero-sub {
    color: var(--ink-soft);
    font-weight: 300;
    font-size: clamp(1.02rem, 1.8vw, 1.16rem);
    max-width: 46ch;
    margin-bottom: 2.4rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2.6rem;
}

.hero-signature {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.05rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--muted);
}

.hero-signature-mark {
    color: var(--accent);
}

.hero-media {
    position: relative;
    width: min(420px, 100%);
    margin-inline: auto;
    padding-bottom: 2.2rem;
}

.hero-media::before {
    content: '';
    position: absolute;
    inset: 6% -6% -2% 6%;
    background: radial-gradient(80% 70% at 70% 30%, rgba(169, 112, 122, 0.2), transparent 70%);
    border-radius: 50% 50% 40% 40% / 30% 30% 20% 20%;
    z-index: 0;
}

.portrait {
    position: relative;
    z-index: 1;
}

.portrait img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.portrait-arch img {
    border-radius: 999px 999px 22px 22px;
    box-shadow: var(--shadow);
    aspect-ratio: 3 / 4.1;
    object-fit: cover;
    object-position: 50% 16%;
}

.hero-rating {
    position: absolute;
    left: -0.5rem;
    bottom: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.85rem 1.15rem;
    background: rgba(253, 251, 248, 0.86);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(233, 223, 213, 0.9);
    border-radius: 18px;
    box-shadow: var(--shadow-soft);
}

.hero-rating-value {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: var(--ink);
}

.scroll-hint {
    position: absolute;
    left: 50%;
    bottom: 1.6rem;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 0.66rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--muted);
    transition: color 0.3s var(--ease);
    white-space: nowrap;
}

.scroll-hint:hover {
    color: var(--accent-2);
}

.scroll-hint-arrow {
    font-size: 1rem;
    animation: floaty 2.2s ease-in-out infinite;
}

@keyframes floaty {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(5px);
    }
}

@media (min-width: 1024px) {
    .hero {
        min-height: 100vh;
    }
    .hero-grid {
        grid-template-columns: 1.05fr 0.95fr;
    }
    .hero-media {
        width: min(470px, 100%);
    }
}

/* ============ FAIXA DE CONFIANÇA ============ */

.trust {
    background: var(--bg-soft);
    border-block: 1px solid var(--line);
}

.trust-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1.2rem 1.8rem;
    padding-block: 1.7rem;
    text-align: center;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.86rem;
}

/* ============ NOVIDADES OPCIONAIS ============ */

.news {
    padding-block: clamp(2rem, 5vw, 3.5rem);
    background: var(--bg);
}

.news[hidden] {
    display: none;
}

.news-card {
    overflow: hidden;
    display: grid;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: var(--shadow-soft);
}
.news-list { display: grid; gap: 1.5rem; }
.news-card { background: linear-gradient(130deg, #fcfaf7, #f4e7e7); border-top: 3px solid var(--accent); }
.news-condition { display: block; margin-top: 1rem; color: var(--accent-2); font-weight: 500; }
.news-validity { margin-top: .6rem; color: var(--ink-soft); font-size: .875rem; }
.news-copy { min-width: 0; overflow-wrap: anywhere; }
.news-media img { display: block; object-fit: contain; }
.gallery-coming-soon {
    aspect-ratio: 4 / 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .75rem;
    padding: 1.5rem;
    text-align: center;
    background: radial-gradient(ellipse at 80% 10%, #e9cdd94d, transparent 65%), #f8f2ed;
    color: var(--ink-soft);
}
.gallery-coming-soon p { font: italic 1.75rem/1.2 var(--font-display); }
.gallery-coming-soon small { font-size: .875rem; }
.booking-service-note { grid-column: 1 / -1; color: var(--ink-soft); line-height: 1.6; font-size: .9rem; }
.professional-card.professional-card--pending { border-style: dashed; }
.pix-card-head[hidden] { display: none; }

.news-copy {
    padding: clamp(1.6rem, 5vw, 3rem);
}

.news-title {
    font-family: var(--font-display);
    font-size: clamp(1.9rem, 4vw, 2.8rem);
    font-weight: 500;
    line-height: 1.08;
}

.news-text {
    max-width: 54ch;
    margin-top: 0.85rem;
    color: var(--ink-soft);
    font-weight: 300;
}

.news-cta {
    margin-top: 1.35rem;
}

.news-media {
    min-height: 240px;
}

.news-media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@media (min-width: 800px) {
    .news-card:has(.news-media:not([hidden])) {
        grid-template-columns: 1.15fr 0.85fr;
    }
}

.trust-stars {
    color: var(--gold);
    letter-spacing: 0.08em;
    font-size: 0.9rem;
}

.trust-strong {
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--ink);
}

.trust-text {
    color: var(--ink-soft);
}

.trust-sep {
    display: none;
    width: 1px;
    height: 22px;
    background: var(--accent-soft);
}

@media (min-width: 1024px) {
    .trust-inner {
        justify-content: space-between;
    }
    .trust-sep {
        display: block;
    }
}

/* ============ SOBRE ============ */

.about {
    background: var(--bg);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(2.5rem, 6vw, 4.5rem);
    align-items: center;
}

@media (min-width: 1024px) {
    .about-grid {
        grid-template-columns: 0.95fr 1.05fr;
    }
    .about-media {
        margin-inline: 0;
    }
    .about-text {
        padding-left: 2rem;
    }
}

.about-media {
    position: relative;
    width: min(430px, 100%);
    margin-inline: auto;
    padding-bottom: 2.4rem;
}

.about-media::before {
    content: '';
    position: absolute;
    top: 8%;
    right: -8%;
    width: 62%;
    height: 74%;
    border: 1px solid var(--accent-soft);
    border-radius: 999px 999px 22px 22px;
    z-index: 0;
}

.portrait-soft img {
    border-radius: 22px 999px 22px 22px;
    box-shadow: var(--shadow);
    aspect-ratio: 3 / 4;
    object-fit: cover;
    object-position: 50% 22%;
}

.about-caption {
    position: absolute;
    left: -0.5rem;
    bottom: 0;
    z-index: 2;
    padding: 0.95rem 1.25rem;
    background: rgba(253, 251, 248, 0.88);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(233, 223, 213, 0.9);
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
}

.about-caption-name {
    display: block;
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--ink);
}

.about-caption-role {
    font-size: 0.68rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--muted);
}

.about-title {
    margin-bottom: 1.4rem;
}

.about-quote {
    font-family: var(--font-display);
    font-style: italic;
    font-size: clamp(1.3rem, 2.6vw, 1.6rem);
    color: var(--accent-2);
    line-height: 1.4;
    margin-bottom: 1.6rem;
    max-width: 30ch;
}

.about-body {
    color: var(--ink-soft);
    font-weight: 300;
    margin-bottom: 1.1rem;
    max-width: 56ch;
}

.about-signature {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-top: 2rem;
    font-family: var(--font-display);
    font-style: italic;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    font-size: 0.92rem;
    color: var(--accent-2);
}

.about-signature-mark {
    display: inline-block;
    width: 44px;
    height: 1px;
    background: var(--accent);
}

/* ============ PROCEDIMENTOS ============ */

.services {
    background: var(--bg-soft);
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.6rem;
}

.service-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 10px 30px -22px rgba(60, 45, 38, 0.25);
    transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}

.service-media {
    overflow: hidden;
    aspect-ratio: 5 / 3;
    position: relative;
}

.service-media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgba(44, 38, 34, 0.28));
    pointer-events: none;
}

.service-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease);
}

.service-card:hover .service-media img {
    transform: scale(1.06);
}

.service-media--contain {
    background: linear-gradient(145deg, #efd5da, #dbaab5);
}

.service-media--contain img {
    object-fit: contain;
    padding: clamp(1rem, 3vw, 1.8rem);
}

.service-media--result {
    background: var(--bg-soft);
}

.service-media--result img {
    object-fit: cover;
    object-position: 50% 50%;
}

.service-media--design-result {
    background: #ead8d4;
}

.service-media--design-result img {
    object-fit: cover;
    object-position: 50% 50%;
}

.service-body {
    padding: 1.6rem 1.6rem 1.8rem;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    flex: 1;
}

.service-num {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.05rem;
    color: var(--accent);
    letter-spacing: 0.1em;
}

.service-name {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 1.15;
    color: var(--ink);
}

.service-desc {
    color: var(--ink-soft);
    font-weight: 300;
    font-size: 0.96rem;
    flex: 1;
}

.services-cta {
    margin-top: clamp(2.5rem, 5vw, 3.5rem);
    padding-top: 2.2rem;
    border-top: 1px solid var(--line);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.3rem;
    text-align: center;
}

.services-cta p {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.2rem;
    color: var(--ink-soft);
}

@media (min-width: 640px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1080px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

/* ============ PRÉVIA DE AGENDAMENTO ============ */

.booking {
    position: relative;
    background:
        radial-gradient(60% 45% at 92% 8%, rgba(200, 155, 92, 0.11), transparent 70%),
        var(--bg);
}

.booking-shell {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: clamp(24px, 4vw, 38px);
    background: var(--surface);
    box-shadow: var(--shadow);
}

.booking-intro {
    padding: clamp(2rem, 6vw, 4.5rem);
    padding-bottom: clamp(1.8rem, 4vw, 3rem);
}

.booking-intro .section-sub {
    max-width: 58ch;
}

.booking-steps {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.35rem;
    padding: 0 clamp(1rem, 5vw, 4rem) clamp(1.5rem, 4vw, 2.5rem);
    list-style: none;
}

.booking-steps::before {
    content: '';
    position: absolute;
    left: clamp(2.4rem, 8vw, 7rem);
    right: clamp(2.4rem, 8vw, 7rem);
    top: 18px;
    height: 1px;
    background: var(--line);
}

.booking-step {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.45rem;
    color: var(--muted);
    text-align: center;
    transition: color 0.3s var(--ease);
}

.booking-step span {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: var(--surface);
    font-size: 0.72rem;
    font-weight: 600;
    transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
}

.booking-step small {
    font-size: clamp(0.56rem, 1.8vw, 0.68rem);
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.booking-step.is-active,
.booking-step.is-complete {
    color: var(--accent-2);
}

.booking-step.is-active span,
.booking-step.is-complete span {
    border-color: var(--accent);
    background: var(--accent);
    color: #fff;
}

.booking-step.is-active span {
    box-shadow: 0 0 0 6px rgba(169, 112, 122, 0.1);
}

.booking-panel {
    min-height: 33rem;
    padding: clamp(1.35rem, 5vw, 4rem);
    background: var(--bg-soft);
    border-top: 1px solid var(--line);
}

.booking-view {
    animation: bookingIn 0.5s var(--ease) both;
}

.booking-view[hidden] {
    display: none;
}

.booking-status {
    margin-top: 1rem;
    padding: 0.9rem 1rem;
    border: 1px solid var(--accent-soft);
    border-radius: 14px;
    background: rgba(169, 112, 122, 0.08);
    color: var(--accent-2);
    font-size: 0.9rem;
}

.booking-status[hidden] {
    display: none;
}

.summary-row small {
    grid-column: 1 / -1;
    color: var(--muted);
    font-size: 0.72rem;
    line-height: 1.4;
}

@keyframes bookingIn {
    from {
        opacity: 0;
        transform: translateY(14px);
    }
    to {
        opacity: 1;
        transform: none;
    }
}

.booking-view-head {
    max-width: 44rem;
    margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
}

.booking-view-head h3,
.pix-card h4,
.booking-summary h4 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.15;
    color: var(--ink);
}

.booking-view-head h3 {
    margin-top: 0.4rem;
    font-size: clamp(1.8rem, 4vw, 2.6rem);
}

.booking-view-head p {
    margin-top: 0.65rem;
    color: var(--ink-soft);
    font-weight: 300;
}

.booking-kicker,
.pix-label {
    display: block;
    color: var(--accent-2);
    font-size: 0.66rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.booking-procedure-grid,
.booking-professional-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.booking-procedure {
    width: 100%;
    min-height: 112px;
    display: grid;
    grid-template-columns: 82px 1fr auto;
    align-items: center;
    gap: 1rem;
    padding: 0.85rem;
    text-align: left;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--surface);
    box-shadow: var(--shadow-soft);
    transition: transform 0.32s var(--ease), border-color 0.32s var(--ease), box-shadow 0.32s var(--ease);
}

.booking-procedure:hover,
.booking-procedure:focus-visible,
.booking-choice:hover,
.booking-choice:focus-visible,
.professional-card:hover,
.professional-card:focus-within {
    transform: translateY(-3px);
    border-color: var(--accent-soft);
    box-shadow: 0 20px 34px -24px rgba(60, 45, 38, 0.42);
}

.booking-procedure img {
    width: 82px;
    height: 82px;
    border-radius: 14px;
    object-fit: cover;
}

.booking-procedure img.booking-procedure-image--acorde {
    object-fit: contain;
    padding: 0.55rem;
    background: linear-gradient(145deg, #efd5da, #dbaab5);
}

.booking-procedure-copy strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.28rem;
    line-height: 1.12;
}

.booking-procedure-copy small {
    display: block;
    margin-top: 0.35rem;
    color: var(--ink-soft);
    font-size: 0.83rem;
    font-weight: 300;
    line-height: 1.45;
}

.booking-procedure-arrow {
    padding-right: 0.25rem;
    color: var(--accent);
    font-size: 1.25rem;
}

.booking-back {
    min-height: 44px;
    margin: -0.5rem 0 1rem;
    color: var(--accent-2);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.booking-back:hover {
    text-decoration: underline;
    text-underline-offset: 4px;
}

.booking-choice-list {
    display: grid;
    gap: 0.7rem;
    max-width: 50rem;
}

.booking-choice-intro {
    margin-bottom: 0.3rem;
    padding: 1rem 1.1rem;
    border: 1px solid rgba(169, 112, 122, 0.2);
    border-left: 3px solid var(--accent);
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(169, 112, 122, 0.1), rgba(255, 255, 255, 0.68));
}

.booking-choice-intro strong {
    display: block;
    color: var(--accent-2);
    font-family: var(--font-display);
    font-size: 1.08rem;
    line-height: 1.25;
}

.booking-choice-intro p {
    max-width: 62ch;
    margin-top: 0.35rem;
    color: var(--ink-soft);
    font-size: 0.82rem;
    font-weight: 300;
    line-height: 1.55;
}

.booking-choice {
    position: relative;
    overflow: hidden;
    width: 100%;
    min-height: 70px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 0.85rem;
    padding: 0.82rem 0.95rem 0.82rem 1.1rem;
    text-align: left;
    border: 1px solid rgba(169, 112, 122, 0.2);
    border-radius: 15px;
    background: linear-gradient(110deg, #fff 0%, rgba(255, 251, 249, 0.94) 100%);
    box-shadow: 0 12px 26px -25px rgba(91, 54, 64, 0.75);
    transition: transform 0.28s var(--ease), border-color 0.28s var(--ease), box-shadow 0.28s var(--ease), background-color 0.28s var(--ease);
}

.booking-choice::before {
    content: '';
    position: absolute;
    inset: 13px auto 13px 0;
    width: 2px;
    border-radius: 2px;
    background: linear-gradient(var(--accent-soft), var(--accent));
}

.booking-choice-copy {
    min-width: 0;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    column-gap: 0.55rem;
}

.booking-choice-tag {
    display: inline-flex;
    padding: 0.2rem 0.45rem;
    border-radius: 999px;
    background: rgba(169, 112, 122, 0.09);
    color: var(--accent-2);
    font-size: 0.56rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    line-height: 1;
    text-transform: uppercase;
}

.booking-choice strong {
    grid-column: 1 / -1;
    grid-row: 2;
    display: block;
    margin-top: 0.28rem;
    font-family: var(--font-display);
    font-size: 1.15rem;
    line-height: 1.18;
}

.booking-choice small {
    grid-column: 2;
    grid-row: 1;
    display: block;
    justify-self: end;
    margin: 0;
    color: var(--accent-2);
    font-size: 0.8rem;
    font-weight: 650;
    line-height: 1.2;
    text-align: right;
}

.booking-choice-arrow {
    flex: 0 0 auto;
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(169, 112, 122, 0.32);
    border-radius: 50%;
    background: rgba(169, 112, 122, 0.07);
    color: var(--accent);
    font-size: 1rem;
    transition: color 0.28s var(--ease), background-color 0.28s var(--ease), transform 0.28s var(--ease);
}

.booking-choice:hover .booking-choice-arrow,
.booking-choice:focus-visible .booking-choice-arrow {
    background: var(--accent);
    color: #fff;
    transform: translateX(2px);
}

.booking-choice:active {
    transform: translateY(-1px) scale(0.995);
    border-color: rgba(169, 112, 122, 0.5);
}

.placeholder-tag,
.pix-badge {
    flex: 0 0 auto;
    padding: 0.38rem 0.7rem;
    border-radius: 999px;
    background: var(--bg-warm);
    color: var(--accent-2);
    font-size: 0.59rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.professional-card {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: var(--surface);
    box-shadow: var(--shadow-soft);
    transition: transform 0.32s var(--ease), border-color 0.32s var(--ease), box-shadow 0.32s var(--ease);
}

.professional-card-main {
    display: grid;
    grid-template-columns: 88px 1fr;
    gap: 1rem;
    align-items: center;
    padding: 1rem;
}

.professional-photo,
.professional-placeholder {
    width: 88px;
    height: 108px;
    border-radius: 15px;
}

.professional-photo {
    object-fit: cover;
}

.professional-placeholder {
    display: grid;
    place-items: center;
    align-content: center;
    gap: 0.1rem;
    background: linear-gradient(145deg, var(--accent-soft), var(--bg-warm));
    color: var(--accent-2);
    font-family: var(--font-display);
    font-size: 2rem;
}

.professional-placeholder small {
    font-family: var(--font-body);
    font-size: 0.55rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.professional-info h4 {
    font-family: var(--font-display);
    font-size: 1.45rem;
    line-height: 1.15;
}

.professional-info p {
    margin-top: 0.35rem;
    color: var(--ink-soft);
    font-size: 0.86rem;
    font-weight: 300;
}

.professional-price {
    display: block;
    margin-top: 0.65rem;
    color: var(--accent-2);
    font-size: 1.05rem;
    font-weight: 600;
}

.professional-select {
    width: 100%;
    min-height: 52px;
    padding: 0.8rem 1rem;
    border-top: 1px solid var(--line);
    background: var(--bg-warm);
    color: var(--accent-2);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    transition: background 0.3s var(--ease), color 0.3s var(--ease);
}

.professional-select:hover,
.professional-select:focus-visible {
    background: var(--accent);
    color: #fff;
}

.booking-payment-grid {
    display: grid;
    gap: 1rem;
    align-items: start;
}

.booking-summary,
.pix-card {
    border-radius: 20px;
}

.booking-summary {
    padding: clamp(1.3rem, 4vw, 2rem);
    background:
        radial-gradient(80% 60% at 100% 0%, rgba(200, 155, 92, 0.16), transparent 70%),
        var(--deep);
    color: var(--light);
}

.booking-summary h4 {
    margin-bottom: 1.4rem;
    color: var(--light);
    font-size: 1.6rem;
}

.summary-row {
    display: grid;
    gap: 0.15rem;
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(253, 251, 248, 0.12);
}

.summary-row:last-child {
    border-bottom: none;
}

.summary-row span {
    color: rgba(253, 251, 248, 0.6);
    font-size: 0.62rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.summary-row strong {
    font-weight: 400;
}

.summary-row--value strong {
    color: #fff;
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 600;
}

.summary-placeholder-note {
    margin-top: 1rem;
    color: rgba(253, 251, 248, 0.62);
    font-size: 0.76rem;
    line-height: 1.5;
}

.summary-payment-note {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(253, 251, 248, 0.12);
    color: rgba(253, 251, 248, 0.72);
    font-size: 0.8rem;
    line-height: 1.55;
}

.pix-card {
    padding: clamp(1.3rem, 4vw, 2.2rem);
    border: 1px solid var(--line);
    background: var(--surface);
}

.pix-card-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
}

.pix-card h4 {
    margin-top: 0.4rem;
    font-size: clamp(1.55rem, 3vw, 2rem);
}

.pix-instruction {
    margin: 1rem 0 1.4rem;
    color: var(--ink-soft);
    font-size: 0.9rem;
    font-weight: 300;
}

.pix-content {
    display: grid;
    gap: 1.2rem;
    align-items: center;
}

.pix-qr {
    width: min(58vw, 170px);
    margin-inline: auto;
    padding: 0.75rem;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #fff;
}

.pix-details {
    min-width: 0;
    order: -1;
}

.pix-value {
    display: block;
    margin: 0.2rem 0 1rem;
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--ink);
}

.pix-key-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.5rem;
    margin-top: 0.35rem;
}

.pix-key-row code {
    overflow: hidden;
    min-width: 0;
    padding: 0.75rem;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: var(--bg);
    color: var(--ink-soft);
    font-family: var(--font-body);
    font-size: 0.72rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.pix-copy {
    min-width: 72px;
    min-height: 46px;
    padding: 0.65rem 0.8rem;
    border-radius: 10px;
    background: var(--bg-warm);
    color: var(--accent-2);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.pix-recipient,
.copy-status {
    display: block;
    margin-top: 0.7rem;
    color: var(--muted);
    font-size: 0.72rem;
}

.copy-status {
    min-height: 1.2em;
    color: var(--accent-2);
}

.booking-whatsapp {
    width: 100%;
    margin-top: 1.5rem;
    text-align: center;
}

.booking-card-whatsapp {
    width: 100%;
    min-height: 48px;
    margin-top: 0.75rem;
    padding-inline: 1rem;
    text-align: center;
}

.booking-payment-note {
    margin-top: 1rem;
    padding: 0.8rem 1rem;
    border-left: 2px solid var(--gold);
    border-radius: 0 10px 10px 0;
    background: var(--bg-warm);
    color: var(--ink-soft);
    font-size: 0.82rem;
    line-height: 1.55;
}

.consult-payment {
    padding: clamp(1.2rem, 4vw, 2rem);
    border: 1px solid var(--line);
    border-radius: 16px;
    background: var(--bg);
    text-align: center;
}

.consult-payment[hidden] {
    display: none;
}

.consult-icon {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    margin: 0 auto 1rem;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    font-size: 1.2rem;
}

.consult-payment h5 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 600;
}

.consult-payment p {
    max-width: 44ch;
    margin: 0.65rem auto 1.2rem;
    color: var(--ink-soft);
    font-size: 0.9rem;
    font-weight: 300;
}

.pix-note,
.booking-noscript {
    margin-top: 0.85rem;
    color: var(--muted);
    font-size: 0.75rem;
    line-height: 1.5;
    text-align: center;
}

.booking-noscript {
    padding: 1rem;
    border-top: 1px solid var(--line);
}

.booking button:focus-visible,
.booking a:focus-visible {
    outline: 3px solid rgba(169, 112, 122, 0.28);
    outline-offset: 3px;
}

@media (min-width: 640px) {
    .booking-procedure-grid,
    .booking-professional-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .pix-content {
        grid-template-columns: 190px minmax(0, 1fr);
    }

    .pix-qr {
        width: min(100%, 190px);
    }

    .pix-details {
        order: 0;
    }
}

@media (min-width: 1080px) {
    .booking-procedure-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .booking-payment-grid {
        grid-template-columns: minmax(250px, 0.7fr) minmax(0, 1.3fr);
        gap: 1.5rem;
    }
}

@media (max-width: 420px) {
    .booking-procedure {
        grid-template-columns: 66px 1fr auto;
        gap: 0.75rem;
    }

    .booking-procedure img {
        width: 66px;
        height: 70px;
    }

    .booking-procedure-copy small {
        display: none;
    }

    .booking-whatsapp {
        padding-inline: 1rem;
        font-size: 0.67rem;
        letter-spacing: 0.1em;
    }
}

@media (prefers-reduced-motion: reduce) {
    .booking-view {
        animation: none;
    }
}

/* ============ ACORDE LINDA ============ */

.acorde {
    position: relative;
    background:
        radial-gradient(70% 60% at 85% 20%, rgba(244, 211, 193, 0.16), transparent 60%),
        linear-gradient(135deg, #8c5061 0%, #71394c 58%, #5f3040 100%);
    color: var(--light);
    padding-block: clamp(4rem, 9vw, 7rem);
    overflow: hidden;
}

.acorde-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(2.5rem, 6vw, 4.5rem);
    align-items: center;
}

.acorde-media {
    position: relative;
    width: min(560px, 100%);
    margin-inline: auto;
}

.acorde-orbit {
    position: absolute;
    z-index: 0;
    border: 1px solid rgba(253, 251, 248, 0.13);
    border-radius: 50%;
    pointer-events: none;
}

.acorde-orbit-a {
    width: min(52vw, 620px);
    aspect-ratio: 1;
    top: -32%;
    right: -12%;
}

.acorde-orbit-b {
    width: min(42vw, 480px);
    aspect-ratio: 1;
    bottom: -38%;
    left: -10%;
}

.acorde-visual {
    position: relative;
    min-height: clamp(390px, 62vw, 570px);
}

.acorde-logo-slot,
.acorde-photo-slot {
    position: absolute;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.2rem;
    border: 1px solid rgba(253, 251, 248, 0.2);
    color: rgba(253, 251, 248, 0.78);
    text-align: center;
}

.acorde-logo-slot {
    z-index: 2;
    width: 68%;
    min-height: 46%;
    left: 0;
    top: 4%;
    border-radius: 999px 999px 28px 28px;
    background: rgba(253, 251, 248, 0.07);
    backdrop-filter: blur(10px);
}

.acorde-photo-slot {
    width: 67%;
    min-height: 62%;
    right: 0;
    bottom: 0;
    border-radius: 28px 28px 999px 999px;
    background:
        linear-gradient(145deg, rgba(169, 112, 122, 0.22), rgba(200, 155, 92, 0.08)),
        rgba(253, 251, 248, 0.05);
}

.acorde-logo-slot span {
    font-family: var(--font-display);
    font-size: clamp(2.15rem, 6vw, 3.7rem);
    font-style: italic;
    line-height: 0.95;
}

.acorde-photo-slot span {
    font-family: var(--font-display);
    font-size: clamp(1.35rem, 3vw, 2rem);
}

.acorde-logo-slot small,
.acorde-photo-slot small {
    max-width: 22ch;
    margin-top: 0.55rem;
    color: rgba(253, 251, 248, 0.48);
    font-size: 0.62rem;
    letter-spacing: 0.1em;
    line-height: 1.5;
    text-transform: uppercase;
}

.portrait-wide img {
    border-radius: 22px 22px 999px 999px;
    aspect-ratio: 4 / 3.1;
    object-fit: cover;
    box-shadow: 0 40px 80px -30px rgba(0, 0, 0, 0.55);
}

.acorde-title {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(3rem, 9vw, 5.6rem);
    line-height: 0.98;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    margin-bottom: 1.6rem;
}

.acorde-title em {
    color: var(--accent-soft);
}

.acorde-sub {
    font-weight: 300;
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    color: rgba(253, 251, 248, 0.82);
    max-width: 36ch;
}

.acorde-description-placeholder {
    max-width: 48ch;
    margin-top: 1rem;
    color: rgba(253, 251, 248, 0.58);
    font-size: 0.9rem;
    font-weight: 300;
}

.acorde-actions {
    margin-top: 1.75rem;
}

@media (min-width: 1024px) {
    .acorde-grid {
        grid-template-columns: 1.05fr 0.95fr;
    }
    .acorde-text {
        padding-left: 2rem;
    }
}

/* ============ RESULTADOS ============ */

.results {
    background: var(--bg);
}

.results-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.6rem;
}

.ba-card {
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--surface);
    border: 1px solid var(--line);
    box-shadow: 0 14px 34px -26px rgba(60, 45, 38, 0.3);
}

.ba {
    position: relative;
    aspect-ratio: 4 / 5;
    user-select: none;
}

.ba-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ba-top {
    clip-path: inset(0 50% 0 0);
    will-change: clip-path;
}

.ba-divider {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: rgba(253, 251, 248, 0.85);
    transform: translateX(-50%);
    pointer-events: none;
    z-index: 3;
}

.ba-handle {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(253, 251, 248, 0.92);
    border: 1px solid rgba(233, 223, 213, 0.9);
    box-shadow: 0 8px 20px -10px rgba(0, 0, 0, 0.4);
    transform: translate(-50%, -50%);
    display: grid;
    place-items: center;
    font-size: 0.9rem;
    color: var(--accent-2);
}

.ba-handle::after {
    content: '⇄';
    font-weight: 500;
}

.ba-range {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: ew-resize;
    z-index: 4;
    margin: 0;
}

.ba-label {
    position: absolute;
    top: 1rem;
    z-index: 3;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    background: rgba(44, 38, 34, 0.55);
    color: #fff;
    font-size: 0.62rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
}

.ba-label-before {
    right: 1rem;
}

.ba-label-after {
    left: 1rem;
}

.ba-cap {
    padding: 1.1rem 1.4rem;
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.2rem;
    text-align: center;
    color: var(--ink);
    transition: color 0.3s var(--ease), transform 0.3s var(--ease);
}

/* Toque de hover nos antes/depois */
.ba::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(180deg, rgba(169, 112, 122, 0) 42%, rgba(44, 38, 34, 0.34));
    opacity: 0;
    transition: opacity 0.35s var(--ease);
    pointer-events: none;
}

.ba-img {
    transition: filter 0.5s var(--ease), transform 0.5s var(--ease);
}

.ba-card:hover .ba::after {
    opacity: 1;
}

.ba-card:hover .ba-img {
    filter: brightness(1.05) saturate(1.04);
}

.ba-card:hover .ba-cap {
    color: var(--accent-2);
    transform: translateY(-3px);
}

.results-note {
    text-align: center;
    margin-top: 2.4rem;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--muted);
}

@media (min-width: 1024px) {
    .results-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.8rem;
    }
}

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

.testimonials {
    background: var(--bg-soft);
}

.rating-line {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-bottom: clamp(2.2rem, 5vw, 3.2rem);
}

.rating-strong {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 600;
    color: var(--ink);
    line-height: 1;
}

.rating-link {
    font-size: 0.86rem;
    color: var(--ink-soft);
    border-bottom: 1px solid var(--accent-soft);
    transition: color 0.3s var(--ease), border-color 0.3s var(--ease);
}

.rating-link:hover {
    color: var(--accent-2);
    border-color: var(--accent);
}

.t-carousel {
    position: relative;
}

.t-track {
    display: flex;
    gap: 1.4rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 0.4rem;
}

.t-track::-webkit-scrollbar {
    display: none;
}

.t-card {
    flex: 0 0 100%;
    scroll-snap-align: center;
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 2rem 1.8rem;
    box-shadow: 0 18px 40px -30px rgba(60, 45, 38, 0.35);
}

.t-quote {
    font-family: var(--font-display);
    font-size: clamp(1.15rem, 2.4vw, 1.45rem);
    font-weight: 400;
    line-height: 1.55;
    color: var(--ink);
    flex: 1;
}

.t-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 1.2rem;
    border-top: 1px solid var(--line);
}

.t-client {
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
}

.t-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.6rem;
    margin-top: 2rem;
}

.t-btn {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: var(--surface);
    display: grid;
    place-items: center;
    color: var(--ink-soft);
    transition: background 0.3s var(--ease), color 0.3s var(--ease),
        transform 0.3s var(--ease), border-color 0.3s var(--ease);
}

.t-btn:hover {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
    transform: translateY(-2px);
}

.t-btn span {
    font-size: 1.1rem;
    line-height: 1;
}

.t-dots {
    display: flex;
    gap: 0.5rem;
}

.t-dot {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: var(--accent-soft);
    transition: width 0.35s var(--ease), background 0.35s var(--ease);
}

.t-dot.active {
    width: 24px;
    background: var(--accent);
}

@media (min-width: 760px) {
    .t-card {
        flex-basis: calc((100% - 1.4rem) / 2);
    }
}

@media (min-width: 1080px) {
    .t-card {
        flex-basis: calc((100% - 2.8rem) / 3);
    }
}

/* ============ INSTAGRAM ============ */

.instagram {
    background: var(--bg);
    padding-block: clamp(4rem, 8vw, 6rem);
}

.insta-handle {
    display: inline-block;
    margin-top: 1rem;
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.35rem;
    color: var(--accent-2);
    transition: color 0.3s var(--ease);
}

.insta-handle:hover {
    color: var(--accent);
}

.insta-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 190px));
    justify-content: center;
    gap: 1rem;
    max-width: 920px;
    margin-inline: auto;
}

.insta-tile {
    position: relative;
    align-self: start;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    padding: 0;
    background: #fff;
}

.insta-post-media {
    overflow: hidden;
    aspect-ratio: 4 / 5;
    flex: 0 0 auto;
    border-radius: 0;
    background: var(--bg-soft);
}

.insta-post-media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    object-position: center;
    transition: transform 0.7s var(--ease), opacity 0.7s var(--ease);
}

.insta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(44, 38, 34, 0.55));
    opacity: 0;
    transition: opacity 0.35s var(--ease);
    display: grid;
    place-items: center;
}

.insta-overlay::after {
    content: '';
    width: 34px;
    height: 34px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='1.7'%3E%3Crect x='2.5' y='2.5' width='19' height='19' rx='5.2'/%3E%3Ccircle cx='12' cy='12' r='4.1'/%3E%3Ccircle cx='17.3' cy='6.7' r='1.15' fill='%23fff' stroke='none'/%3E%3C/svg%3E") center / contain no-repeat;
    opacity: 0;
    transform: translateY(8px) scale(0.85);
    transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
}

.insta-tile:hover .insta-post-media img {
    transform: scale(1.025);
}

.insta-tile:hover .insta-overlay {
    opacity: 1;
}

.insta-tile:hover .insta-overlay::after {
    opacity: 1;
    transform: none;
}

.insta-actions {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

@media (min-width: 1080px) {
    .insta-grid {
        grid-template-columns: repeat(5, minmax(0, 148px));
        justify-content: center;
        gap: 0.9rem;
    }
}

/* ============ ATUALIZAÇÃO DE CONTEÚDO REAL ============ */

.acorde-logo-slot--real {
    background: rgba(253, 251, 248, 0.94);
}

.acorde-logo-slot--real img {
    width: 100%;
    height: 100%;
    max-height: 210px;
    object-fit: contain;
}

.cta-final-logo-slot--real img {
    display: block;
    width: min(300px, 68vw);
    max-height: 120px;
    object-fit: contain;
    filter: none;
}

.cta-final-logo-slot--real {
    align-self: center;
    margin-inline: auto;
    border: 1px solid rgba(253, 251, 248, 0.44);
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(249, 222, 226, 0.96), rgba(220, 170, 183, 0.93));
    box-shadow: 0 12px 30px -22px rgba(164, 92, 115, 0.6);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.results-actions {
    display: flex;
    justify-content: center;
    margin-top: 1.5rem;
}

.insta-tile {
    aspect-ratio: auto;
    border: 1px solid rgba(169, 112, 122, 0.24);
    box-shadow: 0 18px 34px -24px rgba(105, 61, 73, 0.52);
}

.insta-grid > .insta-tile:nth-child(even) {
    transform: none;
}

.insta-post-head {
    min-height: 38px;
    flex: 0 0 38px;
    display: flex;
    align-items: center;
    gap: 0.42rem;
    padding: 0.42rem 0.55rem;
}

.insta-post-avatar {
    position: relative;
    overflow: hidden;
    flex: 0 0 auto;
    width: 22px;
    height: 22px;
    border: 1px solid rgba(169, 112, 122, 0.32);
    border-radius: 50%;
    background: #ead8d4;
}

.insta-post-avatar img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 140%;
    height: 140%;
    max-width: none;
    object-fit: cover;
    object-position: center;
    transform: translate(-50%, -40%);
}

.insta-post-head strong {
    color: var(--ink);
    font-size: 0.65rem;
    font-weight: 650;
    letter-spacing: 0.01em;
}

.insta-post-footer {
    display: grid;
    min-height: 57px;
    flex: 0 0 57px;
    gap: 0.28rem;
    padding: 0.45rem 0.55rem 0.55rem;
}

.insta-post-icons {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    height: 17px;
    color: var(--ink);
    font-family: Arial, sans-serif;
    font-size: 1rem;
    line-height: 1;
}

.insta-post-footer a {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    width: fit-content;
    color: var(--accent-2);
    font-size: 0.59rem;
    font-weight: 650;
    letter-spacing: 0.04em;
}

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

.insta-tile:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    width: min(100%, 190px);
    justify-self: center;
}

@media (max-width: 767px) {
    .instagram .section-head {
        margin-bottom: 1.6rem;
    }

    .insta-grid {
        display: flex;
        justify-content: flex-start;
        max-width: none;
        overflow-x: auto;
        gap: 0.8rem;
        padding: 0.25rem max(1rem, calc((100vw - 100%) / 2)) 0.9rem;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        scrollbar-width: thin;
        scrollbar-color: var(--accent-soft) transparent;
    }

    .insta-tile,
    .insta-tile:last-child:nth-child(odd) {
        flex: 0 0 min(50vw, 190px);
        width: min(50vw, 190px);
        scroll-snap-align: start;
    }
}

@media (min-width: 1080px) {
    .insta-tile:last-child:nth-child(odd) {
        grid-column: auto;
        width: auto;
    }
}

@media (max-width: 430px) {
    .service-media--design-result {
        aspect-ratio: 16 / 9;
    }

    .booking-choice {
        min-height: 66px;
        padding: 0.64rem 0.8rem 0.64rem 0.95rem;
    }

    .booking-choice strong {
        font-size: 1.05rem;
    }

    .booking-choice-intro {
        padding: 0.9rem;
    }
}

/* ============ GALERIA COMPLETA ============ */

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.gallery-page {
    background: var(--bg);
}

.gallery-header {
    position: fixed;
}

.gallery-back {
    color: var(--accent-2);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.gallery-hero {
    padding: clamp(9rem, 16vw, 12rem) 0 clamp(3.5rem, 7vw, 6rem);
    background:
        radial-gradient(circle at 82% 20%, rgba(169, 112, 122, 0.14), transparent 35%),
        linear-gradient(180deg, var(--bg-soft), var(--bg));
}

.gallery-hero .section-sub {
    max-width: 720px;
}

.gallery-section {
    padding-bottom: clamp(5rem, 10vw, 9rem);
}

.gallery-filters {
    position: sticky;
    z-index: 8;
    top: 76px;
    display: flex;
    gap: 0.6rem;
    overflow-x: auto;
    padding: 0.8rem 0 1rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(180deg, var(--bg) 75%, rgba(247, 242, 235, 0));
    scrollbar-width: none;
}

.gallery-filters::-webkit-scrollbar {
    display: none;
}

.gallery-filter {
    flex: 0 0 auto;
    padding: 0.72rem 1rem;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--surface);
    color: var(--muted);
    font: 500 0.68rem/1 var(--font-body);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.25s var(--ease);
    min-height: 44px;
}

.gallery-filter:hover,
.gallery-filter.is-active {
    border-color: var(--accent);
    background: var(--accent);
    color: #fff;
}

.gallery-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 1.25rem;
    align-items: start;
}

.gallery-pair-list {
    display: contents;
}

.gallery-card {
    overflow: hidden;
    margin: 0;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: var(--surface);
    box-shadow: 0 18px 45px -34px rgba(44, 38, 34, 0.5);
}

.gallery-card[hidden],
.gallery-pair-list[hidden],
.gallery-case[hidden] {
    display: none !important;
}

.gallery-card > img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: contain;
    background: #eee7df;
}

.gallery-card figcaption {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.15rem;
    color: var(--ink);
    font: italic 1.15rem/1.1 var(--font-display);
}

.gallery-card figcaption small {
    color: var(--muted);
    font: 500 0.58rem/1.3 var(--font-body);
    letter-spacing: 0.1em;
    text-align: right;
    text-transform: uppercase;
}

.gallery-ba {
    background: #eee7df;
}

.gallery-ba .ba-img {
    object-fit: contain;
}

.gallery-case {
    grid-column: 1 / -1;
    padding: clamp(1.2rem, 4vw, 2.2rem);
    border: 1px solid var(--line);
    border-radius: 24px;
    background: var(--surface);
}

.gallery-case-head {
    max-width: 630px;
    margin-bottom: 1.4rem;
}

.gallery-case-head h3 {
    margin: 0.2rem 0 0.5rem;
    color: var(--ink);
    font: 500 clamp(2rem, 5vw, 3rem)/1 var(--font-display);
}

.gallery-case-head p:last-child {
    color: var(--muted);
}

.gallery-case-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.7rem;
}

.gallery-case-grid figure {
    overflow: hidden;
    margin: 0;
    border-radius: 14px;
    background: var(--bg-soft);
}

.gallery-case-grid img {
    display: block;
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: contain;
}

.gallery-case-grid figcaption {
    padding: 0.75rem;
    color: var(--muted);
    font-size: 0.65rem;
    letter-spacing: 0.08em;
    text-align: center;
    text-transform: uppercase;
}

.gallery-cta {
    padding: clamp(4rem, 9vw, 7rem) 0;
    background: var(--bg-soft);
    text-align: center;
}

.gallery-cta img {
    width: min(360px, 80vw);
    max-height: 170px;
    margin-bottom: 1.5rem;
    object-fit: contain;
}

.gallery-cta .h2 {
    max-width: 650px;
    margin: 0 auto 1.5rem;
}

.gallery-footer {
    padding: 1.5rem 0;
    background: var(--ink);
    color: #fff;
}

.gallery-footer .container {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.gallery-footer a {
    color: #fff;
}

@media (min-width: 640px) {
    .gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

@media (min-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 1.6rem;
    }
}

/* ============ CONTATO ============ */

.contact {
    background: var(--bg-soft);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(2.5rem, 5vw, 4rem);
    align-items: center;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.3rem;
}

.contact-name {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3vw, 2rem);
    font-weight: 600;
    color: var(--ink);
}

.contact-address {
    font-style: normal;
    color: var(--ink-soft);
    font-weight: 300;
    line-height: 1.8;
}

.contact-row {
    display: flex;
    align-items: baseline;
    gap: 1.2rem;
    padding-block: 0.5rem;
    border-bottom: 1px solid var(--line);
}

.contact-label {
    font-size: 0.66rem;
    font-weight: 500;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--muted);
    min-width: 92px;
}

.contact-value {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--ink);
    transition: color 0.3s var(--ease);
}

.contact-value:hover {
    color: var(--accent-2);
}

.contact-actions {
    margin-top: 0.6rem;
}

.map-frame {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
    aspect-ratio: 4 / 3;
    background: var(--bg-warm);
}

.map-frame iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(0.35) sepia(0.12) saturate(0.9);
}

.map-dir {
    margin-top: 1.4rem;
    width: 100%;
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr 1.1fr;
    }
    .map-dir {
        width: auto;
    }
}

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

.cta-final {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 86vh;
    padding-block: clamp(4rem, 9vw, 7rem);
    overflow: hidden;
    color: var(--light);
    text-align: center;
}

.cta-final-media {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.cta-final-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 30%;
}

.cta-final-veil {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
            180deg,
            rgba(30, 23, 19, 0.62),
            rgba(30, 23, 19, 0.42) 42%,
            rgba(30, 23, 19, 0.66)
        ),
        radial-gradient(90% 70% at 50% 40%, transparent 40%, rgba(30, 23, 19, 0.5));
}

.cta-final-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.4rem;
    max-width: 56rem;
}

.cta-final-logo-slot {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: min(78vw, 300px);
    padding: 0.8rem 1.5rem;
    border-bottom: 1px solid rgba(253, 251, 248, 0.28);
}

.cta-final-logo-slot span {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 5vw, 2.8rem);
    font-style: italic;
    line-height: 1;
}

.cta-final-logo-slot small {
    margin-top: 0.45rem;
    color: rgba(253, 251, 248, 0.52);
    font-size: 0.57rem;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.cta-final-title {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(2.6rem, 8vw, 4.8rem);
    line-height: 1.04;
    letter-spacing: 0.005em;
}

.cta-final-title em {
    color: var(--accent-soft);
}

.cta-final-sub {
    font-weight: 300;
    font-size: clamp(1.02rem, 2vw, 1.2rem);
    color: rgba(253, 251, 248, 0.85);
    max-width: 44ch;
}

.cta-final-note {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.1rem;
    letter-spacing: 0.12em;
    color: rgba(253, 251, 248, 0.75);
}

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

.footer {
    background: var(--deep);
    color: rgba(253, 251, 248, 0.82);
    padding-top: clamp(3rem, 6vw, 4.5rem);
}

.footer-grid {
    display: flex;
    flex-direction: column;
    gap: 2.2rem;
    padding-bottom: 2.6rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.footer-name {
    font-family: var(--font-display);
    font-size: 1.7rem;
    font-weight: 600;
    color: var(--light);
    letter-spacing: 0.01em;
}

.footer-tag {
    font-size: 0.7rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(253, 251, 248, 0.55);
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.8rem;
}

.footer-nav a {
    font-size: 0.76rem;
    font-weight: 400;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(253, 251, 248, 0.78);
    transition: color 0.3s var(--ease);
}

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

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.footer-line {
    font-size: 0.9rem;
    font-weight: 300;
    color: rgba(253, 251, 248, 0.72);
    transition: color 0.3s var(--ease);
}

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

.footer-bottom {
    border-top: 1px solid rgba(253, 251, 248, 0.12);
    padding-block: 1.4rem;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.74rem;
    letter-spacing: 0.08em;
    color: rgba(253, 251, 248, 0.48);
}

@media (min-width: 1024px) {
    .footer-grid {
        flex-direction: row;
        align-items: flex-start;
        justify-content: space-between;
        gap: 3rem;
    }
    .footer-nav {
        max-width: 340px;
    }
}

/* ============ ANIMAÇÕES DE ENTRADA (HERO) ============ */

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: none;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes portraitFloat {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-12px);
    }
}

.fade-up {
    opacity: 0;
    animation: fadeUp 0.95s var(--ease) forwards;
    animation-delay: var(--d, 0s);
}

@media (prefers-reduced-motion: reduce) {
    .fade-up {
        opacity: 1;
        animation: none;
    }
}

.float {
    animation: portraitFloat 8s ease-in-out infinite;
}

/* Barra de progresso da rolagem */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 100%;
    transform: scaleX(var(--scroll, 0));
    transform-origin: left top;
    z-index: 70;
    background: linear-gradient(90deg, var(--accent-soft), var(--accent), var(--gold));
    border-radius: 0 3px 3px 0;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s var(--ease), transform 0.25s ease-out;
}

.scroll-progress.visible {
    opacity: 1;
}

/* Header encolhe suavemente ao rolar */
.header.scrolled .nav {
    height: 64px;
    transition: height 0.4s var(--ease);
}

.header.scrolled .brand-name {
    font-size: 1.08rem;
}

.header.scrolled .brand-last {
    font-size: 0.5rem;
}

/* Pressão dos botões */
.btn:active {
    transform: scale(0.96);
}

/* Traço da eybrow: cresce ao revelar */
.rv .eyebrow-line {
    width: 34px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 1.5s var(--ease) 0.35s;
}

.rv.in-view .eyebrow-line {
    transform: scaleX(1);
}

/* Respiro no controle antes/depois */
@media (prefers-reduced-motion: no-preference) {
    .ba-handle {
        animation: handlePulse 3.4s ease-in-out infinite;
    }
}

@keyframes handlePulse {
    0%,
    100% {
        box-shadow: 0 8px 20px -10px rgba(0, 0, 0, 0.4);
    }
    50% {
        box-shadow: 0 8px 26px -8px rgba(169, 112, 122, 0.55);
        transform: translate(-50%, -50%) scale(1.06);
    }
}

/* Ken Burns no CTA final */
@media (prefers-reduced-motion: no-preference) {
    .cta-final-img {
        animation: kenburns 22s ease-in-out infinite alternate;
    }
}

@keyframes kenburns {
    from {
        transform: scale(1) translate(0, 0);
    }
    to {
        transform: scale(1.09) translate(1.5%, -1.5%);
    }
}

/* Entrada dos botões flutuantes — só após o primeiro rolar */
.wa-float,
.ig-float {
    opacity: 0;
    transform: translateY(18px) scale(0.7);
    will-change: opacity, transform;
}

.wa-float.show,
.ig-float.show {
    opacity: 1;
    transform: none;
}

@media (prefers-reduced-motion: reduce) {
    .wa-float,
    .ig-float,
    .wa-float.show,
    .ig-float.show {
        opacity: 1;
        transform: none;
        transition: none;
    }
    .scroll-progress {
        display: none;
    }
}

/* ============ WHATSAPP FLUTUANTE ============ */

/* ============ ANIMAÇÕES AVANÇADAS ============ */

.hero-grid {
    position: relative;
    z-index: 2;
}

.scroll-hint {
    z-index: 2;
}

/* Bolhas de cor flutuantes no hero */
.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(74px);
    pointer-events: none;
    z-index: 0;
}

.hero-blob-a {
    width: 460px;
    height: 460px;
    top: 4%;
    right: -8%;
    background: var(--accent-soft);
    opacity: 0.4;
    animation: driftA 18s ease-in-out infinite alternate;
}

.hero-blob-b {
    width: 400px;
    height: 400px;
    bottom: 2%;
    left: -10%;
    background: var(--gold);
    opacity: 0.16;
    animation: driftB 22s ease-in-out infinite alternate;
}

@keyframes driftA {
    from {
        transform: translate(0, 0) scale(1);
    }
    to {
        transform: translate(60px, 42px) scale(1.12);
    }
}

@keyframes driftB {
    from {
        transform: translate(0, 0) scale(1);
    }
    to {
        transform: translate(-52px, -30px) scale(1.08);
    }
}

/* Assinatura do hero: sublinhado desenhado */
.hero-signature-mark {
    transition: transform 0.5s var(--ease);
}

.hero-media:hover .hero-signature-mark {
    transform: translateX(4px);
}

/* Preloader */
.preloader {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.4rem;
    background: var(--bg);
    transition: opacity 0.7s var(--ease), visibility 0.7s var(--ease);
}

.preloader.done {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-mark {
    width: 74px;
    height: 74px;
    border-radius: 50%;
    border: 1px solid var(--accent-soft);
    display: grid;
    place-items: center;
    font-family: var(--font-display);
    font-size: 2.1rem;
    font-weight: 500;
    color: var(--accent-2);
    background: rgba(253, 251, 248, 0.7);
    box-shadow: 0 18px 40px -24px rgba(143, 91, 100, 0.5);
    animation: markBreath 1.6s ease-in-out infinite;
}

@keyframes markBreath {
    0%,
    100% {
        transform: scale(0.96);
        opacity: 0.85;
    }
    50% {
        transform: scale(1.04);
        opacity: 1;
    }
}

.preloader-label {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 0.95rem;
    letter-spacing: 0.42em;
    text-transform: uppercase;
    color: var(--muted);
    animation: pLabelIn 1.4s var(--ease);
}

@keyframes pLabelIn {
    from {
        opacity: 0;
        letter-spacing: 0.6em;
    }
    to {
        opacity: 1;
        letter-spacing: 0.42em;
    }
}

/* Marquee */
.marquee {
    overflow: hidden;
    background: var(--bg);
    border-block: 1px solid var(--line);
    padding-block: 1.05rem;
    position: relative;
}

.marquee-track {
    display: flex;
    align-items: center;
    gap: 2.4rem;
    width: max-content;
    animation: marquee 34s linear infinite;
    white-space: nowrap;
}

.marquee:hover .marquee-track {
    animation-play-state: paused;
}

.marquee-item {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.3rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent-2);
}

.marquee-sep {
    font-size: 0.9rem;
    color: var(--gold);
}

@keyframes marquee {
    to {
        transform: translateX(-50%);
    }
}

/* Variedade nos reveals */
.rv-l {
    transform: translateX(-42px);
}

.rv-r {
    transform: translateX(42px);
}

.rv-z {
    transform: scale(0.94);
}

/* Revelação em cascata (cabeçalhos e blocos) */
.stagger > * {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.9s var(--ease), transform 1.05s var(--ease);
    will-change: opacity, transform;
}

.stagger > *:nth-child(1) {
    transition-delay: 0.1s;
}

.stagger > *:nth-child(2) {
    transition-delay: 0.22s;
}

.stagger > *:nth-child(3) {
    transition-delay: 0.34s;
}

.stagger > *:nth-child(4) {
    transition-delay: 0.46s;
}

.stagger > *:nth-child(5) {
    transition-delay: 0.58s;
}

.stagger > *:nth-child(6) {
    transition-delay: 0.7s;
}

.stagger > *:nth-child(n + 7) {
    transition-delay: 0.82s;
}

.stagger.in-view > * {
    opacity: 1;
    transform: none;
}

.stagger.in-view .eyebrow-line {
    transform: scaleX(1);
}

/* Sobreposição do traço eyebrow no stagger */
.stagger .eyebrow-line {
    width: 34px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 1.5s var(--ease) 0.35s;
}

/* Parallax nas fotos */
.plx {
    will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
    .hero-blob,
    .preloader-mark,
    .preloader-label,
    .marquee-track {
        animation: none !important;
    }
    .plx {
        transform: none !important;
    }
    .stagger > * {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

.wa-float,
.ig-float {
    position: fixed;
    right: 1.1rem;
    z-index: 60;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #C89B5C 0%, #A9707A 46%, #8F5B64 100%);
    color: #fff;
    box-shadow: 0 16px 34px -12px rgba(143, 91, 100, 0.55);
    transition: opacity 0.45s var(--ease), transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.wa-float {
    bottom: calc(1.1rem + env(safe-area-inset-bottom, 0px));
}

.ig-float {
    bottom: calc(1.1rem + 70px + env(safe-area-inset-bottom, 0px));
}

.wa-float:hover,
.ig-float:hover {
    transform: translateY(-4px) scale(1.04);
    box-shadow: 0 20px 40px -12px rgba(143, 91, 100, 0.7);
}

.wa-float svg,
.ig-float svg {
    width: 30px;
    height: 30px;
}

.wa-float-pulse {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid rgba(200, 155, 92, 0.6);
    animation: wapulse 7s cubic-bezier(0.2, 0.6, 0.4, 1) infinite;
    pointer-events: none;
}

@keyframes wapulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    14% {
        transform: scale(1.6);
        opacity: 0;
    }
    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

@media (min-width: 1024px) {
    .wa-float {
        right: 1.6rem;
        bottom: calc(1.6rem + env(safe-area-inset-bottom, 0px));
        width: 66px;
        height: 66px;
    }
    .ig-float {
        right: 1.6rem;
        bottom: calc(1.6rem + 76px + env(safe-area-inset-bottom, 0px));
        width: 66px;
        height: 66px;
    }
}

@media (max-width: 767px) {
    .wa-float,
    .ig-float {
        right: 0.8rem;
        width: 54px;
        height: 54px;
    }

    .ig-float {
        bottom: calc(0.8rem + 64px + env(safe-area-inset-bottom, 0px));
    }

    .wa-float {
        bottom: calc(0.8rem + env(safe-area-inset-bottom, 0px));
    }

    .wa-float svg,
    .ig-float svg {
        width: 27px;
        height: 27px;
    }

    .footer-bottom {
        padding-bottom: calc(1.4rem + env(safe-area-inset-bottom, 0px));
    }
}

/* Nudge sutil do botão do CTA após revelar */
@media (prefers-reduced-motion: no-preference) {
    .cta-final-actions.in-view .btn {
        animation: ctaNudge 2.4s var(--ease) 0.5s 1;
    }
}

@keyframes ctaNudge {
    0%,
    100% {
        transform: scale(1);
    }
    14% {
        transform: scale(1.03);
    }
    30% {
        transform: scale(1);
    }
}

/* Acorde: revelação do título um pouco mais dramática */
.acorde-title.rv {
    transition: opacity 1.1s var(--ease), transform 1.5s var(--ease);
}

/* Hero: ponto de origem do zoom ao rolar */
.plx-zoom {
    transform-origin: center 60%;
}

/* Revisão mobile: hierarquia dos serviços e campanha Acorde Linda. */
.booking-choice small.booking-choice-price--variable {
    grid-column: 1 / -1;
    grid-row: 3;
    justify-self: start;
    margin-top: 0.32rem;
    color: #826f75;
    font-size: 0.75rem;
    font-weight: 400;
    line-height: 1.4;
    text-align: left;
}
.acorde-evaluation-ending { white-space: nowrap; }

@media (max-width: 767px) {
    .acorde {
        padding-block: 2.5rem 3rem;
        background:
            radial-gradient(ellipse at 18% 0%, rgba(224,156,174,.22), transparent 58%),
            radial-gradient(ellipse at 100% 85%, rgba(163,91,121,.13), transparent 55%),
            linear-gradient(155deg, #88485e 0%, #673044 48%, #43202f 100%);
    }
    .acorde-grid { gap: 1.4rem; }
    .acorde-media { width: min(100%, 270px); }
    .acorde-visual {
        min-height: 0;
        display: flex;
        align-items: center;
        flex-direction: column;
        gap: .6rem;
    }
    .acorde .acorde-logo-slot, .acorde .acorde-photo-slot {
        position: static;
        min-height: 0;
        padding: .6rem 1rem;
        border-radius: 18px;
        background: linear-gradient(140deg, #f4dce1, #dbaebb);
        border-color: rgba(255,231,237,.3);
        backdrop-filter: none;
    }
    .acorde .acorde-logo-slot { width: 218px; height: 92px; }
    .acorde .acorde-photo-slot {
        width: 154px;
        height: 53px;
        padding: .35rem .6rem;
        border-radius: 12px;
    }
    .acorde-logo-slot--real img { height: 100%; object-fit: contain; filter: none; }
    .acorde-text { text-align: center; }
    .acorde-text .eyebrow {
        justify-content: center;
        color: #f5dfe6;
        font-size: .75rem;
        letter-spacing: .11em;
        line-height: 1.6;
        margin-bottom: .7rem;
    }
    .acorde-title {
        color: #fff8fa;
        font-size: clamp(2rem, 8vw, 2.75rem);
        line-height: 1.1;
        letter-spacing: -.02em;
        margin-bottom: 1rem;
        white-space: nowrap;
    }
    .acorde-title br { display: none; }
    .acorde-title em { color: #f7dce6; }
    .acorde-title em::before { content: ' '; }
    .acorde-sub {
        max-width: 28ch;
        margin-inline: auto;
        color: #fff8fa;
        font-weight: 500;
        font-size: 1.125rem;
        line-height: 1.5;
    }
    .acorde-description-placeholder {
        max-width: 35ch;
        margin: .8rem auto 0;
        color: #f4e4ea;
        font-size: 1rem;
        font-weight: 400;
        line-height: 1.65;
    }
    .acorde-actions { margin-top: 1.25rem; }
    .acorde-actions .btn {
        min-height: 48px;
        box-shadow: 0 12px 25px -19px rgba(29,7,19,.65);
    }
    .cta-final-logo-slot--real {
        min-width: 0;
        width: 160px;
        align-self: flex-start;
        padding: .7rem 1rem;
        border-radius: 18px;
    }
    .cta-final-logo-slot--real img { width: 100%; max-height: 75px; }
    .wa-float, .ig-float {
        width: 44px;
        height: 44px;
        bottom: calc(.55rem + env(safe-area-inset-bottom, 0px));
        box-shadow: 0 5px 14px -8px rgba(143,91,100,.45);
    }
    .wa-float { right: .55rem; }
    .ig-float { right: calc(.55rem + 52px); }
    .wa-float svg, .ig-float svg { width: 24px; height: 24px; }
    .wa-float-pulse { animation: none; }
    html { scroll-padding-bottom: calc(66px + env(safe-area-inset-bottom, 0px)); }
}

/* Acabamento compartilhado: superfícies claras, halos e linhas discretas. */
.about {
    background: radial-gradient(ellipse at 0% 30%, #ebd7dd55, transparent 55%), linear-gradient(165deg, #fcfaf7, #f7f2eb);
}
.services {
    background: radial-gradient(ellipse at 100% 5%, #e8ced633, transparent 48%), linear-gradient(180deg, #f5eee8, #f9f5ef);
}
.results, .gallery-section {
    background: radial-gradient(ellipse at 100% 70%, #e5cbd529, transparent 52%), linear-gradient(180deg, #faf7f2, #f7f2eb);
}
.testimonials {
    background: radial-gradient(ellipse at 12% 85%, #d9b9c133, transparent 55%), linear-gradient(125deg, #f6eee8, #fbf8f4);
}
.instagram {
    background: radial-gradient(ellipse at 95% 0%, #e6cdd52b, transparent 55%), linear-gradient(170deg, #fbf8f4, #f7f2ed);
}
.contact {
    background: radial-gradient(ellipse at 10% 85%, #e5cbd533, transparent 55%), linear-gradient(130deg, #f6eee9, #faf7f2);
}
.booking {
    background: radial-gradient(ellipse at 95% 10%, #c89b5c14, transparent 55%), linear-gradient(155deg, #fcfaf6, #f6f0eb);
}
.gallery-hero {
    padding-block: clamp(7.5rem, 13vw, 10rem) clamp(2.25rem, 5vw, 4rem);
    background:
        radial-gradient(ellipse 210px 350px at 111% 25%, transparent 74%, #a9707a16 74.2%, transparent 74.7%),
        radial-gradient(ellipse at 95% 12%, #e5c5d03d, transparent 58%),
        linear-gradient(155deg, #f9f4ef, #fcfaf6 60%, #faf7f2);
}
.gallery-hero .eyebrow { margin-bottom: .85rem; }
.gallery-hero .h2 {
    max-width: 17ch;
    font-size: clamp(2.35rem, 7.5vw, 4.5rem);
    line-height: 1.06;
    letter-spacing: -.025em;
}
.gallery-hero .h2 em { color: #965f70; }
.gallery-hero .section-sub {
    max-width: 53ch;
    margin-top: 1.25rem;
    font-size: 1rem;
    line-height: 1.7;
    color: #756760;
}
.gallery-filter {
    border-color: #b585902e;
    box-shadow: 0 5px 12px -9px #81515e66;
}
.gallery-filter:not(.is-active):not(:hover) {
    background: linear-gradient(140deg, #fffdfa, #f6ecea);
}
.gallery-cta {
    background:
        radial-gradient(ellipse 300px 230px at -10% 100%, transparent 70%, #a9707a14 70.2%, transparent 70.8%),
        radial-gradient(ellipse at 50% 20%, #f5dde266, transparent 45%),
        radial-gradient(ellipse at 95% 90%, #e4c8d02b, transparent 50%),
        linear-gradient(145deg, #f6eee7, #fcfaf6 65%, #f4ece7);
}
.gallery-cta img { width: min(270px, 66vw); }
.acorde {
    background:
        radial-gradient(ellipse 450px 650px at 105% 20%, transparent 74%, #ffebed13 74.2%, transparent 74.5%),
        radial-gradient(ellipse at 10% 5%, #e6b0bf33, transparent 58%),
        linear-gradient(145deg, #ae7889, #925b71 48%, #69374f);
}
.acorde .acorde-visual {
    min-height: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    width: min(100%, 370px);
    padding: 1.5rem 1rem;
    margin-inline: auto;
    border-radius: 48% 52% 46% 54% / 46% 42% 58% 54%;
    background: radial-gradient(ellipse at 45% 35%, #f9e7e9ed, #e5bdc9c9 68%, #deb2c03d);
}
.acorde .acorde-logo-slot, .acorde .acorde-photo-slot {
    position: static;
    min-height: 0;
    border: 0;
    border-radius: 0;
    padding: 0;
    background: transparent;
    backdrop-filter: none;
}
.acorde .acorde-logo-slot { width: 260px; height: 135px; }
.acorde .acorde-photo-slot { width: 164px; height: 65px; }
.acorde .acorde-logo-slot--real img { object-fit: contain; filter: none; }
.acorde-sub { font-weight: 400; }
.acorde-description-placeholder { color: #f7eaf0; }
.footer, .gallery-footer {
    background:
        radial-gradient(ellipse 360px 240px at 106% 90%, transparent 72%, #e3b4c00b 72.2%, transparent 72.8%),
        radial-gradient(ellipse at 3% 20%, #b6778d13, transparent 58%),
        linear-gradient(140deg, #302623, #38262d 58%, #292024);
}
.footer-name { font-weight: 500; }
.footer-tag { color: #d8bfc5; letter-spacing: .2em; line-height: 1.6; }
.footer-nav { gap: 1rem 1.5rem; }
.footer-line { line-height: 1.6; }
.footer-bottom {
    border-top-color: #deb8c41f;
    background: linear-gradient(90deg, transparent, #f8dce903, transparent);
}
.footer-bottom p { color: #cbb9bd; font-size: .8rem; line-height: 1.6; }
@media (min-width: 768px) {
    .footer-bottom p { width: fit-content; max-width: calc(100% - 160px); margin-inline: auto; }
}

@media (max-width: 767px) {
    .acorde { padding-block: 2.5rem 3rem; }
    .acorde-grid { gap: 1.5rem; }
    .acorde .acorde-visual { width: 270px; padding: 1.1rem .7rem; gap: .15rem; }
    .acorde .acorde-logo-slot { width: 210px; height: 90px; }
    .acorde .acorde-photo-slot { width: 130px; height: 45px; }
    .acorde-text .eyebrow { color: #ffeff4; font-weight: 400; font-size: .7rem; }
    .acorde-title { font-size: clamp(2.1rem, 8.6vw, 2.7rem); font-weight: 400; }
    .acorde-title em { color: #ffe7f0; font-weight: 500; }
    .acorde-sub { font-family: var(--font-display); font-weight: 500; font-size: 1.35rem; line-height: 1.35; }
    .acorde-description-placeholder { font-size: .98rem; font-weight: 300; line-height: 1.7; max-width: 34ch; }
    .acorde-actions .btn { min-height: 46px; padding: .85rem 1.5rem; }
    .cta-final-logo-slot--real { align-self: center; margin-inline: auto; }
    .footer-grid { gap: 1.75rem; }
    .footer-bottom { padding-bottom: calc(5rem + env(safe-area-inset-bottom, 0px)); }
    .gallery-footer { padding-bottom: calc(1.5rem + env(safe-area-inset-bottom, 0px)); }
    .gallery-footer .container { flex-wrap: wrap; font-size: .875rem; }
}

/* Movimento localizado: o observador existente revela cada card uma única vez. */
.service-card.rv {
    transform: translateY(16px);
    transition: opacity 620ms cubic-bezier(.22, 1, .36, 1),
        transform 620ms cubic-bezier(.22, 1, .36, 1), box-shadow 350ms ease;
    transition-delay: var(--service-delay, 0ms), var(--service-delay, 0ms), 0ms;
    will-change: auto;
}
.service-card.rv:nth-child(3n + 2) { --service-delay: 85ms; }
.service-card.rv:nth-child(3n) { --service-delay: 170ms; }
.insta-tile:hover .insta-post-media img { transform: none; }

/* Detalhes estáticos, confinados às seções e sempre atrás do conteúdo. */
:is(.about, .services, .results, .testimonials, .instagram, .contact, .booking,
    .gallery-hero, .gallery-section, .gallery-cta, .footer, .gallery-footer) {
    position: relative;
    isolation: isolate;
}
:is(.about, .services, .results, .testimonials, .instagram, .contact, .booking,
    .gallery-hero, .gallery-section, .gallery-cta, .footer, .gallery-footer)::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background:
        radial-gradient(ellipse 230px 320px at 108% 12%, transparent 74%, #a9707a16 74.2%, transparent 74.7%),
        radial-gradient(circle at 94% 28%, #ba8d7333 0 1px, transparent 2px),
        radial-gradient(ellipse at 0% 95%, #e8d4cb24, transparent 36%);
}
:is(.services, .testimonials, .contact, .gallery-section)::before {
    background:
        radial-gradient(ellipse 240px 420px at -130px 70%, transparent 74%, #a9707a14 74.2%, transparent 74.7%),
        radial-gradient(ellipse at 100% 10%, #e1bdca20, transparent 38%);
}
.gallery-hero .section-sub::after {
    content: '';
    display: block;
    width: 64px;
    height: 1px;
    margin: 1.65rem auto 0;
    background: linear-gradient(90deg, transparent, #a9707a80, #c8a56e66, transparent);
}
:is(.footer, .gallery-footer)::before {
    background:
        radial-gradient(ellipse 320px 240px at -90px 35%, transparent 74%, #dec2aa0d 74.2%, transparent 74.8%),
        radial-gradient(ellipse at 85% 85%, #ba799b0a, transparent 40%);
}
.cta-final-veil::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(ellipse 320px 480px at 110% 80%, transparent 74%, #f3d6df12 74.2%, transparent 74.7%);
}
@media (max-width: 767px) {
    .service-card.rv { transition-duration: 560ms, 560ms, 350ms; }
    .service-card.rv:nth-child(n) { --service-delay: 0ms; }
    .service-card.rv:nth-child(even) { --service-delay: 35ms; }
}
@media (prefers-reduced-motion: reduce) {
    .service-card.rv { opacity: 1; transform: none; transition: none; }
}

/* Sem foto, não reservar a coluna estreita de mídia do card de profissional. */
.professional-card--pending .professional-card-main {
    grid-template-columns: minmax(0, 1fr);
    padding: clamp(1rem, 3vw, 1.5rem);
}
.professional-card--pending .professional-info { min-width: 0; }
.professional-card--pending .placeholder-tag {
    display: inline-block;
    white-space: nowrap;
    font-size: .65rem;
    letter-spacing: .045em;
    margin-bottom: .75rem;
}
.professional-card--pending .professional-info h4 { font-size: clamp(1.45rem, 4.5vw, 1.75rem); }
.professional-card--pending .professional-info p { font-size: .95rem; line-height: 1.65; max-width: 55ch; }

/* O painel usa o viewport, não a caixa do cabeçalho com backdrop-filter. */
@media (max-width: 1023px) {
    .header.menu-open {
        z-index: 120;
        background: #fcf8f3;
        -webkit-backdrop-filter: none;
        backdrop-filter: none;
        border-bottom-color: #ba8c9738;
    }
    .header.menu-open .nav { height: 78px; transition: none; }
    .header.menu-open .brand { position: relative; z-index: 2; }
    .header.menu-open .nav-mobile { position: relative; z-index: 2; }
    .nav-list {
        top: 78px;
        bottom: auto;
        height: calc(100vh - 78px);
        height: calc(100dvh - 78px);
        padding: clamp(1.25rem, 4vh, 2.5rem) clamp(1.5rem, 6vw, 4rem) calc(2rem + env(safe-area-inset-bottom, 0px));
        background:
            radial-gradient(ellipse 220px 340px at 110% 88%, transparent 74%, #b887991c 74.2%, transparent 74.8%),
            radial-gradient(ellipse at 100% 85%, #efdce34d, transparent 65%),
            linear-gradient(155deg, #fcf8f3, #f7eeea);
        -webkit-backdrop-filter: none;
        backdrop-filter: none;
        transform: translateY(-8px);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity 280ms ease, transform 320ms cubic-bezier(.22, 1, .36, 1), visibility 320ms;
        overscroll-behavior: contain;
        -webkit-overflow-scrolling: touch;
    }
    .nav-list.open { transform: none; opacity: 1; visibility: visible; pointer-events: auto; }
    .nav-list > li { width: 100%; flex: 0 0 auto; }
    .nav-list > li + li { border-top: 1px solid #b8879926; }
    .nav-list a:not(.btn) {
        padding: .65rem 0;
        min-height: 48px;
        font-family: var(--font-display);
        font-size: clamp(1.55rem, 5vw, 2rem);
        font-weight: 500;
        letter-spacing: .015em;
        line-height: 1.25;
        text-transform: none;
    }
    .nav-list a:not(.btn):hover, .nav-list a:not(.btn):focus-visible { color: var(--accent-2); transform: translateX(4px); }
    .nav-list a:focus-visible, .nav-toggle:focus-visible { outline: 2px solid var(--accent); outline-offset: 4px; }
    .nav-list .btn-nav { margin-top: 1.25rem; min-height: 50px; }
    .nav-toggle[aria-expanded='true'] { background: #f1e1e4; border-color: #bd8f9b66; }
}
@media (prefers-reduced-motion: reduce) {
    .nav-list, .nav-toggle span { transition: none; }
}

/* Drawer independente: não herda filtros nem camadas do cabeçalho. */
.mobile-drawer, .drawer-number { display: none; }
@media (max-width: 1023px) {
    .mobile-drawer {
        display: block;
        position: fixed;
        inset: 0;
        z-index: 1000;
        isolation: isolate;
        overflow: hidden;
        visibility: hidden;
        pointer-events: none;
        transition: visibility 0s linear 380ms;
    }
    .mobile-drawer.is-open { visibility: visible; pointer-events: auto; transition-delay: 0s; }
    .drawer-overlay {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        border: 0;
        background: rgba(38, 27, 30, .42);
        -webkit-backdrop-filter: blur(2px);
        backdrop-filter: blur(2px);
        opacity: 0;
        transition: opacity 350ms ease;
    }
    .is-open .drawer-overlay { opacity: 1; }
    .drawer-panel {
        position: relative;
        z-index: 1;
        width: 84%;
        height: 100vh;
        height: 100dvh;
        margin-left: auto;
        padding: calc(1.25rem + env(safe-area-inset-top, 0px)) max(1.25rem, env(safe-area-inset-right, 0px)) calc(1.5rem + env(safe-area-inset-bottom, 0px));
        overflow-y: auto;
        overscroll-behavior: contain;
        background:
            radial-gradient(ellipse 200px 350px at 115% 100%, transparent 74%, #b887991a 74.2%, transparent 74.7%),
            radial-gradient(ellipse at 100% 90%, #efdce350, transparent 65%),
            linear-gradient(155deg, #fcf8f3, #f7eeea);
        box-shadow: -15px 0 45px -20px #2d20264d;
        transform: translateX(100%);
        transition: transform 380ms cubic-bezier(.22, 1, .36, 1);
    }
    .is-open .drawer-panel { transform: translateX(0); }
    .drawer-heading { display: flex; align-items: center; justify-content: space-between; gap: .75rem; padding-bottom: 1.35rem; border-bottom: 1px solid #b8879936; }
    .drawer-brand { display: flex; flex-direction: column; gap: .3rem; color: var(--ink); }
    .drawer-brand > span { font: 500 1.5rem/1.1 var(--font-display); }
    .drawer-brand small { font-size: .6rem; letter-spacing: .35em; color: var(--accent-2); }
    .drawer-close { flex: 0 0 44px; width: 44px; height: 44px; border: 1px solid #b887993b; border-radius: 50%; background: #f2e5e8; color: var(--accent-2); font: 300 1.9rem/1 var(--font-body); }
    .drawer-close:hover { background: #ead6dc; }
    .drawer-close:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
    .mobile-drawer .nav-list {
        position: static;
        height: auto;
        padding: 1rem 0 0;
        background: transparent;
        overflow: visible;
        transform: none;
        opacity: 1;
        visibility: inherit;
        pointer-events: inherit;
        transition: none;
    }
    .mobile-drawer .nav-list a:not(.btn) { display: flex; align-items: center; gap: .85rem; font-size: clamp(1.4rem, 5.7vw, 1.8rem); padding: .8rem 0; }
    .drawer-number { display: inline-block; flex: 0 0 1.25rem; color: #a77886; font: 400 .7rem/1 var(--font-body); letter-spacing: .05em; }
    .mobile-drawer .nav-list > li { opacity: 0; transform: translateX(8px); transition: opacity 220ms ease, transform 280ms ease; }
    .is-open .nav-list > li { opacity: 1; transform: none; transition-delay: calc(70ms + var(--menu-index) * 22ms); }
    .mobile-drawer .nav-list > li:last-child { border-top: 0; padding-top: .5rem; }
    .mobile-drawer .btn-nav { margin-top: .75rem; min-height: 54px; box-shadow: 0 12px 25px -17px #87596680; }
}
@media (prefers-reduced-motion: reduce) {
    .mobile-drawer, .drawer-overlay, .drawer-panel, .mobile-drawer .nav-list > li { transition: none; }
}
