﻿:root {
    /* Paleta vibrante baseada na logo */
    --pet-primary: #1a2e35;
    --pet-secondary: #2d4a54;
    --pet-accent: #5bc6d0;
    --pet-accent-dark: #3a9da6;
    --pet-accent-light: #e0f4f6;
    --pet-accent-glow: rgba(91, 198, 208, 0.4);
    --pet-bg-soft: #f0f9fa;
    --pet-bg-warm: #fafcfc;
    --pet-text-muted: #5a6d72;
    --pet-coral: #ff7f6e;
    --pet-gold: #f4c542;
    /* Gradientes vibrantes */
    --gradient-hero: linear-gradient(135deg, #e0f4f6 0%, #ffffff 50%, #fff5f3 100%);
    --gradient-accent: linear-gradient(135deg, #5bc6d0 0%, #3a9da6 100%);
    --gradient-card: linear-gradient(145deg, #ffffff 0%, #f0f9fa 100%);
    --gradient-warm: linear-gradient(135deg, #fff5f3 0%, #fef9f0 100%);
    /* Sombras com cor */
    --shadow-sm: 0 2px 8px rgba(91, 198, 208, 0.12);
    --shadow-md: 0 8px 24px rgba(91, 198, 208, 0.15);
    --shadow-lg: 0 16px 48px rgba(91, 198, 208, 0.2);
    --shadow-glow: 0 0 40px rgba(91, 198, 208, 0.3);
    --shadow-card: 0 10px 40px -10px rgba(26, 46, 53, 0.15);
}

/* =====================================================
   BREADCRUMBS - Navegacao estrutural com SEO
   ===================================================== */
.breadcrumb-nav {
    padding: 0.6rem 0;
    margin-top: 70px;
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.25rem;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 0.85rem;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
}

    .breadcrumb-item a {
        display: flex;
        align-items: center;
        gap: 0.35rem;
        color: var(--pet-text-muted);
        text-decoration: none;
        padding: 0.25rem 0;
        transition: color 0.2s ease;
    }

        .breadcrumb-item a:hover {
            color: var(--pet-accent);
        }

        .breadcrumb-item a i {
            font-size: 0.8rem;
        }

    .breadcrumb-item.active span {
        display: flex;
        align-items: center;
        gap: 0.35rem;
        color: var(--pet-primary);
        font-weight: 500;
        padding: 0.25rem 0;
    }

    .breadcrumb-item.active i {
        color: var(--pet-accent);
    }

    .breadcrumb-item:not(:last-child)::after {
        content: "/";
        margin: 0 0.4rem;
        color: #999;
        font-weight: 400;
    }

    /* Remove separador padrao do Bootstrap */
    .breadcrumb-item + .breadcrumb-item::before {
        content: none !important;
    }

@media (max-width: 576px) {
    .breadcrumb-list {
        font-size: 0.8rem;
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Plus Jakarta Sans', 'Nunito', sans-serif;
    background-color: #ffffff;
    color: var(--pet-primary);
    line-height: 1.7;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

section[id] {
    scroll-margin-top: 70px;
}

.nav-item a {
    color: black;
    font-size: 14px
}

.navbar-nav .nav-link.active, .navbar-nav .nav-link.show {
    color: #3B3B3B !important;
    background-color: whitesmoke !important;
}

h1, h2, h3, .navbar, .btn {
    font-family: 'Poppins', sans-serif;
}

#nossos-servicos,
#profissionais,
#fundo-patinhas {
    min-height: 80vh;
    align-content: center;
}

/* =====================================================
   HERO SECTION - Visual Impactante
   ===================================================== */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
    padding: 6rem 0 4rem;
}

/* Formas decorativas de fundo */
.hero-bg-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.6;
}

.shape-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(91, 198, 208, 0.15) 0%, transparent 70%);
    top: -150px;
    right: -100px;
    animation: float-slow 20s ease-in-out infinite;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(91, 198, 208, 0.1) 0%, transparent 70%);
    bottom: -100px;
    left: -100px;
    animation: float-slow 25s ease-in-out infinite reverse;
}

.shape-3 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 127, 110, 0.08) 0%, transparent 70%);
    top: 40%;
    left: 20%;
    animation: float-slow 15s ease-in-out infinite;
}

@keyframes float-slow {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(30px, -30px) scale(1.05);
    }
}

/* Conteúdo do Hero */
.hero-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
    position: relative;
    z-index: 2;
}

.logo-hero {
    max-width: 240px;
    height: auto;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 10px 30px rgba(91, 198, 208, 0.2));
}

.animate-float {
    animation: float-gentle 4s ease-in-out infinite;
}

@keyframes float-gentle {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

.hero-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--pet-primary);
    line-height: 1.2;
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}

.text-gradient {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.35rem);
    color: var(--pet-secondary);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}

/* Botão Hero com glow */
.btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 1rem 2rem;
    background: var(--gradient-accent);
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 50px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 8px 30px rgba(91, 198, 208, 0.4);
}

    .btn-hero i {
        font-size: 1.3rem;
    }

    .btn-hero:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 40px rgba(91, 198, 208, 0.5);
        color: white;
    }

    .btn-hero .btn-glow {
        position: absolute;
        inset: -2px;
        background: var(--gradient-accent);
        border-radius: 50px;
        filter: blur(15px);
        opacity: 0;
        transition: opacity 0.4s ease;
        z-index: -1;
    }

    .btn-hero:hover .btn-glow {
        opacity: 0.6;
    }

/* Cards de Serviços no Hero */
.services-showcase {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.showcase-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 20px;
    text-decoration: none;
    color: inherit;
    box-shadow: var(--shadow-card);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
}

    .showcase-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-lg);
        border-color: var(--pet-accent);
        color: inherit;
    }

.showcase-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.4s ease;
}

    .showcase-icon i {
        font-size: 1.6rem;
        color: white;
    }

