/* --- WhatsApp: Mensagem fixa destacada --- */
.wa-bubble-fixa {
    display: none !important;
}
.wa-bubble-fixa .wa-bubble-title {
    font-family: 'Migra', serif;
    font-size: 1.32em;
    font-weight: 700;
    color: var(--beige);
    margin-bottom: 2px;
}
.wa-bubble-fixa .wa-bubble-sub {
    font-size: 1em;
    color: var(--beige);
    opacity: 0.85;
    margin-bottom: 10px;
}
.wa-bubble-fixa .wa-bubble-atalhos-grande {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 10px;
    margin-top: 8px;
}
.wa-bubble-fixa .wa-bubble-btn-grande {
    background: var(--beige);
    color: var(--rose);
    border: none;
    border-radius: 18px;
    font-family: 'Pathway Gothic One', sans-serif;
    font-size: 1.08em;
    padding: 14px 22px;
    cursor: pointer;
    font-weight: 600;
    box-shadow: 0 2px 12px rgba(90,135,140,0.10);
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    display: flex;
    align-items: center;
    gap: 10px;
}
.wa-bubble-fixa .wa-bubble-btn-grande:hover {
    background: var(--teal);
    color: var(--white);
    box-shadow: 0 6px 20px rgba(90,135,140,0.15);
}
.wa-bubble-fixa .wa-bubble-btn-grande i {
    color: var(--rose);
    font-size: 1.1em;
    width: 18px;
    text-align: center;
    transition: color 0.2s;
}
.wa-bubble-fixa .wa-bubble-btn-grande:hover i {
    color: var(--white);
}
@media (max-width: 768px) {
    .wa-bubble-fixa {
        left: 8px;
        right: auto;
        bottom: 12px;
        max-width: 98vw;
        padding: 18px 10px 18px 10px;
        font-size: 1.04rem;
        border-radius: 22px;
    }
}
/* WhatsApp — Mensagem fixa destacada */
.wa-bubble-destaque {
    background: linear-gradient(90deg, var(--rose) 60%, var(--teal) 100%);
    border: 3px solid var(--rose);
    box-shadow: 0 8px 32px rgba(140,39,66,0.18), 0 2px 16px rgba(90,135,140,0.10);
    padding: 32px 32px 28px 32px !important;
    min-width: 320px;
    max-width: 98vw;
    z-index: 1200;
    position: fixed;
    left: 50%;
    top: 18vh;
    transform: translate(-50%, 0);
    border-radius: 32px;
    display: flex !important;
    flex-direction: column;
    align-items: center;
    animation: wa-bubble-destaque-in 0.4s cubic-bezier(.7,1.7,.6,1) both;
}

@keyframes wa-bubble-destaque-in {
    0% { opacity: 0; transform: translate(-50%, -40px) scale(0.92); }
    100% { opacity: 1; transform: translate(-50%, 0) scale(1); }
}

.wa-bubble-title {
    font-family: 'Migra', serif;
    font-size: 1.45rem;
    color: var(--bg-light);
    letter-spacing: 2px;
    margin-bottom: 18px;
    display: block;
    text-shadow: 0 2px 12px rgba(51,51,51,0.13);
}

.wa-bubble-atalhos-grande {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 12px;
    justify-content: center;
}
.wa-bubble-btn-grande {
    font-size: 1.13rem;
    padding: 16px 32px;
    border-radius: 28px;
    background: var(--bg-light);
    color: var(--rose);
    font-family: 'Pathway Gothic One', sans-serif;
    font-weight: bold;
    border: 2.5px solid var(--rose);
    box-shadow: 0 2px 12px rgba(140,39,66,0.10);
    transition: background 0.2s, color 0.2s, border 0.2s, transform 0.2s;
    margin: 0 4px;
    cursor: pointer;
}
.wa-bubble-btn-grande:hover {
    background: var(--rose);
    color: var(--bg-light);
    border-color: var(--teal);
    transform: translateY(-2px) scale(1.04);
}
/* Efeito de raios animados no ícone do WhatsApp */
.wa-icone-raios {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 2;
}
.wa-raio {
    position: absolute;
    width: 18px;
    height: 4px;
    background: linear-gradient(90deg, #25D366 60%, #8C2742 100%);
    border-radius: 2px;
    opacity: 0;
    animation: wa-raio-pulse 1.2s linear forwards;
}
.wa-raio.r1 { transform: rotate(0deg) translate(22px, 0); animation-delay: 0s; }
.wa-raio.r2 { transform: rotate(45deg) translate(18px, 0); animation-delay: 0.1s; }
.wa-raio.r3 { transform: rotate(90deg) translate(14px, 0); animation-delay: 0.2s; }
.wa-raio.r4 { transform: rotate(135deg) translate(18px, 0); animation-delay: 0.3s; }
.wa-raio.r5 { transform: rotate(180deg) translate(22px, 0); animation-delay: 0.4s; }
.wa-raio.r6 { transform: rotate(225deg) translate(18px, 0); animation-delay: 0.5s; }
.wa-raio.r7 { transform: rotate(270deg) translate(14px, 0); animation-delay: 0.6s; }
.wa-raio.r8 { transform: rotate(315deg) translate(18px, 0); animation-delay: 0.7s; }

@keyframes wa-raio-pulse {
    0% { opacity: 0; transform: scaleX(0.2) translateX(0); }
    20% { opacity: 1; transform: scaleX(1.1) translateX(0); }
    60% { opacity: 1; }
    100% { opacity: 0; transform: scaleX(0.2) translateX(0); }
}
/* Responsivo: divisória de bolinhas não quebra no mobile */
.elementos-ink-line {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%,-50%); width: min(680px,88vw); height: 60px;
    pointer-events: none; z-index: -100;
}

@media (max-width: 600px) {
    .elementos-ink-line {
        width: 340px;
        height: 28px;
        max-width: 99vw;
    }
}
/* Mascote acima do QUEM SOMOS */
.sobre-pet-mascote-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    margin-bottom: -12px;
    position: relative;
    z-index: 2;
}
.sobre-pet-mascote {
    width: 68px;
    max-width: 22vw;
    height: auto;
    filter: drop-shadow(0 2px 8px rgba(51,51,51,0.10));
    position: relative;
    top: 0;
}
@media (max-width: 600px) {
    .sobre-pet-mascote {
        width: 48px;
        max-width: 28vw;
    }
    .sobre-pet-mascote-wrapper {
        margin-bottom: -8px;
    }
}
@media (max-width: 480px) {
    .container {
        padding: 0 8px;
    }
    .hero-content h1 {
        font-size: clamp(1.6rem, 6.5vw, 2.2rem);
        line-height: 1.15;
    }
    .hero-content p {
        font-size: 0.93rem;
        max-width: 98vw;
    }
    .hero-btns {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 8px;
    }
    .hero-image {
        display: flex;
        justify-content: center;
    }
    /* Serviços: 2 colunas no mobile, não 1 */
    .servicos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .card-img { height: 130px; }
    .card-content h3 { font-size: 1rem; }
    .card-content p { font-size: 0.82rem; }
    .sobre-row {
        gap: 16px;
        flex-direction: column;
        align-items: stretch;
    }
    .sobre-rows {
        gap: 24px;
        padding: 8px 0;
    }
    .galeria-grid-wrapper, .galeria-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }
    .galeria-videos-destaque {
        flex-direction: row;
        overflow-x: auto;
        gap: 10px;
    }
    .galeria-video-card video {
        height: 160px;
    }
    .footer-container {
        flex-direction: column;
        gap: 18px;
    }
    /* Botões sem quebra */
    .btn-primary, .btn-contato {
        white-space: nowrap;
    }
    /* Sobre duo centralizado */
    .sobre-duo {
        margin: 0 auto;
        max-width: 280px;
    }
}
/* Modal WhatsApp como balão de mensagem */
.wa-balloon-modal {
    background: none !important;
    box-shadow: none !important;
    display: flex !important;
    align-items: flex-end;
    justify-content: flex-end;
    position: fixed !important;
    bottom: 120px;
    right: 38px;
    width: auto !important;
    height: auto !important;
    z-index: 1500 !important;
    pointer-events: none;
}
.wa-balloon-modal .whatsapp-modal-content {
    background: #fff;
    border-radius: 18px 18px 18px 6px;
    box-shadow: 0 4px 24px rgba(51,51,51,0.13);
    padding: 18px 24px 18px 18px;
    font-family: 'Scope One', serif;
    font-size: 1.08em;
    max-width: 340px;
    pointer-events: all;
    position: relative;
    animation: wa-balao-in 0.5s;
}
.wa-balloon-modal.active {
    pointer-events: all;
    display: flex !important;
}
@media (max-width: 600px) {
    .wa-balloon-modal {
        right: 10px;
        bottom: 70px;
    }
    .wa-balloon-modal .whatsapp-modal-content {
        max-width: 90vw;
        padding: 10px 12px 10px 10px;
        font-size: 0.98em;
    }
}
/* ============================================================
   0. HERO SLIDESHOW — mais lento (6s), centralizado, com indicadores
============================================================ */
.hero-indicators {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 18px;
    margin-bottom: 0;
    position: relative;
    width: 100%;
    z-index: 2;
}
.hero-slide-dot {
    width: 36px;
    height: 3px;
    border-radius: 2px;
    background: var(--rose);
    opacity: 0.35;
    border: none;
    transition: background 0.4s, width 0.4s, opacity 0.3s;
    cursor: pointer;
    padding: 0;
    margin: 0 2px;
    display: inline-block;
}
.hero-slide-dot.active {
    opacity: 1;
    background: var(--rose);
    width: 48px;
}
/* ============================================================
     MENU FLUTUANTE LATERAL (MENU + TOPO)
============================================================ */
/* (menu flutuante consolidado adiante) */
/* --- Blobs outline (apenas borda) para títulos e serviços --- */
/* (bloco movido para seção consolidada) */
/* ============================================================
     GALERIA E FOTOS — modal, legendas, centralização
============================================================ */






/* Divisor decorativo entre Serviços e Galeria */
.divisoria-servicos-galeria {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 -38px 0; /* Sobe o divisor para ficar sobre a wave, ajuste conforme necessário */
    position: relative;
    z-index: 2;
}
.divisoria-servicos-galeria span {
    display: block;
    width: 120px;
    height: 4px;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--rose) 0%, var(--teal) 100%);
    opacity: 0.7;
    box-shadow: 0 2px 12px rgba(51,51,51,0.08);
}
/* Efeito galeria: cards "invadindo" a divisória (wave) */
.galeria {
    margin-top: 0;
    position: relative;
    z-index: 2;
}

/* Garante que os cards da galeria fiquem por cima da wave */
.galeria .galeria-item {
    position: relative;
    z-index: 3;
}
/* Garante que o botão de voltar ao topo nunca some em nenhum breakpoint */
.btn-voltar-topo {
    display: flex !important;
    opacity: 1 !important;
    pointer-events: all !important;
    z-index: 10050 !important;
}


/* --- Mascote ilustrado no hero --- */
.hero-mascot-illustration {
        position: absolute;
        bottom: 0;
        right: 0;
        width: 120px;
        height: auto;
        z-index: 5;
        pointer-events: none;
        filter: drop-shadow(0 6px 18px rgba(51,51,51,0.10));
        transition: transform 0.4s var(--ease);
}
@media (max-width: 768px) {
    .hero-mascot-illustration { width: 70px; right: 0; bottom: 0; }
}
/* ============================================================
     VÍDEOS DA GALERIA — autoplay, borda tinta, degradê escuro
============================================================ */
.galeria-videos-destaque video {
    border-radius: 22px;
    box-shadow: 0 6px 32px rgba(51,51,51,0.13);
    border: 5px solid var(--bg-light);
    outline: 3px solid var(--rose);
    background: #222;
    object-fit: cover;
    width: 100%;
    height: 220px;
    filter: brightness(0.82) contrast(1.08);
    z-index: 2;
    position: relative;
    pointer-events: auto;
}
.galeria-videos-destaque {
    display: flex;
    gap: 18px;
    margin-bottom: 18px;
}
.galeria-video-card {
    position: relative;
    flex: 1;
    min-width: 0;
    z-index: 2;
}
.galeria-video-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 22px;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(51,51,51,0.38) 0%, rgba(51,51,51,0.00) 80%);
    z-index: 1;
}
.galeria-video-card .video-play-overlay {
    display: none !important;
}
/* ============================================================
     BLOBs E CÍRCULOS DE FUNDO — fotos, galeria, sobre
     (REMOVIDO: agora estilo flat para toda a galeria)
============================================================ */
.blob-foto-bg {
    display: none !important;
}
.blob-foto-bg-1 {
    width: 120px; height: 120px; background: var(--rose); left: -30px; top: -30px;
}
 .blob-foto-bg-2 {
    width: 90px; height: 90px; background: var(--teal); right: -18px; bottom: -18px;
}
.blob-foto-bg-anim {
    background: var(--brown);
    width: 80px; height: 60px;
    border-radius: 60% 40% 50% 50% / 50% 60% 40% 50%;
    box-shadow: 0 4px 24px 0 rgba(140,39,66,0.08);
    left: 50%; top: 50%;
    transform: translate(-50%,-50%) scale(1);
    opacity: 0.18;
    transition: border-radius 0.7s cubic-bezier(.7,-0.2,.3,1.4), transform 0.7s cubic-bezier(.7,-0.2,.3,1.4);
}
.pilar-uno:active {
    transform: scale(0.97) rotate(1deg);
    filter: brightness(0.98);
}
.galeria-item:hover .blob-foto-bg-anim,
.sobre-branch-photo:hover .blob-foto-bg-anim {
    border-radius: 40% 60% 60% 40% / 60% 40% 50% 60%;
    transform: translate(-50%,-50%) scale(1.13) rotate(-8deg);
    opacity: 0.28;
}
/* ============================================================
     GALERIA E FOTOS — modal, legendas, centralização
============================================================ */
.galeria-item img, .sobre-duo-front img, .sobre-duo-back img, .sobre-branch-photo img, .cta-img-container img {
    position: relative;
    z-index: 2;
    cursor: pointer;
}
.galeria-item video {
    position: relative;
    z-index: 2;
    cursor: pointer;
    object-fit: cover;
    object-position: center;
    border-radius: 18px;
    box-shadow: 0 2px 18px rgba(51,51,51,0.10);
    transition: transform 0.18s, box-shadow 0.18s;
}
.galeria-item img:hover, .galeria-item video:hover {
    transform: scale(1.04);
    box-shadow: 0 8px 32px rgba(140,39,66,0.13);
}
/* Sobre duo: sem rotate, sem scale no hover — imagem é destaque */
.sobre-duo-front img:hover, .sobre-duo-back img:hover {
    transform: none;
    box-shadow: none;
}
.sobre-branch-photo img:hover {
    transform: scale(1.04);
}
.galeria-caption-hover {
    position: absolute;
    left: 50%;
    bottom: 12px;
    transform: translateX(-50%);
    background: linear-gradient(90deg, var(--rose) 60%, var(--teal) 100%);
    color: #fff;
    font-family: 'Scope One', serif;
    font-size: 1em;
    padding: 6px 18px;
    border-radius: 14px 18px 18px 8px;
    box-shadow: 0 2px 12px rgba(51,51,51,0.10);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.18s;
    z-index: 2;
}
.galeria-item:hover .galeria-caption-hover,
.sobre-branch-photo:hover .branch-photo-label,
.cta-img-container:hover .cta-img-label {
    opacity: 1;
}
.galeria-item {
    position: relative;
}
.galeria-modal {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    background: rgba(51,51,51,0.82);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    animation: galeria-modal-in 0.38s;
}
@keyframes galeria-modal-in {
    from { opacity: 0; transform: scale(0.94) translateY(18px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}
.galeria-modal-img {
    max-width: 92vw;
    max-height: 82vh;
    border-radius: 18px;
    box-shadow: 0 8px 48px rgba(51,51,51,0.22);
    background: #fff;
    object-fit: contain;
    object-position: center;
    animation: galeria-img-in 0.45s cubic-bezier(0.2,1,0.3,1);
}
@keyframes galeria-img-in {
    from { opacity: 0.4; transform: scale(0.94); }
    to { opacity: 1; transform: scale(1); }
}
.galeria-modal-close {
    position: absolute;
    top: 32px; right: 48px;
    background: none;
    border: none;
    color: #fff;
    font-size: 2.5em;
    cursor: pointer;
    z-index: 10;
    text-shadow: 0 2px 12px #333;
}
/* ============================================================
     WHATSAPP FLUTUANTE CUSTOMIZADO
============================================================ */
.whatsapp-flutuante-container {
    position: fixed;
    bottom: 38px;
    right: 38px;
    z-index: 1400;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    pointer-events: none;
}
.btn-whatsapp-desenhado {
    width: 74px;
    height: 74px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 6px 32px rgba(37,211,102,0.18);
    border: 3.5px solid #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    transition: box-shadow 0.2s, transform 0.2s;
    pointer-events: all;
}
.btn-whatsapp-desenhado:hover {
    box-shadow: 0 12px 48px rgba(37,211,102,0.28);
    transform: scale(1.09);
}
.wa-icone {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
}
.wa-icone svg {
    width: 54px;
    height: 54px;
    display: block;
}
.wa-raios {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 90px;
    height: 90px;
    pointer-events: none;
    transform: translate(-50%,-50%);
    z-index: 0;
}
.wa-raios::before, .wa-raios::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    border: 2.5px solid #25D366;
    opacity: 0.18;
    animation: wa-raios-pulse 2.8s infinite;
}
.wa-raios::before {
    width: 90px; height: 90px; left: 0; top: 0; animation-delay: 0s;}
.wa-raios::after {
    width: 70px; height: 70px; left: 10px; top: 10px; animation-delay: 1.2s;}
@keyframes wa-raios-pulse {
    0% { transform: scale(0.95); opacity: 0.18; }
    50% { transform: scale(1.12); opacity: 0.32; }
    100% { transform: scale(0.95); opacity: 0.18; }
}
.wa-balao-auto {
    background: #fff;
    color: #333;
    border-radius: 18px 18px 18px 6px;
    box-shadow: 0 4px 24px rgba(51,51,51,0.13);
    padding: 14px 22px;
    font-family: 'Scope One', serif;
    font-size: 1.08em;
    margin-bottom: 8px;
    max-width: 320px;
    pointer-events: all;
    position: relative;
    animation: wa-balao-in 0.5s;
}
@keyframes wa-balao-in {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.wa-balao-conversa {
    background: #fff;
    color: #333;
    border-radius: 18px 18px 18px 6px;
    box-shadow: 0 4px 24px rgba(51,51,51,0.13);
    padding: 18px 24px 18px 18px;
    font-family: 'Scope One', serif;
    font-size: 1.08em;
    margin-bottom: 8px;
    max-width: 340px;
    pointer-events: all;
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    animation: wa-balao-in 0.5s;
}
.wa-balao-msg {
    flex: 1;
}
.wa-balao-fechar {
    background: none;
    border: none;
    color: var(--rose);
    font-size: 1.5em;
    cursor: pointer;
    margin-left: 6px;
    margin-top: 2px;
    line-height: 1;
}
@media (max-width: 600px) {
    .whatsapp-flutuante-container {
        right: 10px;
        bottom: 10px;
    }
    .btn-whatsapp-desenhado {
        width: 54px; height: 54px;
    }
    .wa-icone, .wa-icone svg {
        width: 36px; height: 36px;
    }
    .wa-raios {
        width: 60px; height: 60px;
    }
    .wa-balao-auto, .wa-balao-conversa {
        max-width: 90vw;
        padding: 10px 12px 10px 10px;
        font-size: 0.98em;
    }
}




@media (max-width: 992px) {
    .menu-flutuante-container {
        right: 10px;
        top: 74px;
    }
    .navbar-lateral {
        min-width: 90px;
        padding: 12px 10px 6px 10px;
    }
    .btn-voltar-topo {
        width: 40px;
        height: 40px;
    }
    .icon-seta-cima svg {
        width: 24px;
        height: 24px;
    }
}

@media (max-width: 480px) {
    .menu-flutuante-container {
        right: 2vw;
        top: 62px;
    }
    .navbar-lateral {
        min-width: 70px;
        padding: 8px 4px 4px 4px;
    }
}
/* ==========================================================================
   Pompet - ServiÃ§os Pet | CSS Consolidado v3.0
   Fontes: Migra (tÃ­tulos) | Pathway Gothic One (labels) | Scope One (corpo)
   Paleta: --rose #8C2742 | --teal #5A878C | --brown #B8764D
           --beige #DDD1C3 | --bg-light #EDE5E0 | --dark #333333
========================================================================== */

@font-face {
    font-family: 'Migra';
    src: url('assets/fonts/Migra-Extrabold.woff2') format('woff2'),
         url('assets/fonts/Migra-Extrabold.ttf') format('truetype'),
         local('Migra Extrabold'), local('Migra-Extrabold');
    font-weight: bold;
}

:root {
    --dark: #333333;
    --rose: #8C2742;
    --teal: #5A878C;
    --brown: #B8764D;
    --beige: #DDD1C3;
    --bg-light: #EDE5E0;
    --white: #FFFFFF;
    --text-color: #333333;
    --text-light: #4A4A4A;
    --ease: cubic-bezier(0.2, 1, 0.3, 1);
    --nav-h: 62px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; background-color: var(--bg-light); overflow-x: hidden; }
body {
    font-family: 'Scope One', serif;
    color: var(--text-color);
    background-color: var(--bg-light);
    line-height: 1.5;
    overflow-x: hidden;
    width: 100%;
    position: relative;
}
body::after {
    content: "";
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; width: 100%; position: relative; z-index: 2; }

/* UtilitÃ¡rios de cor */
.text-rose { color: var(--rose); }
.text-teal { color: var(--teal); }
.text-brown { color: var(--brown); }
.text-dark { color: var(--dark); }
.text-beige { color: var(--beige); }
.text-white { color: var(--white); }
.text-light { color: var(--bg-light); }
.bg-rose { background-color: var(--rose); color: var(--white); }
.bg-teal { background-color: var(--teal); color: var(--white); }
.bg-brown { background-color: var(--brown); color: var(--white); }
.bg-dark { background-color: var(--dark); color: var(--bg-light); }
.ilustracao-transparente { border-radius: 0 !important; border: none !important; box-shadow: none !important; background: transparent !important; }

/* Tipografia */
h1, h2, h3 { font-family: 'Migra', 'Playfair Display', serif; color: inherit; font-weight: bold; }
h1, h2 { color: var(--dark); }
.subheading, h4 { font-family: 'Pathway Gothic One', sans-serif; text-transform: uppercase; letter-spacing: 1.5px; font-weight: normal; font-size: 0.85em; }
.bodytext { font-family: 'Scope One', serif; }
.pilar-icon { display: inline-flex; align-items: center; justify-content: center; margin-right: 6px; }

/* ============================================================
   WAVE DIVIDERS
============================================================ */
.wave-divider { overflow: hidden; line-height: 0; width: 100%; position: relative; z-index: 2; margin: -1px 0; }
.wave-divider::before, .wave-divider::after {
    content: "";
    position: absolute;
    width: 64px; height: 64px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath d='M28.6 32.5c0 9.2-6.8 16.6-15.2 16.6S-1.8 41.7-1.8 32.5C-1.8 23.3 4.9 15.9 13.4 15.9S28.6 23.3 28.6 32.5zM73.4 32.5c0 9.2-6.8 16.6-15.2 16.6s-15.2-7.4-15.2-16.6c0-9.2 6.8-16.6 15.2-16.6s15.2 7.4 15.2 16.6zM43.2 26.4c0 8.3-6.1 15-13.6 15S16 34.7 16 26.4 22.1 11.4 29.6 11.4s13.6 6.7 13.6 15zm24.6 4.9c0 6.3-4.6 11.3-10.3 11.3-5.7 0-10.3-5-10.3-11.3 0-6.3 4.6-11.3 10.3-11.3 5.7 0 10.3 5 10.3 11.3zM47.7 65.6c-2.7 0-5.4 1.1-7.2 3.1l-6.8 7c-4.3 4.4-4.7 11.5-1 16.4 3.6 4.8 10 7.4 16.6 7.4 6.5 0 12.9-2.6 16.6-7.4 3.7-4.9 3.3-12-1-16.4l-6.8-7c-1.8-2-4.4-3.1-7.2-3.1z' fill='%238C2742'/%3E%3C/svg%3E");
    background-size: contain; background-repeat: no-repeat;
    opacity: 0.22; animation: pulse-paw 3s ease-in-out infinite;
}
@keyframes pulse-paw { 0%, 100% { opacity: 0.18; } 50% { opacity: 0.28; } }
.wave-divider::before { top: 8px; left: 14px; }
.wave-divider::after { top: 8px; right: 14px; }
.wave-divider svg { display: block; width: calc(100% + 1.3px); height: 60px; }

/* ============================================================
   NAVBAR
============================================================ */
.navbar {
    position: sticky; top: 0;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 6px rgba(0,0,0,0.04);
    z-index: 1000; height: var(--nav-h);
    border-bottom: 1px solid var(--beige);
    transition: box-shadow 0.3s ease;
}
.navbar.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,0.08); }
.navbar-container { display: flex; justify-content: space-between; align-items: center; height: 100%; }
.desktop-nav { display: flex; align-items: center; gap: 30px; }
.nav-links { display: flex; list-style: none; gap: 26px; }
.nav-links a {
    text-decoration: none; color: var(--dark);
    font-family: 'Pathway Gothic One', sans-serif;
    font-size: 1rem; letter-spacing: 1.5px;
    transition: color 0.3s; text-transform: uppercase;
    position: relative; padding-bottom: 4px;
}
.nav-links a::after {
    content: ''; position: absolute; bottom: 0; left: 50%; right: 50%;
    height: 2px; background: var(--rose); border-radius: 2px;
    transition: left 0.3s var(--ease), right 0.3s var(--ease);
}
.nav-links a:hover::after, .nav-links a.active::after { left: 0; right: 0; }
.nav-links a.active { color: var(--rose); }
.nav-links a:hover { color: var(--rose); }
.btn-contato {
    background: var(--dark); color: var(--bg-light);
    padding: 9px 22px; border-radius: 40px;
    text-decoration: none;
    font-family: 'Pathway Gothic One', sans-serif;
    font-size: 1rem; letter-spacing: 1px;
    transition: transform 0.3s var(--ease), background-color 0.3s, box-shadow 0.3s;
    text-transform: uppercase;
    box-shadow: 0 4px 16px rgba(51,51,51,0.1);
}
.btn-contato:hover { background: var(--rose); transform: translateY(-3px); box-shadow: 0 8px 28px rgba(140,39,66,0.25); }
.pompet-logo-img { height: 46px; width: auto; display: block; }

