            /* ================================
           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;
            }

            /* Botão flutuante de WhatsApp */
            .whatsapp-float {
                position: fixed;
                bottom: 22px;
                right: 22px;
                width: 58px;
                height: 58px;
                background: #22c55e;
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
                z-index: 90;
                transition: transform 0.2s, background 0.2s;
            }

            .whatsapp-float:hover {
                background: #16a34a;
                transform: scale(1.06);
            }

            @media (max-width: 600px) {
                .whatsapp-float {
                    width: 50px;
                    height: 50px;
                    bottom: 16px;
                    right: 16px;
                }
            }

            .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;
            }

            /* ================================
           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;
            }

            /* ================================
           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;
            }

            /* 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;
            }

            /* ================================
           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: 10px 0;
                border-bottom: 1px solid var(--border-soft);
                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-600);
            }

            .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;
                }

                .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;
                }
            }

            /* Reserva altura mínima pro widget de avaliações do Google (script de
               terceiro que pode demorar pra carregar) — evita que o conteúdo
               abaixo (Localização, CTA, Footer) salte de posição quando o
               widget finalmente aparece. */
            #reviews-widget {
                min-height: 420px;
            }
            @media (max-width: 720px) {
                #reviews-widget {
                    min-height: 640px;
                }
            }
            /* Indicador de carregamento — só aparece enquanto o widget ainda não
               recebeu nenhum conteúdo do script de terceiro (:empty deixa de
               bater assim que o primeiro elemento é injetado, sem precisar de JS). */
            #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: var(--font-sans);
                font-size: 14px;
                /* Iterações finitas (~8s) em vez de infinito — se o widget de
                   terceiro nunca carregar (bloqueado por ad-blocker, etc.), 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; }
            }

            /* ================================
               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 WhatsApp — chama atenção sem ser agressivo.
               z-index:-1 garante que o anel fique atrás do ícone (SVG), 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. */
            .whatsapp-float::before {
                content: "";
                position: absolute;
                inset: 0;
                border-radius: 50%;
                background: #22c55e;
                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,
                .whatsapp-float::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;
                }
            }

            @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;
                }
            }