.showcase-card-1 .showcase-icon {
    background: linear-gradient(135deg, #5bc6d0, #3a9da6);
}

.showcase-card-2 .showcase-icon {
    background: linear-gradient(135deg, #f4c542, #e6a700);
}

.showcase-card-3 .showcase-icon {
    background: linear-gradient(135deg, #ff7f6e, #e85d4a);
}

.showcase-card:hover .showcase-icon {
    transform: scale(1.1) rotate(-5deg);
}

.showcase-content h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--pet-primary);
    margin-bottom: 0.25rem;
}

.showcase-content p {
    font-size: 0.9rem;
    color: var(--pet-text-muted);
    margin: 0;
    line-height: 1.4;
}

.showcase-arrow {
    margin-left: auto;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--pet-accent-light);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

    .showcase-arrow i {
        color: var(--pet-accent);
        transition: transform 0.3s ease;
    }

.showcase-card:hover .showcase-arrow {
    background: var(--pet-accent);
}

    .showcase-card:hover .showcase-arrow i {
        color: white;
        transform: translateX(3px);
    }

@media (max-width: 992px) {
    .services-showcase {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 5rem 0 3rem;
    }

    .logo-hero {
        max-width: 140px;
    }

    .hero-content {
        margin-bottom: 3rem;
    }
}

/* =====================================================
   SERVIÇOS VETERINÁRIOS - Cards Vibrantes
   ===================================================== */
#nossos-servicos {
    background: linear-gradient(180deg, #ffffff 0%, var(--pet-bg-soft) 100%);
    padding: 5rem 0;
}

.card-servico {
    background: white;
    border-radius: 24px;
    padding: 2.5rem 2rem;
    border: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

    .card-servico::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: var(--gradient-accent);
        transform: scaleX(0);
        transition: transform 0.4s ease;
    }

    .card-servico:hover {
        transform: translateY(-10px);
        box-shadow: var(--shadow-lg);
    }

        .card-servico:hover::before {
            transform: scaleX(1);
        }

    .card-servico i {
        width: 70px;
        height: 70px;
        border-radius: 20px;
        background: var(--pet-accent-light);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.8rem;
        color: var(--pet-accent);
        margin: 0 auto 1.5rem;
        transition: all 0.4s ease;
    }

    .card-servico:hover i {
        background: var(--gradient-accent);
        color: white;
        transform: scale(1.1) rotate(-5deg);
    }

    .card-servico h3 {
        font-weight: 700;
        margin-bottom: 0.75rem;
        color: var(--pet-primary);
        font-size: 1.15rem;
    }

    .card-servico p {
        color: var(--pet-text-muted);
        font-size: 0.95rem;
        line-height: 1.6;
        margin: 0;
    }

.services-section-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    color: var(--pet-primary);
    line-height: 1.2;
    letter-spacing: -0.02em;
}

/* =====================================================
   PROFISSIONAIS - Layout Premium
   ===================================================== */
.profissionais-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, #ffffff 0%, var(--pet-bg-soft) 100%);
}

.professional-card {
    display: flex;
    align-items: center;
    gap: 4rem;
    background: white;
    border-radius: 32px;
    padding: 3rem;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

    .professional-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        width: 6px;
        background: var(--gradient-accent);
    }

.professional-image-wrapper {
    position: relative;
    flex-shrink: 0;
}

.professional-image-bg {
    position: absolute;
    width: 320px;
    height: 320px;
    background: var(--pet-accent-light);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.professional-image {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    object-fit: cover;
    position: relative;
    z-index: 2;
    border: 6px solid white;
    box-shadow: 0 20px 50px rgba(91, 198, 208, 0.25);
    transition: transform 0.4s ease;
}

    .professional-image:hover {
        transform: scale(1.05);
    }

.professional-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    box-shadow: 0 8px 20px rgba(91, 198, 208, 0.4);
}

    .professional-badge i {
        color: white;
        font-size: 1.5rem;
    }

.professional-content {
    flex: 1;
}

.professional-name {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 800;
    color: var(--pet-primary);
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.professional-title {
    color: var(--pet-text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(91, 198, 208, 0.2);
}

.professional-bio p {
    color: var(--pet-secondary);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.professional-highlight {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--pet-accent-light);
    padding: 1rem 1.5rem;
    border-radius: 16px;
    margin-top: 1.5rem;
}

    .professional-highlight i {
        color: var(--pet-coral);
        font-size: 1.25rem;
    }

    .professional-highlight span {
        color: var(--pet-primary);
        font-weight: 600;
    }

@media (max-width: 992px) {
    .professional-card {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
        padding: 2.5rem 2rem;
    }

        .professional-card::before {
            left: 0;
            right: 0;
            bottom: auto;
            width: auto;
            height: 6px;
        }

    .professional-image-bg {
        width: 260px;
        height: 260px;
    }

    .professional-image {
        width: 220px;
        height: 220px;
    }
}

/* PARCEIROS */
.parceiros-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, #f8fafa 0%, #ffffff 100%);
    position: relative;
}

    .parceiros-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(91, 198, 208, 0.3), transparent);
    }

.parceiros-title {
    font-size: clamp(1.75rem, 3.5vw, 2.25rem);
    font-weight: 700;
    color: var(--pet-primary);
    margin-bottom: 0.5rem;
}

.parceiros-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.parceiro-item {
    background: white;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(91, 198, 208, 0.1);
    transition: all 0.3s ease;
}

    .parceiro-item:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
        border-color: rgba(91, 198, 208, 0.3);
    }

.parceiro-logo {
    display: inline-block;
    margin-bottom: 1.5rem;
    padding: 1rem;
    transition: transform 0.3s ease;
}

    .parceiro-logo:hover {
        transform: scale(1.05);
    }

    /* Logo Hydra - vertical (512x725) */
    .parceiro-logo.logo-hydra img {
        height: 100px;
        width: auto;
        object-fit: contain;
    }

    /* Logo TalentWeb - horizontal (1500x285) */
    .parceiro-logo.logo-talentweb img {
        width: auto;
        max-width: 350px;
        object-fit: contain;
    }