/* Navbar Pill lateral */
.navbar-pill {
    position: fixed; top: 50%; right: -180px;
    transform: translateY(-50%); z-index: 12000;
    display: flex; flex-direction: column; gap: 4px;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(221,209,195,0.8);
    border-right: none; border-radius: 18px 0 0 18px;
    padding: 14px 12px 14px 16px;
    box-shadow: -6px 0 28px rgba(51,51,51,0.10);
    transition: right 0.5s cubic-bezier(0.2,1,0.3,1);
}
.navbar-pill.visible { right: 0; }
.navbar-pill::before {
    content: ""; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
    width: 3px; height: 44px;
    background: linear-gradient(180deg, var(--rose), var(--teal));
    border-radius: 0 2px 2px 0;
}
.navbar-pill a {
    font-family: 'Pathway Gothic One', sans-serif;
    font-size: 0.78rem; letter-spacing: 1.5px; text-transform: uppercase;
    color: var(--dark); text-decoration: none;
    padding: 5px 8px; border-radius: 8px;
    transition: color 0.25s, background 0.2s;
    white-space: nowrap; display: block;
}
.navbar-pill a:hover { color: var(--rose); }
.navbar-pill a.active { color: var(--rose); }

.menu-flutuante-container,
.navbar-lateral,
.btn-voltar-topo {
    position: relative;
    z-index: 12000;
}

/* ============================================================
   HERO
============================================================ */
.hero {
    height: calc(100vh - var(--nav-h)); min-height: 520px; max-height: 860px;
    display: flex; align-items: center;
    position: relative; overflow: hidden; background-color: var(--bg-light);
}
.hero::before {
    content: ''; position: absolute; pointer-events: none;
    top: -80px; right: -100px; width: 400px; height: 400px;
    background: radial-gradient(ellipse, rgba(90,135,140,0.13) 0%, transparent 70%);
    border-radius: 60% 40% 55% 45% / 50% 60% 40% 50%;
}
.hero::after {
    content: ''; position: absolute; pointer-events: none;
    bottom: -60px; left: -60px; width: 280px; height: 280px;
    background: radial-gradient(ellipse, rgba(140,39,66,0.03) 0%, transparent 60%);
    border-radius: 40% 60% 45% 55%;
}
.hero-container { display: flex; align-items: center; gap: 50px; position: relative; z-index: 1; width: 100%; }
@media (max-width: 768px) {
    .hero-container { flex-direction: column; gap: 24px; padding: 20px 0; }
    .hero-content { order: 1; }
    .hero-image { order: 2; width: 100%; justify-content: center; }
    .hero-slideshow { width: min(300px, 78vw); }
}
.hero-content { flex: 1.1; }
.hero-label { font-size: 0.82rem; letter-spacing: 3px; margin-bottom: 10px; display: block; }
.hero-content h1 { font-size: clamp(2.2rem, 3.8vw, 3.5rem); line-height: 1.05; margin-bottom: 14px; }
.hero-content p { font-size: 0.97rem; margin-bottom: 24px; max-width: 460px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

.btn-primary {
    background: var(--rose); color: var(--bg-light);
    padding: 12px 26px; border-radius: 40px; text-decoration: none;
    font-family: 'Pathway Gothic One', sans-serif;
    font-size: 1rem; letter-spacing: 1px; border: 2px solid var(--rose);
    display: inline-block; transition: all 0.3s var(--ease); text-transform: uppercase;
    box-shadow: 0 4px 16px rgba(140,39,66,0.18);
}
.btn-primary:hover { background: var(--dark); border-color: var(--dark); transform: translateY(-3px); box-shadow: 0 10px 32px rgba(51,51,51,0.3); }

.hero-image { flex: 1; display: flex; justify-content: center; align-items: center; position: relative; }
.hero-img-blob {
    width: min(400px, 100%); aspect-ratio: 1;
    border-radius: 40px 120px 40px 120px;
    overflow: hidden; transition: transform 0.8s var(--ease);
    box-shadow: 0 16px 48px rgba(51,51,51,0.12);
    border: 5px solid var(--beige); position: relative;
}

/* TraÃ§os decorativos ao redor da imagem do hero */
.hero-image::before {
    content: "";
    position: absolute; top: -22px; right: -24px;
    width: 150px; height: 180px;
    border-top: 1.8px solid rgba(140,39,66,0.30);
    border-right: 1.8px solid rgba(140,39,66,0.20);
    border-radius: 0 60px 0 0;
    pointer-events: none; z-index: 3;
    transform: rotate(-5deg);
    transition: transform 0.8s var(--ease);
}
.hero-image::after {
    content: "";
    position: absolute; bottom: -18px; left: -22px;
    width: 110px; height: 100px;
    border-bottom: 1.4px solid rgba(90,135,140,0.30);
    border-left: 1.4px solid rgba(90,135,140,0.22);
    border-radius: 0 0 0 50px;
    pointer-events: none; z-index: 3;
    transform: rotate(4deg);
    transition: transform 0.8s var(--ease);
}
.hero-image:hover::before { transform: rotate(-2deg) scale(1.04); }
.hero-image:hover::after { transform: rotate(7deg) scale(1.06); }

.hero-slide {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover; object-position: center center;
    opacity: 0; transition: opacity 1.8s ease-in-out;
}
.hero-slide.active { opacity: 1; }

/* Indicadores de slide do hero */
.hero-slide-dots {
    position: relative; /* era absolute */
    bottom: auto;
    left: auto;
    transform: none;
    display: flex;
    gap: 8px;
    z-index: 4;
    justify-content: center;
    margin-top: 16px; /* espaço abaixo da imagem */
}
.hero-slide-dot {
    width: 24px; height: 3px; border-radius: 2px;
    background: rgba(255,255,255,0.5); cursor: pointer;
    transition: background 0.4s, width 0.4s; border: none; padding: 0;
}
.hero-slide-dot.active { width: 36px; background: var(--rose); }

/* DivisÃ³ria dots heroâ†’sobre */
.divisoria-dots-wrapper {
    display: flex; justify-content: center; align-items: center;
    padding: 14px 0 6px; background: var(--bg-light); overflow: hidden;
}
.divisoria-dots-svg { width: min(700px, 92vw); height: 28px; overflow: visible; }

/* ============================================================
   ELEMENTOS STRIP
============================================================ */
.elementos-strip { padding: 20px 0 25px; position: relative; overflow: visible; background-color: var(--bg-light); }
.elementos-inner {
    display: flex;
    justify-content: center; /* Centraliza no computador */
    align-items: center;
    gap: 24px;               /* Espaçamento entre as bolhas */
    flex-wrap: nowrap;       /* Impede a quebra de linha */
    overflow-x: auto;        /* Permite o scroll horizontal no celular */
    -webkit-overflow-scrolling: touch; /* Deixa o scroll suave no iPhone/iOS */
    padding-bottom: 8px;     /* Dá um respiro para a barra de rolagem (se aparecer) */
}

/* Esconde a barra de rolagem para um visual mais limpo */
.elementos-inner::-webkit-scrollbar {
    display: none;
}

/* Ajuste específico para o celular */
@media (max-width: 768px) {
    .elementos-inner {
        justify-content: flex-start; /* Alinha à esquerda no mobile para o scroll não cortar a 1ª bolha */
        padding: 0 16px; /* Dá uma margem nas laterais para não ficar grudado na borda da tela */
    }
    /* overflow-x: auto;      Removido para evitar barra de rolagem, deixando o layout mais limpo */
}.elementos-ink-line {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%,-50%); width: min(680px,88vw); height: 60px;
    pointer-events: none; z-index: 1;
}
/* Opcional: esconde a barra de rolagem horizontal para um visual mais limpo */
.elementos-inner::-webkit-scrollbar {
    display: none;
}
.elem-blob { position: relative; overflow: hidden; transition: transform 0.6s cubic-bezier(0.2,1,0.3,1); z-index: 2; display: block; }
.elem-blob::after {
    content: ""; position: absolute; inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    opacity: 0.13; pointer-events: none; mix-blend-mode: overlay;
}
.elem-blob:hover { transform: scale(1.1) rotate(5deg); }
.elem-blob-1 { width: 72px; height: 52px; background: var(--brown); border-radius: 62% 38% 52% 48% / 58% 44% 56% 42%; opacity: 0.9; }
.elem-blob-2 { width: 98px; height: 62px; background: var(--rose); border-radius: 48% 52% 64% 36% / 52% 44% 56% 48%; opacity: 0.9; }
.elem-blob-3 { width: 58px; height: 58px; background: var(--teal); border-radius: 50%; opacity: 0.88; }
.elem-blob-4 { width: 82px; height: 54px; background: var(--beige); border-radius: 44% 56% 58% 42% / 50% 58% 42% 50%; opacity: 0.95; border: 1.5px solid rgba(140,39,66,0.18); background-image: radial-gradient(circle, rgba(140,39,66,0.28) 1px, transparent 1px); background-size: 8px 8px; }
.elem-blob-4::after { display: none; }
.elem-blob-5 { width: 74px; height: 74px; background: var(--teal); border-radius: 42% 58% 56% 44% / 44% 56% 44% 56%; opacity: 0.72; }
.elem-blob-6 { width: 68px; height: 70px; background: var(--brown); border-radius: 58% 42% 48% 52% / 52% 62% 38% 48%; opacity: 0.9; }

/* ============================================================
   SOBRE
============================================================ */
.sobre { min-height: auto; padding: 32px 0 44px 0; display: flex; align-items: flex-start; position: relative; overflow: hidden; }
.sobre-rows { position: relative; z-index: 1; display: flex; flex-direction: column; gap: 48px; padding: 18px 0; }
.sobre-row { display: flex; align-items: center; gap: 36px; }
@media (max-width: 768px) {
    .sobre {
        padding: 18px 0 24px 0;
    }
    .sobre-rows {
        gap: 28px;
        padding: 8px 0;
    }
    .sobre-row {
        gap: 16px;
        flex-direction: column;
        align-items: stretch;
    }
}
.sobre-text { flex: 1; }
.sobre-img-box { flex: 1.2; display: flex; align-items: center; justify-content: center; position: relative; }

.sobre-trunk {
    position: absolute; top: 0; left: 50%; width: 200px; height: 100%;
    transform: translateX(-50%); pointer-events: none; z-index: 0; overflow: visible;
}

.sobre-label { font-size: 0.95rem; letter-spacing: 3.5px; margin-bottom: 10px; display: block; }
.sobre-text h2 { font-size: clamp(2.2rem, 3.5vw, 3.4rem); margin-bottom: 14px; }
.sobre-text p { margin-bottom: 12px; font-size: 1.08rem; line-height: 1.8; }
.sobre-subtitle { font-family: 'Migra', serif; font-size: clamp(1.5rem,2.5vw,2.2rem); color: var(--dark); margin-bottom: 18px; line-height: 1.25; }

/* DUO fotos */
.sobre-duo-box { position: relative; }
.sobre-duo { position: relative; width: 100%; max-width: 480px; padding: 40px 0 60px; }
.sobre-duo-liquid {
    position: absolute; top: 50%; left: 50%; width: 140%; height: 140%;
    transform: translate(-50%,-50%); pointer-events: none; z-index: 0; overflow: visible;
    border-radius: 24px;
}
.sobre-duo-liquid svg { width: 100%; height: 100%; overflow: visible; }
.sobre-duo-liquid .blob {
    position: absolute;
    border-radius: 50%;
    z-index: 1;
    animation: blob-float 6s ease-in-out infinite alternate;
}
@keyframes blob-float {
    from { transform: translate(0,0) scale(1); }
    to   { transform: translate(8px,12px) scale(1.08); }
}
.duo-blob-main { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0.08; transition: transform 2.8s cubic-bezier(0.2,1,0.3,1), opacity 2.8s ease; }
.duo-ring.ring4 { top: -10%; left: -10%; width: 120%; height: 120%; z-index: 1; }
.sobre-duo.duo-state-b .duo-blob-main { transform: rotate(40deg) scale(1.06); opacity: 0.18; }
.sobre-duo.duo-state-b .duo-ring { transform: rotate(-15deg) scale(1.03); }
.sobre-duo-back {
    position: absolute; top: 18px; left: 24px; width: 100%; aspect-ratio: 1/1;
    border-radius: 50% 40% 60% 40% / 40% 60% 40% 50%; overflow: hidden; z-index: 1; transform: rotate(2.5deg);
    box-shadow: 0 6px 24px rgba(51,51,51,0.10); border: none;
}
.sobre-duo-back img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity 2.2s ease-in-out; }
.sobre-duo-back img.duo-active { opacity: 1; }
.sobre-duo-front {
    position: relative; width: 100%; aspect-ratio: 1/1; border-radius: 50% 40% 60% 40% / 40% 60% 40% 50%;
    overflow: hidden; z-index: 2;
    box-shadow: 0 20px 60px rgba(51,51,51,0.16), 0 0 0 1px rgba(140,39,66,0.05);
    transition: box-shadow 0.8s var(--ease), transform 0.8s var(--ease);
}
.sobre-duo-back img, .sobre-duo-front img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center center;
        opacity: 0;
        transition: opacity 2.2s ease-in-out;
        border-radius: 50% 40% 60% 40% / 40% 60% 40% 50%;
        margin: 0;
        left: 0;
        top: 0;
        transform: none;
        box-shadow: none;
        background: var(--beige);
        max-width: none;
        max-height: none;
        aspect-ratio: unset;
}
.sobre-duo-back img.duo-active, .sobre-duo-front img.duo-active { opacity: 1; }

