:root {
    --pet-primary: #2b4d50;
    --pet-secondary: #2e5f63;
    --pet-accent: #5bc6d0;
    --pet-accent-light: #e8f9fa;
    --pet-bg-soft: #f4fcfd;
    /* Gradientes */
    --gradient-pet: linear-gradient(135deg, #5bc6d0, #e8f9fa);
    --gradient-pet-soft: linear-gradient(145deg, #f4fcfd, #e8f9fa);
    --gradient-hero-bg: linear-gradient(145deg, #f4fcfd 0%, #e8f9fa 100%);
    /* Sombras */
    --shadow-pet: 0 10px 25px -5px rgba(91, 198, 208, 0.3);
    --shadow-pet-lg: 0 20px 40px -10px rgba(91, 198, 208, 0.4);
}

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

body {
    font-family: 'Nunito', sans-serif;
    background-color: #ffffff;
    color: #333;
    line-height: 1.6;
}

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 */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
}

.logo-hero {
    max-width: 220px;
    height: auto;
}

.hero-section .btn-primary {
    background-color: #5bc6d0;
    color: white;
    border-radius: 999px;
    padding: 1rem;
    border: none;
    font-size: 1rem;
}

    .hero-section .btn-primary:hover {
        background-color: #48b3bd;
    }

/*<!-- QUEM SOMOS --> */
.card-servico {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

    .card-servico:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    }

    .card-servico i {
        font-size: 2.5rem;
        color: #5bc6d0;
        margin-bottom: 1rem;
    }

    .card-servico h5 {
        font-weight: 600;
        margin-bottom: 0.75rem;
        color: #222;
    }

    .card-servico p {
        color: #555;
        font-size: 0.9rem;
        line-height: 1.6;
    }

/* PROFISSIONAIS */
#profissionais img {
    transition: transform 0.3s ease;
}

    #profissionais img:hover {
        transform: scale(1.03);
    }

.btn-principal {
    background-color: #5bc6d0;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 0.8rem 2rem;
    border-radius: 999px;
    border: none;
    transition: background-color 0.2s ease;
}

    .btn-principal:hover {
        background-color: #48b3bd;
    }

/* CONTATO */
.contato-section {
    background-color: #eaf9fa;
    color: #2b4d50;
    padding: 3rem 1rem;
}

.contato-container {
    max-width: 960px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
    justify-content: space-between;
}

.contato-info {
    flex: 1 1 320px;
    max-width: 45%;
}

    .contato-info article {
        margin-bottom: 1.5rem;
    }

.contato-subtitle {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.contato-address,
.contato-link {
    font-size: 1rem;
    color: #2b4d50;
    text-decoration: none;
    display: block;
}

    .contato-link:hover,
    .contato-link:focus {
        text-decoration: underline;
        color: #3ca3aa;
    }

.contato-icon {
    font-size: 1rem;
    color: #3ca3aa;
    margin-right: 0.5rem;
    vertical-align: middle;
}

.contato-info p,
.contato-info a {
    vertical-align: middle;
}

.contato-mapa {
    flex: 1 1 480px;
    max-width: 50%;
    box-shadow: 0 4px 14px rgba(0,0,0,0.12);
    border-radius: 0.5rem;
    overflow: hidden;
    height: 220px; /* altura fixa para deixar compacto */
}

    .contato-mapa iframe {
        width: 100%;
        height: 100%;
        border: 0;
    }

/* Redes sociais alinhadas abaixo e centralizadas */
.contato-redes {
    width: 100%;
    margin-top: 2rem;
    text-align: center;
}

    .contato-redes h3 {
        font-weight: 700;
        margin-bottom: 0.75rem;
    }

.social-icon {
    font-size: 1.8rem;
    color: #3ca3aa;
    margin: 0 0.5rem;
    transition: transform 0.3s ease, color 0.3s ease;
    display: inline-block;
}

    .social-icon:hover,
    .social-icon:focus {
        color: #2b4d50;
        transform: scale(1.15);
        outline: none;
        text-decoration: none;
    }

/* Responsividade */
@media (max-width: 768px) {
    .contato-container {
        flex-direction: column;
        max-width: 100%;
    }

    .contato-info, .contato-mapa {
        max-width: 100%;
        flex: none;
        height: 280px;
    }
}

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

#imagemExpandida {
    max-height: 90vh;
    max-width: 100%;
    height: auto;
    width: auto;
    object-fit: contain;
}

/* galerias */
#midias-container {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 576px) {
    #midias-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 768px) {
    #midias-container {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 992px) {
    #midias-container {
        grid-template-columns: repeat(5, 1fr);
    }
}

@media (min-width: 1200px) {
    #midias-container {
        grid-template-columns: repeat(6, 1fr);
    }
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    transition: box-shadow 0.3s ease;
    cursor: pointer;
    background-color: #333;
    height: 250px;
}

    .gallery-item:hover {
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    }

/* Aspect ratio fixo para os vídeos */
.video-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 10px;
}

    .video-wrapper video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.video-thumbnail {
    position: relative;
    cursor: pointer;
    height: 250px; /* ou outro valor coerente */
}

    .video-thumbnail img {
        width: 100%;
        height: 100%; /* garante que ocupe o container */
        object-fit: cover;
        display: block;
        border-radius: 10px;
    }