.parceiro-item p {
    color: var(--pet-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 768px) {
    .parceiros-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .parceiro-item {
        padding: 2rem 1.5rem;
    }
}

.btn-principal {
    background-color: var(--pet-accent);
    color: white;
    font-size: 1rem;
    font-weight: 600;
    padding: 0.75rem 1.75rem;
    border-radius: 8px;
    border: none;
    transition: all 0.3s ease;
}

    .btn-principal:hover {
        background-color: var(--pet-accent-dark);
        transform: translateY(-2px);
        box-shadow: var(--shadow-md);
    }

/* =====================================================
   CONTATO - Layout Compacto
   ===================================================== */
.contato-section {
    background: linear-gradient(135deg, var(--pet-primary) 0%, var(--pet-secondary) 100%);
    color: white;
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

    .contato-section::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -20%;
        width: 600px;
        height: 600px;
        background: radial-gradient(circle, rgba(91, 198, 208, 0.15) 0%, transparent 70%);
        pointer-events: none;
    }

.contato-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Cards de info em linha */
.contato-info-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contato-info-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 1.25rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: all 0.3s ease;
}

    .contato-info-card:hover {
        background: rgba(255, 255, 255, 0.15);
        transform: translateY(-3px);
    }

.contato-info-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--pet-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .contato-info-icon i {
        font-size: 1.25rem;
        color: white;
    }

.contato-info-card h3 {
    font-size: 0.9rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.35rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.contato-info-card address,
.contato-info-card .contato-link {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    font-style: normal;
    line-height: 1.5;
    text-decoration: none;
    display: block;
}

    .contato-info-card .contato-link:hover {
        color: var(--pet-accent);
    }

/* Mapa grande */
.contato-mapa-full {
    border-radius: 20px;
    overflow: hidden;
    height: 300px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
    border: 3px solid rgba(255, 255, 255, 0.2);
}

    .contato-mapa-full iframe {
        width: 100%;
        height: 100%;
        border: 0;
    }

/* Redes sociais */
.contato-redes {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

    .contato-redes h3 {
        font-weight: 600;
        font-size: 0.95rem;
        margin-bottom: 1rem;
        color: rgba(255, 255, 255, 0.9);
    }

.social-icons {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
}

.social-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.15rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

    .social-icon:hover {
        background: var(--pet-accent);
        color: white;
        transform: translateY(-3px);
        box-shadow: 0 6px 16px rgba(91, 198, 208, 0.4);
    }

/* Responsividade Contato */
@media (max-width: 768px) {
    .contato-info-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .contato-mapa-full {
        height: 220px;
    }
}

/* BOTÃO VOLTAR AO TOPO */
#backToTop {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    background-color: #5bc6d0;
    color: #fff;
    border: none;
    border-radius: 50%;
    padding: 10px 14px;
    font-size: 18px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    display: none;
    transition: background-color 0.2s ease;
}

    #backToTop:hover {
        background-color: #48b3bd;
    }

/* RESPONSIVO */
@media (max-width: 768px) {
    .hero-section .btn-primary {
        font-size: 1rem;
    }

    .container {
        padding-left: 10px;
        padding-right: 10px;
    }

    .icon-circle {
        width: 70px;
        height: 70px;
    }

    #contato .map-embed {
        height: 250px;
    }
}

@media (max-width: 576px) {
    .hero-section .btn-primary {
        font-size: 0.9rem;
        padding: 0.8rem 1.5rem;
    }

    #sobre-nos .text-start {
        text-align: center;
    }

    #contato .map-embed {
        height: 220px;
    }
}

.text-pet-primary {
    color: #2b4d50;
}

.text-pet-secondary {
    color: #2e5f63;
}

.divider-pet {
    border-top: 1px dashed #cfe9ec;
}

.quote-pet {
    font-size: 30px;
    font-weight: bold
}