@media (max-width: 768px) {
    .sobre-duo-back img, .sobre-duo-front img {
        object-position: center center;
    }
}

@media (max-width: 480px) {
    .sobre-duo-back img, .sobre-duo-front img {
        object-position: center center;
    }
}
.sobre-duo-front:hover { box-shadow: 0 28px 72px rgba(140,39,66,0.18); }
.sobre-duo-label { display: none !important; }
.sobre-duo-dots { display: none !important; }
.sobre-duo-dot { display: none !important; }

/* Branch photos */
.sobre-branch-img { flex: 1; display: flex; align-items: center; justify-content: center; }
.sobre-branch-photo {
    position: relative; width: 100%; max-width: 460px;
    border-radius: 14px; overflow: visible !important;
    box-shadow: 0 6px 24px rgba(51,51,51,0.08);
    transition: box-shadow 0.4s var(--ease), transform 0.4s var(--ease);
    background: transparent;
}
.sobre-branch-photo::before {
    content: ""; position: absolute; inset: -14px;
    z-index: -1; border-radius: 46% 54% 48% 52% / 50% 46% 54% 50%;
    opacity: 0.55; background: var(--beige);
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 120%; pointer-events: none; mix-blend-mode: multiply;
}
.sobre-branch-photo::after {
    content: ""; position: absolute; top: -18px; right: -14px;
    width: 80px; height: 120px;
    border-right: 1.5px solid rgba(140,39,66,0.25);
    border-top: 1.5px solid rgba(140,39,66,0.18);
    border-radius: 0 40px 0 0; pointer-events: none; z-index: 4;
}
.sobre-branch-photo img {
    width: 100%; height: 320px; object-fit: cover; object-position: center center;
    display: block; border-radius: 11px; transition: transform 0.6s var(--ease);
}
.sobre-branch-photo:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(51,51,51,0.14); }
.sobre-branch-photo:hover img { transform: scale(1.04); }
/* ==========================================
   Classes adicionadas para o carrossel no sobre-branch-photo 
========================================== */
.sobre-branch-photo .branch-slide {
    position: absolute;
    top: 0; left: 0;
    opacity: 0;
    transition: opacity 1.2s ease-in-out, transform 0.6s var(--ease);
    z-index: 1;
}
.sobre-branch-photo .branch-slide.active {
    opacity: 1;
    z-index: 2;
}
.sobre-branch-photo .branch-slide:first-of-type {
    position: relative; /* Mantém a altura correta do container dinamicamente */
}
.branch-photo-label {
    position: absolute; bottom: 14px; left: 14px; padding: 5px 16px;
    background: rgba(51,51,51,0.70); backdrop-filter: blur(4px);
    color: var(--white); font-family: 'Pathway Gothic One', sans-serif;
    font-size: 0.85rem; letter-spacing: 1.5px; text-transform: uppercase;
    border-radius: 20px; opacity: 0; transform: translateY(6px);
    transition: opacity 0.4s var(--ease), transform 0.3s var(--ease); pointer-events: none;
}
.sobre-branch-photo:hover .branch-photo-label { opacity: 1; transform: translateY(0); }

/* Pilares */
.sobre-pilares-list { list-style: none; margin: 0 0 12px; padding: 0; }
.sobre-pilares-list li { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 16px; font-size: 1.05rem; line-height: 1.8; }
.sobre-pilares-list .pilar-icon { flex-shrink: 0; margin-top: 4px; }
.sobre-pilares-list .pilar-icon svg { width: 20px !important; height: 20px !important; display: block; }

.sobre-diferenciais-list { list-style: none; margin: 0 0 12px; padding: 0; }
.sobre-diferenciais-list li { position: relative; padding-left: 32px; margin-bottom: 14px; line-height: 1.85; font-size: 1.05rem; }
.sobre-diferenciais-list li::before {
    content: ""; position: absolute; left: 0; top: 0.5em; width: 16px; height: 16px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='6' cy='8' r='2.2' fill='%238C2742'/%3E%3Ccircle cx='12' cy='6.3' r='2.2' fill='%235A878C'/%3E%3Ccircle cx='18' cy='8' r='2.2' fill='%238C2742'/%3E%3Cellipse cx='12' cy='15.5' rx='6' ry='4.3' fill='%235A878C'/%3E%3C/svg%3E");
    background-size: contain; background-repeat: no-repeat; background-position: center;
}

.stats-grid { display: flex; gap: 24px; margin-top: 24px; text-align: left; justify-content: flex-start; flex-wrap: wrap; }
.stat-box { flex: 1; min-width: 100px; padding: 8px 4px 8px 0; background: transparent; border: none; position: relative; }
.stat-box::before {
    content: ""; position: absolute; top: -6px; left: -10px;
    width: 78px; height: 60px;
    border-radius: 50% 50% 42% 58% / 54% 44% 56% 46%;
    opacity: 0.10; pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: cover; mix-blend-mode: multiply;
}
.stat-box:first-child::before { background-color: var(--teal); }
.stat-box:last-child::before { background-color: var(--brown); }
.stat-box h3 { font-size: 2.8rem; margin-bottom: 2px; line-height: 1; }
.stat-box p { font-size: 0.78rem; letter-spacing: 1px; opacity: 0.8; }

/* ============================================================
   SERVIÃ‡OS
============================================================ */
.servicos { padding: 26px 0 44px; display: flex; align-items: center; background-color: var(--white); position: relative; overflow: hidden; }
.servicos::before { content: ''; position: absolute; top: 30px; left: -50px; width: 180px; height: 180px; background: rgba(90,135,140,0.06); border-radius: 60% 40% 50% 50%; pointer-events: none; }
.section-title { text-align: center; margin-bottom: 32px; }
.section-label { font-size: 0.82rem; letter-spacing: 3px; margin-bottom: 6px; display: block; }
.section-title h2 { font-size: clamp(1.8rem,3vw,2.8rem); margin-bottom: 6px; }
.section-title p { font-size: 0.95rem; color: var(--text-light); }

.servicos-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; position: relative; z-index: 1; }

.card-servico {
    width: 100%; background: var(--bg-light);
    border-radius: 20px; overflow: hidden; position: relative;
    display: flex; flex-direction: column;
    transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
    border: 1px solid var(--beige); cursor: pointer;
    box-shadow: 0 4px 20px rgba(51,51,51,0.06);
}
.card-servico:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(140,39,66,0.14); border-color: var(--rose); }
.card-img {
    height: 200px; background-size: cover; background-position: center 25%;
    position: relative; overflow: hidden; transition: background-size 0.8s ease;
}
.card-img::after {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(51,51,51,0.35) 100%);
}
.card-servico:hover .card-img { background-size: 110% !important; }
.card-icon {
    width: 44px; height: 44px; border-radius: 50%;
    display: flex; justify-content: center; align-items: center;
    position: absolute; top: 178px; left: 20px;
    font-size: 1rem; z-index: 2; border: 3px solid var(--bg-light);
}
.card-content { padding: 28px 18px 22px; display: flex; flex-direction: column; flex-grow: 1; z-index: 1; }
.card-content h3 { font-size: 1.2rem; margin-bottom: 8px; color: var(--dark); font-family: 'Migra', 'Playfair Display', serif; }
.card-content p { font-size: 0.87rem; color: var(--text-light); margin-bottom: 14px; flex-grow: 1; font-family: 'Scope One', serif; line-height: 1.6; }
.saiba-mais { text-decoration: none; font-size: 0.87rem; color: var(--rose); transition: color 0.3s, transform 0.3s; font-family: 'Pathway Gothic One', sans-serif; letter-spacing: 1px; display: inline-flex; align-items: center; gap: 4px; }
.saiba-mais:hover { color: var(--dark); }

/* Dots carrossel serviÃ§os */
.servicos-dots { display: none; justify-content: center; gap: 8px; margin-top: 14px; padding-bottom: 4px; }
.servicos-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--beige); border: none; cursor: pointer; padding: 0; transition: background 0.3s, transform 0.3s; }
.servicos-dot.active { background: var(--rose); transform: scale(1.35); }

/* DivisÃ³ria serviÃ§os â†’ galeria */
.divisoria-servicos-galeria { background: var(--white); display: flex; justify-content: center; align-items: center; padding: 4px 0 14px; }
.divisoria-servicos-galeria span {
    width: min(520px,78vw); height: 14px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 520 20'%3E%3Cpath d='M4 11 C58 3, 106 16, 160 9 C214 2, 258 16, 310 9 C364 2, 414 16, 468 9 C488 6, 500 8, 516 7' stroke='%238C2742' stroke-width='2.2' fill='none' stroke-linecap='round'/%3E%3Cpath d='M10 13 C66 20, 118 6, 172 13 C226 19, 278 5, 332 12 C386 19, 438 5, 510 13' stroke='%235A878C' stroke-width='1.5' fill='none' stroke-linecap='round' opacity='0.7'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-size: 100% 100%; opacity: 0.9;
}