.play-icon-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 48px;
    color: white;
    opacity: 0.8;
    pointer-events: none;
}

/* Background desfocado nas imagens */
.background-blur {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    filter: blur(15px);
    z-index: 0;
    transform: scale(1.1);
    opacity: 0.6;
}

.image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #333;
}

    .image-wrapper img {
        position: relative;
        z-index: 1;
        max-height: 100%;
        max-width: 100%;
        object-fit: cover;
    }

/* Estilo do Gallery Info */
.gallery-info {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 0.4rem;
    font-size: 0.8rem;
    text-align: center;
    z-index: 3;
}

.gallery-item:hover .gallery-info {
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 0.4rem;
    font-size: 0.8rem;
    text-align: center;
    z-index: 3;
}

/* Estilo do Gallery Caption */
.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 0.4rem 0.6rem;
    font-size: 0.8rem;
    text-align: center;
    z-index: 2;
}

/* Popover de reações */
.reacoes-popover {
    position: absolute;
    top: 10px;
    right: 0.6rem;
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    padding: 2px 8px;
    border-radius: 16px;
    font-size: 14px;
    display: flex;
    gap: 6px;
    align-items: center;
    z-index: 4;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    pointer-events: auto;
}

    .reacoes-popover .emoji {
        font-size: 16px;
        line-height: 1;
    }

    .reacoes-popover .count {
        font-size: 12px;
        font-weight: bold;
        margin-left: -4px;
        color: #222;
    }

.gallery-item:hover .reacoes-popover {
    opacity: 0.4;
    transition: opacity 0.3s ease;
}

.reacoes-popover:hover {
    opacity: 1 !important;
    transition: opacity 0.2s ease;
}

.reacoes-popover {
    pointer-events: auto;
}

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

#btn-carregar-mais {
    background-color: #6cc4cf;
    border: none;
    color: #232323;
    font-weight: bold;
    transition: background-color 0.3s;
}

    #btn-carregar-mais:hover {
        background-color: #6cc4cf;
    }

.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-section {
    background-attachment: fixed;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    text-shadow: 0 2px 10px #000;
    padding: 60px 8vw;
}

.parallax-content {
    padding: 60px;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    color: white;
    box-shadow: 0 8px 32px 0 rgba(0,0,0,0.15);
}

.parallax-section {
    min-height: 100vh;
}

/* Responsivo */
@media (max-width: 991.98px) {
    .parallax-content {
        padding: 30px;
    }

    .parallax-section {
        background-attachment: scroll;
    }
}

.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-top: 70px;
}

.fst-smaller {
    font-size: smaller;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    background: linear-gradient(135deg, var(--pet-primary), var(--pet-accent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: var(--pet-primary);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: var(--pet-secondary);
    max-width: 800px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

.services-grid {
    max-width: 1000px;
    margin: 0 auto;
}

.service-card {
    position: relative;
}

.service-link {
    display: block;
    background: linear-gradient(135deg, var(--pet-bg-soft), white);
    border: 2px solid transparent;
    border-radius: 24px;
    padding: 2rem 1.5rem;
    text-decoration: none;
    color: inherit;
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
}

    .service-link:hover {
        transform: scale(1.05) translateY(-8px);
        box-shadow: var(--shadow-pet-lg);
        border-color: rgba(91, 198, 208, 0.3);
        background: linear-gradient(135deg, var(--pet-accent-light), white);
        color: inherit;
        text-decoration: none;
    }

/* ===== ÍCONES DOS SERVIÇOS ===== */
.service-icon-wrapper {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    background: var(--gradient-pet);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-pet);
    transition: all 0.3s ease;
}

.service-link:hover .service-icon-wrapper {
    animation: pulse-pet 0.6s ease-in-out;
}

.service-icon {
    font-size: 2rem;
    position: relative;
    z-index: 2;
}

/* ===== CONTEÚDO DOS CARDS ===== */
.service-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--pet-primary);
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.service-link:hover .service-title {
    color: var(--pet-accent);
}

.service-description {
    font-size: 0.9rem;
    color: var(--pet-secondary);
    opacity: 0;
    transform: translateY(8px);
    transition: all 0.3s ease;
    margin: 0;
}

.service-link:hover .service-description {
    opacity: 1;
    transform: translateY(0);
}

/* ===== ANIMAÇÕES PERSONALIZADAS ===== */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes bounce-gentle {
    0%, 100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-5px);
    }
}

@keyframes wiggle {
    0%, 100% {
        transform: rotate(-3deg);
    }

    50% {
        transform: rotate(3deg);
    }
}

@keyframes pulse-pet {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
}

/* ===== ANIMAÇÕES DOS CARDS ===== */
.float-animation {
    animation: float 3s ease-in-out infinite;
}

.bounce-animation {
    animation: bounce-gentle 2s ease-in-out infinite;
    animation-delay: 0.5s;
}

.wiggle-animation {
    animation: wiggle 4s ease-in-out infinite;
    animation-delay: 1s;
}

