:root {

            --brand-purple: #6F3A80;
            --brand-purple-light: #8E4EA3;
            --brand-teal: #00d1d1;
            --brand-dark-teal: #006D6B;
            --brand-gold: #F5B945;

            --teal-texto: #05706E;

            --gold-claro: #FFD98A;

            --main-bg: #e9e9e9b6;
            --paper: #FFFFFF;
            --line: rgba(111, 58, 128, 0.1);

            --wa: #16805A;
            --wa-dark: #10684A;

            --wa-texto: #0F6B49;
            --radius: 24px;

            --sombra-1: 0 1px 2px rgba(78, 42, 92, 0.06), 0 3px 8px rgba(78, 42, 92, 0.05);
            --sombra-2: 0 2px 4px rgba(78, 42, 92, 0.06), 0 10px 24px -6px rgba(78, 42, 92, 0.10);
            --sombra-3: 0 4px 8px rgba(78, 42, 92, 0.07), 0 22px 44px -12px rgba(78, 42, 92, 0.18);

            --transicao: 220ms cubic-bezier(0.22, 1, 0.36, 1);
        }

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

        html {
            scroll-behavior: smooth;
            overflow-x: hidden;
        }

        body {
            background-color: var(--main-bg);
            background-image: radial-gradient(circle at 0% 10%, rgba(0, 201, 200, 0.08) 0%, transparent 40%), radial-gradient(circle at 100% 40%, rgba(111, 58, 128, 0.08) 0%, transparent 50%), radial-gradient(circle at 20% 90%, rgba(245, 185, 69, 0.06) 0%, transparent 40%);
            background-attachment: fixed;
            color: var(--brand-dark-teal);
            font-family: 'Work Sans', sans-serif;
            line-height: 1.55;
            -webkit-font-smoothing: antialiased;
            position: relative;
            overflow-x: hidden;
        }

        body::before {
            content: "";
            position: fixed;
            inset: 0;
            z-index: -1;
            pointer-events: none;
            background-image: url("data:image/svg+xml,%3Csvg width='260' height='260' viewBox='0 0 260 260' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3Cg id='p'%3E%3Cpath d='M32 33c-4.2 0-8 3.8-11.7 9.1-3.7 5.3-6.8 9.9-6.2 13.4.6 4.2 5 6.2 10.5 6.2 2.6 0 5-.4 7.4-.4s4.8.4 7.4.4c5.5 0 9.9-2 10.5-6.2.6-3.5-2.5-8.1-6.2-13.4C40 36.8 36.2 33 32 33z'/%3E%3Cellipse cx='12.9' cy='29.6' rx='6.6' ry='8.1' transform='rotate(-26 12.9 29.6)'/%3E%3Cellipse cx='25.1' cy='20.4' rx='6.7' ry='9' transform='rotate(-8 25.1 20.4)'/%3E%3Cellipse cx='38.9' cy='20.4' rx='6.7' ry='9' transform='rotate(8 38.9 20.4)'/%3E%3Cellipse cx='51.1' cy='29.6' rx='6.6' ry='8.1' transform='rotate(26 51.1 29.6)'/%3E%3C/g%3E%3C/defs%3E%3Cuse href='%23p' fill='%236F3A80' fill-opacity='0.055' transform='translate(10,20) rotate(-12) scale(0.85)'/%3E%3Cuse href='%23p' fill='%2300C9C8' fill-opacity='0.055' transform='translate(150,6) rotate(38) scale(0.62)'/%3E%3Cuse href='%23p' fill='%23F5B945' fill-opacity='0.045' transform='translate(205,92) rotate(-55) scale(0.95)'/%3E%3Cuse href='%23p' fill='%2300C9C8' fill-opacity='0.05' transform='translate(50,138) rotate(95) scale(0.6)'/%3E%3Cuse href='%23p' fill='%236F3A80' fill-opacity='0.055' transform='translate(172,188) rotate(-30) scale(0.8)'/%3E%3Cuse href='%23p' fill='%2300C9C8' fill-opacity='0.045' transform='translate(16,202) rotate(160) scale(0.7)'/%3E%3Cuse href='%23p' fill='%236F3A80' fill-opacity='0.04' transform='translate(110,225) rotate(60) scale(0.5)'/%3E%3C/svg%3E");
            background-size: 260px;
        }

        img {
            max-width: 100%;

            height: auto;
            display: block;
            user-select: none;
            -webkit-user-drag: none;
            -webkit-touch-callout: none;
        }

        .paw-trail {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            pointer-events: none;
            overflow: hidden;
        }

        .paw-print {
            position: absolute;
            width: 42px;
            height: 42px;
            color: var(--brand-purple);
            opacity: 0.05;
            transform: scale(0.8);
            transition: opacity .6s ease, transform .6s ease, filter .6s ease;
            will-change: opacity, transform;
        }

        .paw-print svg {
            width: 100%;
            height: 100%;
            display: block;
            fill: currentColor;
        }

        .paw-print.teal {
            color: var(--brand-teal);
        }

        .paw-print.gold {
            color: var(--brand-gold);
        }

        .paw-print.lit {
            opacity: 0.85;
            transform: scale(1.2);
            filter: drop-shadow(0 0 10px rgba(241, 221, 181, 0.6));
        }

        @media (max-width: 340px) {
            .paw-trail {
                display: none;
            }
        }

        @media (max-width: 900px) {
            .paw-print {
                width: 14px;
                height: 14px;
            }
        }

        @media (prefers-reduced-motion: reduce) {
            .paw-print {
                transition: none;
            }
        }

        a {
            color: inherit;
        }

        .wrap {
            max-width: 1080px;
            margin: 0 auto;
            padding: 0 24px;
            position: relative;
        }

        h1,
        h2,
        h3 {
            font-family: 'Fraunces', serif;
            font-weight: 600;
            letter-spacing: -0.01em;
            color: var(--brand-purple);
        }

        .eyebrow {
            font-family: 'IBM Plex Mono', monospace;
            font-size: 12.5px;
            letter-spacing: .14em;
            text-transform: uppercase;
            color: var(--teal-texto);
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(0, 201, 200, 0.1);
            padding: 6px 14px;
            border-radius: 999px;
        }

        .highlight {
            position: relative;
            display: inline-block;
            color: var(--brand-purple);
            z-index: 1;
        }

        .highlight::after {
            content: '';
            position: absolute;
            bottom: 6px;
            left: -2%;
            width: 104%;
            height: 14px;
            background: var(--brand-gold);
            opacity: 0.4;
            z-index: -1;
            border-radius: 4px;
            transform: rotate(-1deg);
        }

        .reveal {
            opacity: 0;
            transform: translateY(28px);
            transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
        }

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

        .reveal-left {
            opacity: 0;
            transform: translateX(-40px);
            transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
        }

        .reveal-left.in {
            opacity: 1;
            transform: translateX(0);
        }

        .reveal-right {
            opacity: 0;
            transform: translateX(40px);
            transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
        }

        .reveal-right.in {
            opacity: 1;
            transform: translateX(0);
        }

        .reveal-scale {
            opacity: 0;
            transform: scale(0.88);
            transition: opacity 0.7s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
        }

        .reveal-scale.in {
            opacity: 1;
            transform: scale(1);
        }

        @media (prefers-reduced-motion: reduce) {
            .reveal, .reveal-left, .reveal-right, .reveal-scale {
                opacity: 1;
                transform: none;
                transition: none;
            }
        }

        body::before {
            animation: drift 40s ease-in-out infinite alternate;
        }

        @keyframes drift {
            0% {
                transform: translate3d(0, 0, 0) rotate(0deg);
            }
            100% {
                transform: translate3d(-2%, 2%, 0) rotate(2deg);
            }
        }

        @media (prefers-reduced-motion: reduce) {
            body::before {
                animation: none;
            }
        }

        .highlight::after {
            transform-origin: left center;
            transform: scaleX(0) rotate(-1deg);
            transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) 0.15s;
        }

        .in .highlight::after,
        .highlight.in::after {
            transform: scaleX(1) rotate(-1deg);
        }

        header {
            position: sticky;
            top: 0;
            z-index: 50;
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(0, 201, 200, 0.2);
            box-shadow: 0 4px 20px rgba(111, 58, 128, 0.05);
        }

        .nav {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 14px 24px;
        }

        .brand {
            display: flex;
            align-items: center;
            gap: 12px;
            font-family: 'Fraunces', serif;
            font-weight: 600;
            font-size: 19px;
            color: var(--brand-purple);
            text-decoration: none;
        }

        .brand .mark {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .brand .mark img {
            height: 100%;
            width: auto;
            border-radius: 50%;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        }

        .nav-links {
            display: flex;
            gap: 28px;
            align-items: center;
            font-size: 15px;
            font-weight: 500;
            list-style: none;
            color: var(--brand-dark-teal);
        }

        .nav-links a {
            text-decoration: none;
            opacity: .8;
            transition: all .2s;
        }

        .nav-links a:hover {
            opacity: 1;
            color: var(--brand-purple);
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 9px;
            font-family: 'Work Sans', sans-serif;
            font-weight: 600;
            font-size: 15px;
            padding: 12px 22px;
            border-radius: 999px;
            text-decoration: none;
            border: none;
            cursor: pointer;
            transition: all .2s cubic-bezier(0.2, 0.8, 0.2, 1);
        }

        .btn:hover {
            transform: translateY(-2px) scale(1.02);
        }

        .btn:active {
            transform: scale(0.95);
        }

        .service-card:active,
        .skill-card:active,
        .review-card:active,
        .loc-card:active,
        .carousel-item:active,
        .social-btn:active {
            transform: scale(0.96);
        }

        .insta-grid a:active img {
            transform: scale(1.1);
        }

        .fab:active {
            transform: scale(0.92);
        }

        .btn-wa {
            background: var(--wa);
            color: #fff;
            box-shadow: 0 8px 20px -6px rgba(22, 128, 90, .45);
        }

        .btn-wa:hover {
            background: var(--wa-dark);
            box-shadow: 0 10px 24px -6px rgba(22, 128, 90, .6);
        }

        .btn-wa svg {
            width: 18px;
            height: 18px;
        }

        .hero {
            padding: 64px 0 80px;
            position: relative;
        }

        .hero .wrap {
            display: grid;
            grid-template-columns: 1.1fr .9fr;
            gap: 56px;
            align-items: center;
        }

        .rating-pill {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--paper);
            border: none;
            box-shadow: 0 6px 16px rgba(111, 58, 128, 0.06);
            border-radius: 999px;
            padding: 7px 16px 7px 10px;
            font-size: 13.5px;
            font-weight: 600;
            margin-bottom: 22px;
        }

        .rating-pill .stars {
            color: var(--brand-gold);
            font-size: 14px;
            letter-spacing: 1px;
        }

        .hero h1 {
            font-size: clamp(36px, 4.6vw, 56px);
            line-height: 1.08;
            margin-bottom: 20px;
        }

        .hero p.lede {
            font-size: 17.5px;
            color: var(--brand-dark-teal);
            max-width: 46ch;
            margin-bottom: 34px;
        }

        .hero .cta-row {
            display: flex;
            gap: 14px;
            flex-wrap: wrap;
            align-items: center;
        }

        .btn-lg {
            padding: 16px 28px;
            font-size: 16px;
        }

        .btn-secondary {
            background: var(--brand-dark-teal);
            color: #FFFFFF;
            box-shadow: 0 8px 20px -6px rgba(0, 109, 107, .5);
        }

        .btn-secondary:hover {
            background: var(--brand-dark-teal);
        }

        .hero-card {
            position: relative;
            background: linear-gradient(135deg, var(--brand-purple) 0%, var(--brand-purple-light) 100%);
            border-radius: 32px;
            padding: 32px;
            color: #FFFFFF;
            aspect-ratio: 4/5;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            box-shadow: 0 24px 48px rgba(111, 58, 128, 0.25);
            border: 4px solid rgba(255, 255, 255, 0.4);
            transform-style: preserve-3d;
            will-change: transform;
            animation: float-card 6s ease-in-out infinite;
            transition: box-shadow .3s ease;
        }

        @keyframes float-card {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-10px) rotate(0.4deg); }
        }

        .hero-card .seal {
            animation: seal-spin 9s linear infinite;
        }

        @keyframes seal-spin {
            0% { transform: rotate(-8deg); }
            50% { transform: rotate(4deg); }
            100% { transform: rotate(-8deg); }
        }

        .rating-pill .stars {
            display: inline-block;
            animation: twinkle 2.6s ease-in-out infinite;
        }

        @keyframes twinkle {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: .6; transform: scale(1.08); }
        }

        @media (prefers-reduced-motion: reduce) {
            .hero-card, .hero-card .seal, .rating-pill .stars {
                animation: none;
            }
        }

        .hero-card .paw-field {
            position: relative;
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 0;
        }

        .hero-photo {
            display: block;
            width: 85%;
        }

        .hero-photo img {
            width: 100%;
            aspect-ratio: 1/1;
            object-fit: contain;
            border-radius: 28px;
            box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
        }

        .hero-card .stamp-line {
            position: relative;
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            font-family: 'IBM Plex Mono', monospace;
            font-size: 11px;
            letter-spacing: .06em;
            line-height: 1.7;
            color: #FFFFFF;
            padding-top: 18px;
        }

        .hero-card .seal {
            width: 54px;
            height: 54px;
            border-radius: 50%;
            background: var(--brand-gold);
            color: var(--brand-purple);
            font-weight: bold;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'IBM Plex Mono', monospace;
            font-size: 9px;
            text-align: center;
            line-height: 1.15;
            flex-shrink: 0;
            transform: rotate(-8deg);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        }

        section {
            padding: 80px 0;
        }

        .section-head {
            max-width: 640px;
            margin-bottom: 48px;
        }

        .section-head h2 {
            font-size: clamp(28px, 3vw, 38px);
            margin-top: 16px;
        }

        .section-head p {
            color: var(--brand-dark-teal);
            margin-top: 12px;
            font-size: 16.5px;
            opacity: 0.85;
        }

        .about-card {
            background: var(--paper);
            border-radius: 32px;
            box-shadow: 0 16px 40px rgba(0, 201, 200, 0.1);
            display: grid;
            grid-template-columns: auto 1fr;
            gap: 0;
            overflow: hidden;
        }

        .about-side {

            background: linear-gradient(180deg, #00807D 0%, #00504E 100%);
            padding: 40px 32px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 16px;
            width: 240px;
            position: relative;
            color: #FFF;
        }

        .avatar-ring {
            width: 110px;
            height: 110px;
            border-radius: 50%;
            background: var(--paper);
            padding: 4px;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
        }

        .avatar-ring img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 50%;
        }

        .about-side .name {
            font-family: 'Fraunces', serif;
            font-weight: 600;
            font-size: 18px;
            text-align: center;
        }

        .about-side .role {
            font-family: 'IBM Plex Mono', monospace;
            font-size: 11px;
            letter-spacing: .08em;
            text-transform: uppercase;
            opacity: 0.9;
            text-align: center;
        }

        .about-body {
            padding: 44px 40px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .about-body p {
            font-size: 17px;
            color: var(--brand-dark-teal);
        }

        .about-body p+p {
            margin-top: 16px;
        }

        .skills-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }

        .skill-card {
            background: var(--paper);
            border-radius: var(--radius);
            padding: 30px 24px;
            box-shadow: 0 8px 24px rgba(111, 58, 128, 0.05);
            transition: all 0.3s ease;
            border-top: 4px solid transparent;
        }

        .skill-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 16px 32px rgba(111, 58, 128, 0.1);
            border-top: 4px solid var(--brand-gold);
        }

        .skill-icon {
            width: 54px;
            height: 54px;
            border-radius: 16px;
            background: linear-gradient(135deg, var(--brand-purple) 0%, var(--brand-purple-light) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 18px;
            transition: transform .3s ease;
        }

        .skill-card:nth-child(2) .skill-icon {
            background: linear-gradient(135deg, var(--brand-teal) 0%, var(--brand-dark-teal) 100%);
        }

        .skill-card:nth-child(3) .skill-icon {
            background: linear-gradient(135deg, #E1306C 0%, var(--brand-purple) 100%);
        }

        .skill-card:nth-child(4) .skill-icon {
            background: linear-gradient(135deg, var(--brand-gold) 0%, #E0973B 100%);
        }

        .skill-card:hover .skill-icon {
            transform: rotate(-6deg) scale(1.08);
        }

        .skill-icon svg {
            width: 26px;
            height: 26px;
            color: #FFFFFF;
        }

        .skill-card .tag {
            display: inline-block;
            font-family: 'IBM Plex Mono', monospace;
            font-size: 10.5px;
            letter-spacing: .06em;
            text-transform: uppercase;
            color: var(--teal-texto);
            background: rgba(0, 201, 200, 0.1);
            padding: 4px 10px;
            border-radius: 999px;
            margin-bottom: 10px;
        }

        .skill-card h3 {
            font-size: 17px;
            margin-bottom: 8px;
        }

        .skill-card p {
            font-size: 14px;
            color: var(--brand-dark-teal);
            opacity: 0.8;
        }

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

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

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

        .service-card {
            background: var(--paper);
            border: none;
            border-radius: var(--radius);
            padding: 32px 26px;
            position: relative;
            box-shadow: 0 8px 24px rgba(111, 58, 128, 0.05);
            transition: all 0.3s ease;
            border-bottom: 4px solid transparent;
        }

        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 16px 32px rgba(111, 58, 128, 0.1);
            border-bottom: 4px solid var(--brand-teal);
        }

        .service-card .num {
            background: rgba(0, 201, 200, 0.15);
            width: 44px;
            height: 44px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'IBM Plex Mono', monospace;
            font-size: 14px;
            font-weight: bold;
            color: var(--brand-dark-teal);
            margin-bottom: 18px;
        }

        .service-card h3 {
            font-size: 20px;
            margin-bottom: 10px;
        }

        .service-card p {
            font-size: 15px;
            color: var(--brand-dark-teal);
            opacity: 0.85;
        }

        .service-cta {
            background: linear-gradient(135deg, var(--brand-purple) 0%, var(--brand-purple-light) 100%);
            color: #FFFFFF;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: flex-start;
            gap: 12px;
            border-bottom: none !important;
        }

        .service-cta h3 {
            color: #FFFFFF;
        }

        .service-cta p {
            color: #FFFFFF;
            opacity: 1;
        }

        .carousel-wrapper {
            position: relative;
            width: 100%;
            padding: 10px 0;
        }

        .carousel-track {
            display: flex;
            gap: 20px;
            overflow-x: auto;
            scroll-behavior: auto;
            snap-type: none;
            scrollbar-width: none;
        }

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

        .carousel-item {
            flex: 0 0 calc(33.333% - 13.333px);
            snap-align: start;
            background: var(--paper);
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: 0 8px 24px rgba(111, 58, 128, 0.08);
            border: 3px solid #FFF;
            transition: transform 0.3s;
        }

        .carousel-item:hover {
            transform: scale(1.02);
        }

        .carousel-item img {
            width: 100%;
            aspect-ratio: 3/4;
            object-fit: cover;
            display: block;
        }

        .carousel-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: var(--paper);
            border: none;
            color: var(--brand-purple);
            width: 52px;
            height: 52px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.2s ease;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
            z-index: 10;
        }

        .carousel-arrow.left {
            left: -26px;
        }

        .carousel-arrow.right {
            right: -26px;
        }

        .carousel-arrow:hover {
            background: var(--brand-teal);
            color: #FFFFFF;
            transform: translateY(-50%) scale(1.1);
        }

        @media (max-width: 900px) {
            .carousel-item {
                flex: 0 0 calc(50% - 10px);
            }
            .carousel-arrow.left {
                left: 0;
            }
            .carousel-arrow.right {
                right: 0;
            }
        }

        @media (max-width: 640px) {
            .carousel-item {
                flex: 0 0 85%;
            }
            .carousel-arrow {
                display: none;
            }
            .carousel-wrapper {
                padding-bottom: 20px;
            }
        }

        .reviews-band {
            background: var(--brand-purple);
            position: relative;
        }

        .reviews-band .section-head p {
            color: #FFFFFF;
        }

        .reviews-band .section-head .eyebrow {
            background: rgba(245, 185, 69, 0.15);
            color: var(--gold-claro);
        }

        .reviews-band .section-head h2 {
            color: #FFFFFF;
        }

        .review-card {
            background: var(--paper);
            padding: 32px 28px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            gap: 16px;
            min-height: 230px;
            border: none;
            border-bottom: 5px solid var(--brand-teal);
        }

        .review-card:hover {
            border-bottom: 5px solid var(--brand-gold);
            transform: translateY(-5px);
        }

        .review-card .quote {
            font-family: 'Fraunces', serif;
            font-style: italic;
            font-size: 16.5px;
            line-height: 1.5;
            color: var(--brand-purple);
        }

        .review-card .who {
            display: flex;
            align-items: center;
            gap: 10px;
            font-family: 'IBM Plex Mono', monospace;
            font-size: 12px;
            color: var(--brand-dark-teal);
            font-weight: 500;
            padding-top: 16px;
            border-top: 1px solid rgba(0, 201, 200, 0.15);
        }

        .review-card .who .dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--brand-teal);
        }

        .reviews-band .carousel-arrow {
            background: var(--brand-purple-light);
            color: #FFFFFF;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        }

        .reviews-band .carousel-arrow:hover {
            background: var(--brand-gold);
            color: var(--brand-purple);
        }

        .insta-card {
            position: relative;
            background: linear-gradient(120deg, #A85F00 0%, #C21B5C 45%, #6F3A80 100%);
            border-radius: 32px;
            padding: 56px 44px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 32px;
            flex-wrap: wrap;
            overflow: hidden;
            box-shadow: 0 24px 48px rgba(111, 58, 128, 0.22);
        }

        .insta-card::before {
            content: "";
            position: absolute;
            inset: -40% -10%;
            background-image: radial-gradient(circle, rgba(255, 255, 255, 0.16) 0%, transparent 60%);
            background-size: 140px 140px;
            background-repeat: repeat;
            opacity: .6;
            animation: insta-shift 18s linear infinite;
            pointer-events: none;
        }

        @keyframes insta-shift {
            0% { transform: translate(0, 0); }
            100% { transform: translate(-140px, -140px); }
        }

        @media (prefers-reduced-motion: reduce) {
            .insta-card::before {
                animation: none;
            }
        }

        .insta-icon {
            width: 84px;
            height: 84px;
            border-radius: 50%;
            background: #FFFFFF;
            padding: 4px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
            transition: transform .3s ease;
        }

        .insta-card:hover .insta-icon {
            transform: rotate(-8deg) scale(1.08);
        }

        .insta-icon img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 50%;
        }

        .insta-content {
            position: relative;
            z-index: 1;
            display: flex;
            align-items: center;
            gap: 26px;
            flex: 1;
            min-width: 260px;
        }

        .insta-text h2 {
            color: #FFFFFF;
            font-size: clamp(24px, 3vw, 32px);
            margin-bottom: 8px;
        }

        .insta-text p {
            color: #FFFFFF;
            font-size: 15.5px;
            max-width: 42ch;
        }

        .insta-handle {
            font-family: 'IBM Plex Mono', monospace;
            font-size: 13px;
            color: #FFFFFF;
            margin-top: 8px;
            display: inline-block;
        }

        .btn-insta {
            position: relative;
            z-index: 1;
            background: #FFFFFF;
            color: #6F3A80;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
            flex-shrink: 0;
        }

        .btn-insta:hover {
            background: var(--brand-gold);
            color: #FFFFFF;
        }

        @media (max-width: 640px) {
            .insta-card {
                padding: 40px 26px;
                justify-content: center;
                text-align: center;
            }
            .insta-content {
                flex-direction: column;
                text-align: center;
            }
        }

        .insta-stats {
            position: relative;
            z-index: 1;
            display: flex;
            gap: 22px;
            margin-top: 14px;
            flex-wrap: wrap;
        }

        .insta-stats .stat strong {
            display: block;
            font-family: 'Fraunces', serif;
            font-size: 20px;
            color: #FFFFFF;
        }

        .insta-stats .stat span {
            font-family: 'IBM Plex Mono', monospace;
            font-size: 11px;
            letter-spacing: .05em;
            text-transform: uppercase;
            color: #FFFFFF;
        }

        .insta-chips {
            position: relative;
            z-index: 1;
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-top: 16px;
        }

        .insta-chips span {
            font-size: 12.5px;
            font-weight: 500;
            color: #FFFFFF;
            background: rgba(24, 8, 32, 0.34);
            padding: 6px 12px;
            border-radius: 999px;
        }

        .insta-grid {
            position: relative;
            z-index: 1;
            width: 100%;
            flex-basis: 100%;
            margin-top: 8px;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 14px;
        }

        .insta-grid a {
            position: relative;
            display: block;
            border-radius: 14px;
            overflow: hidden;
            aspect-ratio: 1/1;
            box-shadow: 0 8px 20px rgba(111, 58, 128, 0.12);
        }

        .insta-grid img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform .4s ease;
        }

        .insta-grid a::after {
            content: "";
            position: absolute;
            inset: 0;
            background: rgba(111, 58, 128, 0.35);
            opacity: 0;
            transition: opacity .3s ease;
            display: flex;
        }

        .insta-grid a:hover img {
            transform: scale(1.08);
        }

        .insta-grid a:hover::after {
            opacity: 1;
        }

        .insta-grid a .heart {
            position: absolute;
            inset: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #FFFFFF;
            opacity: 0;
            transition: opacity .3s ease, transform .3s ease;
            transform: scale(0.6);
            z-index: 1;
        }

        .insta-grid a:hover .heart {
            opacity: 1;
            transform: scale(1);
        }

        .insta-grid a .heart svg {
            width: 26px;
            height: 26px;
        }

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

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

        @media (max-width: 640px) {
            .insta-stats {
                justify-content: center;
            }
            .insta-chips {
                justify-content: center;
            }
        }

        .loc-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px;
            align-items: start;
        }

        .loc-card {
            background: var(--paper);
            border: none;
            border-radius: var(--radius);
            padding: 34px;
            box-shadow: var(--sombra-2);
        }

        .loc-card address {
            font-style: normal;
        }

        .loc-card a {
            color: var(--brand-purple);
            font-weight: 600;
            text-underline-offset: 3px;
        }

        .loc-card h3 {
            font-size: 18px;
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .loc-card h3 svg {
            width: 22px;
            height: 22px;
            color: var(--brand-teal);
            flex-shrink: 0;
        }

        .loc-card p {
            font-size: 15.5px;
            color: var(--brand-dark-teal);
            margin-bottom: 6px;
            opacity: 0.9;
        }

        .loc-card .status {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin-top: 16px;
            font-family: 'IBM Plex Mono', monospace;
            font-size: 13px;
            font-weight: bold;
            color: var(--wa-texto);
            background: rgba(74, 201, 154, 0.15);
            padding: 8px 16px;
            border-radius: 999px;
        }

        .loc-card .status .blip {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--wa);
            animation: pulse 2s infinite;
        }

        .loc-card .status.closed {
            color: #B45309;
            background: rgba(245, 185, 69, 0.22);
        }

        .loc-card .status.closed .blip {
            background: #E0973B;
        }

        @keyframes pulse {
            0%,
            100% {
                opacity: 1;
            }
            50% {
                opacity: .35;
            }
        }

        .socials {
            display: flex;
            gap: 12px;
            margin-top: 20px;
        }

        .social-btn {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: rgba(0, 201, 200, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            transition: all .2s;
            color: var(--brand-purple);
        }

        .social-btn:hover {
            background: var(--brand-teal);
            color: #FFFFFF;
            transform: translateY(-3px);
        }

        .social-btn svg {
            width: 20px;
            height: 20px;
            color: inherit;
        }

        .map-card {
            position: relative;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: 0 16px 40px rgba(111, 58, 128, 0.12);
            border: 4px solid #FFFFFF;
        }

        .map-card iframe {
            display: block;
            width: 100%;
            height: 380px;
            border: 0;
        }

        .map-footer {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 14px;
            background: var(--paper);
            padding: 20px 26px;
        }

        .map-footer p {
            font-size: 14.5px;
            color: var(--brand-dark-teal);
            opacity: 0.85;
        }

        .map-footer strong {
            color: var(--brand-purple);
            font-family: 'Fraunces', serif;
        }

        @media (max-width: 640px) {
            .map-card iframe {
                height: 280px;
            }
            .map-footer {
                flex-direction: column;
                align-items: flex-start;
            }
        }

        .final-cta {

            background: linear-gradient(45deg, var(--brand-dark-teal) 0%, #00807D 100%);
            border-radius: 32px;
            padding: 60px 40px;
            text-align: center;
            position: relative;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 201, 200, 0.2);
        }

        .final-cta h2 {
            color: #FFFFFF;
            font-size: clamp(26px, 3.4vw, 36px);
            margin-bottom: 14px;
        }

        .final-cta p {
            color: #FFFFFF;
            max-width: 44ch;
            margin: 0 auto 32px;
            font-size: 17px;
        }

        .btn-dark {
            background: var(--brand-purple);
            color: #FFFFFF;
            box-shadow: 0 8px 20px rgba(111, 58, 128, 0.4);
        }

        .btn-dark:hover {
            background: var(--brand-purple-light);
        }

        footer {
            padding: 44px 0 120px;
            text-align: center;
        }

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

        footer p {
            font-size: 13.5px;
            color: var(--brand-dark-teal);
            font-weight: 500;
            opacity: 0.85;
        }

        footer .small-paw {
            width: 25px;
            height: 25px;
            color: var(--brand-teal);
            flex-shrink: 0;
        }

        .rodape-negocio {
            line-height: 1.7;
        }

        .rodape-base {
            width: 100%;
            margin-top: 10px;
            padding-top: 18px;
            border-top: 1px solid var(--line);
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            font-size: 12.5px;
        }

        .rodape-base > p {
            font-size: 12.5px;
            opacity: 0.7;
        }

        .rodape-credito {
            display: inline-flex;
            align-items: center;
            gap: 9px;
            text-decoration: none;
            color: var(--brand-dark-teal);
            letter-spacing: 0.03em;
            opacity: 0.82;
            transition: opacity var(--transicao);
        }

        .rodape-credito img {
            width: 24px;
            height: auto;
            flex-shrink: 0;
        }

        .rodape-credito strong {
            color: var(--brand-purple);
            font-weight: 700;
            letter-spacing: 0.06em;
        }

        .rodape-credito:hover {
            opacity: 1;
        }

        .rodape-credito:hover strong {
            color: var(--brand-purple-light);
        }

        @media (max-width: 640px) {
            .rodape-base {
                justify-content: center;
                text-align: center;
            }
        }

        .fab {
            position: fixed;
            right: 26px;
            bottom: 26px;
            z-index: 60;
            width: 64px;
            height: 64px;
            border-radius: 50%;
            background: var(--wa);
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            box-shadow: 0 12px 28px -6px rgba(22, 128, 90, .45);
            transition: transform .2s ease;
        }

        .fab:hover {
            transform: scale(1.08);
            background: var(--wa-dark);
        }

        .fab svg {
            width: 32px;
            height: 32px;
        }

        .fab::before {
            content: "";
            position: absolute;
            inset: -6px;
            border-radius: 50%;
            border: 2px solid var(--wa);
            opacity: .5;
            animation: ring 2.2s infinite;
        }

        @keyframes ring {
            0% {
                transform: scale(.9);
                opacity: .6;
            }
            70% {
                transform: scale(1.4);
                opacity: 0;
            }
            100% {
                opacity: 0;
            }
        }

        @media (prefers-reduced-motion: reduce) {
            .fab::before {
                animation: none;
                display: none;
            }
        }

        @media (max-width: 900px) {
            .hero .wrap {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            .hero-card {
                aspect-ratio: auto;
                min-height: 0;
                max-width: 400px;
                margin: 0 auto;
            }
            .hero-card .paw-field {
                flex: none;
                padding: 8px 0;
            }
            .hero-photo {
                width: 88%;
                max-width: 320px;
            }
            .hero-card .stamp-line {
                flex-shrink: 0;
            }
            .services-grid {
                grid-template-columns: 1fr 1fr;
            }
            .loc-grid {
                grid-template-columns: 1fr;
            }
            .about-card {
                grid-template-columns: 1fr;
            }
            .about-side {
                width: 100%;
                flex-direction: row;
                border-right: none;
                padding: 26px;
            }
            .avatar-ring {
                width: 70px;
                height: 70px;
            }
            .about-side .name {
                font-size: 16px;
                text-align: left;
            }
            .about-side .role {
                text-align: left;
            }
        }

        @media (max-width: 640px) {
            .nav-links {
                display: none;
            }
            .services-grid {
                grid-template-columns: 1fr;
            }
            .final-cta {
                padding: 40px 22px;
            }
        }

        :where(a, button, summary, [tabindex]):focus-visible {
            outline: 3px solid var(--brand-purple);
            outline-offset: 3px;
            border-radius: 6px;
        }

        .reviews-band :where(a, button, summary):focus-visible,
        .hero-card :where(a, button):focus-visible,
        .final-cta :where(a, button):focus-visible {
            outline-color: var(--brand-gold);
        }

        .pular-para-conteudo {
            position: absolute;
            left: 12px;
            top: -100px;
            z-index: 200;
            background: var(--brand-purple);
            color: #fff;
            padding: 12px 20px;
            border-radius: 0 0 12px 12px;
            font-weight: 600;
            text-decoration: none;
            transition: top var(--transicao);
        }

        .pular-para-conteudo:focus {
            top: 0;
        }

        .hero h1 {
            font-size: clamp(34px, 5.2vw, 58px);
            line-height: 1.06;
            letter-spacing: -0.02em;
            text-wrap: balance;
        }

        .hero p.lede {
            font-size: clamp(16px, 1.35vw, 18.5px);
            max-width: 52ch;
            line-height: 1.6;
        }

        .section-head h2 {
            font-size: clamp(27px, 3.4vw, 40px);
            line-height: 1.14;
            text-wrap: balance;
        }

        .section-head p {
            font-size: clamp(15.5px, 1.25vw, 17px);
            max-width: 62ch;
        }

        .service-card h3,
        .skill-card h3 {
            font-size: clamp(17px, 1.5vw, 19.5px);
        }

        .lead-citavel {
            font-size: clamp(16px, 1.3vw, 17.5px);
            line-height: 1.65;
        }

        .about-body .lead-citavel {
            color: var(--brand-purple);
            font-weight: 500;
        }

        .hero-provas {
            list-style: none;
            margin: 28px 0 0;
            padding: 0;
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .hero-provas li {
            font-size: 13px;
            line-height: 1.35;
            color: var(--brand-dark-teal);
            background: var(--paper);
            border-radius: 14px;
            padding: 10px 15px;
            box-shadow: var(--sombra-1);
            max-width: 212px;
        }

        .hero-provas strong {
            display: block;
            font-family: 'Fraunces', serif;
            font-size: 16px;
            color: var(--brand-purple);
            line-height: 1.2;
        }

        .estrelas {
            display: flex;
            gap: 3px;
            margin-bottom: 14px;
        }

        .estrelas svg {
            width: 17px;
            height: 17px;
            fill: var(--brand-gold);
            flex-shrink: 0;
        }

        .destaque-dourado {
            color: var(--brand-gold);
        }

        .review-card {
            margin: 0;
        }

        .review-card .quote {
            margin: 0;
            font-family: 'Fraunces', serif;

            font-style: normal;
            font-size: clamp(15.5px, 1.3vw, 17px);
            line-height: 1.5;
            color: var(--brand-purple);
        }

        .review-card .quote::before {
            content: "\201C";
        }

        .review-card .quote::after {
            content: "\201D";
        }

        .faq-lista {
            display: grid;
            gap: 12px;
            max-width: 820px;
        }

        .faq-item {
            background: var(--paper);
            border-radius: 18px;
            box-shadow: var(--sombra-1);
            border-left: 4px solid transparent;
            transition: box-shadow var(--transicao), border-color var(--transicao);
        }

        .faq-item[open] {
            box-shadow: var(--sombra-2);
            border-left-color: var(--brand-teal);
        }

        .faq-item summary {
            cursor: pointer;
            list-style: none;
            padding: 20px 56px 20px 24px;
            position: relative;
            display: block;
        }

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

        .faq-item summary h3 {
            display: inline;
            font-size: clamp(15.5px, 1.3vw, 17.5px);
            line-height: 1.45;
            font-weight: 600;
        }

        .faq-item summary::after {
            content: "";
            position: absolute;
            right: 24px;
            top: 50%;
            width: 11px;
            height: 11px;
            margin-top: -7px;
            border-right: 2.5px solid var(--brand-purple);
            border-bottom: 2.5px solid var(--brand-purple);
            transform: rotate(45deg);
            transform-origin: center;
            transition: transform var(--transicao);
        }

        .faq-item[open] summary::after {
            transform: rotate(-135deg);
            margin-top: -2px;
        }

        .faq-item > p {
            margin: 0;
            padding: 0 24px 22px;
            font-size: clamp(15px, 1.2vw, 16.5px);
            line-height: 1.65;
            color: var(--brand-dark-teal);
            max-width: 68ch;
        }

        .horarios {
            width: 100%;
            border-collapse: collapse;
            margin-top: 4px;
        }

        .horarios th,
        .horarios td {
            padding: 9px 0;
            text-align: left;
            border-bottom: 1px solid var(--line);
            color: var(--brand-dark-teal);
            font-size: 14.5px;
        }

        .horarios th {
            font-weight: 500;
        }

        .horarios td {
            text-align: right;
            font-family: 'IBM Plex Mono', monospace;
            font-size: 13px;
        }

        .horarios tr:last-child th,
        .horarios tr:last-child td {
            border-bottom: none;
        }

        .horarios tr.destaque th,
        .horarios tr.destaque td {
            color: var(--brand-purple);
            font-weight: 700;
        }

        .loc-card .nota {
            margin-top: 14px;
            font-size: 13.5px;
            line-height: 1.55;
            opacity: 0.85;
        }

        .service-card,
        .skill-card,
        .about-card,
        .carousel-item {
            box-shadow: var(--sombra-2);
            transition: transform var(--transicao), box-shadow var(--transicao);
        }

        .service-card:hover,
        .skill-card:hover,
        .carousel-item:hover {
            box-shadow: var(--sombra-3);
        }

        .map-card,
        .insta-card {
            box-shadow: var(--sombra-3);
        }

        @media (prefers-reduced-motion: reduce) {
            *,
            *::before,
            *::after {
                animation-duration: 0.001ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.001ms !important;
                scroll-behavior: auto !important;
            }
        }

        .icone-btn {
            width: 19px;
            height: 19px;
            flex-shrink: 0;
        }

        .espaco-topo-s {
            margin-top: 10px;
        }

        .espaco-topo-m {
            margin-top: 14px;
        }

        .service-card .espaco-topo-s.btn {
            margin-top: 8px;
        }

        .hero-card {
            padding: 26px 26px 22px;
            aspect-ratio: auto;
        }

        .hero-card .paw-field {
            padding: 4px 0 2px;
        }

        .hero-photo {
            width: 74%;
            max-width: 300px;
            margin: 0 auto;
        }

        .hero-photo img {
            border-radius: 22px;
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.26);
        }

        @media (max-width: 900px) {
            .hero-photo {
                width: 74%;
                max-width: 290px;
            }
        }

        .carousel-track {
            cursor: grab;
            scrollbar-width: none;
            -ms-overflow-style: none;
        }

        .carousel-track.arrastando {
            cursor: grabbing;
            scroll-behavior: auto;
            user-select: none;
        }

        .carousel-track.arrastando a {
            pointer-events: none;
        }

        .carousel-track:focus-visible {
            outline: 3px solid var(--brand-purple);
            outline-offset: 4px;
            border-radius: 8px;
        }

        .carousel-arrow {
            display: none !important;
        }

        .carousel-wrapper {
            position: relative;
            -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 34px, #000 calc(100% - 34px), transparent 100%);
            mask-image: linear-gradient(90deg, transparent 0, #000 34px, #000 calc(100% - 34px), transparent 100%);
        }

        @media (max-width: 640px) {
            .carousel-wrapper {
                -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 14px, #000 calc(100% - 14px), transparent 100%);
                mask-image: linear-gradient(90deg, transparent 0, #000 14px, #000 calc(100% - 14px), transparent 100%);
            }
        }

        .gallery-track .carousel-item {
            flex: 0 0 220px;
        }

        .gallery-track .carousel-item img {
            width: 100%;
            height: auto;
            aspect-ratio: 3 / 4;
            object-fit: cover;
        }

        @media (max-width: 640px) {
            .gallery-track .carousel-item {
                flex: 0 0 165px;
            }
        }

        .ver-mais {
            display: flex;
            justify-content: center;
            margin-top: 34px;
        }

        .reviews-band .ver-mais .btn {
            background: var(--brand-gold);
            color: #4E2A5C;
            font-weight: 700;
        }

        .reviews-band .ver-mais .btn:hover {
            background: var(--gold-claro);
        }

        .topo-interna {
            padding: 40px 0 8px;
        }

        .trilha {
            display: flex;
            align-items: center;
            gap: 9px;
            font-family: 'IBM Plex Mono', monospace;
            font-size: 12.5px;
            letter-spacing: .04em;
            color: var(--brand-dark-teal);
            margin-bottom: 22px;
        }

        .trilha a {
            color: var(--teal-texto);
            font-weight: 600;
        }

        .topo-interna h1 {
            font-size: clamp(30px, 4.2vw, 48px);
            line-height: 1.08;
            margin-top: 16px;
            text-wrap: balance;
        }

        .reviews-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(285px, 1fr));
            gap: 20px;
            align-items: start;
        }

        .reviews-grid .review-card {
            border-radius: var(--radius);
            min-height: 0;
        }

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

        .titulo-secao {
            font-family: 'Fraunces', serif;
            font-weight: 600;
            letter-spacing: -0.01em;
            color: var(--brand-purple);
            font-size: clamp(27px, 3.4vw, 40px);
            line-height: 1.14;
            margin-top: 16px;
            text-wrap: balance;
        }

        .faq-item summary h2 {
            display: inline;
            font-size: clamp(15.5px, 1.3vw, 17.5px);
            line-height: 1.45;
            font-weight: 600;
        }

        .loc-grid {
            align-items: stretch;
        }

        .loc-card {
            display: flex;
            flex-direction: column;
        }

        .loc-card .status,
        .loc-card .espaco-topo-m {
            margin-top: auto;
        }

        .loc-card .status {
            align-self: flex-start;
        }

        .horarios th,
        .horarios td {
            padding: 7px 0;
        }

        .loc-card .nota {
            margin-top: 12px;
            font-size: 13px;
        }

        @media (max-width: 900px) {

            .loc-card .status,
            .loc-card .espaco-topo-m {
                margin-top: 14px;
            }
        }

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

        .service-card {
            grid-column: span 2;
            padding: 26px 24px;
            box-shadow: var(--sombra-2);
            border-bottom: 4px solid transparent;
            transition: transform var(--transicao), box-shadow var(--transicao), border-color var(--transicao);
        }

        .services-grid .service-card:nth-child(1),
        .services-grid .service-card:nth-child(2),
        .services-grid .service-card:nth-child(6),
        .services-grid .service-card:nth-child(7) {
            grid-column: span 3;
        }

        .services-grid .service-cta {
            grid-column: 1 / -1;
        }

        .service-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--sombra-3);
            border-bottom-color: var(--brand-teal);
        }

        .service-card .num {
            width: 46px;
            height: 46px;
            border-radius: 14px;
            background: linear-gradient(135deg, var(--brand-dark-teal) 0%, #00807D 100%);
            color: #FFFFFF;
            font-family: 'Fraunces', serif;
            font-size: 17px;
            font-weight: 700;
            letter-spacing: 0;
            box-shadow: 0 6px 14px -4px rgba(0, 109, 107, .5);
            margin-bottom: 16px;
            transition: transform var(--transicao);
        }

        .service-card:hover .num {
            transform: rotate(-6deg) scale(1.06);
        }

        .services-grid .service-card:nth-child(1),
        .services-grid .service-card:nth-child(2) {
            background: linear-gradient(150deg, #FFFFFF 0%, #F2FBFB 100%);
            border: 1px solid rgba(0, 201, 200, .22);
            border-bottom: 4px solid rgba(0, 201, 200, .35);
        }

        .services-grid .service-card:nth-child(1) .num,
        .services-grid .service-card:nth-child(2) .num {
            background: linear-gradient(135deg, var(--brand-purple) 0%, var(--brand-purple-light) 100%);
            box-shadow: 0 6px 14px -4px rgba(111, 58, 128, .5);
        }

        .services-grid .service-card:nth-child(1) h3,
        .services-grid .service-card:nth-child(2) h3 {
            font-size: clamp(19px, 1.8vw, 22px);
        }

        .services-grid .service-cta {
            display: grid;
            grid-template-columns: 1fr auto;
            align-items: center;
            gap: 4px 30px;
            padding: 26px 30px;
        }

        .services-grid .service-cta h3 {
            grid-column: 1;
            margin: 0;
        }

        .services-grid .service-cta p {
            grid-column: 1;
            margin: 0;
            max-width: 62ch;
        }

        .services-grid .service-cta .btn {
            grid-column: 2;
            grid-row: 1 / 3;
            margin-top: 0;
            white-space: nowrap;
        }

        .services-grid .service-cta:hover {
            transform: none;
        }

        @media (max-width: 900px) {
            .services-grid {
                grid-template-columns: repeat(4, 1fr);
            }
            .services-grid .service-card,
            .services-grid .service-card:nth-child(1),
            .services-grid .service-card:nth-child(2),
            .services-grid .service-card:nth-child(6),
            .services-grid .service-card:nth-child(7) {
                grid-column: span 2;
            }
            .services-grid .service-cta {
                grid-column: 1 / -1;
            }
        }

        @media (max-width: 640px) {
            .services-grid {
                grid-template-columns: 1fr;
            }
            .services-grid .service-card,
            .services-grid .service-card:nth-child(1),
            .services-grid .service-card:nth-child(2),
            .services-grid .service-card:nth-child(6),
            .services-grid .service-card:nth-child(7),
            .services-grid .service-cta {
                grid-column: 1 / -1;
            }

            .services-grid .service-cta {
                grid-template-columns: 1fr;
                gap: 10px;
            }
            .services-grid .service-cta .btn {
                grid-column: 1;
                grid-row: auto;
                justify-self: start;
                margin-top: 6px;
            }
        }

        .map-card {
            margin-top: 26px;
        }

        .reviews-grid {
            display: block;
            columns: 3;
            column-gap: 20px;
        }

        .reviews-grid .review-card {
            break-inside: avoid;
            -webkit-column-break-inside: avoid;
            margin: 0 0 20px;
            display: block;
            border-radius: 20px;
            border-bottom: none;
            padding: 26px 24px;
            box-shadow: 0 10px 26px -10px rgba(30, 8, 40, .45);
        }

        .reviews-grid .review-card:hover {
            transform: none;
            border-bottom: none;
        }

        .reviews-grid .review-card .estrelas {
            margin-bottom: 12px;
        }

        .reviews-grid .review-card .quote {
            display: block;
            font-size: 16px;
            line-height: 1.55;
        }

        .reviews-grid .review-card .who {
            margin-top: 18px;
            padding-top: 14px;
            border-top: 1px solid rgba(111, 58, 128, .14);
        }

        @media (max-width: 900px) {
            .reviews-grid {
                columns: 2;
            }
        }

        @media (max-width: 640px) {
            .reviews-grid {
                columns: 1;
            }
        }

        section {
            padding: clamp(34px, 3.4vw, 44px) 0;
        }

        .section-head {
            margin-bottom: clamp(26px, 2.6vw, 34px);
        }

        .section-head h2 {
            margin-top: 12px;
        }

        .section-head p {
            margin-top: 10px;
        }

        .hero {
            padding-top: clamp(24px, 3vw, 40px);
            padding-bottom: clamp(38px, 4vw, 54px);
        }

        .reviews-band {
            padding: clamp(44px, 4.2vw, 56px) 0;
        }

        .topo-interna {
            padding: clamp(28px, 3vw, 40px) 0 clamp(8px, 1vw, 14px);
        }

        footer {
            padding: clamp(30px, 3vw, 40px) 0 88px;
        }
        .hero-card .paw-field {
            margin-bottom: 6px;
        }

        @media (max-width: 640px) {
            .hero-provas {
                gap: 8px;
                margin-top: 22px;
            }
            .hero-provas li {
                flex: 1 1 100%;
                max-width: none;
                display: flex;
                align-items: baseline;
                gap: 9px;
                padding: 11px 15px;
                border-radius: 12px;
                font-size: 13.5px;
            }
            .hero-provas strong {
                display: inline;
                flex-shrink: 0;
                font-size: 15px;
            }
        }

        @media (min-width: 641px) {
            .hero-provas li {
                flex: 1 1 150px;
                max-width: none;
            }
        }
        .hero-photo img {
            box-shadow: 0 5px 14px rgba(0, 0, 0, 0.2);
        }

        .hero-card .paw-field {
            margin-bottom: 26px;
        }

        .hero-provas {
            display: block;
            margin-top: 26px;
            background: var(--paper);
            border-radius: 16px;
            box-shadow: var(--sombra-1);
            overflow: hidden;
        }

        .hero-provas li {
            display: flex;
            align-items: baseline;
            gap: 10px;
            max-width: none;
            background: none;
            border-radius: 0;
            box-shadow: none;
            padding: 13px 18px;
            font-size: 13.5px;
            line-height: 1.4;
            border-top: 1px solid var(--line);
        }

        .hero-provas li:first-child {
            border-top: none;
        }

        .hero-provas strong {
            display: inline;
            flex-shrink: 0;
            font-size: 15px;
            min-width: 92px;
        }

        @media (min-width: 641px) {
            .hero-provas {
                display: flex;
            }
            .hero-provas li {
                flex: 1 1 0;
                flex-direction: column;
                align-items: flex-start;
                gap: 3px;
                border-top: none;
                border-left: 1px solid var(--line);
                padding: 15px 16px;
            }
            .hero-provas li:first-child {
                border-left: none;
            }
            .hero-provas strong {
                display: block;
                min-width: 0;
                font-size: 16px;
            }
        }