/* Modal serviÃ§o */
.servico-modal {
    position: fixed; inset: 0; z-index: 10200;
    background: rgba(51,51,51,0.72); backdrop-filter: blur(10px);
    display: flex; align-items: center; justify-content: center; padding: 20px;
    opacity: 0; pointer-events: none; transition: opacity 0.35s ease;
}
.servico-modal.active { opacity: 1; pointer-events: all; }
.servico-modal-inner {
    background: var(--bg-light); border-radius: 24px; width: 100%; max-width: 520px;
    overflow: hidden; transform: scale(0.92);
    transition: transform 0.35s cubic-bezier(0.2,1,0.3,1);
    box-shadow: 0 24px 60px rgba(0,0,0,0.22);
}
.servico-modal.active .servico-modal-inner { transform: scale(1); }
.sm-header { padding: 28px 28px 22px; position: relative; overflow: hidden; background: var(--rose); }
.sm-header::after { content: ""; position: absolute; inset: 0; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"); opacity: 0.06; pointer-events: none; }
.sm-close { position: absolute; top: 14px; right: 18px; background: none; border: none; font-size: 26px; cursor: pointer; color: rgba(255,255,255,0.8); line-height: 1; transition: color 0.2s; z-index: 2; }
.sm-close:hover { color: white; }
.sm-icon { font-size: 1.8rem; margin-bottom: 8px; position: relative; z-index: 1; }
.sm-titulo { font-family: 'Migra', serif; font-size: 1.8rem; color: white; margin: 0; position: relative; z-index: 1; }
.sm-body { padding: 22px 28px 28px; }
.sm-desc { font-size: 0.97rem; line-height: 1.75; color: var(--text-light); margin: 0 0 22px; font-family: 'Scope One', serif; }
.sm-actions { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.sm-wa-btn {
    background: var(--rose); color: white; border: none;
    padding: 12px 24px; border-radius: 40px;
    font-family: 'Pathway Gothic One', sans-serif;
    font-size: 1rem; letter-spacing: 1px; text-transform: uppercase;
    cursor: pointer; display: flex; align-items: center; gap: 8px;
    transition: all 0.3s; box-shadow: 0 4px 14px rgba(140,39,66,0.22);
}
.sm-wa-btn:hover { background: var(--dark); transform: translateY(-2px); }
.sm-nav { display: flex; gap: 6px; margin-left: auto; }
.sm-nav-btn { background: var(--beige); border: none; width: 36px; height: 36px; border-radius: 50%; cursor: pointer; font-size: 18px; display: flex; align-items: center; justify-content: center; transition: background 0.2s, transform 0.2s; color: var(--dark); }
.sm-nav-btn:hover { background: var(--rose); color: white; transform: scale(1.08); }

/* ============================================================
   GALERIA
============================================================ */
.galeria { padding: 22px 0 0; display: flex; align-items: flex-start; background-color: var(--white); position: relative; }
.galeria .container { width: 100%; }
.galeria-grid-wrapper { position: relative; }

.galeria-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; padding: 18px 10px; }
.galeria-item {
    background-color: var(--bg-light); cursor: pointer;
    display: flex; flex-direction: column;
    transition: box-shadow 0.4s var(--ease), transform 0.4s var(--ease);
    position: relative; overflow: hidden; border-radius: 16px;
}
.galeria-item img, .galeria-item video {
    width: 100%; height: clamp(140px,18vh,220px);
    object-fit: cover; object-position: center center;
    display: block; transition: transform 0.5s var(--ease);
}
.galeria-item:hover { box-shadow: 0 8px 28px rgba(51,51,51,0.14); transform: translateY(-4px); }
.galeria-item:hover img, .galeria-item:hover video { transform: scale(1.06); }
.galeria-item video { height: clamp(120px,16vh,170px); object-position: center center; }

/* PadrÃµes variados de borda */
.galeria-item:nth-child(4n+1) { border-radius: 22px 8px 22px 8px; }
.galeria-item:nth-child(4n+2) { border-radius: 8px 22px 8px 22px; }
.galeria-item:nth-child(4n+3) { border-radius: 18px; }
.galeria-item:nth-child(4n+4) { border-radius: 18px; }

.galeria-item:nth-child(6n+1) { outline: 1.5px solid rgba(140,39,66,0.18); outline-offset: 4px; }
.galeria-item:nth-child(6n+4) { outline: 1.3px solid rgba(90,135,140,0.20); outline-offset: 4px; }

/* Card Instagram */
.galeria-instagram-card {
    text-decoration: none; min-height: clamp(140px,18vh,220px);
    background: linear-gradient(160deg, rgba(140,39,66,0.95), rgba(90,135,140,0.9));
    border: 1.5px solid rgba(221,209,195,0.35);
    display: flex; align-items: center; justify-content: center; padding: 14px;
    position: relative; overflow: hidden;
    border-radius: 16px !important; transform: none !important;
    -webkit-mask-image: none !important; mask-image: none !important; outline: none !important;
}
.galeria-instagram-card::before {
    content: ""; position: absolute; inset: 8px;
    border: 2px solid rgba(237,229,224,0.75); border-radius: 10px;
    transform: rotate(-2deg); pointer-events: none; z-index: 1;
}
.galeria-instagram-card-inner {
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    color: var(--bg-light); text-align: center;
    font-family: 'Pathway Gothic One', sans-serif;
    letter-spacing: 1px; text-transform: uppercase; font-size: 1rem; position: relative; z-index: 2;
}
.galeria-instagram-card i { font-size: 2rem; text-shadow: 0 2px 10px rgba(51,51,51,0.3); }
.galeria-instagram-card:hover { transform: translateY(-4px) !important; box-shadow: 0 12px 28px rgba(140,39,66,0.3); }

/* DegradÃª "ver mais" */
.galeria-fade {
    position: relative;
    height: 160px;
    margin-top: -160px;
    background: linear-gradient(to bottom, transparent 0%, rgba(51,51,51,0.85) 90%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 18px;
    pointer-events: none;
    z-index: 1;
}
.galeria-fade.hidden { display: none; }
.galeria-ver-tudo-btn {
    pointer-events: all; display: inline-flex; align-items: center; gap: 8px;
    padding: 11px 30px; background: rgba(255,255,255,0.9);
    border: 1.5px solid var(--rose); color: var(--rose);
    font-family: 'Pathway Gothic One', sans-serif;
    font-size: 0.95rem; letter-spacing: 1.5px; text-transform: uppercase;
    border-radius: 40px; cursor: pointer;
    transition: all 0.3s var(--ease); backdrop-filter: blur(6px);
}
.galeria-ver-tudo-btn:hover { background: var(--rose); color: var(--white); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(140,39,66,0.2); }

/* Grid limitado a 2 linhas */
.galeria-grid { max-height: calc(2 * (clamp(140px,18vh,220px) + 18px)); overflow: hidden; transition: max-height 0.5s ease; }
.galeria-grid.expanded { max-height: none; overflow: visible; }

/* Fullscreen galeria */
.galeria-fullscreen {
    position: fixed; inset: 0; z-index: 10500;
    background: rgba(40,24,30,0.82); backdrop-filter: blur(14px);
    display: flex; align-items: center; justify-content: center; padding: 20px;
    opacity: 0; pointer-events: none; transition: opacity 0.4s ease;
}
.galeria-fullscreen.active { opacity: 1; pointer-events: all; }
.galeria-fullscreen-inner {
    background: var(--bg-light); border-radius: 28px; width: 100%; max-width: 1100px;
    max-height: 90vh; overflow-y: auto; padding: 0 0 24px 0; position: relative;
    scrollbar-width: thin; scrollbar-color: var(--beige) transparent;
    box-shadow: 0 32px 80px rgba(0,0,0,0.28), 0 0 0 1.5px rgba(140,39,66,0.12);
}
.galeria-fullscreen-inner::-webkit-scrollbar { width: 5px; }
.galeria-fullscreen-inner::-webkit-scrollbar-thumb { background: var(--beige); border-radius: 4px; }
.galeria-fullscreen-header {
    display: flex; align-items: center; justify-content: center; gap: 12px;
    background: var(--rose); border-radius: 28px 28px 0 0;
    height: 52px; padding: 0 52px 0 16px;
    position: relative; overflow: hidden; flex-shrink: 0;
}
.galeria-fullscreen-header::after {
    content: "";
    position: absolute; inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    opacity: 0.07; pointer-events: none;
}
.galeria-fullscreen-header h3 {
    font-family: 'Pathway Gothic One', sans-serif;
    font-size: 0.8rem; letter-spacing: 3px; text-transform: uppercase;
    color: rgba(255,255,255,0.92); margin: 0; z-index: 1;
}
.galeria-fullscreen-header .modal-paw-fs {
    display: inline-flex; align-items: center; opacity: 0.75; z-index: 1;
}
.galeria-fullscreen-header .modal-paw-fs svg {
    width: 18px; height: 18px; fill: rgba(255,255,255,0.85);
}
.galeria-fullscreen-close {
    position: absolute; top: 50%; right: 14px; transform: translateY(-50%);
    background: rgba(255,255,255,0.18); border: 1.5px solid rgba(255,255,255,0.4);
    width: 30px; height: 30px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2em; cursor: pointer; color: white; transition: background 0.2s, transform 0.2s;
    z-index: 10003;
}
.galeria-fullscreen-close:hover { background: rgba(255,255,255,0.35); transform: translateY(-50%) rotate(90deg); }
.galeria-fullscreen-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; padding: 20px 24px 0; }
.gfs-item { border-radius: 10px; overflow: hidden; cursor: pointer; aspect-ratio: 4/3; transition: transform 0.3s, box-shadow 0.3s; background: var(--beige); }
.gfs-item:hover { transform: translateY(-3px); box-shadow: 0 8px 22px rgba(51,51,51,0.14); }
.gfs-item img, .gfs-item video { width: 100%; height: 100%; object-fit: cover; object-position: center center; display: block; }

/* ============================================================
   SEÃ‡ÃƒO VÃDEOS EM DESTAQUE
============================================================ */
/* Videos destaque - REMOVIDO: não usado */
.video-card {
    position: relative; border-radius: 16px; overflow: hidden;
    aspect-ratio: 9/16; background: var(--dark); cursor: pointer;
    box-shadow: 0 8px 28px rgba(51,51,51,0.18);
    transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
    max-height: 380px;
}
.video-card:hover { transform: translateY(-6px) scale(1.02); box-shadow: 0 16px 40px rgba(140,39,66,0.20); }
.video-card video {
    width: 100%; height: 100%; object-fit: cover; display: block;
    border-radius: 16px; transition: transform 0.4s var(--ease);
}
.video-card:hover video { transform: scale(1.04); }
.video-card-overlay {
    position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
    background: rgba(51,51,51,0.25); transition: background 0.3s; border-radius: 16px;
}
.video-card:hover .video-card-overlay { background: rgba(51,51,51,0.08); }
.video-play-btn {
    width: 56px; height: 56px; border-radius: 50%;
    background: rgba(140,39,66,0.85); border: 2px solid rgba(255,255,255,0.6);
    display: flex; align-items: center; justify-content: center;
    color: white; font-size: 18px; padding-left: 4px;
    transition: transform 0.3s, background 0.3s;
    box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}
.video-card:hover .video-play-btn { transform: scale(1.15); background: var(--rose); }
.video-card-label {
    position: absolute; bottom: 14px; left: 14px; right: 14px;
    padding: 6px 12px; background: rgba(51,51,51,0.65);
    backdrop-filter: blur(4px); color: white;
    font-family: 'Pathway Gothic One', sans-serif;
    font-size: 0.8rem; letter-spacing: 1.5px; text-transform: uppercase;
    border-radius: 20px; text-align: center;
}

/* ============================================================
   CTA BANNER
============================================================ */
.cta-banner { text-align: center; padding: 44px 0 56px; position: relative; overflow: hidden; }
.cta-img-container {
    width: 100%; max-width: 1100px; margin: 0 auto; height: 260px;
    overflow: hidden; position: relative;
    border-radius: 72px 42px 88px 46px / 44px 86px 54px 78px;
    border: 2px solid rgba(221,209,195,0.95);
    box-shadow: 0 20px 50px rgba(51,51,51,0.14); isolation: isolate;
}
.cta-img-container::before {
    content: ""; position: absolute; inset: 9px;
    border: 2px solid rgba(140,39,66,0.45);
    border-radius: 52px 96px 66px 86px / 80px 44px 86px 54px;
    transform: rotate(-2.2deg); pointer-events: none; z-index: 2;
}
.cta-img-container::after {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(to bottom, transparent 40%, rgba(51,51,51,0.65) 100%);
    pointer-events: none; z-index: 1;
}
.cta-img { width: 100%; height: 100%; object-fit: cover; border-radius: 72px 42px 88px 46px / 44px 86px 54px 78px; transition: transform 1.5s var(--ease); position: relative; z-index: 0; }
.cta-banner:hover .cta-img { transform: scale(1.05); }
.cta-content { margin-top: 22px; }
.cta-callout {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 12px 22px; border-radius: 999px;
    border: 1.8px solid rgba(221,209,195,0.58);
    background: rgba(237,229,224,0.14);
    box-shadow: 0 8px 22px rgba(0,0,0,0.16); letter-spacing: 0.2px;
    font-family: 'Scope One', serif;
}

/* ============================================================
   CONTATO
============================================================ */
.contato { padding: 40px 0 50px; position: relative; overflow: hidden; }
.contato-container { display: flex; flex-wrap: wrap; gap: 30px; align-items: stretch; justify-content: center; position: relative; z-index: 1; }
.contato-container > * { min-width: 0; }

.contato-info {
    flex: 1; min-width: 320px; text-align: center;
    background: var(--white); padding: 30px 24px; border-radius: 34px;
    box-shadow: 0 12px 40px rgba(51,51,51,0.05); border: 1px solid var(--beige);
    position: relative; overflow: visible;
}
.contato-info::after {
    content: ""; position: absolute; inset: 8px;
    border: 1.5px solid rgba(140,39,66,0.18);
    border-radius: 26px 34px 30px 28px; pointer-events: none;
}
.contato-info .icon-wrap { transition: transform 0.4s var(--ease), background 0.3s; }
.contato-info .icon-wrap:hover { transform: translateY(-4px) scale(1.1); }
.contato-info .info-text a { transition: color 0.3s; }
.contato-info .info-text a:hover { color: var(--rose); }

.contato-label { font-size: 0.82rem; letter-spacing: 3px; margin-bottom: 8px; display: block; }
.contato-info h2 { font-size: clamp(1.9rem,3vw,2.9rem); margin-bottom: 8px; }
.contato-sub { font-size: 1rem; color: var(--text-light); margin-bottom: 20px; }

.info-list { margin-bottom: 20px; display: flex; flex-direction: column; align-items: center; gap: 12px; }
.info-item { display: flex; align-items: center; justify-content: flex-start; width: 100%; max-width: 250px; gap: 10px; text-align: left; }
.icon-wrap { width: 40px; height: 40px; border-radius: 40% 60% 50% 50%; display: flex; justify-content: center; align-items: center; font-size: 1rem; text-decoration: none; flex-shrink: 0; }
.info-text h4 { font-size: 1.05rem; color: var(--dark); margin-bottom: 2px; font-family: 'Pathway Gothic One', sans-serif; letter-spacing: 1px; }
.info-text p, .info-text a { font-size: 0.95rem; color: var(--text-light); text-decoration: none; font-family: 'Scope One', serif; }
.info-text a { cursor: pointer; }
.info-text a:hover { color: var(--rose) !important; }

.social-links { display: flex; flex-direction: column; align-items: center; border-top: 1px solid var(--bg-light); padding-top: 20px; }
.social-links h4 { font-size: 1.05rem; margin-bottom: 12px; color: var(--dark); }
.social-icons { display: flex; gap: 16px; justify-content: center; }
.social-icons .icon-wrap { width: 42px; height: 42px; font-size: 1rem; }
.social-icons .icon-wrap:hover { transform: translateY(-3px); }

.mapa-wrapper { flex: 1; min-width: 320px; display: flex; flex-direction: column; }
.mapa-titulo-bar {
    background: var(--dark); color: var(--beige);
    padding: 11px 18px; border-radius: 14px 14px 0 0;
    display: flex; align-items: center; gap: 8px;
    font-family: 'Pathway Gothic One', sans-serif;
    font-size: 0.78rem; letter-spacing: 2.5px; text-transform: uppercase;
}
.mapa-titulo-bar i { color: var(--rose); font-size: 0.88rem; }
.mapa-container {
    flex: 1; min-height: 340px; border-radius: 0 0 24px 24px !important;
    overflow: hidden; border: 1px solid var(--beige);
    position: relative; z-index: 2;
    box-shadow: 0 12px 40px rgba(51,51,51,0.05);
}
.mapa-container iframe { display: block; }
.mapa-container::after {
    content: ""; position: absolute; inset: 8px;
    border: 1.5px solid rgba(90,135,140,0.22); border-radius: 18px; pointer-events: none;
}

/* ============================================================
   FOOTER
============================================================ */
.footer { padding: 50px 0 20px; position: relative; z-index: 2; margin-top: -1px; overflow: hidden; }
.footer-container { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 40px; margin-bottom: 40px; }
.footer-col-marca { flex: 1.2; min-width: 260px; }
.footer-logo { margin-bottom: 16px; }
.footer-logo-img { height: 46px !important; }
.footer-col-marca p { opacity: 0.85; font-size: 0.95rem; font-family: 'Scope One', serif; }
.footer-linha-rosa { border: none; border-top: 1.5px solid var(--rose); margin-top: 24px; width: 60px; opacity: 0.8; }
.links-rapidos { flex: 1; min-width: 150px; }
.footer-col h4 { font-family: 'Migra', serif; font-size: 1.4rem; margin-bottom: 20px; letter-spacing: 0.5px; }
.links-rapidos ul { list-style: none; }
.links-rapidos ul li { margin-bottom: 12px; }
.links-rapidos ul a { opacity: 0.8; text-decoration: none; font-size: 0.9rem; transition: 0.3s; color: var(--beige); font-family: 'Pathway Gothic One', sans-serif; letter-spacing: 1px; }
.links-rapidos ul a:hover { opacity: 1; color: var(--rose); }
.footer-horarios { flex: 1.2; min-width: 240px; }
.horario-linha { display: flex; justify-content: space-between; margin-bottom: 12px; border-bottom: 1px solid rgba(255,255,255,0.05); padding-bottom: 6px; }
.horario-linha:last-child { border-bottom: none; }
.horario-linha .dia { color: var(--beige); opacity: 0.9; font-size: 0.95rem; font-family: 'Scope One', serif; }
.horario-linha .hora { font-size: 0.95rem; font-family: 'Pathway Gothic One', sans-serif; letter-spacing: 0.5px; }
.hora-rose { color: var(--rose); }
.hora-teal { color: var(--teal); }
.hora-brown { color: var(--brown); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; border-top: 1px solid rgba(221,209,195,0.15); padding-top: 20px; }
.footer-credits { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.footer-bottom p { opacity: 0.7; font-size: 0.86rem; margin: 0; font-family: 'Scope One', serif; }
.dev-credit { text-decoration: none; color: rgba(221,209,195,0.38) !important; font-family: 'Pathway Gothic One', sans-serif; font-size: 0.75rem !important; letter-spacing: 0.3px; transition: color 0.3s; display: inline-block; }
.dev-credit:hover { color: rgba(221,209,195,0.65) !important; }

/* ============================================================
   BACK TO TOP
============================================================ */
.back-to-top {
    position: fixed; bottom: 95px; right: 26px;
    background-color: var(--rose); color: var(--white);
    width: 48px; height: 48px;
    border-radius: 40% 60% 55% 45% / 50% 55% 45% 50%;
    display: flex; justify-content: center; align-items: center;
    font-size: 18px; z-index: 9800; border: none; cursor: pointer;
    opacity: 0; pointer-events: none; transition: all 0.4s var(--ease);
    box-shadow: 0 4px 12px rgba(140,39,66,0.3);
}
.back-to-top.show { opacity: 1; pointer-events: all; }
.back-to-top:hover { transform: translateY(-5px) scale(1.05); background-color: var(--teal); border-radius: 50%; }
.back-to-top.bubble-up { bottom: 110px; }

/* ============================================================
   WHATSAPP FLOAT
============================================================ */
.whatsapp-float-wrapper {
    position: fixed; bottom: 26px; right: 26px;
    z-index: 9000; display: flex; flex-direction: column; align-items: flex-end; gap: 0;
}
.whatsapp-float {
    position: relative; width: 82px !important; height: 82px !important;
    font-size: 44px !important; background-color: var(--teal);
    color: white; border-radius: 48% 52% 44% 56% / 52% 44% 56% 48%;
    display: flex; justify-content: center; align-items: center;
    cursor: pointer; border: none; outline: none;
    box-shadow: 0 6px 24px rgba(90,135,140,0.45) !important;
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
    overflow: visible !important;
}
.whatsapp-float:hover { transform: scale(1.10); box-shadow: 0 8px 28px rgba(90,135,140,0.6) !important; }
.whatsapp-float::before {
    content: "";
    position: absolute; inset: -8px; border-radius: 50%;
    border: 1.5px dashed rgba(90,135,140,0.35);
    pointer-events: none;
    animation: wa-draw 0.6s ease forwards;
}
@keyframes wa-draw {
    from { stroke-dasharray: 0 300; opacity: 0; }
    to { opacity: 1; }
}
.wa-idle-nudge {
    position: absolute; bottom: calc(100% + 8px); right: 13px;
    opacity: 0; pointer-events: none; transition: opacity 0.4s var(--ease);
}
.wa-idle-nudge.show { opacity: 1; animation: wa-nudge-bounce 1.2s ease-in-out infinite; }
@keyframes wa-nudge-bounce { 0%,100% { transform: translateY(0); } 50% { transform: translateY(8px); } }

/* BalÃ£o bubble â€” lado esquerdo do botÃ£o */

.wa-bubble {
    /* Bubble à ESQUERDA do botão, seta aponta para DIREITA */
    position: absolute;
    bottom: 10px;
    right: calc(100% + 14px);
    left: auto; top: auto;
    background: var(--rose);
    color: var(--white);
    font-family: 'Scope One', serif;
    font-size: 0.95rem;
    line-height: 1.5;
    padding: 14px 18px;
    border-radius: 18px 18px 18px 6px;
    box-shadow: 0 8px 28px rgba(140,39,66,0.25);
    max-width: 280px; min-width: 160px;
    opacity: 0;
    transform: translateX(-8px) scale(0.97);
    pointer-events: none;
    transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
    white-space: normal; word-wrap: break-word;
    border: 1px solid rgba(255,255,255,0.1);
}
/* Seta apontando para DIREITA — em direção ao botão */
.wa-bubble::after {
    content: '';
    position: absolute;
    right: -8px;
    bottom: 16px;
    top: auto; left: auto;
    width: 0; height: 0;
    background: none;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 8px solid var(--rose);
    transform: none;
    box-shadow: none;
}
.wa-bubble::before { display: none; }
.wa-bubble.show {
    opacity: 1;
    transform: translateX(0) scale(1);
    pointer-events: auto;
}
.wa-bubble-text strong { color: var(--beige); }
.wa-bubble-close {
    position: absolute;
    top: 8px;
    right: 10px;
    background: rgba(255,255,255,0.18);
    border: none;
    color: var(--white);
    font-size: 18px;
    cursor: pointer;
    padding: 4px 6px;
    border-radius: 12px;
    opacity: 0.75;
    transition: opacity 0.2s, background 0.2s;
}
.wa-bubble-close:hover { opacity: 1; background: rgba(255,255,255,0.28); }
/* Remove seta e gradiente do balão */
.wa-bubble::before, .wa-bubble-arrow { display: none !important; }

/* Modal WA â€” balÃ£o flutuante */
.whatsapp-modal {
    position: fixed; inset: 0; z-index: 9500;
    opacity: 0; pointer-events: none; transition: opacity 0.3s ease;
}
.whatsapp-modal.active { opacity: 1; pointer-events: all; }
.whatsapp-modal-content {
    position: fixed; bottom: 100px; right: 26px;
    background: var(--bg-light);
    width: 380px; max-width: calc(100vw - 40px);
    border-radius: 22px 22px 28px 28px;
    box-shadow: 0 16px 48px rgba(51,51,51,0.18), 0 1.5px 0 var(--rose);
    overflow: visible;
    transform: scale(0.85) translateY(20px) translateX(10px);
    transform-origin: bottom right;
    transition: transform 0.35s cubic-bezier(0.2,1,0.3,1);
    border: 1px solid rgba(221,209,195,0.8);
    padding: 0 0 12px 0;
}
.whatsapp-modal-content::before {
    content: "";
    position: absolute;
    top: -18px; left: 38px;
    width: 38px; height: 18px;
    background: var(--bg-light);
    border-radius: 18px 18px 0 0;
    box-shadow: 0 -2px 0 var(--rose);
    z-index: 2;
}
.whatsapp-modal-content::after {
    content: "";
    position: absolute;
    top: -14px; left: 60px;
    width: 0; height: 0;
    border-left: 14px solid transparent;
    border-right: 14px solid transparent;
    border-bottom: 14px solid var(--bg-light);
    filter: drop-shadow(0 -2px 0 var(--rose));
    z-index: 3;
}

.whatsapp-modal.active .whatsapp-modal-content { transform: scale(1) translateY(0) translateX(0); }
.whatsapp-modal-content::after {
    content: "";
    position: absolute; bottom: -10px; right: 28px;
    width: 20px; height: 20px; background: var(--bg-light);
    transform: rotate(45deg);
    box-shadow: 3px 3px 6px rgba(51,51,51,0.08);
    border-radius: 0 0 3px 0;
    border-right: 1px solid rgba(221,209,195,0.8);
    border-bottom: 1px solid rgba(221,209,195,0.8);
}
.wa-chat-header {
    background: var(--teal); padding: 16px 20px 14px;
    display: flex; align-items: center; gap: 12px;
    position: relative; overflow: hidden; z-index: 1;
}
.wa-chat-header::after { content: ""; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--rose), var(--brown), transparent); opacity: 0.5; }
.wa-chat-avatar { width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,0.18); display: flex; align-items: center; justify-content: center; border: 1.5px solid rgba(255,255,255,0.35); font-size: 20px; flex-shrink: 0; }
.wa-chat-info { flex: 1; }
.wa-chat-name { font-family: 'Migra', serif; font-size: 1.05rem; color: white; display: block; line-height: 1.2; }
.wa-chat-status { font-family: 'Scope One', serif; font-size: 0.72rem; color: rgba(255,255,255,0.8); display: flex; align-items: center; gap: 4px; }
.wa-chat-status::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: #4ade80; display: inline-block; }
.whatsapp-close { background: none !important; border: none !important; color: rgba(255,255,255,0.85) !important; position: relative !important; top: auto !important; right: auto !important; font-size: 24px !important; cursor: pointer; transition: color 0.2s !important; padding: 0 2px; }
.whatsapp-close:hover { color: white !important; }
.wa-chat-body { padding: 14px 16px 10px; min-height: 90px; display: flex; flex-direction: column; gap: 8px; position: relative; z-index: 1; }
.wa-msg-bubble { align-self: flex-start; background: white; border-radius: 4px 18px 18px 18px; padding: 10px 14px 8px; max-width: 86%; font-family: 'Scope One', serif; font-size: 0.87rem; color: var(--dark); line-height: 1.5; box-shadow: 0 2px 8px rgba(51,51,51,0.07); position: relative; }
.wa-msg-bubble::before { content: ""; position: absolute; top: 0; left: -7px; width: 0; height: 0; border-right: 8px solid white; border-bottom: 8px solid transparent; }
.wa-msg-bubble strong { color: var(--rose); }
.wa-msg-time { font-size: 0.66rem; color: #aaa; text-align: right; display: block; margin-top: 4px; }
.wa-msg-bubble-2 { background: var(--bg-light); border: 1px solid var(--beige); }
.wa-msg-bubble-2::before { border-right-color: var(--bg-light); }
.wa-chat-divider { height: 1px; margin: 4px 16px 0; background: linear-gradient(90deg, transparent, var(--beige), transparent); }
.wa-options-label { font-family: 'Pathway Gothic One', sans-serif; font-size: 0.72rem; letter-spacing: 1.5px; color: #bbb; text-transform: uppercase; text-align: center; padding: 8px 0 4px; }
.wa-chat-options.whatsapp-options { display: flex !important; flex-direction: column; gap: 7px; padding: 0 16px 20px; }
.btn-wa-option {
    background: white !important; border: 1.5px solid var(--beige) !important;
    border-radius: 22px !important; padding: 10px 16px !important; font-size: 0.92rem !important;
    justify-content: flex-start !important; color: var(--dark) !important; gap: 10px !important;
    box-shadow: 0 2px 6px rgba(51,51,51,0.04) !important; transition: all 0.25s ease !important;
    display: flex !important; align-items: center !important; cursor: pointer !important;
    font-family: 'Pathway Gothic One', sans-serif !important; letter-spacing: 0.5px !important;
}
.btn-wa-option i { color: var(--teal) !important; width: 18px; text-align: center; }
.btn-wa-option:hover { background: var(--teal) !important; border-color: var(--teal) !important; color: white !important; transform: translateX(4px) !important; box-shadow: 0 4px 14px rgba(90,135,140,0.22) !important; }
.btn-wa-option:hover i { color: white !important; }
.btn-wa-option.is-selected { background: var(--rose) !important; border-color: var(--rose) !important; color: white !important; }
.btn-wa-option.is-selected i { color: white !important; }
.btn-wa-option.is-hidden { display: none !important; }

/* ============================================================
   MODAL DA GALERIA LIGHTBOX
============================================================ */
.galeria-modal {
    display: none; position: fixed; z-index: 10000; left: 0; top: 0;
    width: 100vw; height: 100vh;
    background: linear-gradient(135deg, rgba(51,51,51,0.88) 0%, rgba(70,42,52,0.85) 50%, rgba(140,39,66,0.78) 100%);
    backdrop-filter: blur(12px); padding: 20px; box-sizing: border-box;
}
.galeria-modal.active { display: flex; align-items: center; justify-content: center; }
.galeria-modal-content {
    position: relative; width: 100%; max-width: 980px; max-height: 92vh;
    background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(237,229,224,0.98));
    border: 2px solid rgba(140,39,66,0.12); border-radius: 32px; padding: 22px;
    box-shadow: 0 25px 70px rgba(0,0,0,0.18);
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 12px; overflow: hidden; z-index: 1;
}
#galeria-modal-img {
    width: 100%; height: auto; max-height: calc(92vh - 110px);
    object-fit: contain; border-radius: 26px;
    box-shadow: 0 18px 50px rgba(0,0,0,0.16); transition: transform 0.3s ease;
}
#galeria-modal-video {
    width: 100%; height: auto; max-height: calc(92vh - 110px);
    object-fit: contain; border-radius: 26px;
    box-shadow: 0 18px 50px rgba(0,0,0,0.16); background: #000;
}
.galeria-close {
    position: absolute; top: 18px; right: 18px; color: var(--dark);
    font-size: 30px; font-weight: bold; background: var(--bg-light);
    border: 1px solid rgba(140,39,66,0.18); border-radius: 50%; cursor: pointer;
    z-index: 10002; width: 45px; height: 45px; display: flex; align-items: center; justify-content: center; transition: all 0.3s ease;
}
.galeria-close:hover { background-color: var(--rose); color: var(--white); }
.galeria-nav {
    position: absolute; top: 50%; transform: translateY(-50%);
    color: var(--white); font-size: 34px; font-weight: bold;
    background: var(--rose); border: 1px solid rgba(255,255,255,0.3);
    border-radius: 50%; cursor: pointer; z-index: 10002;
    width: 54px; height: 54px; display: flex; align-items: center; justify-content: center; transition: all 0.3s ease;
}
.galeria-nav:hover { background-color: var(--dark); transform: translateY(-50%) scale(1.05); }
.galeria-prev { left: 12px; }
.galeria-next { right: 12px; }
.galeria-counter {
    position: absolute; bottom: 18px; left: 50%; transform: translateX(-50%);
    color: var(--dark); font-size: 15px; background-color: var(--beige);
    border: 1px solid rgba(140,39,66,0.14); padding: 10px 18px; border-radius: 24px;
    font-family: 'Scope One', serif;
}
.galeria-instagram-btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    padding: 11px 24px; border-radius: 40px; background: var(--rose); color: var(--bg-light);
    border: 2px solid var(--rose); font-family: 'Pathway Gothic One', sans-serif;
    font-size: 0.98rem; letter-spacing: 1px; text-transform: uppercase; text-decoration: none;
    box-shadow: 0 4px 16px rgba(140,39,66,0.18); transition: all 0.3s var(--ease);
    margin-top: 8px; position: relative; z-index: 10003; flex-shrink: 0;
}
.galeria-instagram-btn:hover { background: var(--dark); border-color: var(--dark); transform: translateY(-3px); }
.galeria-instagram-icon { width: 18px; height: 18px; flex-shrink: 0; }