/* ===== 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-nos {
    position: relative;
    padding: 5rem 0;
    background: var(--pet-bg-soft);
    overflow: hidden;
}

/* ===== CABEÇALHO DA SEÇÃO ===== */
.about-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: bold;
    color: var(--pet-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.about-intro {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: var(--pet-secondary);
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ===== DIVISOR DECORATIVO ===== */
.divider-decorativo {
    width: 128px;
    height: 4px;
    background: var(--gradient-pet);
    margin: 0 auto;
    border-radius: 2px;
    box-shadow: var(--shadow-pet);
}

/* ===== CONTEÚDO ESQUERDO ===== */
.about-content-left {
    height: 100%;
}

.about-text {
    font-size: 1.1rem;
    color: var(--pet-primary);
    line-height: 1.6;
}

/* Lista de serviços */
.services-list {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow-pet);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(91, 198, 208, 0.1);
}

.services-title {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--pet-primary);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.services-items {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .services-items li {
        display: flex;
        align-items: center;
        gap: 1rem;
        color: var(--pet-primary);
        margin-bottom: 0.75rem;
        padding: 0.5rem 0;
        transition: transform 0.3s ease;
    }

        .services-items li:hover {
            transform: translateX(8px);
        }

.service-dot {
    width: 8px;
    height: 8px;
    background: var(--pet-accent);
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 0 10px rgba(91, 198, 208, 0.5);
}

/* ===== CARD DE FILOSOFIA ===== */
.care-philosophy-card {
    background: white;
    border-radius: 24px;
    padding: 2.5rem;
    height: 100%;
    box-shadow: var(--shadow-pet-lg);
    position: relative;
    border: 2px solid rgba(91, 198, 208, 0.1);
    transition: transform 0.3s ease;
}

    .care-philosophy-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 25px 50px -10px rgba(91, 198, 208, 0.5);
    }

.philosophy-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
    animation: pulse-pet 3s ease-in-out infinite;
}

.philosophy-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--pet-primary);
    margin-bottom: 1.5rem;
}

.philosophy-content {
    color: var(--pet-secondary);
    line-height: 1.6;
}

/* Decorações do card de filosofia */
.philosophy-decorations {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
    opacity: 0.3;
}

.heart-1, .heart-2 {
    font-size: 1.5rem;
    animation: bounce-gentle 2s ease-in-out infinite;
}

.paw-icon {
    font-size: 1.5rem;
    animation: bounce-gentle 2s ease-in-out infinite;
    animation-delay: 0.3s;
}

.heart-2 {
    animation-delay: 0.6s;
}

/* ===== CITAÇÃO ESPECIAL ===== */
.quote-container {
    position: relative;
    display: inline-block;
    margin: 2rem 0;
}

.special-quote {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: bold;
    color: var(--pet-primary);
    margin: 0;
    position: relative;
    z-index: 2;
}

.quote-mark-open, .quote-mark-close {
    font-size: 4rem;
    color: var(--pet-accent);
    opacity: 0.5;
    position: absolute;
}

.quote-mark-open {
    top: -1rem;
    left: -2rem;
}

.quote-mark-close {
    bottom: -2rem;
    right: -2rem;
}

/* ===== RESPONSIVIDADE ===== */
@media (max-width: 992px) {
    .about-title {
        font-size: 2.5rem;
        text-align: center;
    }

    .care-philosophy-card {
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    .sobre-nos {
        padding: 3rem 0;
    }

    .about-title {
        font-size: 2rem;
        flex-direction: column;
        gap: 0.5rem;
    }

    .house-icon {
        font-size: 2rem;
    }

    .services-list, .care-philosophy-card {
        padding: 1.5rem;
    }

    .special-quote {
        font-size: 1.5rem;
    }

    .quote-mark-open, .quote-mark-close {
        font-size: 2.5rem;
    }
}

/* Fundo e centralização */
.auth-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: #f3f4f6;
}

/* Card */
.auth-card {
    width: 100%;
    max-width: 360px;
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    text-align: center;
}

/* Logo */
.auth-logo {
    width: 150px;
    margin-bottom: 16px;
}

/* Títulos */
.auth-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 4px;
    color: #1e293b;
}

.auth-text {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 24px;
}

/* Form */
.auth-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Input */
.auth-input {
    padding: 12px 14px;
    border: 1.7px solid #e2e8f0;
    border-radius: 10px;
    font-size: 15px;
    background: #f9fafb;
    transition: 0.3s ease;
}

    .auth-input:focus {
        outline: none;
        border-color: #5bc6d0;
        background: white;
        box-shadow: 0 0 0 4px rgba(91, 198, 208, 0.2);
    }

.auth-error {
    background: rgba(255, 0, 0, 0.08);
    border: 1px solid rgba(255, 0, 0, 0.25);
    color: #b91c1c;
    padding: 10px 14px;
    border-radius: 10px;
    font-size: 14px;
    text-align: center;
    margin-bottom: 16px;
}


/* Mobile */
@media (max-width: 480px) {
    .auth-card {
        padding: 24px;
    }
}

.pet-card-info {
    font-size: 11px;
}