.photo-polaroid {
    position: relative;
    width: 180px;
    max-height: 300px;
    padding: 12px;
    background-size: cover;
    background-position: center;
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

    /* fundo blur sobreposto */
    .photo-polaroid::before {
        content: "";
        position: absolute;
        inset: 0;
        backdrop-filter: blur(14px);
        background-color: rgba(255, 255, 255, 0.45);
        z-index: 0;
    }

/* imagem principal */
.photo-polaroid-img {
    position: relative;
    z-index: 1;
    border: 6px solid white;
    border-radius: 10px;
    max-height: 240px;
    width: 100%;
    object-fit: cover;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* efeito de inclinação do bloco inteiro */
.photo-polaroid:nth-child(2n) {
    transform: rotate(3deg);
}

.photo-polaroid:nth-child(3n) {
    transform: rotate(-3deg);
}

.photo-polaroid:nth-child(5n) {
    transform: rotate(2deg);
}

/* fitinha decorativa */
.photo-polaroid::after {
    content: "";
    position: absolute;
    top: 0;
    left: 40%;
    width: 40px;
    height: 20px;
    background: repeating-linear-gradient(45deg, #e8f9fa, #e8f9fa 4px, #5bc6d0 4px, #5bc6d0 8px);
    border-radius: 3px;
    transform: rotate(-10deg);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

/* responsivo */
@media (max-width: 768px) {
    .photo-polaroid {
        width: 140px;
    }

    .photo-polaroid-img {
        max-height: 180px;
    }
}

/* =====================================================
   GALERIA SCRAPBOOK - Visual emocional para pets
   ===================================================== */

/* Container Grid - layout estável sem recalcular posições */
.scrapbook-gallery {
    display: grid;
    gap: 1.2rem;
    padding: 1rem;
}

@media (min-width: 576px) {
    .scrapbook-gallery {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 768px) {
    .scrapbook-gallery {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 1200px) {
    .scrapbook-gallery {
        grid-template-columns: repeat(5, 1fr);
    }
}

/* Card Scrapbook Individual */
.scrapbook-card {
    background: #fff;
    border-radius: 16px;
    padding: 10px;
    box-shadow: 0 4px 15px rgba(91, 198, 208, 0.15), 0 2px 4px rgba(0, 0, 0, 0.05);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

    .scrapbook-card:hover {
        transform: translateY(-6px) rotate(0deg) !important;
        box-shadow: 0 12px 30px rgba(91, 198, 208, 0.25), 0 4px 8px rgba(0, 0, 0, 0.1);
    }

    /* Rotações sutis para efeito scrapbook */
    .scrapbook-card:nth-child(6n+1) {
        transform: rotate(0.8deg);
    }

    .scrapbook-card:nth-child(6n+2) {
        transform: rotate(-0.5deg);
    }

    .scrapbook-card:nth-child(6n+3) {
        transform: rotate(0.3deg);
    }

    .scrapbook-card:nth-child(6n+4) {
        transform: rotate(-0.8deg);
    }

    .scrapbook-card:nth-child(6n+5) {
        transform: rotate(0.5deg);
    }

    .scrapbook-card:nth-child(6n) {
        transform: rotate(-0.3deg);
    }

    /* Fitinha decorativa no topo */
    .scrapbook-card::before {
        content: "";
        position: absolute;
        top: -6px;
        left: 50%;
        transform: translateX(-50%) rotate(-2deg);
        width: 50px;
        height: 18px;
        background: linear-gradient(135deg, #5bc6d0 0%, #8fd8df 100%);
        border-radius: 3px;
        z-index: 10;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        opacity: 0.9;
    }

    /* Variação de fitinhas coloridas */
    .scrapbook-card:nth-child(4n)::before {
        background: linear-gradient(135deg, #f8b4c4 0%, #fcd5df 100%);
    }

    .scrapbook-card:nth-child(4n+2)::before {
        background: linear-gradient(135deg, #a8e6cf 0%, #dcedc8 100%);
    }

    .scrapbook-card:nth-child(4n+3)::before {
        background: linear-gradient(135deg, #ffd93d 0%, #ffe082 100%);
    }

/* Container da imagem - altura maior para destaque */
.scrapbook-img-container {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    background: linear-gradient(145deg, #f5f5f5, #e8e8e8);
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (min-width: 768px) {
    .scrapbook-img-container {
        height: 320px;
    }
}

.scrapbook-img {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 10px;
    transition: transform 0.4s ease;
    object-fit: cover;
}

.scrapbook-card:hover .scrapbook-img {
    transform: scale(1.03);
}

/* Badge de reações - sempre visível, estilo adesivo */
.scrapbook-reactions {
    position: absolute;
    top: 8px;
    right: 8px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    padding: 4px 10px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    z-index: 5;
    cursor: pointer;
    transition: transform 0.2s ease;
}

    .scrapbook-reactions:hover {
        transform: scale(1.1);
    }

    .scrapbook-reactions .emoji {
        font-size: 14px;
    }

    .scrapbook-reactions .count {
        font-size: 11px;
        font-weight: 700;
        color: var(--pet-primary);
    }

/* Área de informações - sempre visível */
.scrapbook-info {
    padding: 10px 4px 4px;
}

/* Caption sempre visível */
.scrapbook-caption {
    font-size: 0.85rem;
    color: var(--pet-primary);
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 6px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Data - sutil mas visível */
.scrapbook-date {
    font-size: 0.7rem;
    color: #888;
    display: flex;
    align-items: center;
    gap: 4px;
}

    .scrapbook-date i {
        font-size: 0.65rem;
    }

/* =====================================================
   MODAL LIGHTBOX - Visual claro e navegável
   ===================================================== */

.modal-scrapbook .modal-content {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    border: none;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.modal-scrapbook .modal-header {
    background: linear-gradient(135deg, var(--pet-bg-soft), #fff);
    border-bottom: 1px solid rgba(91, 198, 208, 0.2);
    padding: 1rem 1.5rem;
}

.modal-scrapbook .modal-title {
    color: var(--pet-primary);
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

    .modal-scrapbook .modal-title::before {
        content: "📸";
    }

.modal-scrapbook .btn-close {
    background-color: var(--pet-accent);
    opacity: 1;
    border-radius: 50%;
    padding: 0.6rem;
    transition: transform 0.2s ease;
}

    .modal-scrapbook .btn-close:hover {
        transform: rotate(90deg);
    }

/* Corpo do modal */
.modal-scrapbook .modal-body {
    padding: 0;
    position: relative;
    background: linear-gradient(145deg, #f8f9fa, #fff);
}

/* Container da imagem no modal */
.lightbox-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
    max-height: 70vh;
    overflow: hidden;
    background: #fafafa;
}

.lightbox-img {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
    border-radius: 0;
    cursor: grab;
    transition: transform 0.2s ease;
}

/* Navegação prev/next */
.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    z-index: 10;
    color: var(--pet-primary);
    font-size: 1.2rem;
}

    .lightbox-nav:hover {
        background: var(--pet-accent);
        color: white;
        transform: translateY(-50%) scale(1.1);
    }

    .lightbox-nav.prev {
        left: 15px;
    }

    .lightbox-nav.next {
        right: 15px;
    }

    .lightbox-nav:disabled {
        opacity: 0.3;
        cursor: not-allowed;
    }

        .lightbox-nav:disabled:hover {
            background: rgba(255, 255, 255, 0.95);
            color: var(--pet-primary);
            transform: translateY(-50%);
        }

/* Info panel no modal */
.lightbox-info {
    padding: 1.2rem 1.5rem;
    background: white;
    border-top: 1px solid rgba(91, 198, 208, 0.15);
}

.lightbox-info-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.5rem;
}

.lightbox-caption {
    font-size: 1rem;
    color: var(--pet-primary);
    font-weight: 500;
    flex: 1;
    margin-right: 1rem;
}

.lightbox-reactions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.lightbox-reaction-badge {
    background: var(--pet-accent-light);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 4px;
}

    .lightbox-reaction-badge .count {
        font-weight: 600;
        color: var(--pet-primary);
    }

.lightbox-date {
    font-size: 0.8rem;
    color: #666;
    display: flex;
    align-items: center;
    gap: 6px;
}

    .lightbox-date i {
        color: var(--pet-accent);
    }

/* Contador de posição */
.lightbox-counter {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.9);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    color: var(--pet-primary);
    font-weight: 500;
    z-index: 5;
}

/* Dica de zoom */
.lightbox-zoom-tip {
    font-size: 0.75rem;
    color: #888;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* =====================================================
   BANNER DE NAVEGAÇÃO ENTRE GALERIAS
   ===================================================== */

.gallery-nav-section {
    padding: 3rem 0;
    background: linear-gradient(145deg, var(--pet-bg-soft), #fff);
}

.gallery-nav-title {
    font-size: 1.5rem;
    color: var(--pet-primary);
    font-weight: 600;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

    .gallery-nav-title::before {
        content: "🐾";
    }

.gallery-nav-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.gallery-nav-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 180px;
    text-decoration: none;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

    .gallery-nav-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 40px rgba(91, 198, 208, 0.3);
        text-decoration: none;
    }

.gallery-nav-card-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.4s ease;
}

.gallery-nav-card:hover .gallery-nav-card-bg {
    transform: scale(1.1);
}

.gallery-nav-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(43, 77, 80, 0.9), rgba(43, 77, 80, 0.3));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
}

.gallery-nav-card-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.gallery-nav-card-title {
    color: white;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.gallery-nav-card-desc {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
}

.gallery-nav-card-arrow {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.gallery-nav-card:hover .gallery-nav-card-arrow {
    background: var(--pet-accent);
    transform: translateX(4px);
}

/* Header da página com tabs visuais */
.gallery-header {
    text-align: center;
    margin-bottom: 2rem;
}

.gallery-tabs {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.gallery-tab {
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

    .gallery-tab.active {
        background: var(--pet-accent);
        color: white;
        box-shadow: 0 4px 15px rgba(91, 198, 208, 0.4);
    }

    .gallery-tab:not(.active) {
        background: white;
        color: var(--pet-primary);
        border: 1px solid rgba(91, 198, 208, 0.3);
    }

        .gallery-tab:not(.active):hover {
            background: var(--pet-accent-light);
            border-color: var(--pet-accent);
            text-decoration: none;
            color: var(--pet-primary);
        }

/* Botão carregar mais estilizado */
#btn-carregar-mais {
    background: linear-gradient(135deg, var(--pet-accent), #4db8c2);
    border: none;
    color: white;
    font-weight: 600;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(91, 198, 208, 0.3);
}

    #btn-carregar-mais:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(91, 198, 208, 0.4);
        background: linear-gradient(135deg, #4db8c2, var(--pet-accent));
    }

/* Compatibilidade com estrutura antiga */
.reacoes-popover {
    display: none;
}

.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
    background-color: #fadf25 !important;
    color: #000 !important;
    border-color: #d9bc00;
}

.nav-pills .nav-link {
    background-color: #2c2c2c !important;
    color: #ffffff !important;
    border-radius: 8px;
    margin: 2px;
    border: 1px solid #444;
}

.fundo-patinha-outline::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url('/paw-outline.svg');
    background-repeat: repeat;
    background-size: 70px;
    background-position: 0 0, 50px 100px, 100px 200px;
    filter: brightness(0) opacity(0.04);
    z-index: 0;
    pointer-events: none;
}

.fundo-patinha-outline {
    position: relative;
    z-index: 1;
}

.fundo-patinha-full::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url('/paw-full.svg');
    background-repeat: repeat;
    background-size: 70px;
    background-position: 0 0, 50px 100px, 100px 200px;
    filter: brightness(0) opacity(0.04);
    z-index: 0;
    pointer-events: none;
}

.fundo-patinha-full {
    position: relative;
    z-index: 1;
}

.fundo-patinhas-full-y::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url('/paws-full.svg');
    background-repeat: repeat-y;
    background-size: 70px;
    background-position: 0 0, 50px 100px, 100px 200px;
    filter: brightness(0) opacity(0.04);
    z-index: 0;
    pointer-events: none;
}

.fundo-patinhas-full-y {
    position: relative;
    z-index: 1;
}

.bg-linha-horizontal {
    position: absolute;
    inset: 0;
    display: flex;
    z-index: 1;
    opacity: 0.4;
    overflow: hidden;
}

.bg-horizontal-img {
    width: 25vw;
    min-width: 160px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

@media (max-width: 768px) {
    .bg-horizontal-img {
        width: 50vw;
    }
}

.btn-outline-light:hover {
    background-color: #ffffff;
    color: #000;
    border-color: #ffffff;
}

.a-person {
    color: black !important;
    font-weight: bold;
    text-decoration: none;
}

/* =====================================================
   PARALLAX SECTIONS - Visual Imersivo
   ===================================================== */
.parallax-section {
    background-attachment: fixed;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    min-height: 70vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    padding: 60px 5vw;
    position: relative;
}

.parallax-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.15);
    pointer-events: none;
}

.parallax-content {
    padding: 60px;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    color: white;
    max-width: 600px;
    position: relative;
    z-index: 2;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.15);
}

    .parallax-content h2 {
        font-size: clamp(2rem, 4vw, 2.75rem);
        font-weight: 800;
        margin-bottom: 1rem;
        color: white;
        letter-spacing: -0.02em;
    }

    .parallax-content p {
        font-size: 1.1rem;
        color: rgba(255, 255, 255, 0.9);
        line-height: 1.6;
        margin-bottom: 2rem;
    }

.parallax-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.btn-parallax {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.9rem 1.75rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-parallax-primary {
    background: var(--gradient-accent);
    color: white;
    box-shadow: 0 8px 20px rgba(91, 198, 208, 0.35);
}

    .btn-parallax-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 30px rgba(91, 198, 208, 0.5);
        color: white;
    }

.btn-parallax-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

    .btn-parallax-outline:hover {
        background: white;
        color: var(--pet-primary);
        transform: translateY(-3px);
    }

/* Responsivo */
@media (max-width: 991.98px) {
    .parallax-content {
        padding: 40px 30px;
    }

    .parallax-section {
        background-attachment: scroll;
    }
}

@media (max-width: 576px) {
    .parallax-buttons {
        flex-direction: column;
    }

    .btn-parallax {
        width: 100%;
        justify-content: center;
    }
}

.l-400 {
    width: 400px
}

.l-200 {
    width: 200px
}

.font-medium {
    font-size: 1.25rem;
}

.fst-7 {
    font-size: 0.7rem !important
}

.pet-card {
    border: 1px solid #ddd;
    border-radius: .5rem;
    overflow: hidden;
    background-color: #fff;
}

.pet-card-img-wrapper {
    position: relative;
    width: 100%;
    padding-top: 100%; /* quadrado */
    overflow: hidden;
}

.pet-card-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pet-card-body {
    padding: .5rem .75rem;
}

.pet-card-tags .badge {
    font-size: .75rem;
}

.pet-card-actions button {
    font-size: .75rem;
    padding: .2rem .5rem;
}

.form-check:hover {
    background-color: whitesmoke;
}

#animais-container {
    margin-bottom: 70px;
}

.fst-smaller {
    font-size: smaller;
}

.hero-title {
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    color: var(--pet-primary);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.15;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--pet-secondary);
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.7;
    font-weight: 400;
}

.services-grid {
    max-width: 1000px;
    margin: 0 auto;
}

.service-card {
    position: relative;
}

.service-link {
    display: block;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

    .service-link:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-lg);
        border-color: var(--pet-accent);
        background: #ffffff;
        color: inherit;
        text-decoration: none;
    }

/* ===== ÍCONES DOS SERVIÇOS ===== */
.service-icon-wrapper {
    position: relative;
    width: 64px;
    height: 64px;
    margin: 0 auto 1.25rem;
    border-radius: 12px;
    background: var(--pet-accent-light);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.service-link:hover .service-icon-wrapper {
    background: var(--pet-accent);
}

    .service-link:hover .service-icon-wrapper i {
        color: white;
    }

.service-icon {
    font-size: 1.5rem;
    color: var(--pet-accent);
    position: relative;
    z-index: 2;
    transition: color 0.3s ease;
}

    .service-icon i {
        font-size: 1.5rem;
        color: var(--pet-accent);
        transition: color 0.3s ease;
    }

/* ===== CONTEÚDO DOS CARDS ===== */
.service-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--pet-primary);
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.service-link:hover .service-title {
    color: var(--pet-accent-dark);
}

.service-description {
    font-size: 0.9rem;
    color: var(--pet-text-muted);
    margin: 0;
    line-height: 1.5;
}

/* ===== ANIMAÇÕES ELEGANTES ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse-subtle {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: 0.85;
    }
}

/* ===== CLASSES DE ANIMAÇÃO ===== */
.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* ===== RESPONSIVIDADE ===== */
@media (max-width: 768px) {
    .hero-section {
        min-height: 90vh;
        padding: 2rem 0;
    }

    .floating-element {
        display: none; /* Oculta elementos decorativos em mobile */
    }

    .service-link {
        padding: 1.5rem 1rem;
    }

    .service-icon-wrapper {
        width: 70px;
        height: 70px;
        margin-bottom: 1rem;
    }

    .service-icon {
        font-size: 1.75rem;
    }

    .hero-subtitle {
        margin-bottom: 1.5rem;
    }
}

/* =====================================================
   SOBRE NÓS - Visual Marcante
   ===================================================== */
.sobre-nos {
    position: relative;
    padding: 6rem 0;
    background: linear-gradient(180deg, #ffffff 0%, var(--pet-bg-soft) 50%, #ffffff 100%);
    overflow: hidden;
}

/* Decorações de fundo */
.about-decoration {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.deco-circle {
    position: absolute;
    border-radius: 50%;
}

.deco-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(91, 198, 208, 0.08) 0%, transparent 70%);
    top: -200px;
    right: -200px;
}

.deco-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(244, 197, 66, 0.06) 0%, transparent 70%);
    bottom: -100px;
    left: -100px;
}

/* ===== BADGE DE SEÇÃO ===== */
.section-badge {
    display: inline-flex;
    align-items: center;
    background: white;
    color: var(--pet-accent-dark);
    padding: 0.6rem 1.5rem;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--pet-accent-light);
}

    .section-badge i {
        color: var(--pet-accent);
    }

/* ===== CABEÇALHO DA SEÇÃO ===== */
.about-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--pet-primary);
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
}

.about-intro {
    font-size: clamp(1.05rem, 2vw, 1.2rem);
    color: var(--pet-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ===== CARDS ABOUT ===== */
.about-card {
    background: white;
    border-radius: 24px;
    padding: 2.5rem;
    height: 100%;
    box-shadow: var(--shadow-card);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

    .about-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 5px;
        background: var(--gradient-accent);
    }

    .about-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-lg);
    }

.about-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.about-icon-wrapper {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: var(--gradient-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .about-icon-wrapper i {
        font-size: 1.5rem;
        color: white;
    }

    .philosophy-card .about-icon-wrapper,
    .about-icon-wrapper.philosophy-icon {
        background: linear-gradient(135deg, #f4c542, #e6a700);
    }

.about-card-header h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--pet-primary);
    margin: 0;
}

.about-text {
    font-size: 1.05rem;
    color: var(--pet-secondary);
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

/* Lista de serviços moderna */
.service-list-modern {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .service-list-modern li {
        display: flex;
        align-items: center;
        gap: 1rem;
        padding: 0.85rem 0;
        border-bottom: 1px solid rgba(91, 198, 208, 0.15);
        transition: all 0.3s ease;
    }

        .service-list-modern li:last-child {
            border-bottom: none;
        }

        .service-list-modern li:hover {
            padding-left: 0.5rem;
        }

.service-bullet {
    width: 10px;
    height: 10px;
    background: var(--gradient-accent);
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 0 12px var(--pet-accent-glow);
}

.service-list-modern span:last-child {
    color: var(--pet-primary);
    font-weight: 500;
}

/* Citação destacada */
.quote-highlight {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    background: var(--pet-accent-light);
    padding: 1.25rem 1.5rem;
    border-radius: 16px;
    margin-top: 1.5rem;
    border-left: 4px solid var(--pet-accent);
}

    .quote-highlight i {
        font-size: 1.5rem;
        color: var(--pet-accent);
        flex-shrink: 0;
    }

    .quote-highlight span {
        font-size: 1.05rem;
        font-weight: 600;
        color: var(--pet-primary);
        font-style: italic;
        line-height: 1.5;
    }

/* Seção de fotos */
.photos-section {
    margin-top: 4rem;
}

.photos-title {
    text-align: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--pet-secondary);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

    .photos-title i {
        color: var(--pet-accent);
    }

/* ===== RESPONSIVIDADE ===== */
@media (max-width: 992px) {
    .about-title {
        font-size: 2.25rem;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .sobre-nos {
        padding: 4rem 0;
    }

    .about-card {
        padding: 2rem 1.5rem;
    }

    .about-card-header {
        flex-direction: column;
        text-align: center;
    }
}

.quote-mark-open, .quote-mark-close {
    font-size: 2.5rem;
}

/* =====================================================
   LOGIN - Overlay de autenticação (centralização blindada)
   ===================================================== */

.auth-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    /* Fundo */
    background: linear-gradient(135deg, var(--pet-bg-soft) 0%, #ffffff 50%, #f0f9fa 100%);
    /* Não deixa o layout do site influenciar */
    isolation: isolate;
    /* Se a tela for pequena, permite rolar SEM quebrar o centro */
    overflow: auto;
    padding: 1.5rem;
}

/* Centralização “tanque de guerra” */
.auth-card {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: min(400px, 100%);
    background: #fff;
    padding: 2.5rem;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.10);
    text-align: center;
    z-index: 2;
}

/* Se a altura for pequena, a página rola e o card “desce” pra caber */
@media (max-height: 700px) {
    .auth-card {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        margin: 0 auto;
    }
}


/* Logo */
.auth-logo-wrapper {
    margin-bottom: 1.5rem;
}

.auth-logo {
    width: 120px;
    height: auto;
    filter: drop-shadow(0 8px 20px rgba(91, 198, 208, 0.22));
    transition: transform 0.3s ease;
}

    .auth-logo:hover {
        transform: scale(1.05);
    }

/* Títulos */
.auth-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--pet-primary);
}

.auth-text {
    font-size: 0.95rem;
    color: var(--pet-text-muted);
    margin-bottom: 2rem;
}

/* Form */
.auth-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Input com ícone */
.auth-input-group {
    position: relative;
}

.auth-input-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--pet-accent);
    font-size: 1.1rem;
    z-index: 1;
}

.auth-input {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 1rem;
    background: #f9fafb;
    transition: all 0.3s ease;
}

    .auth-input:focus {
        outline: none;
        border-color: var(--pet-accent);
        background: #fff;
        box-shadow: 0 0 0 4px rgba(91, 198, 208, 0.15);
    }

    .auth-input::placeholder {
        color: #9ca3af;
    }

/* Botão */
.auth-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 1rem;
    background: var(--gradient-accent);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(91, 198, 208, 0.30);
}

    .auth-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 30px rgba(91, 198, 208, 0.40);
    }

    .auth-btn i {
        transition: transform 0.3s ease;
    }

    .auth-btn:hover i {
        transform: translateX(4px);
    }