/* Modal mobile galeria */
.galeria-todas-modal { display: none; position: fixed; inset: 0; z-index: 10001; background: rgba(51,51,51,0.78); backdrop-filter: blur(6px); padding: 16px; align-items: center; justify-content: center; }
.galeria-todas-modal.active { display: flex; }
.galeria-todas-inner { background: var(--bg-light); border-radius: 24px; width: 100%; max-width: 640px; max-height: 90vh; overflow-y: auto; padding: 20px 14px; position: relative; }
.galeria-todas-close { position: absolute; top: 12px; right: 14px; font-size: 26px; background: none; border: none; cursor: pointer; color: var(--text-light); }
.galeria-todas-close:hover { color: var(--rose); }
.galeria-todas-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; margin-top: 40px; }
.galeria-todas-grid img, .galeria-todas-grid video { width: 100%; height: 100px; object-fit: cover; border-radius: 12px; cursor: pointer; display: block; }

/* Navbar pill dark mode */
.navbar-pill.on-dark { background: rgba(51,51,51,0.95); border-color: rgba(221,209,195,0.2); }
.navbar-pill.on-dark a { color: var(--beige); }
.navbar-pill.on-dark a:hover, .navbar-pill.on-dark a.active { color: var(--rose); }

/* ============================================================
   RESPONSIVO
============================================================ */
@media (max-width: 992px) {
    .hero, .sobre, .servicos, .galeria { height: auto; min-height: unset; max-height: unset; padding: 42px 0; }
    .container { padding: 0 18px; }
    .hero-image::before, .hero-image::after { display: none; }
    .hero-container, .contato-container, .footer-container { flex-direction: column; text-align: center; }
    .sobre-row { flex-direction: column; gap: 28px; text-align: center; }
    .sobre-text { order: 1; } .sobre-img-box { order: 2; }
    .hero { padding: 28px 0 20px; }
    .hero-content h1 { font-size: 2.6rem; }
    .desktop-nav { display: none; }
    .hero-img-blob { width: 100%; max-width: 380px; margin: 0 auto; }
    .sobre-rows { gap: 48px; }
    .sobre-trunk { display: none; }
    .sobre-duo { max-width: 500px; margin: 0 auto; padding: 30px 0 50px; }
    .sobre-duo-back { left: 18px; }
    .mapa-container { width: 100%; height: 350px; min-height: 350px; flex: none; }
    .navbar-pill { display: none !important; }
    .videos-grid { grid-template-columns: repeat(3,1fr); gap: 12px; }
    .whatsapp-modal-content { right: 12px; bottom: 86px; width: calc(100vw - 24px); }
}
@media (max-width: 768px) {
    .container { padding: 0 14px; }
    .hero { padding: 20px 0 16px; }
    .hero-container { gap: 12px; }
    .hero-content h1 { font-size: 2rem; }
    .hero-content p { font-size: 0.88rem; max-width: 100%; }
    .hero-img-blob { width: 72vw; max-width: 280px; }
    .hero-btns { justify-content: center; }
    .sobre-img-box { max-width: 100%; width: 100%; }
    .sobre-duo { max-width: 100%; padding: 16px 0 40px; }
    .sobre-branch-photo img { height: 200px; }
    .sobre-branch-photo::before { display: none; }
    .galeria-grid { display: flex; flex-wrap: nowrap; overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; scrollbar-width: none; gap: 8px; padding: 4px 0 8px; max-height: unset; }
    .galeria-grid::-webkit-scrollbar { display: none; }
    .galeria-grid.expanded { max-height: unset; }
    .galeria-item { flex: 0 0 calc(33.333% - 6px); width: calc(33.333% - 6px); scroll-snap-align: start; border-radius: 18px !important; transform: none !important; -webkit-mask-image: none !important; mask-image: none !important; outline: none !important; box-shadow: none !important; }
    .galeria-item:hover { transform: none !important; box-shadow: none !important; }
    .galeria-item::after, .galeria-item::before { display: none !important; }
    .galeria-item img, .galeria-item video { height: clamp(90px,22vw,140px); }
    .galeria-instagram-card { flex: 0 0 calc(33.333% - 6px); width: calc(33.333% - 6px); min-height: clamp(90px,22vw,140px); border-radius: 14px !important; }
    .galeria-fade { display: none; }
    .galeria-ver-mais { display: flex; align-items: center; justify-content: center; gap: 7px; margin: 14px auto 0; background: transparent; border: 1.5px solid var(--rose); color: var(--rose); font-family: 'Pathway Gothic One', sans-serif; font-size: 1rem; letter-spacing: 1px; padding: 10px 24px; border-radius: 40px; cursor: pointer; transition: all 0.3s var(--ease); }
    .galeria-ver-mais:hover { background: var(--rose); color: var(--white); }
    .servicos-grid { display: flex; flex-wrap: nowrap; overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; scrollbar-width: none; padding: 8px 20px 16px; margin: 0 -14px; gap: 14px; justify-content: flex-start; grid-template-columns: none; }
    .servicos-grid::-webkit-scrollbar { display: none; }
    .card-servico { flex: 0 0 80vw; width: 80vw; max-width: 300px; scroll-snap-align: center; }
    .servicos-dots { display: flex; }
    .videos-grid { grid-template-columns: 1fr; gap: 14px; }
    .video-card { max-height: 300px; aspect-ratio: 16/9; }
    .contato-info, .mapa-container { min-width: 0; width: 100%; }
    .footer { padding: 34px 0 16px; }
    .footer-container { gap: 22px; text-align: center; margin-bottom: 24px; }
    .footer-bottom { justify-content: center; flex-direction: column; gap: 8px; text-align: center; padding-top: 14px; }
    .footer-credits { flex-direction: column; gap: 8px; align-items: center; }
    .links-rapidos ul { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; }
    .links-rapidos ul li { margin-bottom: 0; }
    .info-list { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; align-items: start; justify-items: start; }
    .info-item { width: 100%; justify-content: flex-start; text-align: left; flex-direction: row; max-width: 100%; }
    .cta-img-container { height: 210px; border-radius: 52px 30px 60px 32px / 34px 62px 38px 56px; }
    .cta-img { border-radius: 52px 30px 60px 32px / 34px 62px 38px 56px; }
    .back-to-top { width: 42px; height: 42px; font-size: 15px; right: 14px; bottom: 72px; }
    .whatsapp-float { width: 56px !important; height: 56px !important; font-size: 26px !important; }
    .whatsapp-float-wrapper { right: 12px; bottom: 14px; }
    .wa-bubble { max-width: 220px; min-width: 160px; font-size: 0.82rem; }
    .galeria-fullscreen-grid { grid-template-columns: repeat(3,1fr); }
}
@media (max-width: 480px) {
    .hero, .sobre, .servicos, .galeria, .contato { padding-top: 30px; padding-bottom: 30px; }
    .hero-content h1 { font-size: 1.9rem; }
    .sobre-branch-photo img { height: 180px; }
    .cta-img-container { height: 170px; border-radius: 38px 24px 46px 26px / 26px 44px 30px 40px; }
    .back-to-top { right: 10px; bottom: calc(68px + env(safe-area-inset-bottom)); }
    .whatsapp-float-wrapper { right: 10px; bottom: calc(10px + env(safe-area-inset-bottom)); }
    .galeria-fullscreen-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 400px) {
    .container { padding: 0 12px; }
    .hero-content h1 { font-size: 1.75rem; }
    .footer { padding: 28px 0 12px; }
    .whatsapp-float { width: 50px !important; height: 50px !important; font-size: 22px !important; }
    .whatsapp-float-wrapper { right: 8px; bottom: calc(8px + env(safe-area-inset-bottom)); }
}

/* ============================================================
   POMPET v3.1 â€” MELHORIAS VISUAIS
============================================================ */

/* --- Hero: imagem maior + linhas melhoradas --- */
.hero-image::before {
    width: 180px !important; height: 200px !important;
    border: none !important;
    border-top: 2px solid rgba(140,39,66,0.22) !important;
    border-right: 2px solid rgba(140,39,66,0.16) !important;
    border-radius: 0 80px 0 0 !important;
    top: -28px !important; right: -32px !important;
}
.hero-image::after {
    width: 140px !important; height: 130px !important;
    border: none !important;
    border-bottom: 1.8px solid rgba(90,135,140,0.25) !important;
    border-left: 1.8px solid rgba(90,135,140,0.18) !important;
    border-radius: 0 0 0 65px !important;
    bottom: -24px !important; left: -28px !important;
}

/* Hero doodle SVG - REMOVIDO: não usado */

/* --- DivisÃ³ria heroâ†’sobre removida --- */
.home-sobre-divider { display: none !important; } /* REMOVIDO: não usado */

/* --- Elementos strip: mais modelos de blobs --- */
.elementos-strip { padding: 20px 0 28px; }
.elem-blob-1 { width: 76px; height: 56px; border-radius: 64% 36% 50% 50% / 56% 42% 58% 44%; }
.elem-blob-2 { width: 100px; height: 64px; border-radius: 46% 54% 62% 38% / 50% 42% 58% 50%; }
.elem-blob-3 { width: 62px; height: 62px; border-radius: 48% 52% 54% 46% / 52% 48% 52% 48%; }
.elem-blob-4 { width: 86px; height: 58px; border-radius: 42% 58% 56% 44% / 48% 56% 44% 52%; }
.elem-blob-5 { width: 78px; height: 78px; border-radius: 44% 56% 52% 48% / 42% 58% 42% 58%; }
.elem-blob-6 { width: 72px; height: 74px; border-radius: 56% 44% 46% 54% / 50% 60% 40% 50%; }

/* --- Sobre: blobs decorativos nas fotos secundÃ¡rias --- */
.sobre-branch-photo { position: relative; overflow: visible !important; }
.branch-deco-blobs { position: absolute; inset: 0; pointer-events: none; z-index: -1; overflow: visible; }
.branch-deco-blob {
    position: absolute;
    pointer-events: none;
    transition: transform 0.8s var(--ease), opacity 0.6s ease;
}
.branch-deco-single {
    position: absolute;
    width: 110%; height: 110%;
    top: -5%; left: -5%;
    border-radius: 54% 46% 42% 58% / 46% 58% 42% 54%;
    opacity: 0.15;
    pointer-events: none;
    z-index: -1;
}
.sobre-row:nth-child(2) .branch-deco-single { background: var(--teal); }
.sobre-row:nth-child(3) .branch-deco-single { background: var(--rose); }
.sobre-row:nth-child(4) .branch-deco-single { background: var(--brown); }
.sobre-branch-photo:hover .branch-deco-single {
    opacity: 0.25;
    transform: scale(1.05) rotate(3deg);
}

/* --- Sobre timeline: patinhas e curvas melhoradas --- */
.sobre-trunk line { stroke-dasharray: 0 !important; opacity: 0.55 !important; stroke-width: 2.5px !important; }
.sobre-trunk path {
    stroke-dasharray: 0 !important;
    stroke-width: 1.5px !important;
    opacity: 0.40 !important;
}

/* --- Fix paw icons: diferenciais e equipe --- */
.sobre-diferenciais-list li::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M226.5 92.9c14.3 42.9-.3 86.2-32.6 96.8s-70.1-15.6-84.4-58.5c-14.3-42.9.3-86.2 32.6-96.8s70.1 15.6 84.4 58.5zM100.4 198.6c18.9 32.4 14.3 70.1-10.2 84.1s-59.7-.9-78.5-33.3C-7.2 217.1-2.6 179.3 21.9 165.4s59.7.9 78.5 33.2zm311.1 0c18.9-32.4 54.1-45.5 78.5-33.2s28.6 51.7 9.8 84.1c-18.9 32.4-54.1 45.5-78.5 33.3s-29.3-51.7-9.8-84.2zM285.5 92.9c14.3-42.9 51.7-70.8 84.4-58.5s46.9 53.9 32.6 96.8c-14.3 42.9-51.7 70.8-84.4 58.5s-46.9-53.9-32.6-96.8zM256 320c23.5 0 46 4.8 66.4 13.5C371.3 354.5 408 406.4 408 464c0 26.5-21.5 48-48 48H152c-26.5 0-48-21.5-48-48 0-57.6 36.7-109.5 85.6-130.5C210 324.8 232.5 320 256 320z' fill='%235A878C'/%3E%3C/svg%3E") !important;
    width: 18px !important; height: 18px !important;
    top: 0.55em !important;
}

/* --- Fix paw icons nos wave dividers --- */
.wave-divider::before, .wave-divider::after {
    width: 44px !important; height: 44px !important;
    opacity: 0.12 !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M226.5 92.9c14.3 42.9-.3 86.2-32.6 96.8s-70.1-15.6-84.4-58.5c-14.3-42.9.3-86.2 32.6-96.8s70.1 15.6 84.4 58.5zM100.4 198.6c18.9 32.4 14.3 70.1-10.2 84.1s-59.7-.9-78.5-33.3C-7.2 217.1-2.6 179.3 21.9 165.4s59.7.9 78.5 33.2zm311.1 0c18.9-32.4 54.1-45.5 78.5-33.2s28.6 51.7 9.8 84.1c-18.9 32.4-54.1 45.5-78.5 33.3s-29.3-51.7-9.8-84.2zM285.5 92.9c14.3-42.9 51.7-70.8 84.4-58.5s46.9 53.9 32.6 96.8c-14.3 42.9-51.7 70.8-84.4 58.5s-46.9-53.9-32.6-96.8zM256 320c23.5 0 46 4.8 66.4 13.5C371.3 354.5 408 406.4 408 464c0 26.5-21.5 48-48 48H152c-26.5 0-48-21.5-48-48 0-57.6 36.7-109.5 85.6-130.5C210 324.8 232.5 320 256 320z' fill='%238C2742'/%3E%3C/svg%3E") !important;
}


/* --- Anéis decorativos nos cards de serviços --- */
.card-servico {
    position: relative;
    overflow: visible;
}
.card-servico .servico-ring {
    position: absolute;
    border: 2.5px solid var(--rose);
    border-radius: 50%;
    opacity: 0.18;
    pointer-events: none;
    z-index: 1;
    transition: transform 0.5s var(--ease);
}
.card-servico .servico-ring.teal { border-color: var(--teal); opacity: 0.16; }
.card-servico .servico-ring.brown { border-color: var(--brown); opacity: 0.13; }
.card-servico .servico-ring.beige { border-color: var(--beige); opacity: 0.12; }

/* Tamanhos e posições variadas (exemplo para até 4 cards) */
.card-servico .servico-ring.ring1 { width: 38px; height: 38px; top: -18px; left: -18px; }
.card-servico .servico-ring.ring2 { width: 22px; height: 22px; top: 12px; right: -14px; }
.card-servico .servico-ring.ring3 { width: 54px; height: 54px; bottom: -22px; right: 10px; }
.card-servico .servico-ring.ring4 { width: 28px; height: 28px; bottom: 18px; left: -14px; }
.card-servico .servico-ring.ring5 { width: 18px; height: 18px; top: 50%; left: -10px; transform: translateY(-50%); }
.card-servico .servico-ring.ring6 { width: 32px; height: 32px; bottom: 10px; right: -18px; }

@media (max-width: 768px) {
  .card-servico .servico-ring { display: none; }
}

.sm-servico-img {
    width: 100%;
    height: 250px; /* Mantenha a altura que você já está usando */
    object-fit: contain; /* Essa propriedade impede o corte */
    object-position: center; /* Mantém a imagem centralizada */
    background-color: transparent; /* Opcional: define a cor de fundo das bordas que sobrarem */
    border-radius: 8px 8px 0 0; /* Mantenha os cantos arredondados se você já tiver */
}
.sm-header::before {
    content: ""; position: absolute; top: -20px; right: -20px;
    width: 100px; height: 100px;
    border-radius: 48% 52% 44% 56% / 52% 44% 56% 48%;
    background: rgba(255,255,255,0.06); pointer-events: none;
}

/* --- CTA: formato irregular melhorado, texto centralizado --- */
.cta-content {
    text-align: center !important;
    display: flex !important; flex-direction: column !important;
    align-items: center !important; gap: 16px !important;
}
.cta-callout {
    font-size: 1.15rem !important; max-width: 520px;
    text-align: center !important;
}

