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

            :root {
                --p950: #2a1a10;
                --p900: #3d2b1f;
                --p800: #6a5344;
                --p700: #8c6b4f;
                --p600: #9b7a5e;
                --p500: #a89a8b;
                --p400: #b8b0a7;
                --p300: #c8c0b7;
                --p200: #ddd6cc;
                --p100: #eae5df;
                --p50: #f5f2ef;

                --text-900: #3d2b1f;
                --text-600: #6a5344;
                --text-400: #a89a8b;
                --text-300: #b8b0a7;

                --bg-white: #ffffff;
                --bg-off: #f5f2ef;
                --bg-section: #ede8e2;

                --border: #ddd6cc;
                --border-soft: #eae5df;
            }

            html {
                scroll-behavior: smooth;
                font-size: 16px;
            }

            body {
                font-family: "DM Sans", sans-serif;
                background: var(--bg-white);
                color: var(--text-900);
                line-height: 1.6;
                overflow-x: hidden;
            }

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

            /* ================================
           UTILITÁRIOS
           ================================ */
            .container {
                max-width: 1200px;
                margin: 0 auto;
                padding: 0 28px;
            }

            .section {
                padding: 100px 28px;
            }

            .section-label {
                display: block;
                font-size: 11px;
                font-weight: 600;
                letter-spacing: 0.16em;
                text-transform: uppercase;
                color: var(--p700);
                margin-bottom: 14px;
            }

            .section-title {
                font-family: "DM Serif Display", serif;
                font-size: 46px;
                font-weight: 400;
                line-height: 1.1;
                color: var(--text-900);
                margin-bottom: 18px;
            }

            .section-subtitle {
                font-size: 16px;
                color: var(--text-600);
                line-height: 1.8;
                max-width: 540px;
            }

            .section-header {
                margin-bottom: 64px;
            }

            /* Botões */
            .btn {
                display: inline-flex;
                align-items: center;
                gap: 10px;
                text-decoration: none;
                font-size: 14px;
                font-weight: 500;
                border-radius: 4px;
                padding: 13px 26px;
                transition:
                    background 0.2s,
                    border-color 0.2s,
                    color 0.2s,
                    transform 0.2s cubic-bezier(.22,.61,.36,1);
                cursor: pointer;
                border: none;
                letter-spacing: 0.01em;
                /* Efeito magnético — deslocado sutilmente pelo JS ao passar o mouse */
                transform: translate3d(var(--magx, 0), var(--magy, 0), 0);
            }

            .btn-primary {
                background: var(--p700);
                color: #fff;
            }

            .btn-primary:hover {
                background: var(--p800);
            }

            .btn-outline {
                background: transparent;
                color: var(--p700);
                border: 1.5px solid var(--p300);
            }

            .btn-outline:hover {
                border-color: var(--p700);
                background: var(--p50);
            }

            .btn-wpp {
                background: #22c55e;
                color: #fff;
            }

            .btn-wpp:hover {
                background: #16a34a;
            }

            /* Link de acessibilidade — visível só ao navegar por teclado */
            .skip-link {
                position: absolute;
                left: -999px;
                top: 0;
                background: var(--p700);
                color: #fff;
                padding: 10px 18px;
                border-radius: 0 0 6px 0;
                z-index: 300;
                font-size: 14px;
                text-decoration: none;
            }

            .skip-link:focus {
                left: 0;
            }

            /* Banner de consentimento de cookies (LGPD, issue #242) — card no
               canto oposto aos botões flutuantes (chat/WhatsApp), pra nunca
               sobrepor um no outro. */
            .cookie-banner {
                position: fixed;
                left: 20px;
                bottom: max(20px, env(safe-area-inset-bottom));
                z-index: 95;
                width: min(360px, calc(100vw - 40px));
                background: var(--bg-white);
                border: 1px solid var(--border);
                border-radius: 10px;
                padding: 18px 20px;
                box-shadow: 0 10px 40px rgba(140, 107, 79, 0.18);
            }

            .cookie-banner p {
                font-size: 13px;
                color: var(--text-600);
                line-height: 1.5;
                margin-bottom: 14px;
            }

            .cookie-banner p a {
                color: var(--p700);
                text-decoration: underline;
            }

            .cookie-banner-actions {
                display: flex;
                gap: 10px;
            }

            .cookie-banner-actions .btn {
                flex: 1;
                justify-content: center;
                padding: 9px 14px;
                font-size: 13.5px;
            }

            @media (max-width: 600px) {
                .cookie-banner { left: 16px; right: 16px; width: auto; }
            }

            /* Atalho direto de WhatsApp (issue #241), empilhado acima do
               chat-toggle abaixo — mesmo right do .chat-widget, bottom
               deslocado pela altura do botão do chat + espaçamento. */
            .wpp-float {
                position: fixed;
                right: 20px;
                bottom: calc(max(20px, env(safe-area-inset-bottom)) + 72px);
                z-index: 90;
                width: 58px; height: 58px; border-radius: 50%;
                background: #22c55e;
                display: flex; align-items: center; justify-content: center;
                box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
                transition: transform 0.2s;
            }
            .wpp-float:hover { background: #16a34a; transform: scale(1.06); }

            /* Chat de captação (issue #169) — mesmo widget da Agenda; env()
               evita ficar atrás da barra de gestos inferior do iOS/Android. */
            .chat-widget { position: fixed; right: 20px; bottom: max(20px, env(safe-area-inset-bottom)); z-index: 90; }
            .chat-toggle {
                width: 58px; height: 58px; border-radius: 50%; border: none;
                background: linear-gradient(135deg, var(--p800), var(--p700));
                color: #fff; font-size: 24px; cursor: pointer; position: relative;
                box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
                transition: transform 0.2s;
            }
            .chat-toggle:hover { transform: scale(1.06); }
            .chat-panel {
                position: absolute; right: 0; bottom: 68px; width: min(320px, calc(100vw - 40px));
                background: var(--bg-white); border-radius: 12px; box-shadow: 0 12px 48px rgba(61, 43, 31, .18);
                overflow: hidden;
            }
            .chat-panel-header {
                display: flex; align-items: center; justify-content: space-between;
                padding: 14px 16px; background: var(--p900); color: #fff;
            }
            .chat-close { background: none; border: none; color: #fff; font-size: 22px; line-height: 1; cursor: pointer; }
            .chat-panel-body { padding: 16px; }
            .chat-panel-body p { font-size: 13px; color: var(--text-600); margin-bottom: 12px; }
            .chat-panel-body .form-group { margin-bottom: 12px; }
            .chat-panel-body label { display: block; font-size: 12px; font-weight: 500; color: var(--text-600); margin-bottom: 4px; }
            .chat-panel-body input, .chat-panel-body textarea {
                width: 100%; padding: 10px 12px; border: 1.5px solid var(--border); border-radius: 6px;
                font-family: inherit; font-size: 14px; resize: vertical;
            }
            .chat-erro { font-size: 12px; color: #ef4444; min-height: 14px; margin-bottom: 8px; }
            #chat-enviar { width: 100%; justify-content: center; }
            .chat-sucesso p { font-size: 14px; color: #16a34a; }

            @media (max-width: 600px) {
                .chat-toggle {
                    width: 50px;
                    height: 50px;
                }
                .chat-widget { bottom: max(16px, env(safe-area-inset-bottom)); right: 16px; }
                .wpp-float {
                    width: 50px; height: 50px;
                    right: 16px;
                    bottom: calc(max(16px, env(safe-area-inset-bottom)) + 62px);
                }
                .wpp-float svg { width: 22px; height: 22px; }
            }

            .btn-ghost {
                background: rgba(255, 255, 255, 0.1);
                color: #fff;
                border: 1px solid rgba(255, 255, 255, 0.22);
            }

            .btn-ghost:hover {
                background: rgba(255, 255, 255, 0.18);
            }

            .btn-agenda {
                background: #c4917a;
                color: #fff;
            }

            .btn-agenda:hover {
                background: #a87560;
            }

            /* ================================
           HEADER / NAV
           ================================ */
            header {
                position: fixed;
                top: 0;
                left: 0;
                right: 0;
                z-index: 100;
                height: 68px;
                background: rgba(255, 255, 255, 0.96);
                border-bottom: 1px solid var(--border-soft);
                backdrop-filter: blur(12px);
            }

            .nav-wrap {
                max-width: 1200px;
                margin: 0 auto;
                padding: 0 28px;
                height: 100%;
                display: flex;
                align-items: center;
                justify-content: space-between;
            }

            .logo {
                text-decoration: none;
                line-height: 1;
            }

            .logo-name {
                display: block;
                font-family: "DM Serif Display", serif;
                font-size: 23px;
                font-weight: 600;
                color: var(--p700);
                letter-spacing: 0.03em;
            }

            .logo-tagline {
                display: block;
                font-size: 10px;
                font-weight: 400;
                color: var(--text-600);
                letter-spacing: 0.14em;
                text-transform: uppercase;
                margin-top: 1px;
            }

            nav ul {
                list-style: none;
                display: flex;
                align-items: center;
                gap: 34px;
            }

            nav a {
                text-decoration: none;
                font-size: 14px;
                font-weight: 400;
                color: var(--text-600);
                letter-spacing: 0.01em;
                transition: color 0.2s;
            }

            nav a:hover {
                color: var(--p700);
            }

            .nav-cta {
                background: var(--p700);
                color: #fff !important;
                padding: 10px 22px;
                border-radius: 4px;
                font-weight: 500 !important;
                white-space: nowrap;
            }

            .nav-cta:hover {
                background: var(--p800) !important;
                color: #fff !important;
            }

            /* Mobile nav toggle */
            .hamburger {
                display: none;
                flex-direction: column;
                gap: 5px;
                cursor: pointer;
                padding: 14px 10px; /* área de toque ~44x44px sem mudar o tamanho visual do ícone */
                background: none;
                border: none;
                z-index: 200;
            }

            .hamburger span {
                display: block;
                width: 24px;
                height: 2px;
                background: var(--p700);
                border-radius: 2px;
                transition: all 0.3s;
            }

            .hamburger.open span:nth-child(1) {
                transform: translateY(7px) rotate(45deg);
            }

            .hamburger.open span:nth-child(2) {
                opacity: 0;
                transform: scaleX(0);
            }

            .hamburger.open span:nth-child(3) {
                transform: translateY(-7px) rotate(-45deg);
            }

            .mobile-menu {
                display: none;
                position: fixed;
                top: 68px;
                left: 0;
                right: 0;
                bottom: 0;
                background: #fff;
                z-index: 99;
                flex-direction: column;
                padding: 32px 28px;
                gap: 0;
                overflow-y: auto;
                border-top: 1px solid var(--border-soft);
            }

            .mobile-menu.open {
                display: flex;
            }

            .mobile-menu a {
                display: block;
                text-decoration: none;
                font-size: 18px;
                font-weight: 400;
                color: var(--text-600);
                padding: 16px 0;
                border-bottom: 1px solid var(--border-soft);
                transition: color 0.2s;
            }

            .mobile-menu a:hover {
                color: var(--p700);
            }

            .mobile-menu .mobile-cta {
                margin-top: 28px;
                background: var(--p700);
                color: #fff !important;
                text-align: center;
                border-radius: 4px;
                padding: 16px;
                border-bottom: none;
                font-weight: 500;
            }

            .mobile-menu .mobile-cta:hover {
                background: var(--p800);
            }

            /* ================================
           HERO
           ================================ */
            #inicio {
                padding-top: 68px;
                background: var(--bg-off);
                min-height: 100vh;
                min-height: 100svh; /* evita salto de layout com a barra de endereço dinâmica do mobile */
                display: flex;
                align-items: center;
            }

            .hero-wrap {
                max-width: 1200px;
                margin: 0 auto;
                padding: 80px 28px;
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 72px;
                align-items: center;
            }

            .hero-badge {
                display: inline-block;
                background: var(--p200);
                color: var(--p800);
                font-size: 12px;
                font-weight: 500;
                letter-spacing: 0.1em;
                text-transform: uppercase;
                padding: 6px 16px;
                border-radius: 100px;
                margin-bottom: 28px;
            }

            .hero-heading {
                font-family: "DM Serif Display", serif;
                font-size: 66px;
                font-weight: 300;
                line-height: 1.08;
                color: var(--text-900);
                margin-bottom: 24px;
            }

            .hero-heading em {
                font-style: italic;
                color: var(--p700);
            }

            .hero-desc {
                font-size: 17px;
                color: var(--text-600);
                line-height: 1.8;
                margin-bottom: 40px;
                max-width: 460px;
            }

            .hero-actions {
                display: flex;
                gap: 14px;
                flex-wrap: wrap;
            }

            /* Coluna visual */
            .hero-visual {
                position: relative;
            }

            .hero-photo {
                width: 100%;
                aspect-ratio: 4 / 5;
                border-radius: 8px;
                overflow: hidden;
                background: var(--p200);
            }

            .hero-photo img {
                width: 100%;
                height: 100%;
                object-fit: cover;
            }

            /* Placeholder enquanto sem foto */
            .photo-placeholder {
                width: 100%;
                height: 100%;
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                gap: 14px;
                background: linear-gradient(150deg, var(--p200), var(--p300));
                color: var(--p800);
                font-family: "DM Serif Display", serif;
                font-size: 16px;
                font-style: italic;
            }

            .photo-placeholder-icon {
                font-size: 48px;
                opacity: 0.45;
            }

            /* Card flutuante */
            .hero-float-card {
                position: absolute;
                bottom: -22px;
                left: -28px;
                background: #fff;
                border: 1px solid var(--border);
                border-radius: 8px;
                padding: 18px 24px;
                box-shadow: 0 10px 40px rgba(140, 107, 79, 0.14);
            }

            .float-number {
                font-family: "DM Serif Display", serif;
                font-size: 38px;
                font-weight: 600;
                color: var(--p700);
                line-height: 1;
            }

            .float-label {
                font-size: 12px;
                color: var(--text-600);
                margin-top: 4px;
            }

            .float-divider {
                height: 1px;
                background: var(--border);
                margin: 12px 0 10px;
            }

            .float-rating {
                display: flex;
                align-items: baseline;
                gap: 6px;
                white-space: nowrap;
            }

            .float-rating-stars {
                color: #f2b632;
                font-size: 13px;
                letter-spacing: 1px;
            }

            .float-rating-text {
                font-size: 12px;
                color: var(--text-600);
            }

            /* ================================
           SERVIÇOS
           ================================ */
            #servicos {
                background: var(--bg-white);
            }

            .services-inner {
                max-width: 1200px;
                margin: 0 auto;
            }

            .services-grid {
                display: grid;
                grid-template-columns: repeat(6, 1fr);
                gap: 16px;
            }

            .service-card {
                background: var(--bg-white);
                padding: 40px 36px;
                border: 1px solid var(--border-soft);
                border-radius: 10px;
                grid-column: span 2;
            }

            .service-card:nth-child(4) {
                grid-column: 2 / 4;
            }
            .service-card:nth-child(5) {
                grid-column: 4 / 6;
            }

            .service-icon {
                width: 46px;
                height: 46px;
                background: var(--p100);
                border-radius: 10px;
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: 22px;
                margin-bottom: 22px;
            }

            .service-name {
                font-family: "DM Serif Display", serif;
                font-size: 22px;
                font-weight: 500;
                color: var(--text-900);
                margin-bottom: 10px;
            }

            .service-desc {
                font-size: 14px;
                color: var(--text-600);
                line-height: 1.75;
            }

            /* Cards de serviço que viram link pra página de SEO própria
               (issue #281) — precisam neutralizar o estilo padrão de <a>
               sem interferir no efeito de tilt/reveal já aplicado ao card. */
            a.service-card {
                display: block;
                text-decoration: none;
                color: inherit;
            }

            .service-more {
                display: block;
                margin-top: 14px;
                font-size: 13px;
                font-weight: 500;
                color: var(--p700);
            }

            a.service-card:hover .service-more {
                text-decoration: underline;
            }

            /* ================================
           SOBRE
           ================================ */
            #sobre {
                background: var(--bg-section);
            }

            .about-wrap {
                max-width: 1200px;
                margin: 0 auto;
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 80px;
                align-items: center;
            }

            .about-photo {
                width: 100%;
                aspect-ratio: 3 / 4;
                border-radius: 8px;
                overflow: hidden;
                background: var(--p200);
                position: relative;
            }

            .about-photo img {
                width: 100%;
                height: 100%;
                object-fit: cover;
            }

            .about-photo-corner {
                position: absolute;
                bottom: 0;
                right: 0;
                width: 100px;
                height: 100px;
                background: var(--bg-section);
                border-top-left-radius: 50%;
            }

            .about-body p {
                font-size: 16px;
                color: var(--text-600);
                line-height: 1.9;
                margin-bottom: 22px;
            }

            .about-stats {
                display: flex;
                flex-wrap: wrap;
                gap: 40px;
                padding-top: 36px;
                border-top: 1px solid var(--border);
                margin-top: 12px;
                align-items: flex-start;
            }

            .stat {
                display: flex;
                flex-direction: column;
                gap: 4px;
            }

            .credential-badge {
                margin-top: 24px;
                padding: 12px 18px;
                background: var(--bg-section);
                border: 1px solid var(--border);
                border-radius: 6px;
                font-size: 13px;
                color: var(--text-600);
                display: inline-block;
            }

            .stat-number {
                font-family: "DM Serif Display", serif;
                font-size: 56px;
                font-weight: 600;
                color: var(--p800);
                line-height: 1;
                letter-spacing: -0.02em;
            }

            .stat-label {
                font-size: 13px;
                color: var(--text-600);
                margin-top: 6px;
                line-height: 1.4;
                max-width: 100px;
            }

            /* ================================
           GALERIA
           ================================ */
            #galeria {
                background: var(--bg-white);
            }

            .gallery-inner {
                max-width: 1200px;
                margin: 0 auto;
            }

            .gallery-grid {
                display: grid;
                grid-template-columns: repeat(12, 1fr);
                grid-template-rows: 260px 260px;
                gap: 12px;
            }

            .g-item {
                border-radius: 8px;
                overflow: hidden;
                background: var(--p100);
            }

            .g-item img {
                width: 100%;
                height: 100%;
                object-fit: cover;
            }

            /* Layout das fotos */
            .g-item:nth-child(1) {
                grid-column: span 5;
                grid-row: span 2;
            }
            .g-item:nth-child(2) {
                grid-column: span 4;
                grid-row: span 1;
            }
            .g-item:nth-child(3) {
                grid-column: span 3;
                grid-row: span 1;
            }
            .g-item:nth-child(4) {
                grid-column: span 3;
                grid-row: span 1;
            }
            .g-item:nth-child(5) {
                grid-column: span 4;
                grid-row: span 1;
            }

            .hygiene-badges {
                display: flex;
                flex-wrap: wrap;
                justify-content: center;
                gap: 12px;
                list-style: none;
                margin-top: 32px;
            }

            .hygiene-badges li {
                background: var(--bg-off);
                border: 1px solid var(--border-soft);
                border-radius: 100px;
                padding: 10px 18px;
                font-size: 13.5px;
                color: var(--text-600);
            }

            /* Placeholder visual de galeria */
            .g-placeholder {
                width: 100%;
                height: 100%;
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                gap: 10px;
                background: linear-gradient(145deg, var(--p100), var(--p200));
                color: var(--p600);
                font-family: "DM Serif Display", serif;
                font-size: 14px;
                font-style: italic;
            }

            .g-placeholder-icon {
                font-size: 28px;
                opacity: 0.5;
            }

            /* ================================
           PRIMEIRA SESSÃO
           ================================ */
            .steps-list {
                list-style: none;
                display: grid;
                grid-template-columns: repeat(3, 1fr);
                gap: 32px;
                margin-top: 8px;
            }

            .steps-list li {
                display: flex;
                gap: 16px;
                align-items: flex-start;
            }

            .step-number {
                flex-shrink: 0;
                width: 36px;
                height: 36px;
                border-radius: 50%;
                background: var(--p700);
                color: #fff;
                font-family: "DM Serif Display", serif;
                font-size: 16px;
                display: flex;
                align-items: center;
                justify-content: center;
            }

            .steps-list h3 {
                font-size: 16px;
                font-weight: 600;
                color: var(--text-900);
                margin-bottom: 6px;
            }

            .steps-list p {
                font-size: 14px;
                color: var(--text-600);
                line-height: 1.55;
            }

            .steps-nota {
                margin-top: 32px;
                text-align: center;
                font-size: 14px;
                color: var(--text-600);
                background: var(--bg-white);
                border: 1px solid var(--border-soft);
                border-radius: 10px;
                padding: 16px 20px;
            }

            .steps-nota strong {
                color: var(--text-900);
            }

            /* ================================
           FAQ
           ================================ */
            .faq-inner {
                max-width: 760px;
                margin: 0 auto;
            }

            .faq-list {
                display: flex;
                flex-direction: column;
                gap: 12px;
            }

            .faq-item {
                background: var(--bg-white);
                border: 1px solid var(--border-soft);
                border-radius: 10px;
                padding: 18px 22px;
            }

            .faq-item summary {
                cursor: pointer;
                font-weight: 500;
                color: var(--text-900);
                list-style: none;
                display: flex;
                align-items: center;
                justify-content: space-between;
                gap: 12px;
            }

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

            .faq-item summary::after {
                content: "+";
                font-family: "DM Serif Display", serif;
                font-size: 22px;
                color: var(--p700);
                flex-shrink: 0;
                transition: transform 0.2s;
            }

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

            .faq-item p {
                margin-top: 12px;
                color: var(--text-600);
                font-size: 14.5px;
                line-height: 1.6;
            }

            /* ================================
           LOCALIZAÇÃO
           ================================ */
            #localizacao {
                background: var(--bg-section);
            }

            .location-wrap {
                max-width: 1200px;
                margin: 0 auto;
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 64px;
                align-items: start;
            }

            .map-container {
                border-radius: 10px;
                overflow: hidden;
                border: 1px solid var(--border);
                box-shadow: 0 4px 20px rgba(140, 107, 79, 0.08);
            }

            .map-container iframe {
                width: 100%;
                height: 440px;
                border: none;
                display: block;
            }

            /* Placeholder de mapa */
            .map-placeholder {
                width: 100%;
                height: 440px;
                background: var(--p100);
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                gap: 14px;
                color: var(--p600);
                font-family: "DM Serif Display", serif;
                font-size: 16px;
                font-style: italic;
            }

            .map-placeholder-icon {
                font-size: 40px;
                opacity: 0.5;
            }

            .location-details {
                padding-top: 10px;
            }

            .detail-block {
                margin-bottom: 36px;
            }

            .detail-label {
                font-size: 11px;
                font-weight: 600;
                letter-spacing: 0.14em;
                text-transform: uppercase;
                color: var(--p700);
                margin-bottom: 12px;
            }

            .detail-text {
                font-size: 15px;
                color: var(--text-600);
                line-height: 1.75;
            }

            .hours-list {
                list-style: none;
                display: flex;
                flex-direction: column;
                gap: 0;
            }

            .hours-list li {
                display: flex;
                justify-content: space-between;
                align-items: center;
                padding: 4px 0;
                border-bottom: none;
                font-size: 15px;
                color: var(--text-600);
            }

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

            .hours-list .time {
                color: var(--text-600);
                font-weight: 500;
            }

            .hours-list .closed {
                color: var(--text-400);
                font-style: italic;
            }

            .social-links {
                display: flex;
                gap: 16px;
                margin-top: 14px;
                flex-wrap: wrap;
            }

            .social-link {
                display: inline-flex;
                align-items: center;
                gap: 8px;
                color: var(--p700);
                text-decoration: none;
                font-size: 14px;
                font-weight: 500;
                transition: color 0.2s;
            }

            .social-link:hover {
                color: var(--p800);
            }

            /* ================================
           CTA FINAL
           ================================ */
            #contato {
                background: var(--p900);
                padding: 96px 28px;
            }

            .cta-inner {
                max-width: 760px;
                margin: 0 auto;
                text-align: center;
            }

            .cta-inner .section-label {
                color: var(--p300);
            }

            .cta-heading {
                font-family: "DM Serif Display", serif;
                font-size: 52px;
                font-weight: 400;
                color: #fff;
                line-height: 1.1;
                margin-bottom: 20px;
            }

            .cta-sub {
                font-size: 17px;
                color: var(--p300);
                line-height: 1.75;
                margin-bottom: 44px;
            }

            .cta-actions {
                display: flex;
                gap: 14px;
                justify-content: center;
                flex-wrap: wrap;
            }

            /* ================================
           FOOTER
           ================================ */
            footer {
                background: var(--p950);
                padding: 36px 28px;
            }

            .footer-wrap {
                max-width: 1200px;
                margin: 0 auto;
                display: flex;
                align-items: center;
                justify-content: space-between;
                gap: 20px;
                flex-wrap: wrap;
            }

            .footer-logo {
                font-family: "DM Serif Display", serif;
                font-size: 18px;
                color: var(--p300);
                text-decoration: none;
                letter-spacing: 0.02em;
            }

            .footer-copy {
                font-size: 13px;
                color: var(--p600);
            }

            .footer-links {
                display: flex;
                gap: 20px;
            }

            .footer-links a {
                font-size: 13px;
                color: var(--p400);
                text-decoration: none;
                transition: color 0.2s;
            }

            .footer-links a:hover {
                color: #fff;
            }

            /* ================================
           RESPONSIVE
           ================================ */
            @media (max-width: 960px) {
                .hero-wrap {
                    grid-template-columns: 1fr;
                    gap: 52px;
                    padding: 60px 28px;
                }

                .hero-heading {
                    font-size: 50px;
                }

                .hero-visual {
                    order: -1;
                }

                .hero-photo {
                    aspect-ratio: 3 / 4;
                    width: 100%;
                }

                .hero-photo img {
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                    object-position: center 20%;
                }

                /* No mobile a foto ocupa a largura toda, então o offset
                   negativo do desktop (bottom:-22px; left:-28px) jogava o
                   card pra fora da tela — por isso tinha sido só escondido.
                   Reposiciona no canto inferior direito, dentro da área
                   visível, em vez de esconder a prova social do card. */
                .hero-float-card {
                    left: auto;
                    right: 16px;
                    bottom: -16px;
                    padding: 12px 16px;
                }

                .float-number {
                    font-size: 28px;
                }

                .about-wrap {
                    grid-template-columns: 1fr;
                    gap: 40px;
                }

                .about-photo {
                    aspect-ratio: 16 / 9;
                }

                .location-wrap {
                    grid-template-columns: 1fr;
                }

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

                .service-card {
                    grid-column: span 1 !important;
                }

                .steps-list {
                    grid-template-columns: 1fr;
                    gap: 24px;
                }

                .gallery-grid {
                    grid-template-columns: 1fr 1fr;
                    grid-template-rows: auto;
                }

                .g-item:nth-child(1) {
                    grid-column: span 2;
                    grid-row: span 1;
                }
                .g-item:nth-child(2) {
                    grid-column: span 1;
                    grid-row: span 1;
                }
                .g-item:nth-child(3) {
                    grid-column: span 1;
                    grid-row: span 1;
                }
                .g-item:nth-child(4) {
                    grid-column: span 1;
                    grid-row: span 1;
                }
                .g-item:nth-child(5) {
                    grid-column: span 1;
                    grid-row: span 1;
                }

                .g-item {
                    min-height: 220px;
                }

                nav {
                    display: none;
                }

                .hamburger {
                    display: flex;
                }
            }

            @media (max-width: 600px) {
                .section {
                    padding: 72px 20px;
                }

                .section-title {
                    font-size: 36px;
                }

                .hero-heading {
                    font-size: 40px;
                }

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

                .service-card {
                    grid-column: span 1 !important;
                }

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

                .g-item:nth-child(1) {
                    grid-column: span 1;
                }
                .g-item:nth-child(2) {
                    grid-column: span 1;
                }

                .cta-heading {
                    font-size: 38px;
                }

                .about-stats {
                    gap: 24px;
                }

                .stat-number {
                    font-size: 38px;
                }

                .footer-wrap {
                    flex-direction: column;
                    align-items: flex-start;
                    gap: 12px;
                }

                /* Issue #105 — nada aqui reduzia o tamanho da logo em telas
                   estreitas; "Centro de Estética Cissa" em 23px, somado ao
                   padding de 28px do .nav-wrap e à largura do hamburger,
                   não cabia numa linha só e quebrava/estourava a altura fixa
                   do header (68px) em vez de se encaixar no canto. */
                .nav-wrap {
                    padding: 0 16px;
                }
                .logo-name {
                    font-size: 17px;
                }
                .logo-tagline {
                    font-size: 8px;
                    letter-spacing: 0.08em;
                }
            }

            @media (max-width: 380px) {
                /* Em telas muito estreitas, até a versão reduzida acima
                   aperta contra o hamburger — some com a tagline e mantém
                   só o nome, que é o que precisa caber no canto. */
                .logo-tagline {
                    display: none;
                }
            }

            /* Reserva altura mínima pro bloco de avaliações do Google (busca
               própria via fetch first-party a /api/reviews, ver
               carregarAvaliacoesGoogle() em Agenda/script.js — sem widget de
               terceiro desde a issue #161) — evita que o conteúdo abaixo
               (Localização, CTA, Footer) salte de posição quando os cards
               finalmente aparecem. */
            #reviews-widget {
                min-height: 420px;
            }
            @media (max-width: 720px) {
                #reviews-widget {
                    min-height: 640px;
                }
            }
            /* Indicador de carregamento — só aparece enquanto o container ainda
               não recebeu nenhum conteúdo do fetch (:empty deixa de bater assim
               que o primeiro elemento é injetado, sem precisar de JS). Se o
               fetch falhar/vier vazio, carregarAvaliacoesGoogle() troca o texto
               pra "Avaliações indisponíveis no momento" (ver script.js) — sem
               isso, ficaria escrito "Carregando..." parado pra sempre. */
            #reviews-widget:empty {
                display: flex;
                align-items: center;
                justify-content: center;
            }
            #reviews-widget:empty::before {
                content: "Carregando avaliações...";
                color: var(--text-600);
                font-family: "DM Sans", sans-serif;
                font-size: 14px;
                /* Iterações finitas (~8s) em vez de infinito — se a busca
                   demorar muito ou travar, o texto fica estático e discreto,
                   sem pulsar pra sempre passando a impressão de "ainda
                   carregando". O link real do Google logo abaixo (sempre
                   visível) cobre esse caso. */
                animation: reviews-pulse 1.4s ease-in-out 6;
            }
            @keyframes reviews-pulse {
                0%, 100% { opacity: .4; }
                50%      { opacity: 1; }
            }

            /* Avaliações do Google — renderizadas por carregarAvaliacoesGoogle()
               em Agenda/script.js a partir do cache próprio (Places API), sem
               widget de terceiro (issue #161). #reviews-widget começa sem a
               classe .reviews-loaded (cards a 0 de opacidade) e ganha ela via
               requestAnimationFrame logo depois do innerHTML ser preenchido —
               dá um fade-in leve em vez do conteúdo "estourar" de uma vez. */
            .reviews-summary {
                display: flex;
                align-items: center;
                justify-content: center;
                gap: 10px;
                flex-wrap: wrap;
                margin-bottom: 36px;
            }
            .reviews-google-g {
                display: block;
            }
            .reviews-rating {
                font-family: "DM Serif Display", serif;
                font-weight: 600;
                color: var(--text-900);
                font-size: 26px;
                line-height: 1;
            }
            .reviews-stars {
                color: #f2b632;
                font-size: 19px;
                letter-spacing: 1px;
            }
            .reviews-total {
                color: var(--text-600);
                font-size: 14px;
            }
            .reviews-grid {
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
                gap: 22px;
            }
            .review-card {
                position: relative;
                background: var(--bg-white);
                border: 1px solid var(--border-soft);
                border-radius: 14px;
                padding: 24px 22px 20px;
                box-shadow: 0 10px 30px rgba(140, 107, 79, 0.08);
                opacity: 0;
                transform: translateY(16px);
                transition: opacity 0.6s cubic-bezier(.22,.61,.36,1), transform 0.6s cubic-bezier(.22,.61,.36,1), box-shadow 0.25s ease;
                transition-delay: var(--card-delay, 0s);
            }
            #reviews-widget.reviews-loaded .review-card {
                opacity: 1;
                transform: translateY(0);
            }
            .review-card:hover {
                box-shadow: 0 20px 40px rgba(61, 43, 31, 0.13);
            }
            .review-quote {
                position: absolute;
                top: 6px;
                right: 18px;
                font-family: "DM Serif Display", serif;
                font-size: 56px;
                line-height: 1;
                color: var(--p200);
                pointer-events: none;
                user-select: none;
            }
            .review-head {
                display: flex;
                align-items: center;
                gap: 12px;
                margin-bottom: 14px;
            }
            .review-avatar {
                width: 44px;
                height: 44px;
                border-radius: 50%;
                object-fit: cover;
                flex-shrink: 0;
                border: 2px solid var(--bg-off);
            }
            .review-avatar-fallback {
                width: 44px;
                height: 44px;
                display: flex;
                align-items: center;
                justify-content: center;
                background: var(--p700);
                color: #fff;
                font-weight: 700;
                font-size: 16px;
            }
            .review-autor {
                font-weight: 600;
                color: var(--text-900);
                font-size: 14px;
                margin-bottom: 2px;
            }
            .review-card .review-stars {
                font-size: 13px;
            }
            .review-texto {
                color: var(--text-600);
                font-size: 14px;
                line-height: 1.6;
                margin-bottom: 10px;
                display: -webkit-box;
                -webkit-line-clamp: 5;
                -webkit-box-orient: vertical;
                overflow: hidden;
            }
            .review-tempo {
                color: var(--text-400);
                font-size: 12px;
            }

            /* ================================
               EFEITOS CRIATIVOS
               (inspirados no reactbits.dev — reimplementados em CSS/JS puro,
               já que o site não usa React)
               ================================ */

            /* Aurora — glow suave e lento atrás do conteúdo do hero */
            #inicio {
                position: relative;
                overflow: hidden;
            }
            /* Pausada via JS (classe .offscreen) quando o hero sai da tela —
               é um blur() caro pra ficar rodando pra sempre em segundo plano,
               principalmente em celulares mais fracos. */
            #inicio.offscreen .hero-aurora,
            #inicio.offscreen .hero-heading em.shine-text {
                animation-play-state: paused;
            }
            .hero-aurora {
                position: absolute;
                inset: -20% -10%;
                z-index: 0;
                pointer-events: none;
                background:
                    radial-gradient(38% 45% at 20% 25%, rgba(140, 107, 79, 0.18), transparent 70%),
                    radial-gradient(32% 40% at 85% 20%, rgba(200, 192, 183, 0.32), transparent 70%),
                    radial-gradient(45% 50% at 60% 88%, rgba(157, 122, 94, 0.16), transparent 70%);
                filter: blur(40px);
                animation: auroraDrift 22s ease-in-out infinite alternate;
            }
            @keyframes auroraDrift {
                0%   { transform: translate3d(0, 0, 0) scale(1); }
                50%  { transform: translate3d(-2%, 2%, 0) scale(1.08); }
                100% { transform: translate3d(2%, -2%, 0) scale(1); }
            }
            .hero-wrap {
                position: relative;
                z-index: 1;
            }

            /* Texto com brilho — destaque no título do hero */
            .hero-heading em.shine-text {
                background: linear-gradient(100deg, var(--p700) 40%, #e7d3b8 50%, var(--p700) 60%);
                background-size: 220% 100%;
                -webkit-background-clip: text;
                background-clip: text;
                color: transparent;
                animation: shineSweep 5s ease-in-out infinite;
            }
            @keyframes shineSweep {
                0%, 100% { background-position: 200% 0; }
                50%      { background-position: 0% 0; }
            }

            /* Revelar ao rolar — classe alternada via IntersectionObserver no JS.
               Usa --reveal-ty (em vez de "transform" direto) porque alguns
               elementos também têm [data-tilt], que define seu próprio
               "transform" — a variável deixa os dois efeitos comporem juntos
               em vez de um sobrescrever o outro. */
            [data-reveal] {
                --reveal-ty: 24px;
                opacity: 0;
                transform: translateY(var(--reveal-ty));
                transition:
                    opacity 0.7s cubic-bezier(.22,.61,.36,1),
                    transform 0.7s cubic-bezier(.22,.61,.36,1);
                transition-delay: var(--reveal-delay, 0s);
            }
            [data-reveal].is-visible {
                --reveal-ty: 0px;
                opacity: 1;
            }
            .service-card:nth-child(1) { --reveal-delay: 0s; }
            .service-card:nth-child(2) { --reveal-delay: .08s; }
            .service-card:nth-child(3) { --reveal-delay: .16s; }
            .service-card:nth-child(4) { --reveal-delay: .24s; }
            .service-card:nth-child(5) { --reveal-delay: .32s; }
            .g-item:nth-child(1) { --reveal-delay: 0s; }
            .g-item:nth-child(2) { --reveal-delay: .08s; }
            .g-item:nth-child(3) { --reveal-delay: .16s; }
            .g-item:nth-child(4) { --reveal-delay: .24s; }
            .g-item:nth-child(5) { --reveal-delay: .32s; }

            /* Cards com leve inclinação 3D + brilho seguindo o cursor (mouse).
               Inclui --reveal-ty na composição para não conflitar com
               [data-reveal] quando os dois atributos estão no mesmo elemento
               (ex.: .service-card, .about-photo). */
            [data-tilt] {
                --rotx: 0deg;
                --roty: 0deg;
                position: relative;
                transform: translateY(var(--reveal-ty, 0px)) perspective(700px) rotateX(var(--rotx)) rotateY(var(--roty));
                transition: transform 0.25s ease, box-shadow 0.25s ease;
                will-change: transform;
            }
            /* [data-tilt] sem [data-reveal] próprio (ex.: .hero-photo, dentro de
               .hero-visual[data-reveal]) não deve herdar --reveal-ty do pai —
               senão anima duas vezes com timings diferentes (solavanco). */
            [data-tilt]:not([data-reveal]) {
                --reveal-ty: 0px;
            }
            [data-tilt]::after {
                content: "";
                position: absolute;
                inset: 0;
                border-radius: inherit;
                background: radial-gradient(220px circle at var(--mx, 50%) var(--my, 50%), rgba(140, 107, 79, 0.16), transparent 60%);
                opacity: 0;
                transition: opacity 0.3s ease;
                pointer-events: none;
            }
            [data-tilt]:hover::after {
                opacity: 1;
            }
            .service-card[data-tilt]:hover {
                box-shadow: 0 22px 44px rgba(61, 43, 31, 0.14);
            }

            [data-count] {
                font-variant-numeric: tabular-nums;
            }

            /* Sublinhado animado no menu — discreto, cresce a partir da esquerda */
            nav ul li a:not(.nav-cta) {
                position: relative;
            }
            nav ul li a:not(.nav-cta)::after {
                content: "";
                position: absolute;
                left: 0;
                bottom: -4px;
                width: 0;
                height: 1.5px;
                background: var(--p700);
                transition: width 0.25s ease;
            }
            nav ul li a:not(.nav-cta):hover::after {
                width: 100%;
            }

            /* Pulso suave no botão de chat — chama atenção sem ser agressivo.
               z-index:-1 garante que o anel fique atrás do ícone, não por
               cima — sem isso, o pseudo-elemento posicionado pintava depois do
               conteúdo normal do botão e tampava o ícone durante a animação. */
            .chat-toggle::before {
                content: "";
                position: absolute;
                inset: 0;
                border-radius: 50%;
                background: var(--p700);
                animation: pulseRing 2.4s ease-out infinite;
                pointer-events: none;
                z-index: -1;
            }
            @keyframes pulseRing {
                0%   { transform: scale(1);    opacity: 0.55; }
                100% { transform: scale(1.9);  opacity: 0; }
            }

            /* Zoom suave nas fotos da galeria ao passar o mouse */
            .g-item img {
                transition: transform 0.6s cubic-bezier(.22,.61,.36,1);
            }
            .g-item:hover img {
                transform: scale(1.08);
            }

            /* Foto do hero levemente ampliada — dá espaço pro parallax (JS)
               deslocar a imagem sem revelar borda vazia */
            .hero-photo img {
                transform: scale(1.05);
                will-change: transform;
            }

            @media (prefers-reduced-motion: reduce) {
                .hero-aurora,
                .hero-heading em.shine-text,
                .chat-toggle::before,
                #reviews-widget:empty::before {
                    animation: none;
                }
                [data-reveal] {
                    opacity: 1;
                    transform: none;
                    transition: none;
                }
                [data-tilt] {
                    transform: none;
                    transition: none;
                }
                .btn {
                    transition:
                        background 0.2s,
                        border-color 0.2s,
                        color 0.2s;
                    transform: none;
                }
            }

            /* ================================
           PÁGINAS DE SERVIÇO (SEO) — issue #281/#4
           Reaproveita .section/.service-card/.faq-item/.cta-inner já
           definidos acima; só o necessário pro layout de página interna.
           ================================ */
            .svc-hero {
                padding-top: 168px;
                background: var(--bg-off);
            }

            .svc-breadcrumb {
                font-size: 13px;
                color: var(--text-600);
                margin-bottom: 24px;
            }

            .svc-breadcrumb a {
                color: var(--p700);
                text-decoration: none;
            }

            .svc-breadcrumb a:hover {
                text-decoration: underline;
            }

            /* Grid de cards sem o layout fixo de 5 itens da home
               (.service-card:nth-child(4)/(5) do #servicos) */
            .svc-grid {
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
                gap: 16px;
            }

            .svc-grid .service-card,
            .svc-grid .service-card:nth-child(4),
            .svc-grid .service-card:nth-child(5) {
                grid-column: span 1;
            }

            .svc-link-card {
                display: block;
                text-decoration: none;
                transition: border-color 0.2s, transform 0.2s;
            }

            .svc-link-card:hover {
                border-color: var(--p300);
                transform: translateY(-3px);
            }

            .svc-final-cta {
                background: var(--p900);
                padding: 96px 28px;
            }

            @media (max-width: 600px) {
                .svc-hero {
                    padding-top: 136px;
                }
            }

            @media (hover: none) {
                /* Toque: sem tilt/spotlight nem magnetismo — só o conteúdo, sem "preso" em estado de hover */
                [data-tilt] {
                    transform: none;
                }
                [data-tilt]::after {
                    display: none;
                }
            }