/* Erro */
.auth-error {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(239, 68, 68, 0.10);
    border: 1px solid rgba(239, 68, 68, 0.30);
    color: #dc2626;
    padding: 0.75rem 1rem;
    border-radius: 10px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

/* Footer */
.auth-footer {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #f0f0f0;
}

.auth-back-link {
    display: inline-flex;
    align-items: center;
    color: var(--pet-text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

    .auth-back-link:hover {
        color: var(--pet-accent);
    }

/* Responsivo */
@media (max-width: 480px) {
    .auth-card {
        padding: 2rem 1.5rem;
        border-radius: 20px;
    }

    .auth-logo {
        width: 100px;
    }

    .auth-title {
        font-size: 1.3rem;
    }
}

/* =====================================================
   REDE SOCIAU - Perfis dos pets estilo rede social
   ===================================================== */

.pet-card-info {
    font-size: 11px;
}

.text-pet-accent {
    color: var(--pet-accent);
}

/* Seção com patinhas sutis nas laterais */
.sociau-section {
    background: linear-gradient(180deg, #fff 0%, var(--pet-bg-soft) 100%);
    min-height: 80vh;
    position: relative;
}

    .sociau-section::before,
    .sociau-section::after {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        width: 150px;
        background-image: url('/paw-outline.svg');
        background-repeat: repeat-y;
        background-size: 60px;
        filter: brightness(0) opacity(0.04);
        pointer-events: none;
    }

    .sociau-section::before {
        left: 0;
        background-position: left center;
    }

    .sociau-section::after {
        right: 0;
        background-position: right center;
    }

@media (max-width: 768px) {
    .sociau-section::before,
    .sociau-section::after {
        width: 80px;
        background-size: 40px;
    }
}

/* Grid de perfis */
.sociau-grid {
    display: grid;
    gap: 1.5rem;
    padding: 1rem 0;
}

@media (min-width: 576px) {
    .sociau-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 768px) {
    .sociau-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 1200px) {
    .sociau-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

/* Card de perfil do pet */
.sociau-profile-card {
    background: white;
    border-radius: 20px;
    padding: 1.5rem 1rem;
    text-align: center;
    text-decoration: none;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

    .sociau-profile-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 40px rgba(91, 198, 208, 0.2);
        text-decoration: none;
    }

/* Avatar do pet - MAIOR */
.sociau-avatar {
    position: relative;
    width: 150px;
    height: 200px;
    margin: 0 auto 1rem;
}

@media (min-width: 768px) {
    .sociau-avatar {
        width: 150px;
        height: 200px;
    }
}

.sociau-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    object-fit: cover;
    border: 4px solid white;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sociau-profile-card:hover .sociau-avatar img {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(91, 198, 208, 0.3);
}

/* Ring gradiente ao redor do avatar */
.sociau-avatar-ring {
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    background: linear-gradient(45deg, #5bc6d0, #f8b4c4, #ffd93d, #a8e6cf);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.sociau-profile-card:hover .sociau-avatar-ring {
    opacity: 1;
}

/* Info do pet */
.sociau-info {
    position: relative;
}

.sociau-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--pet-primary);
    margin: 0 0 0.25rem 0;
    transition: color 0.3s ease;
}

.sociau-profile-card:hover .sociau-name {
    color: var(--pet-accent);
}

.sociau-breed {
    font-size: 0.8rem;
    color: #888;
    display: block;
}

/* Barra de cor por sexo na parte inferior */
.sociau-profile-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 4px;
    border-radius: 4px 4px 0 0;
    transition: width 0.3s ease;
}

.sociau-profile-card:hover::after {
    width: 80px;
}

/* Cores por sexo - Macho (azul) */
.sociau-profile-card.sexo-macho::after {
    background: linear-gradient(90deg, #64b5f6, #4a90d9);
}

.sociau-profile-card.sexo-macho .sociau-avatar-ring {
    background: linear-gradient(45deg, #4a90d9, #64b5f6, #90caf9);
}

.sociau-profile-card.sexo-macho:hover .sociau-avatar img {
    box-shadow: 0 8px 25px rgba(74, 144, 217, 0.35);
}

.sociau-profile-card.sexo-macho:hover {
    box-shadow: 0 15px 40px rgba(74, 144, 217, 0.2);
}

/* Cores por sexo - Fêmea (rosa) */
.sociau-profile-card.sexo-femea::after {
    background: linear-gradient(90deg, #f48fb1, #e91e8c);
}

.sociau-profile-card.sexo-femea .sociau-avatar-ring {
    background: linear-gradient(45deg, #e91e8c, #f48fb1, #f8bbd9);
}

.sociau-profile-card.sexo-femea:hover .sociau-avatar img {
    box-shadow: 0 8px 25px rgba(233, 30, 140, 0.35);
}

.sociau-profile-card.sexo-femea:hover {
    box-shadow: 0 15px 40px rgba(233, 30, 140, 0.2);
}

/* =====================================================
   ADMIN - Painel Administrativo
   ===================================================== */
.admin-section {
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
    min-height: 100vh;
    margin-top: 60px;
}

.admin-header {
    background: white;
    padding: 1.5rem 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.admin-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-accent);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.admin-icon i {
    font-size: 1.4rem;
    color: white;
}

.admin-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--pet-primary);
}

.admin-subtitle {
    font-size: 0.9rem;
    color: var(--pet-text-muted);
}

/* Tabs do Admin */
.admin-tabs {
    background: white;
    padding: 0.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.admin-tabs .nav-link {
    color: var(--pet-secondary);
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.admin-tabs .nav-link:hover {
    background: var(--pet-accent-light);
}

.admin-tabs .nav-link.active {
    background: var(--gradient-accent) !important;
    color: white !important;
}

.admin-tab-content {
    background: transparent;
}

/* Info Card */
.admin-info-card {
    background: linear-gradient(135deg, #e0f4f6 0%, #fff 100%);
    border: 1px solid var(--pet-accent-light);
    border-left: 4px solid var(--pet-accent);
    padding: 1rem 1.25rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: var(--pet-secondary);
}

.admin-info-card i {
    color: var(--pet-accent);
    font-size: 1.1rem;
}

/* Cards do Admin */
.admin-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.admin-card-header {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fafafa;
}

.admin-card-header h5 {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    color: var(--pet-primary);
    display: flex;
    align-items: center;
}

.admin-card-header h5 i {
    color: var(--pet-accent);
}

.admin-card-body {
    padding: 1.5rem;
}

.admin-card-footer {
    padding: 1rem 1.5rem;
    border-top: 1px solid #f0f0f0;
    background: #fafafa;
}

/* Lista de Pets */
.pet-list-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1rem;
    background: #f9fafb;
    border-radius: 12px;
    border: 2px solid transparent;
    transition: all 0.2s ease;
}

.pet-list-item:hover {
    background: white;
    border-color: var(--pet-accent-light);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.pet-list-item.active {
    background: var(--pet-accent-light);
    border-color: var(--pet-accent);
}

.pet-list-avatar {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
}

.pet-list-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pet-list-info {
    flex: 1;
    min-width: 0;
}

.pet-list-info h6 {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--pet-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.pet-list-info small {
    color: var(--pet-text-muted);
}

/* Barra de tagueamento rapido */
.quick-tag-bar {
    background: linear-gradient(135deg, #e3f2fd 0%, #f3e5f5 100%);
    padding: 1rem;
    border-radius: 12px;
    border: 1px solid rgba(91, 198, 208, 0.2);
}

.quick-tag-selector {
    max-width: 400px;
}

/* Grid de admin mais compacto */
.admin-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 576px) {
    .admin-gallery {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 768px) {
    .admin-gallery {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 1200px) {
    .admin-gallery {
        grid-template-columns: repeat(5, 1fr);
    }
}

/* Card de mídia no admin */
.admin-gallery .pet-card {
    border-radius: 12px;
    overflow: hidden;
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

    .admin-gallery .pet-card:hover {
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
        transform: translateY(-2px);
    }

/* Modo de tagueamento rápido ativo */
body.quick-tag-mode .admin-gallery .pet-card {
    cursor: pointer;
}

    body.quick-tag-mode .admin-gallery .pet-card::before {
        content: "+";
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) scale(0);
        width: 50px;
        height: 50px;
        background: rgba(40, 167, 69, 0.9);
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
        font-weight: bold;
        z-index: 10;
        transition: transform 0.2s ease;
        pointer-events: none;
    }

    body.quick-tag-mode .admin-gallery .pet-card:hover::before {
        transform: translate(-50%, -50%) scale(1);
    }

    body.quick-tag-mode .admin-gallery .pet-card:hover .pet-card-img {
        opacity: 0.7;
    }

/* Feedback de tag adicionada */
.admin-gallery .pet-card.tag-added {
    animation: tagAddedPulse 0.5s ease;
}

@keyframes tagAddedPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.7);
    }

    50% {
        box-shadow: 0 0 0 10px rgba(40, 167, 69, 0);
    }

    100% {
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    }
}

/* Tags mais compactas */
.admin-gallery .pet-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

    .admin-gallery .pet-card-tags .badge {
        font-size: 0.7rem;
        padding: 0.25rem 0.5rem;
    }