/* --- Pill nav: mais estreita + back-to-top integrado --- */
.navbar-pill {
    padding: 10px 8px 10px 12px !important;
    gap: 2px !important;
    border-radius: 18px 0 0 18px !important;
}
.navbar-pill a {
    font-size: 0.72rem !important; padding: 4px 6px !important;
    letter-spacing: 1.2px !important;
}
.pill-back-to-top {
    background: var(--rose); color: var(--white);
    width: 30px; height: 30px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 12px; border: none; cursor: pointer;
    margin-top: 6px; align-self: center;
    transition: background 0.3s var(--ease), transform 0.3s var(--ease);
    box-shadow: 0 3px 10px rgba(140,39,66,0.25);
    z-index: 12001;
}
.pill-back-to-top:hover { background: var(--teal); transform: scale(1.12); }

/* Back-to-top original: escondido, pill controla isso agora */
.back-to-top { display: none !important; }

/* --- WhatsApp: sparkle rays --- */
.wa-spark {
    position: absolute !important; inset: -22px !important;
    pointer-events: none; z-index: -1;
}
.wa-spark-ray {
    position: absolute; width: 3px; height: 16px;
    background: linear-gradient(to top, transparent, var(--rose));
    border-radius: 2px; opacity: 0;
    animation: sparkle-ray 5s ease-in-out infinite;
}
.wa-spark-ray:nth-child(1) { top: -4px; left: 50%; transform: translateX(-50%); animation-delay: 0s; }
.wa-spark-ray:nth-child(2) { top: 4px; right: -4px; transform: rotate(45deg); animation-delay: 0.7s; }
.wa-spark-ray:nth-child(3) { top: 50%; right: -6px; transform: translateY(-50%) rotate(90deg); animation-delay: 1.3s; }
.wa-spark-ray:nth-child(4) { bottom: 4px; right: -4px; transform: rotate(135deg); animation-delay: 2s; }
.wa-spark-ray:nth-child(5) { bottom: -4px; left: 50%; transform: translateX(-50%) rotate(180deg); animation-delay: 2.6s; }
.wa-spark-ray:nth-child(6) { bottom: 4px; left: -4px; transform: rotate(225deg); animation-delay: 3.3s; }
.wa-spark-ray:nth-child(7) { top: 50%; left: -6px; transform: translateY(-50%) rotate(270deg); animation-delay: 3.9s; }
.wa-spark-ray:nth-child(8) { top: 4px; left: -4px; transform: rotate(315deg); animation-delay: 0.4s; }
@keyframes sparkle-ray {
    0%, 100% { opacity: 0; height: 16px; }
    12% { opacity: 0.7; height: 20px; }
    24% { opacity: 0; height: 16px; }
}
@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* --- WhatsApp: bubble maior e timing melhor --- */
/* wa-bubble override merged above */

/* --- WhatsApp modal: balÃ£o de opÃ§Ãµes simplificado --- */
.wa-options-balloon {
    background: var(--teal) !important;
    border-radius: 26px !important;
    box-shadow: 0 8px 32px rgba(90,135,140,0.18) !important;
    border: none !important;
    padding: 0 0 18px 0 !important;
    max-width: 370px;
    margin: 0 auto;
}
.wa-balloon-header {
    display: flex; align-items: center; gap: 12px;
    padding: 18px 24px 8px 24px;
    border-radius: 26px 26px 0 0;
    background: var(--teal);
    color: var(--white);
    position: relative;
    box-shadow: none;
}
.wa-balloon-header::after {
    display: none;
}
.wa-balloon-avatar {
    width: 38px; height: 38px; border-radius: 50%;
    background: rgba(255,255,255,0.18); display: flex;
    align-items: center; justify-content: center;
    border: 1.5px solid rgba(255,255,255,0.3);
    font-size: 18px; flex-shrink: 0;
}
.wa-balloon-info { flex: 1; }
.wa-balloon-name {
    font-family: 'Migra', serif; font-size: 1rem;
    color: white; display: block; line-height: 1.2;
}
.wa-balloon-status {
    font-family: 'Scope One', serif; font-size: 0.7rem;
    color: rgba(255,255,255,0.8); display: flex;
    align-items: center; gap: 4px;
}
.wa-balloon-status::before {
    content: ""; width: 6px; height: 6px;
    border-radius: 50%; background: #4ade80; display: inline-block;
}
.wa-options-balloon .whatsapp-close {
    background: none !important; border: none !important;
    color: rgba(255,255,255,0.85) !important;
    font-size: 22px !important; cursor: pointer;
    padding: 0 2px; transition: color 0.2s !important;
}
.wa-options-balloon .whatsapp-close:hover { color: white !important; }
.wa-balloon-label {
    font-family: 'Scope One', serif;
    font-size: 1.08rem;
    color: var(--white);
    padding: 10px 24px 0 24px;
    margin-bottom: 8px;
    text-align: center;
}
.wa-balloon-options {
    display: flex; flex-direction: column; gap: 14px;
    padding: 10px 18px 18px 18px;
}
.wa-balloon-options .btn-wa-option {
    display: flex; align-items: center; gap: 10px;
    background: var(--white) !important;
    color: var(--teal) !important;
    border: none !important;
    border-radius: 18px !important;
    font-family: 'Pathway Gothic One', sans-serif !important;
    font-size: 1.08rem !important;
    padding: 14px 20px !important;
    cursor: pointer !important;
    box-shadow: 0 2px 12px rgba(90,135,140,0.10) !important;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s !important;
    font-weight: 600;
    justify-content: flex-start !important;
    letter-spacing: 0.5px !important;
}
.wa-balloon-options .btn-wa-option i { color: var(--teal) !important; width: 18px; text-align: center; }
.wa-balloon-options .btn-wa-option:hover {
    background: var(--rose) !important;
    color: var(--white) !important;
    box-shadow: 0 6px 20px rgba(140,39,66,0.15) !important;
    transform: translateX(4px) !important;
}
.wa-balloon-options .btn-wa-option:hover i { color: var(--white) !important; }

/* --- Galeria: decoraÃ§Ãµes por seÃ§Ã£o --- */
.galeria { overflow: visible !important; }
.galeria::before {
    content: ""; position: absolute; top: 40px; left: -30px;
    width: 100px; height: 90px;
    border: 1.2px solid rgba(90,135,140,0.12);
    border-radius: 50% 50% 44% 56% / 48% 56% 44% 52%;
    pointer-events: none; z-index: 0;
    transform: rotate(-15deg);
}
.galeria::after {
    content: ""; position: absolute; bottom: 60px; right: -20px;
    width: 80px; height: 70px;
    border: 1px solid rgba(184,118,77,0.10);
    border-radius: 48% 52% 56% 44% / 52% 44% 56% 48%;
    pointer-events: none; z-index: 0;
    transform: rotate(12deg);
}

/* --- v3.1 Responsive overrides --- */
@media (max-width: 768px) {
    .galeria-videos-destaque {
        overflow-x: auto; scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch; scrollbar-width: none;
        padding: 0 14px 16px; gap: 12px;
    }
    .galeria-videos-destaque::-webkit-scrollbar { display: none; }
    .galeria-video-card {
        flex: 0 0 70vw; max-width: 260px;
        scroll-snap-align: center;
    }
    .hero-img-blob { width: min(320px, 80vw) !important; }
    .hero-image::before, .hero-image::after { display: none !important; }
    .branch-deco-blob { display: none; }
    .card-servico::before, .card-servico::after { display: none; }
}

/* ============================================================
   v3.2 — MELHORIAS VISUAIS INCREMENTAIS
============================================================ */

/* --- 1. Galeria: botão "ver mais fotos" mobile (hidden por default) --- */
.galeria-ver-mais { display: none; }

/* --- 6. Elementos strip melhorada --- */
.elementos-strip::before { display: none; }

/* --- 7. Hero: mancha teal mais visível + blob orgânico --- */
.hero::before {
    background: radial-gradient(ellipse, rgba(90,135,140,0.08) 0%, transparent 70%) !important;
    width: 500px !important; height: 500px !important;
}
.hero-img-blob {
    border-radius: 62% 38% 52% 48% / 48% 62% 38% 52% !important;
    border: 4px solid var(--beige) !important;
    box-shadow: 0 20px 60px rgba(51,51,51,0.12), 0 0 0 8px rgba(221,209,195,0.3) !important;
}

/* --- 8. CTA Banner: Imagem estática com bordas degradê sumindo no fundo --- */
.cta-img-container {
    position: relative;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.cta-img-container::before,
.cta-img-container::after { 
    display: none !important; 
}

.cta-img {
    position: relative;
    z-index: 1;
    border-radius: 0 !important;
    
    /* Imagem menor e totalmente estática */
    max-width: 70%;
    height: auto;
    transition: none !important;
    transform: none !important;
    animation: none !important;

    /* Mascaramento do degradê esfumaçado nos 4 lados */
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%),
                        linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%);
    -webkit-mask-composite: source-in;
    mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%),
                linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%);
    mask-composite: intersect;
}
/* --- 10. Legendas discretas em todas as imagens da galeria --- */
.galeria-item::after {
    content: attr(data-caption);
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 6px 10px;
    background: linear-gradient(to top, rgba(51,51,51,0.7), transparent);
    color: white;
    font-family: 'Pathway Gothic One', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(4px);
    transition: opacity 0.3s, transform 0.3s;
    pointer-events: none;
    border-radius: 0 0 16px 16px;
}
.galeria-item:hover::after {
    opacity: 1;
    transform: translateY(0);
}

/* --- 11. WhatsApp arco carregando + raios burst --- */
.wa-arc-progress {
    position: absolute;
    inset: -6px;
    border-radius: 48% 52% 44% 56% / 52% 44% 56% 48%;
    border: 2px solid transparent;
    border-top-color: var(--rose);
    pointer-events: none;
    opacity: 0;
    animation: none;
}
.wa-arc-progress.charging {
    opacity: 1;
    animation: wa-arc-spin 120s linear forwards;
}
@keyframes wa-arc-spin {
    0% { transform: rotate(0deg); border-top-color: var(--rose); }
    25% { border-right-color: var(--rose); }
    50% { border-bottom-color: var(--rose); }
    75% { border-left-color: var(--rose); }
    100% { transform: rotate(1080deg); border-color: var(--rose); }
}

/* Override sparkle-ray continuous animation — only burst */
.wa-spark-ray {
    animation: none !important;
    opacity: 0;
    transition: opacity 0.3s, transform 0.3s;
}
.wa-spark.burst .wa-spark-ray {
    opacity: 0.8;
    animation: sparkle-burst 0.6s ease-out forwards !important;
}
@keyframes sparkle-burst {
    0% { opacity: 0; transform: scale(0.5); }
    30% { opacity: 0.9; }
    100% { opacity: 0; transform: scale(1.5) translateY(-8px); }
}

/* --- 12. Mascote cachorro SVG --- */
.wa-mascot {
    position: absolute;
    bottom: 0; right: calc(100% + 8px);
    width: 60px; height: 75px;
    pointer-events: none;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
    z-index: -1;
}
.wa-mascot.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}
.mascot-svg { width: 100%; height: 100%; }
.mascot-hand {
    transform-origin: 62px 58px;
    animation: mascot-wave 1.5s ease-in-out 3;
}
.wa-mascot:not(.visible) .mascot-hand { animation: none; }
@keyframes mascot-wave {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-20deg); }
    75% { transform: rotate(15deg); }
}

.mascot-speech {
    position: absolute;
    bottom: calc(100% + 4px); right: -10px;
    background: var(--white);
    color: var(--dark);
    font-family: 'Scope One', serif;
    font-size: 0.72rem;
    line-height: 1.35;
    padding: 8px 12px;
    border-radius: 14px 14px 4px 14px;
    box-shadow: 0 4px 14px rgba(51,51,51,0.12);
    max-width: 180px;
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.3s, transform 0.3s;
    pointer-events: none;
}
.mascot-speech.show {
    opacity: 1;
    transform: scale(1);
}
.mascot-speech-arrow {
    position: absolute;
    bottom: -5px; right: 20px;
    width: 10px; height: 10px;
    background: var(--white);
    transform: rotate(45deg);
    box-shadow: 2px 2px 4px rgba(51,51,51,0.08);
}
.mascot-speech-text strong { color: var(--rose); }


/* ============================================================
   MODAL GALERIA LIGHTBOX — redesenhado com patinha (substituição)
============================================================ */
/* Reset do modal existente e estilo novo desenhado */
.galeria-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0; top: 0;
    width: 100vw; height: 100vh;
    background: rgba(40,24,30,0.82);
    backdrop-filter: blur(14px);
    padding: 20px;
    box-sizing: border-box;
    animation: galeria-modal-in 0.38s cubic-bezier(0.2,1,0.3,1);
}
.galeria-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Container principal do modal redesenhado */
.galeria-modal-content {
    position: relative;
    width: 100%;
    max-width: 900px;
    max-height: 90vh;
    background: var(--bg-light);
    border-radius: 32px;
    padding: 52px 20px 68px;
    box-shadow: 0 32px 80px rgba(0,0,0,0.28), 0 0 0 1.5px rgba(140,39,66,0.12);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    overflow: visible;
    z-index: 1;
}

/* Faixa decorativa superior com patinhas */
.galeria-modal-topbar {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 42px;
    width: 100%;
    background: var(--rose);
    border-radius: 32px 32px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    overflow: hidden;
}
.galeria-modal-topbar::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    opacity: 0.07;
    pointer-events: none;
}
.modal-paw {
    display: inline-flex;
    opacity: 0.75;
}
.modal-paw svg {
    width: 18px; height: 18px;
    fill: rgba(255,255,255,0.85);
}

/* Título do modal */
.galeria-modal-titulo {
    font-family: 'Pathway Gothic One', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 3px;
    color: rgba(255,255,255,0.9);
    text-transform: uppercase;
    z-index: 1;
}

/* Botão fechar redesenhado */
.galeria-close {
    position: absolute;
    top: 8px; right: 14px;
    background: rgba(255,255,255,0.18);
    color: var(--white);
    border: 1.5px solid rgba(255,255,255,0.35);
    border-radius: 50%;
    width: 28px; height: 28px;
    font-size: 1.1em;
    cursor: pointer;
    z-index: 10003;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, transform 0.2s;
    line-height: 1;
}
.galeria-close:hover {
    background: rgba(255,255,255,0.35);
    transform: rotate(90deg);
}

/* Imagem / vídeo no modal */
#galeria-modal-img {
    width: 100%;
    height: auto;
    max-height: calc(90vh - 150px);
    object-fit: contain;
    border-radius: 20px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.14);
    transition: opacity 0.2s;
    display: block;
}
#galeria-modal-video {
    width: 100%;
    height: auto;
    max-height: calc(90vh - 150px);
    object-fit: contain;
    border-radius: 20px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.14);
    background: #000;
}

/* Barra inferior com contador + nav + instagram */
.galeria-modal-footer {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 56px;
    background: var(--dark);
    border-radius: 0 0 32px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 18px;
    gap: 10px;
}

/* Botões nav */
.galeria-nav {
    position: static;
    transform: none;
    color: var(--white);
    font-size: 20px;
    font-weight: bold;
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 50%;
    cursor: pointer;
    z-index: 10002;
    width: 36px; height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
    flex-shrink: 0;
}
.galeria-nav:hover {
    background: var(--rose);
    border-color: var(--rose);
}
.galeria-nav.galeria-prev { order: 1; }
.galeria-nav.galeria-next { order: 3; }

/* Contador central */
.galeria-counter {
    order: 2;
    flex: 1;
    text-align: center;
    font-family: 'Pathway Gothic One', sans-serif;
    color: var(--beige);
    font-size: 0.82rem;
    letter-spacing: 1.5px;
    background: none;
    border: none;
    padding: 0;
    box-shadow: none;
    margin: 0;
    position: static;
    transform: none;
    left: auto;
    bottom: auto;
}

/* Patinha decorativa ao lado do contador */
.galeria-counter::before {
    content: "🐾 ";
    opacity: 0.6;
}

/* Botão Instagram no footer */
.galeria-instagram-btn {
    order: 4;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 7px 14px;
    border-radius: 40px;
    background: var(--rose);
    color: var(--bg-light);
    border: 1.5px solid var(--rose);
    font-family: 'Pathway Gothic One', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    box-shadow: 0 3px 12px rgba(140,39,66,0.2);
    transition: all 0.3s var(--ease);
    flex-shrink: 0;
    position: static;
    margin: 0;
    z-index: 10003;
}
.galeria-instagram-btn:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.5);
    color: var(--white);
    transform: translateY(-2px);
}
.galeria-instagram-icon { width: 14px; height: 14px; flex-shrink: 0; }
.galeria-instagram-text { display: none; }

@media (min-width: 600px) {
    .galeria-instagram-text { display: inline; }
    .galeria-instagram-btn { font-size: 0.75rem; padding: 8px 16px; }
}

/* Blobs decorativos no conteúdo do modal */
.galeria-modal-deco {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    border-radius: 32px;
    z-index: 0;
}
.mdeco-blob-1, .mdeco-blob-2 {
    position: absolute;
    width: 180px;
    height: 180px;
    opacity: 0.035;
}
.mdeco-blob-1 { top: -40px; left: -40px; }
.mdeco-blob-2 { bottom: -40px; right: -40px; }

/* Patinhas decorativas nos cantos do modal */
.galeria-modal-content::before {
    content: "";
    position: absolute;
    top: 50px; left: 16px;
    width: 22px; height: 22px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M226.5 92.9c14.3 42.9-.3 86.2-32.6 96.8s-70.1-15.6-84.4-58.5c-14.3-42.9.3-86.2 32.6-96.8s70.1 15.6 84.4 58.5zM100.4 198.6c18.9 32.4 14.3 70.1-10.2 84.1s-59.7-.9-78.5-33.3C-7.2 217.1-2.6 179.3 21.9 165.4s59.7.9 78.5 33.2zm311.1 0c18.9-32.4 54.1-45.5 78.5-33.2s28.6 51.7 9.8 84.1c-18.9 32.4-54.1 45.5-78.5 33.3s-29.3-51.7-9.8-84.2zM285.5 92.9c14.3-42.9 51.7-70.8 84.4-58.5s46.9 53.9 32.6 96.8c-14.3 42.9-51.7 70.8-84.4 58.5s-46.9-53.9-32.6-96.8zM256 320c23.5 0 46 4.8 66.4 13.5C371.3 354.5 408 406.4 408 464c0 26.5-21.5 48-48 48H152c-26.5 0-48-21.5-48-48 0-57.6 36.7-109.5 85.6-130.5C210 324.8 232.5 320 256 320z' fill='%238C2742'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.08;
    pointer-events: none;
    z-index: 0;
}
.galeria-modal-content::after {
    content: "";
    position: absolute;
    top: 50px; right: 16px;
    width: 22px; height: 22px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M226.5 92.9c14.3 42.9-.3 86.2-32.6 96.8s-70.1-15.6-84.4-58.5c-14.3-42.9.3-86.2 32.6-96.8s70.1 15.6 84.4 58.5zM100.4 198.6c18.9 32.4 14.3 70.1-10.2 84.1s-59.7-.9-78.5-33.3C-7.2 217.1-2.6 179.3 21.9 165.4s59.7.9 78.5 33.2zm311.1 0c18.9-32.4 54.1-45.5 78.5-33.2s28.6 51.7 9.8 84.1c-18.9 32.4-54.1 45.5-78.5 33.3s-29.3-51.7-9.8-84.2zM285.5 92.9c14.3-42.9 51.7-70.8 84.4-58.5s46.9 53.9 32.6 96.8c-14.3 42.9-51.7 70.8-84.4 58.5s-46.9-53.9-32.6-96.8zM256 320c23.5 0 46 4.8 66.4 13.5C371.3 354.5 408 406.4 408 464c0 26.5-21.5 48-48 48H152c-26.5 0-48-21.5-48-48 0-57.6 36.7-109.5 85.6-130.5C210 324.8 232.5 320 256 320z' fill='%235A878C'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.08;
    pointer-events: none;
    z-index: 0;
}

/* ============================================================
   PILL UNIFICADA — navegação + voltar ao topo em um só elemento
   Substitui tanto navbar-pill quanto menu-flutuante-container
============================================================ */

/* Ocultar o menu flutuante lateral antigo em telas grandes — pill cobre */
@media (min-width: 993px) {
    .menu-flutuante-container { display: none !important; }
}

/* Pill unificada (navbar-pill já existente, mantendo a lógica) */
.navbar-pill {
    position: fixed !important;
    top: 50% !important;
    right: -160px !important;
    transform: translateY(-50%) !important;
    z-index: 1100 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 2px !important;
    background: rgba(255,255,255,0.97) !important;
    backdrop-filter: blur(14px) !important;
    -webkit-backdrop-filter: blur(14px) !important;
    border: 1px solid rgba(221,209,195,0.8) !important;
    border-right: none !important;
    border-radius: 18px 0 0 18px !important;
    padding: 12px 10px 12px 14px !important;
    box-shadow: -6px 0 28px rgba(51,51,51,0.10) !important;
    transition: right 0.5s cubic-bezier(0.2,1,0.3,1) !important;
}
.navbar-pill.visible { right: 0 !important; }
.navbar-pill::before {
    content: "" !important;
    position: absolute !important;
    left: 0 !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 3px !important;
    height: 44px !important;
    background: linear-gradient(180deg, var(--rose), var(--teal)) !important;
    border-radius: 0 2px 2px 0 !important;
}
.navbar-pill a {
    font-family: 'Pathway Gothic One', sans-serif !important;
    font-size: 0.75rem !important;
    letter-spacing: 1.3px !important;
    text-transform: uppercase !important;
    color: var(--dark) !important;
    text-decoration: none !important;
    padding: 5px 7px !important;
    border-radius: 8px !important;
    transition: color 0.25s, background 0.2s !important;
    white-space: nowrap !important;
    display: block !important;
}
.navbar-pill a:hover { color: var(--rose) !important; background: rgba(140,39,66,0.07) !important; }
.navbar-pill a.active { color: var(--rose) !important; }

/* Botão voltar ao topo DENTRO da pill */
.pill-back-to-top {
    background: var(--rose) !important;
    color: var(--white) !important;
    width: 28px !important;
    height: 28px !important;
    border-radius: 50% !important;
    display: none !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 11px !important;
    border: none !important;
    cursor: pointer !important;
    margin-top: 8px !important;
    align-self: center !important;
    transition: background 0.3s var(--ease), transform 0.3s var(--ease) !important;
    box-shadow: 0 3px 10px rgba(140,39,66,0.25) !important;
}
.pill-back-to-top.show { display: flex !important; }
.pill-back-to-top:hover {
    background: var(--teal) !important;
    transform: translateY(-2px) scale(1.12) !important;
}

/* btn-voltar-topo original — oculto, substituído pela pill */
.btn-voltar-topo { display: none !important; }

@media (max-width: 992px) {
    .navbar-pill { display: none !important; }
}


/* ============================================================
   REWRITE COMPLETO — Hero Slideshow, Galeria, Divisória, Mobile
   (estas regras sobrepõem tudo anterior com !important onde necessário)
============================================================ */

/* ---- HERO SLIDESHOW ---- */
.hero-image {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    gap: 0;
}

.hero-slideshow {
    position: relative;
    width: min(440px, 100%);
    aspect-ratio: 1 / 1;
    border-radius: 62% 38% 52% 48% / 48% 62% 38% 52%;
    overflow: hidden;
    border: 4px solid var(--beige);
    box-shadow: 0 20px 60px rgba(51,51,51,0.12), 0 0 0 8px rgba(221,209,195,0.3);
    flex-shrink: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
    border-radius: 0;
    border: none;
    box-shadow: none;
    background: transparent;
}

.hero-slide.active {
    opacity: 1;
}

/* Sobrescreve hero-img-blob antigo */
.hero-img-blob { display: none !important; }

.hero-slide-dots {
    position: relative !important;
    display: flex !important;
    gap: 8px !important;
    justify-content: center !important;
    margin-top: 14px !important;
    bottom: auto !important;
    left: auto !important;
    transform: none !important;
    z-index: 4;
    width: 100%;
}

.hero-slide-dot {
    width: 28px; height: 3px; border-radius: 2px;
    background: var(--beige); cursor: pointer;
    transition: background 0.4s, width 0.4s; border: none; padding: 0;
    opacity: 0.7;
}
.hero-slide-dot.active {
    width: 42px; background: var(--rose); opacity: 1;
}

/* ---- DIVISÓRIA SERVIÇOS → GALERIA limpa ---- */
.divisoria-sg {
    width: 100%;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    position: relative;
    z-index: 2;
}
.divisoria-sg::before {
    content: "";
    display: block;
    width: min(420px, 70vw);
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--rose) 25%, var(--teal) 75%, transparent);
    opacity: 0.5;
    border-radius: 2px;
}
/* Remover a antiga */
.divisoria-servicos-galeria { display: none !important; }

/* ---- GALERIA — cards limpos, sem degradê atrás ---- */
.galeria { background: var(--white); }

.galeria-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 14px !important;
    padding: 10px 0 !important;
    max-height: calc(3 * (clamp(130px,16vh,200px) + 14px)) !important;
    overflow: hidden !important;
    transition: max-height 0.5s ease !important;
}
.galeria-grid.expanded {
    max-height: none !important;
    overflow: visible !important;
}

.galeria-item {
    background: var(--bg-light) !important;
    border-radius: 14px !important;
    overflow: hidden !important;
    cursor: pointer !important;
    position: relative !important;
    display: block !important;
    transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease) !important;
    transform: none !important;
    outline: none !important;
    margin: 0 !important;
}
/* Remover outline color nth rules */
.galeria-item:nth-child(4n+1),
.galeria-item:nth-child(4n+2),
.galeria-item:nth-child(4n+3),
.galeria-item:nth-child(4n+4) {
    border-radius: 14px !important;
}
.galeria-item:nth-child(6n+1),
.galeria-item:nth-child(6n+4) { outline: none !important; }

.galeria-item:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 10px 28px rgba(51,51,51,0.14) !important;
}

.galeria-item img,
.galeria-item video {
    width: 100% !important;
    height: clamp(130px, 16vh, 200px) !important;
    object-fit: cover !important;
    object-position: center center !important;
    display: block !important;
    border-radius: 0 !important;
    border: none !important;
    box-shadow: none !important;
    aspect-ratio: unset !important;
    background: transparent !important;
    transition: transform 0.5s var(--ease) !important;
}
.galeria-item:hover img,
.galeria-item:hover video { transform: scale(1.05) !important; }

/* Remover ::after caption hover (texto ao hover) */
.galeria-item::after { content: none !important; display: none !important; }
.galeria-item::before { content: none !important; display: none !important; }

/* Overlay patinha ao hover (sem texto) */
.gal-hover-overlay {
    position: absolute;
    inset: 0;
    background: rgba(140,39,66,0.48);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
    border-radius: 14px;
    pointer-events: none;
}
.gal-hover-overlay svg {
    width: 36px; height: 36px;
    opacity: 0.9;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
}
.galeria-item:hover .gal-hover-overlay { opacity: 1; }

/* Botão "ver mais fotos" — frente de tudo */
.galeria-ver-mais-wrapper {
    position: relative;
    z-index: 20;
    display: none;
    justify-content: center;
    margin-top: 18px;
}
.galeria-ver-mais {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    padding: 11px 30px !important;
    background: var(--rose) !important;
    color: var(--white) !important;
    border: none !important;
    font-family: 'Pathway Gothic One', sans-serif !important;
    font-size: 1rem !important;
    letter-spacing: 1.5px !important;
    text-transform: uppercase !important;
    border-radius: 40px !important;
    cursor: pointer !important;
    box-shadow: 0 6px 20px rgba(140,39,66,0.22) !important;
    transition: all 0.3s var(--ease) !important;
}
.galeria-ver-mais:hover {
    background: var(--dark) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 10px 28px rgba(51,51,51,0.2) !important;
}

/* Degradê "ver tudo" — z-index fix */
.galeria-fade {
    position: relative;
    height: 120px;
    margin-top: -120px;
    background: linear-gradient(to bottom, transparent 0%, rgba(255,255,255,0.95) 90%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 16px;
    pointer-events: none;
    z-index: 5;
}
.galeria-ver-tudo-btn {
    pointer-events: all;
    z-index: 6;
}

/* Vídeos dentro da galeria-grid: clicáveis */
.galeria-item video {
    pointer-events: none;
}
.galeria-item { pointer-events: all; }

/* ---- MODAL GALERIA — reescrito do zero, limpo ---- */
.galeria-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 10500;
    background: rgba(30,16,22,0.88);
    backdrop-filter: blur(16px);
    align-items: center;
    justify-content: center;
    padding: 16px;
}
.galeria-modal.active { display: flex; }

.galeria-modal-content {
    position: relative;
    width: 100%;
    max-width: 860px;
    background: var(--bg-light);
    border-radius: 28px;
    overflow: hidden; /* mantém recorte das bordas nos filhos */
    box-shadow: 0 40px 100px rgba(0,0,0,0.35), 0 0 0 1.5px rgba(140,39,66,0.14);
    display: flex;
    flex-direction: column;
    max-height: 92vh;
}
.galeria-modal-content::before,
.galeria-modal-content::after { display: none !important; }

/* Topo rose com patinhas */
.galeria-modal-topbar {
    background: linear-gradient(135deg, var(--rose) 0%, #a83256 100%);
    height: 58px;
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 0 56px 0 20px;
    flex-shrink: 0;
    position: relative;
    border-bottom: 2px solid rgba(255,255,255,0.10);
}
/* Textura de ruído sutil */
.galeria-modal-topbar::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.72' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    opacity: 0.07;
    pointer-events: none;
}
/* Linha decorativa na base */
.galeria-modal-topbar::after {
    content: "";
    position: absolute;
    bottom: 0; left: 20px; right: 20px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
}
.galeria-modal-titulo {
    font-family: 'Migra', 'Playfair Display', serif;
    font-size: 1rem;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.96);
    text-transform: uppercase;
    position: relative;
    z-index: 1;
}
.modal-paw {
    display: inline-flex;
    align-items: center;
    position: relative;
    z-index: 1;
    opacity: 0.85;
}
.modal-paw svg { width: 20px; height: 20px; fill: rgba(255,255,255,0.85); }

.galeria-close {
    position: absolute !important;
    top: 50% !important;
    right: 14px !important;
    transform: translateY(-50%) !important;
    background: rgba(255,255,255,0.18) !important;
    color: white !important;
    border: 1.5px solid rgba(255,255,255,0.4) !important;
    border-radius: 50% !important;
    width: 30px !important; height: 30px !important;
    font-size: 1.2em !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: background 0.2s, transform 0.2s !important;
    z-index: 10003 !important;
}
.galeria-close:hover {
    background: rgba(255,255,255,0.35) !important;
    transform: translateY(-50%) rotate(90deg) !important;
}

/* Área da imagem */
#galeria-modal-img {
    width: 100%;
    height: auto;
    max-height: calc(92vh - 110px);
    object-fit: contain;
    display: block;
    background: #1a1a1a;
    border-radius: 0;
    box-shadow: none;
}
#galeria-modal-video {
    width: 100%;
    height: auto;
    max-height: calc(92vh - 110px);
    object-fit: contain;
    display: none;
    background: #000;
}

/* Barra inferior */
.galeria-modal-footer {
    background: var(--dark);
    height: 54px;
    min-height: 54px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
    gap: 8px;
    flex-shrink: 0;
    /* border-radius inferior vem do overflow:hidden do container */
}
.galeria-nav {
    position: static !important;
    transform: none !important;
    background: rgba(255,255,255,0.1) !important;
    color: white !important;
    border: 1px solid rgba(255,255,255,0.2) !important;
    border-radius: 50% !important;
    width: 36px !important; height: 36px !important;
    font-size: 20px !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: background 0.2s !important;
    flex-shrink: 0;
}
.galeria-nav:hover { background: var(--rose) !important; border-color: var(--rose) !important; }
.galeria-prev { order: 1; }
.galeria-next { order: 3; }
.galeria-counter {
    order: 2;
    flex: 1;
    text-align: center;
    font-family: 'Pathway Gothic One', sans-serif;
    color: rgba(255,255,255,0.7);
    font-size: 0.8rem;
    letter-spacing: 1.5px;
    position: static !important;
    transform: none !important;
    background: none !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    margin: 0 !important;
}
.galeria-instagram-btn {
    order: 4;
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    padding: 7px 14px !important;
    border-radius: 40px !important;
    background: var(--rose) !important;
    color: white !important;
    border: none !important;
    font-family: 'Pathway Gothic One', sans-serif !important;
    font-size: 0.7rem !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
    text-decoration: none !important;
    transition: all 0.25s !important;
    flex-shrink: 0;
    position: static !important;
    margin: 0 !important;
}
.galeria-instagram-btn:hover { background: var(--teal) !important; transform: none !important; }
.galeria-instagram-icon { width: 14px; height: 14px; }
.galeria-instagram-text { display: none; }
@media (min-width: 500px) {
    .galeria-instagram-text { display: inline; }
}

/* Decorações do modal */
.galeria-modal-deco {
    position: absolute;
    inset: 48px 0 54px 0;
    pointer-events: none;
    overflow: hidden;
    z-index: -1;
}
.mdeco-blob-1, .mdeco-blob-2 { position: absolute; width: 160px; height: 160px; opacity: 0.03; }
.mdeco-blob-1 { top: -40px; left: -40px; }
.mdeco-blob-2 { bottom: -40px; right: -40px; }

/* ---- PILL UNIFICADA MOBILE fix ---- */
@media (max-width: 992px) {
    .navbar-pill { display: none !important; }
    .menu-flutuante-container { display: none !important; }

    /* Mostrar botão rápido só no mobile como mini pill */
    .mobile-pill {
        display: flex !important;
    }
}

/* ---- GALERIA MOBILE ---- */
@media (max-width: 768px) {
    .galeria-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 8px !important;
        overflow-x: unset !important;
        scroll-snap-type: unset !important;
        max-height: calc(3 * (clamp(100px,28vw,160px) + 8px)) !important;
        padding: 4px 0 !important;
    }
    .galeria-grid.expanded { max-height: none !important; }
    .galeria-item {
        flex: unset !important;
        width: 100% !important;
        border-radius: 12px !important;
        transform: none !important;
        scroll-snap-align: unset !important;
    }
    .galeria-item img, .galeria-item video {
        height: clamp(100px, 28vw, 160px) !important;
    }
    .galeria-instagram-card {
        flex: unset !important; width: 100% !important;
        min-height: clamp(100px, 28vw, 160px) !important;
    }
    .galeria-fade { display: none !important; }
    .galeria-ver-mais-wrapper { display: flex !important; }

    /* VIDEOS destaque mobile */
    .galeria-videos-destaque {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding: 0 4px 12px;
        gap: 10px;
        justify-content: flex-start;
    }
    .galeria-videos-destaque::-webkit-scrollbar { display: none; }
    .galeria-video-card {
        flex: 0 0 70vw;
        max-width: 240px;
        scroll-snap-align: center;
    }

    /* hero mobile */
    .hero-slideshow {
        width: min(300px, 78vw);
    }
}

@media (min-width: 769px) {
    /* Desktop: botão ver mais não aparece se grade não overflow */
    .galeria-ver-mais-wrapper { display: none; }
    .galeria-fade { display: flex; }
}

/* ---- SERVICOS MODAL — foto exibida ---- */
.sm-servico-img {
    width: 100%;
    height: 250px; /* Você pode ajustar essa altura se quiser o modal mais alto ou mais baixo */
    object-fit: cover;
    object-position: center 15%; /* Puxa o foco da imagem para a parte de cima, salvando a cabeça */
    display: block;
    margin: 0;
    padding: 0;
}
.sm-body {
    padding: 0 !important;
}
.sm-body .sm-desc {
    padding: 16px 24px 0;
    margin-bottom: 0;
}
.sm-body .sm-actions {
    padding: 16px 24px 24px;
}
/* ============================================================
   WHATSAPP FLOAT BUTTON — botão direito + painel recolhível
============================================================ */
.wa-float-wrapper {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 1400;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
}

/* Botão flutuante WA no padrão do site */
.wa-float-btn {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: var(--rose);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 32px rgba(140,39,66,0.28), 0 2px 10px rgba(90,135,140,0.14);
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s;
    position: relative;
    flex-shrink: 0;
    z-index: 800;
}
.wa-float-btn svg {
    width: 34px;
    height: 34px;
    display: block;
}
.wa-float-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 38px rgba(140,39,66,0.32), 0 3px 14px rgba(90,135,140,0.18);
    background: var(--dark);
}
/* Pulso animado */
.wa-float-btn::before {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px solid #ffffff;
    animation: wa-pulse-ring 2.4s ease-out infinite;
}
@keyframes wa-pulse-ring {
    0%   { transform: scale(0.92); opacity: 0.6; }
    70%  { transform: scale(1.18); opacity: 0; }
    100% { transform: scale(1.18); opacity: 0; }
}

/* Painel "Fale com a Pompet" — oculto por padrão */
.wa-panel {
    background: var(--bg-light);
    border-radius: 28px;
    padding: 0 0 16px;
    min-width: 280px;
    max-width: 320px;
    box-shadow: 0 16px 48px rgba(51,51,51,0.18);
    position: absolute;
    right: calc(100% + 18px);
    bottom: 0;
    transform: translateY(8px) scale(0.95);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s cubic-bezier(0.2,1,0.3,1), opacity 0.3s ease;
    transform-origin: right bottom;
    z-index: 800;
    border: 1px solid rgba(140,39,66,0.12);
}
.wa-panel::after {
    content: '';
    position: absolute;
    right: -12px;
    bottom: 24px;
    width: 18px;
    height: 18px;
    background: var(--bg-light);
    transform: rotate(45deg);
    border-right: 1px solid rgba(140,39,66,0.12);
    border-bottom: 1px solid rgba(140,39,66,0.12);
}
.wa-panel.aberto {
    transform: translateY(0) scale(1);
    opacity: 1;
    pointer-events: all;
    z-index: 800;
}
.wa-panel-close {
    position: absolute;
    top: 10px; right: 12px;
    background: rgba(140,39,66,0.12);
    border: 1px solid rgba(140,39,66,0.16);
    color: var(--rose);
    border-radius: 50%;
    width: 26px; height: 26px;
    font-size: 1em;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.2s, color 0.2s;
    z-index: 2;
}
.wa-panel-close:hover { background: rgba(255,255,255,0.32); }

.wa-panel-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 18px 20px 12px;
}
.wa-panel-avatar {
    font-size: 1.5rem;
    width: 42px; height: 42px;
    background: rgba(140,39,66,0.12);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    border: 1.5px solid rgba(140,39,66,0.18);
    flex-shrink: 0;
}
.wa-panel-title {
    font-family: 'Migra', serif;
    font-size: 1rem;
    color: var(--dark);
    display: block;
    line-height: 1.2;
}
.wa-panel-sub {
    font-family: 'Scope One', serif;
    font-size: 0.72rem;
    color: var(--text-light);
    display: block;
    margin-top: 2px;
}
.wa-panel-btns {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 0 16px 14px;
}
.wa-panel-btn {
    background: var(--white);
    color: var(--rose);
    border: 1px solid rgba(140,39,66,0.16);
    border-radius: 16px;
    font-family: 'Pathway Gothic One', sans-serif;
    font-size: 0.97rem;
    padding: 12px 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    transition: background 0.2s, color 0.2s, transform 0.2s, border-color 0.2s;
    box-shadow: 0 6px 18px rgba(51,51,51,0.10);
    text-align: left;
}
.wa-panel-btn i { width: 18px; text-align: center; color: var(--rose); transition: color 0.2s; }
.wa-panel-btn:hover {
    background: var(--rose);
    color: white;
    transform: translateX(4px);
    border-color: transparent;
}
.wa-panel-btn:hover i { color: white; }

@media (max-width: 480px) {
    .wa-float-wrapper { right: 14px; bottom: 16px; }
    .wa-float-btn { width: 54px; height: 54px; }
    .wa-float-btn svg { width: 28px; height: 28px; }
    .wa-panel { min-width: 230px; max-width: calc(100vw - 28px); }
}

/* ============================================================
   CTA TEXTO DESENHADO — sublinhado à mão + SVG ink
============================================================ */
.cta-texto-desenhado {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    max-width: 460px;
    text-align: center;
    position: relative; /* Adicionado para segurar a patinha de fundo no lugar */
}

/* ===================== DEV CREDIT & POMPET INFO ===================== */

/* --- Pompet Credit --- */
.pompet-credit-wrapper { cursor: pointer; display: inline-block; padding: 4px; }
.pompet-name { 
  margin: 0; 
  position: relative; 
  display: inline-block;
  transition: color 0.3s ease; 
}
.pompet-name::after {
  content: ''; position: absolute; bottom: -2px; left: 0; right: 100%;
  height: 1.5px; background: linear-gradient(90deg, var(--rose), var(--teal));
  transition: right 0.4s var(--ease); border-radius: 2px;
}
.pompet-credit-wrapper:hover .pompet-name { color: var(--beige); }
.pompet-credit-wrapper:hover .pompet-name::after { right: 0; }

/* --- Divisória Desenhada --- */
.credit-divider { display: flex; align-items: center; justify-content: center; opacity: 0.7; }

/* --- Dev Credit Principal --- */
.dev-credit-wrapper { position: relative; display: inline-block; }
.dev-credit-main { cursor: pointer; position: relative; }

/* ===== HOVER BRIDGE FIX — resolve o problema do menu fechar antes do mouse chegar ===== */
.dev-credit-main::before {
  content: '';
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 25px; 
  z-index: 199;
  pointer-events: auto;
}

.dev-blob-bg {
  position: absolute; inset: -10px -18px;
  border-radius: 62% 38% 54% 46% / 44% 58% 42% 56%;
  background: linear-gradient(135deg, rgba(140,39,66,0.22), rgba(90,135,140,0.18));
  border: 1px solid rgba(221,209,195,0.12);
  transition: transform 0.5s var(--ease), opacity 0.4s ease, background 0.4s ease;
  opacity: 0; pointer-events: none; z-index: 0;
}
.dev-credit-main:hover .dev-blob-bg {
  opacity: 1; transform: scale(1.08) rotate(-3deg);
  background: linear-gradient(135deg, rgba(140,39,66,0.30), rgba(90,135,140,0.22));
}

.dev-inner {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center;
  gap: 5px; padding: 2px 4px;
}

/* ===== ANIMAÇÕES DO ÍCONE DA IA ===== */
@keyframes orbit { to { transform: rotate(360deg); } }
@keyframes star-pulse {
  0%,100% { opacity: 0; transform: scale(0.4); }
  50%      { opacity: 1; transform: scale(1); }
}
@keyframes gem-breathe {
  0%,100% { transform: scale(1); }
  50%      { transform: scale(1.06); }
}

.gem-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.gem-bg {
  position: absolute; inset: 0; border-radius: 50%;
  background: #222; border: 0.5px solid #333; box-sizing: border-box;
}
.gem-orbit-ring {
  position: absolute; inset: 0; border-radius: 50%;
  animation: orbit 4s linear infinite;
}
.gem-orbit-ring svg { width: 100%; height: 100%; }
.gem-star {
  position: relative; z-index: 2;
  display: flex; align-items: center; justify-content: center;
  animation: gem-breathe 3s ease-in-out infinite;
  transform-origin: center;
}
.gem-sparkle { position: absolute; z-index: 3; pointer-events: none; }
.gem-sparkle svg { display: block; }
.sp-tl { animation: star-pulse 2.2s ease-in-out infinite 0.0s; }
.sp-tr { animation: star-pulse 2.2s ease-in-out infinite 0.6s; }
.sp-br { animation: star-pulse 2.2s ease-in-out infinite 1.1s; }
.sp-bl { animation: star-pulse 2.2s ease-in-out infinite 1.7s; }

.dev-code-icon { 
  display: flex; align-items: center; justify-content: center; 
  opacity: 0; max-height: 0; overflow: hidden;
  transition: opacity 0.4s var(--ease), max-height 0.4s var(--ease), margin 0.4s var(--ease); 
}
.dev-credit-main:hover .dev-code-icon { 
  opacity: 1; max-height: 30px; margin-bottom: 2px;
}
.dev-code-icon .gem-wrap { transition: transform 0.4s var(--ease); }
.dev-credit-main:hover .dev-code-icon .gem-wrap { transform: rotate(8deg) scale(1.15); }

.dev-label {
  font-family: 'Scope One', serif; font-size: 0.6rem;
  color: rgba(221,209,195,0.55); letter-spacing: 1.5px;
  text-transform: uppercase; transition: color 0.3s ease;
}
.dev-name {
  font-family: 'Scope One', serif; 
  font-size: 0.6rem; /* Tamanho reduzido para ficar menor que o da Pompet */
  color: rgba(221,209,195,0.75); letter-spacing: 0.5px;
  transition: color 0.3s ease, letter-spacing 0.3s ease; position: relative;
}
.dev-name::after {
  content: ''; position: absolute; bottom: -2px; left: 0; right: 100%;
  height: 1.5px; background: linear-gradient(90deg, var(--rose), var(--teal));
  transition: right 0.4s var(--ease); border-radius: 2px;
}
.dev-credit-main:hover .dev-name::after { right: 0; }
.dev-credit-main:hover .dev-label { color: rgba(221,209,195,0.9); }
.dev-credit-main:hover .dev-name { color: var(--beige); letter-spacing: 1px; }

/* --- Menu hover --- */
.ander-menu {
  position: absolute; bottom: calc(100% + 10px); left: 50%;
  transform: translateX(-50%) translateY(8px);
  opacity: 0; pointer-events: none;
  transition: opacity 0.35s ease, transform 0.4s var(--ease);
  z-index: 200; min-width: 280px;
}
.dev-credit-main:hover .ander-menu {
  opacity: 1; pointer-events: all; transform: translateX(-50%) translateY(0);
}
.ander-menu::after {
  content: ''; position: absolute; bottom: -7px; left: 50%;
  width: 14px; height: 14px;
  background: rgba(30,18,22,0.97);
  border-right: 1px solid rgba(140,39,66,0.25);
  border-bottom: 1px solid rgba(140,39,66,0.25);
  transform: translateX(-50%) rotate(45deg);
}
.menu-balloon {
  background: rgba(22,13,18,0.97);
  border: 1px solid rgba(140,39,66,0.3); border-radius: 22px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(221,209,195,0.06) inset;
  overflow: hidden;
}
.menu-header {
  background: linear-gradient(135deg, var(--rose) 0%, #a0304f 100%);
  padding: 14px 18px 10px; position: relative; overflow: hidden;
}
.menu-header::after {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.72' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.07; pointer-events: none;
}
.menu-header-top { display: flex; align-items: center; gap: 8px; margin-bottom: 4px; }
.menu-avatar {
  width: 30px; height: 30px; border-radius: 50%;
  background: rgba(255,255,255,0.18); border: 1.5px solid rgba(255,255,255,0.35);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; position: relative; z-index: 1;
}
.menu-avatar svg { width: 18px; height: 18px; }
.menu-title { font-family: 'Scope One', serif; font-size: 0.82rem; color: white; position: relative; z-index: 1; }
.menu-subtitle {
  font-family: 'Pathway Gothic One', sans-serif; font-size: 0.65rem;
  color: rgba(255,255,255,0.7); letter-spacing: 1.5px; text-transform: uppercase;
  position: relative; z-index: 1;
}
.menu-options { display: flex; gap: 0; padding: 10px 14px 14px; }
.menu-item {
  flex: 1; display: flex; flex-direction: column; align-items: center; gap: 5px;
  cursor: pointer; padding: 8px 6px; border-radius: 14px;
  transition: background 0.2s ease, transform 0.2s var(--ease);
}
.menu-item:hover { background: rgba(221,209,195,0.08); transform: translateY(-2px); }
.menu-item-icon {
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; transition: transform 0.3s var(--ease);
}
.menu-item-icon svg { width: 22px; height: 22px; }
.menu-item:hover .menu-item-icon { transform: scale(1.15); }
.mi-ia .menu-item-icon { background: rgba(90,135,140,0.2); border: 1px solid rgba(90,135,140,0.35); }
.mi-bug .menu-item-icon { background: rgba(184,118,77,0.2); border: 1px solid rgba(184,118,77,0.35); }
.mi-code .menu-item-icon { background: rgba(140,39,66,0.2); border: 1px solid rgba(140,39,66,0.35); }
.menu-item-label {
  font-family: 'Pathway Gothic One', sans-serif; font-size: 0.6rem;
  color: rgba(221,209,195,0.65); letter-spacing: 1px; text-transform: uppercase;
  text-align: center; transition: color 0.2s;
}
.menu-item:hover .menu-item-label { color: var(--beige); }

/* --- Overlay dos jogos e infos --- */
.game-overlay {
  position: fixed; inset: 0; z-index: 5000;
  display: flex; align-items: center; justify-content: center;
  padding: 20px; background: rgba(15,8,12,0.88);
  backdrop-filter: blur(18px); animation: overlay-in 0.3s ease;
}
@keyframes overlay-in { from { opacity: 0; } to { opacity: 1; } }

.game-balloon {
  background: rgba(22,13,18,0.98);
  border: 1.5px solid rgba(140,39,66,0.3); border-radius: 28px;
  width: 100%; max-width: 400px;
  box-shadow: 0 40px 100px rgba(0,0,0,0.6), 0 0 0 1px rgba(221,209,195,0.05) inset;
  overflow: hidden; animation: balloon-in 0.45s var(--ease);
}
@keyframes balloon-in {
  from { transform: scale(0.88) translateY(20px); opacity: 0; }
  to { transform: scale(1) translateY(0); opacity: 1; }
}

.game-topbar {
  background: linear-gradient(135deg, var(--rose) 0%, #a0304f 100%);
  padding: 12px 16px; display: flex; align-items: center;
  gap: 10px; position: relative; overflow: hidden;
}
.game-topbar::after {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.72' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.07; pointer-events: none;
}
.game-topbar-icon { font-size: 18px; position: relative; z-index: 1; display: flex; align-items: center; }
.game-topbar-title {
  flex: 1; font-family: 'Pathway Gothic One', sans-serif;
  font-size: 0.78rem; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,0.95); position: relative; z-index: 1;
}
.game-help-btn, .game-close-btn {
  background: rgba(255,255,255,0.18); border: 1px solid rgba(255,255,255,0.3);
  color: white; border-radius: 50%; width: 26px; height: 26px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 12px; transition: background 0.2s;
  position: relative; z-index: 1;
}
.game-help-btn:hover, .game-close-btn:hover { background: rgba(255,255,255,0.32); }

.help-panel {
  display: none; background: rgba(90,135,140,0.12);
  border-top: 1px solid rgba(90,135,140,0.22); padding: 10px 16px;
  font-family: 'Scope One', serif; font-size: 0.72rem;
  color: rgba(221,209,195,0.7); line-height: 1.6;
}
.help-panel.visible { display: block; }

.game-body { padding: 18px 16px 20px; }

/* --- Jogo 1: IA --- */
.ia-intro { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 14px; }
.ia-avatar {
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(90,135,140,0.25); border: 1.5px solid rgba(90,135,140,0.4);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; flex-shrink: 0;
}
.ia-bubble {
  background: rgba(90,135,140,0.12); border: 1px solid rgba(90,135,140,0.25);
  border-radius: 4px 16px 16px 16px; padding: 10px 14px; flex: 1;
}
.ia-bubble-text { font-family: 'Scope One', serif; font-size: 0.8rem; color: rgba(221,209,195,0.85); line-height: 1.5; }
.ia-typing-cursor {
  display: inline-block; width: 2px; height: 12px; background: var(--teal);
  animation: blink 0.8s step-end infinite; vertical-align: middle; margin-left: 2px;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }
.ia-input {
  width: 100%; background: rgba(255,255,255,0.05);
  border: 1px solid rgba(221,209,195,0.15); border-radius: 12px;
  padding: 10px 14px; font-family: 'Scope One', serif; font-size: 0.82rem;
  color: var(--beige); outline: none; transition: border-color 0.3s ease;
}
.ia-input:focus { border-color: rgba(90,135,140,0.5); }
.ia-feedback {
  margin-top: 8px; font-family: 'Pathway Gothic One', sans-serif;
  font-size: 0.7rem; letter-spacing: 1px; text-transform: uppercase;
  min-height: 16px; color: rgba(221,209,195,0.5);
}
.ia-feedback.wrong { color: rgba(184,118,77,0.9); }
.ia-feedback.right { color: rgba(90,135,140,0.9); }

/* --- Jogo 2: Bug --- */
.bug-arena {
  position: relative; width: 100%; height: 180px;
  background: rgba(255,255,255,0.02); border: 1px solid rgba(221,209,195,0.08);
  border-radius: 16px; overflow: hidden;
}
.bug-entity {
  position: absolute; font-size: 24px; cursor: pointer;
  user-select: none; line-height: 1; width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%; background: rgba(184,118,77,0.15);
  border: 1px solid rgba(184,118,77,0.3); transition: none;
}
.bug-entity:hover { background: rgba(140,39,66,0.25); }
.bug-score { display: flex; align-items: center; justify-content: space-between; margin-top: 10px; }
.bug-score-text {
  font-family: 'Pathway Gothic One', sans-serif; font-size: 0.72rem;
  letter-spacing: 1.5px; color: rgba(221,209,195,0.55); text-transform: uppercase;
}
.bug-timer {
  font-family: 'Pathway Gothic One', sans-serif; font-size: 0.72rem;
  letter-spacing: 1px; color: rgba(221,209,195,0.55); text-transform: uppercase;
}
.bug-count-display {
  font-family: 'Scope One', serif; font-size: 1.8rem;
  color: var(--brown); transition: transform 0.1s ease; line-height: 1;
}
.bug-pop {
  position: absolute; font-size: 11px; color: var(--rose);
  font-family: 'Pathway Gothic One', sans-serif; pointer-events: none;
  animation: pop-up 0.6s ease forwards;
}
@keyframes pop-up {
  0% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(-28px); }
}

/* --- Jogo 3: Cipher --- */
.cipher-intro {
  font-family: 'Scope One', serif; font-size: 0.78rem;
  color: rgba(221,209,195,0.65); margin-bottom: 14px; line-height: 1.5;
}
.cipher-display { display: flex; gap: 6px; justify-content: center; margin-bottom: 14px; flex-wrap: wrap; }
.cipher-cell {
  width: 36px; height: 36px; border-radius: 10px;
  border: 1.5px solid rgba(221,209,195,0.12);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Pathway Gothic One', sans-serif; font-size: 0.9rem;
  color: rgba(221,209,195,0.3); background: rgba(255,255,255,0.02);
  transition: all 0.3s var(--ease);
}
.cipher-cell.filled { border-color: var(--teal); color: var(--beige); background: rgba(90,135,140,0.15); }
.cipher-cell.correct {
  border-color: rgba(90,135,140,0.8); background: rgba(90,135,140,0.25);
  color: rgba(221,209,195,1); animation: cell-correct 0.3s ease;
}
@keyframes cell-correct { 0%{transform:scale(0.9)} 60%{transform:scale(1.1)} 100%{transform:scale(1)} }
.cipher-cell.wrong {
  border-color: rgba(140,39,66,0.6); animation: cell-wrong 0.4s ease;
  color: rgba(140,39,66,0.8);
}
@keyframes cell-wrong {
  0%,100%{transform:translateX(0)} 25%{transform:translateX(-4px)} 75%{transform:translateX(4px)}
}
.cipher-hint {
  font-family: 'Scope One', serif; font-size: 0.75rem;
  color: rgba(90,135,140,0.8); text-align: center; margin-bottom: 12px; min-height: 18px;
}
.cipher-pad { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; }
.cipher-btn {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(221,209,195,0.1);
  border-radius: 12px; padding: 10px 6px; cursor: pointer;
  font-family: 'Pathway Gothic One', sans-serif; font-size: 0.78rem; letter-spacing: 0.5px;
  color: rgba(221,209,195,0.7); transition: all 0.2s ease; text-align: center;
}
.cipher-btn:hover {
  background: rgba(90,135,140,0.15); border-color: rgba(90,135,140,0.35);
  color: var(--beige); transform: translateY(-1px);
}
.cipher-btn:active { transform: scale(0.96); }
.cipher-delete {
  background: rgba(140,39,66,0.08); border-color: rgba(140,39,66,0.2); color: rgba(140,39,66,0.7);
}
.cipher-delete:hover {
  background: rgba(140,39,66,0.18); border-color: rgba(140,39,66,0.4); color: rgba(200,80,110,0.9);
}

/* --- Vitória --- */
.win-screen {
  padding: 28px 20px; display: flex; flex-direction: column;
  align-items: center; gap: 14px; text-align: center;
}
.win-emoji { font-size: 40px; }
.win-title { font-family: 'Scope One', serif; font-size: 1.1rem; color: var(--beige); line-height: 1.4; }
.win-sub {
  font-family: 'Pathway Gothic One', sans-serif; font-size: 0.72rem;
  letter-spacing: 1.5px; text-transform: uppercase; color: rgba(221,209,195,0.5);
}
.win-bar { width: 100%; height: 3px; background: rgba(255,255,255,0.06); border-radius: 2px; overflow: hidden; }
.win-bar-fill {
  height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--rose), var(--teal));
  border-radius: 2px; transition: width 2s linear;
}

.cta-doodle-top, .cta-doodle-bottom {
    width: 100%;
    max-width: 260px;
    height: auto;
    display: block;
    position: relative;
    z-index: 1; /* Garante que fique acima da patinha */
}

.cta-texto-principal {
    font-family: 'Migra', serif;
    font-size: clamp(1.3rem, 2.4vw, 1.85rem);
    color: var(--beige);
    line-height: 1.55;
    margin: 4px 0 2px;
    font-weight: bold;
    position: relative;
    z-index: 1; /* Garante que fique acima da patinha */
}

.cta-texto-secundario {
    font-family: 'Scope One', serif;
    font-size: clamp(0.9rem, 1.4vw, 1.05rem);
    color: rgba(221,209,195,0.72);
    margin-bottom: 6px;
    letter-spacing: 0.3px;
    position: relative;
    z-index: 1; /* Garante que fique acima da patinha */
}

/* Palavra com sublinhado ink */
.cta-destaque-ink {
    position: relative;
    display: inline-block;
    color: white;
    z-index: 1; /* Garante que fique acima da patinha */
}

.ink-under {
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 10px;
    display: block;
    pointer-events: none;
}