/* Reset e Variáveis */
:root {
    --primary: #005F73;
    --primary-dark: #003D4D;
    --primary-light: #4D8C9E;
    --secondary: #4a7454;
    --secondary-dark: #E05A4D;
    --white: #FFFFFF;
    --light: #F8F9FA;
    --gray: #6C757D;
    --dark: #343A40;
    --success: #28A745;
    --font-primary: 'Poppins', sans-serif;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--white);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 0.75rem;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0px auto;
}

/* Botões */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 500;
    transition: var(--transition);
    box-shadow: var(--shadow);
    gap: 8px;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 95, 115, 0.3);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    color: var(--primary);
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 500;
    border: 2px solid var(--primary);
    transition: var(--transition);
    gap: 8px;
}

.btn-secondary:hover {
    background-color: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #25D366;
    color: var(--white);
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 500;
    transition: var(--transition);
    gap: 8px;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background-color: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp-lg {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #25D366;
    color: var(--white);
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 500;
    transition: var(--transition);
    gap: 10px;
    font-size: 1.1rem;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp-lg:hover {
    background-color: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp-xl {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #25D366;
    color: var(--white);
    padding: 18px 36px;
    border-radius: 50px;
    font-weight: 500;
    transition: var(--transition);
    gap: 12px;
    font-size: 1.2rem;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp-xl:hover {
    background-color: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

.btn-google-reviews {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--white);
    color: var(--dark);
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 500;
    transition: var(--transition);
    gap: 8px;
    border: 1px solid #DDD;
    box-shadow: var(--shadow);
}

.btn-google-reviews:hover {
    background-color: #F1F1F1;
    transform: translateY(-3px);
}

/* Header */
header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    transition: var(--transition);
}

header.scrolled {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo img {
    transition: var(--transition);
    height: 50px;
}

nav ul {
    display: flex;
    gap: 30px;
}

.nav-link {
    font-weight: 500;
    color: var(--dark);
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--primary);
}

.header-cta {
    margin-left: 30px;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.hamburger {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--primary);
    position: relative;
    transition: var(--transition);
}

.hamburger::before,
.hamburger::after {
    content: '';
    width: 100%;
    height: 3px;
    background: var(--primary);
    position: absolute;
    left: 0;
    transition: var(--transition);
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    top: 8px;
}

.nav-toggle.active .hamburger {
    background: transparent;
}

.nav-toggle.active .hamburger::before {
    transform: rotate(45deg);
    top: 0;
}

.nav-toggle.active .hamburger::after {
    transform: rotate(-45deg);
    top: 0;
}

/* Seção Hero */
#hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 180px 0 20px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 600px;
    z-index: 2;
}

.hero-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-top: 2rem;
}

.hero-image {
    position: absolute;
    right: 8%;
    bottom: 0;
    width: 100%;
    max-width: 390px;
    z-index: 1;
}

.hero-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.hero-waves {
    position: absolute;
    left: 0;
    width: 100%;
    height: 100px;
    overflow: hidden;
}

.hero-waves svg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Efeito de máquina de escrever para texto multi-linha */
@keyframes typing {
    from { 
        opacity: 0;
        transform: translateY(20px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-image img {
    animation: sway 2.5s ease-in-out infinite;
}

@keyframes sway {
    0%, 100% {
        transform: rotate(-2deg);
    }
    50% {
        transform: rotate(1deg);
    }
}

/* Efeito de digitação caractere por caractere */
.hero-content h1.animate {
    overflow: hidden;
    position: relative;
}

.hero-content h1.animate span {
    display: inline-block;
    opacity: 0;
    animation: typing 0.3s forwards;
}

/* Efeito cursor piscando no final */
.hero-content h1.animate::after {
    content: "|";
    color: var(--primary);
    animation: blink-caret 0.75s step-end infinite;
    opacity: 0;
}

.hero-content h1.animate.done::after {
    opacity: 1;
}

@keyframes blink-caret {
    from, to { opacity: 0 }
    50% { opacity: 1 }
}

/* Animação do subtítulo e outros elementos (mantido igual) */
.hero-subtitle.animate {
    animation: fadeInUp 1s ease-out both;
}

.hero-buttons.animate {
    animation: fadeInUp 1s ease-out 0.5s both;
}

.hero-image.animate img {
    animation: fadeInRight 1s ease-out both;
}

/* Ajuste para mobile */
@media (max-width: 768px) {
    .hero-waves {
        height: 50px;
        position: relative  ;
    }
}

/* Seções Genéricas */
.section {
    padding: 50px 0;
}

.section-header {
    margin-bottom: 0px;
    text-align: left;
}

.section-header.center {
    text-align: center;
}

.section-subtitle {
    display: inline-block;
    color: var(--secondary);
    font-weight: 500;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.section-title {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.aboutus{
    margin-top: 150px;
}

.section-description {
    max-width: 700px;
    margin: 0 auto;
    color: var(--gray);
    font-size: 1.1rem;
}

.divider {
    width: 80px;
    height: 4px;
    background: var(--secondary);
    margin: 1.5rem 0;
}

.divider.center {
    margin-left: auto;
    margin-right: auto;
}

.bg-light {
    background-color: var(--light);
}

/* Seção Sobre */
.sobre-content {
    display: flex;
    gap: 50px;
    align-items: center;
}

.sobre-text {
    flex: 1;
}

.sobre-text p.highlight {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 2rem;
    color: var(--primary-dark);
}

/* Seção Sobre - Imagens Sobrepostas */
.sobre-image-grid {
    flex: 1;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 30px;
    order: 2;
    /* Padrão: imagem depois do texto (desktop) */
}

.image-stack {
    position: relative;
    width: 100%;
    min-height: 400px;
    /* Reduzi a altura padrão */
}

.stacked-image {
    position: absolute;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.5s ease;
}

.stacked-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.img-primary {
    width: 55%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
}

.img-secondary {
    width: 50%;
    height: 85%;
    bottom: -100px;
    right: 0;
    z-index: 99;
    transform: rotate(-5deg);
}

.sobre-experiencia {
    position: relative;
    background: var(--secondary);
    color: var(--white);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
    max-width: 200px;
    margin-left: auto;
    margin-right: 20px;
    z-index: 3;
}

/* Efeitos de Hover */
.stacked-image:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.img-primary:hover {
    z-index: 4;
}

/* Responsivo */
@media (max-width: 992px) {
    .sobre-content {
        flex-direction: column;
    }

    .sobre-image-grid {
        order: -1;
        margin-bottom: 40px;
        height: 350px;
        width: 100%;
        min-height: 350px;
        margin-bottom: 30px;
    }

    .img-primary {
        width: 65%;
        left: 10%;
    }

    .img-secondary {
        width: 55%;
        right: 10%;
    }



    .image-stack {
        min-height: 300px;
    }

    .stacked-image {
        position: relative;
        width: 100% !important;
        height: auto !important;
        transform: none !important;
        margin-bottom: 20px;
    }

    .stacked-image img {
        position: static;
        height: auto;
    }

    .img-primary {
        position: relative;
        width: 100% !important;
        height: auto !important;
        margin-bottom: -30px;
        /* Cria o efeito de sobreposição */
    }

    .img-secondary {
        position: relative;
        width: 80% !important;
        margin-left: auto;
        margin-right: 0;
        transform: rotate(-3deg);
    }

    .sobre-experiencia {
        margin: 20px auto 0;
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .image-stack {
        position: relative;
        min-height: 250px;
    }

    .img-primary {
        position: absolute !important;
        width: 50% !important;
        height: 80% !important;
        left: 5% !important;
        top: 0 !important;
    }

    .img-secondary {
        position: absolute !important;
        width: 50% !important;
        height: 80% !important;
        right: 5% !important;
        bottom: -50px !important;
        transform: rotate(-5deg) !important;
    }

    .aboutus{
        margin: 0;
    }

    .sobre-image-grid{
        min-height: 200px !important;
        margin-bottom: 0;
    }


}

@media (min-width: 768px) {
    .image-stack {
        position: relative;
        min-height: 550px;
    }

    .img-primary {
        position: absolute !important;
        width: 50% !important;
        height: 80% !important;
        left: 5% !important;
        top: 0 !important;
    }

    .img-secondary {
        position: absolute !important;
        width: 50% !important;
        height: 70% !important;
        right: 5% !important;
        bottom: -50px !important;
        transform: rotate(-5deg) !important;
    }

    .aboutus{
        margin: 0;
    }

    .sobre-image-grid{
        min-height: 200px !important;
        margin-bottom: 0;
    }

}


.sobre-dados {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

.dado-item {
    text-align: center;
    flex: 1;
}

.dado-numero {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    display: block;
    line-height: 1;
}

.dado-label {
    font-size: 0.9rem;
    color: var(--gray);
}

/* Diferenciais - Grid Desktop */
.diferenciais-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.diferencial-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.diferencial-icon {
    width: 80px;
    height: 80px;
    background: rgba(0, 95, 115, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--primary);
    font-size: 2rem;
    transition: var(--transition);
}

.diferencial-card:hover .diferencial-icon {
    background: var(--primary);
    color: var(--white);
}

.diferencial-card h3 {
    margin-bottom: 15px;
    color: var(--primary-dark);
}

/* Diferenciais - Carrossel Mobile */
.diferenciais-carrossel {
    display: none;
    margin-top: 30px;
    position: relative;
    width: 100%;
    touch-action: pan-y; /* Permite scroll vertical mas bloqueia horizontal */
}

.carrossel-container {
    overflow: hidden;
    width: 100%;
    position: relative;
    padding: 0 15px 0 0;
}

.carrossel-track {
    display: flex;
    transition: transform 0.3s ease;
    will-change: transform;
    padding: 0 15px 0 0;
}

.carrossel-slide {
    flex: 0 0 85%; /* Cards ocupam 85% da tela (melhor visualização) */
    min-width: 85%;
    padding: 0 10px;
    box-sizing: border-box;
}
.diferencial-card {
    background: var(--white);
    padding: 30px 20px;
    border-radius: 10px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow);
    height: 100%;
}

/* Ajuste para o card ocupar todo o slide */
.carrossel-slide .diferencial-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.carrossel-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    gap: 15px;
}

.carrossel-dots {
    display: flex;
    gap: 10px;
}

.carrossel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gray-light);
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid gray;
}

.carrossel-dot.active {
    background: var(--primary);
    transform: scale(1.3);
}

.carrossel-prev,
.carrossel-next {
    background: var(--primary);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 16px;
}

.carrossel-prev:hover,
.carrossel-next:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

/* Responsividade */
@media (max-width: 768px) {
    .diferenciais-grid {
        display: none;
    }
    
    .diferenciais-carrossel {
        display: block;
    }
    
    .diferencial-card {
        padding: 30px 20px;
    }
}

/* Ajuste para telas muito pequenas */
@media (max-width: 400px) {
    .carrossel-slide {
        flex: 0 0 90%;
        min-width: 90%;
    }
}
/* Seção Serviços */
.servicos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
    padding: 0 0 10px 0;
}

.servico-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    transition: var(--transition);
    box-shadow: var(--shadow);
    position: relative;
}

.servico-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.servico-icon {
    width: 70px;
    height: 70px;
    background: rgba(0, 95, 115, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: var(--primary);
    font-size: 1.8rem;
    transition: var(--transition);
}

.servico-card:hover .servico-icon {
    background: var(--primary);
    color: var(--white);
}

.servico-card h3 {
    margin-bottom: 15px;
    color: var(--primary-dark);
}

.servico-lista {
    margin: 20px 0;
    padding-left: 20px;
}

.servico-lista li {
    position: relative;
    margin-bottom: 10px;
    color: var(--gray);
}

.servico-lista li::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 10px;
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
}

.servico-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--primary);
    font-weight: 500;
    margin-top: 20px;
    transition: var(--transition);
}

.servico-link:hover {
    color: var(--primary-dark);
    gap: 10px;
}

.card-featured {
    border: 2px solid var(--primary);
    transform: translateY(-10px);
}

.featured-badge {
    position: absolute;
    top: -15px;
    right: 30px;
    background: var(--secondary);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Seção Animais - Grid Assimétrico */
.animais-grid-asimetrico {
    display: grid;
    grid-template-columns: repeat(3, 2fr);
    grid-auto-rows: minmax(250px, auto);
    gap: 25px;
    margin-top: 50px;
}

.animal-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
}

.animal-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.animal-content {
    padding: 30px;
    flex: 1;
}

.animal-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.animal-icon img,
.animal-icon i {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.animal-icon i {
    font-size: 2.5rem;
    color: var(--primary);
}

.animal-card h3 {
    color: var(--primary-dark);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.animal-lista {
    margin: 20px 0;
    padding-left: 20px;
}

.animal-lista li {
    position: relative;
    margin-bottom: 10px;
    padding-left: 15px;
    font-size: 0.95rem;
}

.animal-lista li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background: var(--secondary);
    border-radius: 50%;
}

.animal-cta {
    padding: 0 30px 30px;
    margin-top: auto;
}

.btn-animal {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary);
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 500;
    transition: var(--transition);
}

.btn-animal:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

/* Layout Específico dos Cards */
.card-gatos {
    grid-column: span 1;
    grid-row: span 1;
    background: linear-gradient(135deg, rgba(0, 79, 90, 0.05) 0%, rgba(255, 255, 255, 1) 100%);
    border: 1px solid rgba(0, 79, 90, 0.1);
}

.card-caes {
    grid-column: span 1;
    grid-row: span 1;
    background: linear-gradient(135deg, rgba(255, 111, 97, 0.05) 0%, rgba(255, 255, 255, 1) 100%);
    border: 1px solid rgba(255, 111, 97, 0.1);
}

.card-silvestres {
    grid-column: span 1;
    grid-row: span 2;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.05) 0%, rgba(255, 255, 255, 1) 100%);
    border: 1px solid rgba(76, 175, 80, 0.1);
}

.card-pequenos {
    grid-column: span 1;
    grid-row: span 1;
    background: linear-gradient(135deg, rgba(156, 39, 176, 0.05) 0%, rgba(255, 255, 255, 1) 100%);
    border: 1px solid rgba(156, 39, 176, 0.1);
}

.card-exoticos {
    grid-column: span 1;
    grid-row: span 1;
    background: linear-gradient(135deg, rgba(255, 152, 0, 0.05) 0%, rgba(255, 255, 255, 1) 100%);
    border: 1px solid rgba(255, 152, 0, 0.1);
}



/* Responsividade */
@media (max-width: 992px) {
    .animais-grid-asimetrico {
        grid-template-columns: 1fr 1fr;
    }

    .card-gatos {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .animais-grid-asimetrico {
        grid-template-columns: 1fr;
    }

    .card-gatos,
    .card-caes,
    .card-silvestres {
        grid-column: span 1;
        grid-row: span 1;
    }
}

/* Versão Mobile - Carrossel */
.animais-carrossel-mobile {
    display: none;
    /* Escondido por padrão */
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 15px;
    padding: 20px 0;
    -webkit-overflow-scrolling: touch;
}

.animal-card-mobile {
    scroll-snap-align: start;
    flex: 0 0 135px;
    text-align: center;
    padding: 20px 15px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.animal-card-mobile img,
.animal-card-mobile i {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 15px;
}

.animal-card-mobile i {
    font-size: 2rem;
    color: var(--primary);
}

.animal-card-mobile h3 {
    font-size: 1rem;
    color: var(--primary-dark);
    margin: 0;
}

/* Esconde o grid completo em mobile */
@media (max-width: 768px) {
    .animais-grid-asimetrico {
        display: none;
    }

    .animais-carrossel-mobile {
        display: flex;
    }

    /* Ajuste para evitar rolagem horizontal indesejada */
    .container {
        overflow-x: hidden;
    }
}

/* Mantém o desktop como estava */
@media (min-width: 769px) {
    .animais-carrossel-mobile {
        display: none !important;
    }

    .animais-grid-asimetrico {
        display: grid;
    }
}

/* Seção Exames */
.exames-tabs {
    margin-top: 50px;
}

.tab-buttons {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 10px;
}

.tab-button {
    padding: 12px 25px;
    background: transparent;
    border: none;
    border-radius: 50px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    color: var(--gray);
    border: 2px solid #EEE;
}

.tab-button:hover {
    color: var(--primary);
    border-color: var(--primary);
}

.tab-button.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.exames-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.exame-item {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.exame-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.exame-item h3 {
    color: var(--primary);
    margin-bottom: 15px;
}

.exame-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #EEE;
}

.exame-info span {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--gray);
    font-size: 0.9rem;
}

.exame-link {
    color: var(--primary);
    font-weight: 500;
    transition: var(--transition);
}

.exame-link:hover {
    color: var(--primary-dark);
}

/* Seção Equipe */
.equipe-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
    padding: 0 0 10px 0;
}

.membro-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.membro-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.membro-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.membro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.membro-card:hover .membro-image img {
    transform: scale(1.05);
}

.membro-social {
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 15px;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
}

.membro-card:hover .membro-social {
    opacity: 1;
    transform: translateY(0);
}

.membro-social a {
    width: 40px;
    height: 40px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: var(--transition);
}

.membro-social a:hover {
    background: var(--primary);
    color: var(--white);
}

.membro-info {
    padding: 15px;
    text-align: center;
}

.membro-info h3 {
    color: var(--primary-dark);
}

.membro-especialidade {
    display: block;
    color: var(--secondary);
    font-weight: 500;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.membro-info p {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.membro-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    transition: var(--transition);
}

.membro-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

.equipe-cta {
    text-align: center;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #EEE;
}

/* Seção Depoimentos */
.depoimentos-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.depoimento-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.depoimento-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.depoimento-rating {
    color: #FFC107;
    margin-bottom: 20px;
}

.depoimento-texto {
    font-style: italic;
    margin-bottom: 25px;
    color: var(--gray);
    position: relative;
}

.depoimento-texto::before {
    content: '"';
    font-size: 4rem;
    color: rgba(0, 95, 115, 0.1);
    position: absolute;
    top: -20px;
    left: -10px;
    line-height: 1;
    z-index: 0;
}

.depoimento-autor {
    display: flex;
    align-items: center;
    gap: 15px;
}

.depoimento-autor img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.depoimento-autor h4 {
    color: var(--primary-dark);
    margin-bottom: 5px;
}

.depoimento-autor span {
    font-size: 0.8rem;
    color: var(--gray);
}

.depoimentos-cta {
    text-align: center;
    margin-top: 40px;
    padding: 10px;
}

/* Seção FAQ */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    background: var(--white);
    border: none;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 500;
    font-size: 1.1rem;
    color: var(--primary-dark);
    transition: var(--transition);
}

.faq-question:hover {
    background: #f5f5f5;
}

.faq-question i {
    transition: var(--transition);
}

.faq-question.active {
    background: var(--primary);
    color: var(--white);
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    background: var(--white);
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer.active {
    max-height: 500px;
}

.faq-answer p {
    padding: 10px 20px;
    color: var(--gray);
}

.faq-answer ul {
    margin: 15px 0;
    padding-left: 40px;
}

.faq-answer li {
    margin-bottom: 8px;
    position: relative;
}

.faq-answer li::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 10px;
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
}

.faq-cta {
    text-align: center;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #EEE;
}

/* Seção CTA */
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Seção Contato */
.contato-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 50px;
}

.contato-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.info-item {
    display: flex;
    gap: 20px;
}

.info-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 95, 115, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.info-item h3 {
    color: var(--primary-dark);
    margin-bottom: 5px;
}

.contato-mapa {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    height: 100%;
}

.contato-mapa iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border: none;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    background: #128C7E;
    transform: scale(1.1);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Footer */
footer {
    background: var(--primary-dark);
    color: var(--white);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col img{
    width: 200px;
}

.footer-col h3 {
    color: var(--white);
    margin-bottom: 25px;
    font-size: 1.2rem;
}

.footer-col p {
    opacity: 0.8;
    margin-top: 10px;
    margin-bottom: 20px;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    opacity: 0.8;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    opacity: 1;
    color: var(--white);
    padding-left: 5px;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.footer-bottom .romesd a:hover {
    color: white;
}

.footer-social a:hover {
    background: var(--white);
    color: var(--primary-dark);
}

.newsletter-form {
    display: flex;
    margin-top: 20px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 50px 0 0 50px;
    font-family: var(--font-primary);
}

.newsletter-form button {
    width: 50px;
    background: var(--secondary);
    color: var(--white);
    border: none;
    border-radius: 0 50px 50px 0;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background: var(--secondary-dark);
}

.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    opacity: 0.7;
    font-size: 0.9rem;
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    opacity: 0.7;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links a:hover {
    opacity: 1;
}

/* Responsividade */
@media (max-width: 1200px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .section {
        padding: 80px 0;
    }
}

@media (max-width: 992px) {
    .sobre-content {
        flex-direction: column;
    }

    .sobre-image {
        order: -1;
        margin-bottom: 40px;
    }

    .contato-grid {
        grid-template-columns: 1fr;
    }

    .contato-mapa {
        min-height: 400px;
    }
}

@media (max-width: 768px) {
    header .container {
        height: 70px;
    }

    .logo img {
        max-height: 40px;
        width: 100%;
    }

    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background: var(--white);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        padding: 80px 30px 30px;
        transition: var(--transition);
        z-index: 1000;
    }

    nav.active {
        right: 0;
    }

    nav ul {
        flex-direction: column;
        gap: 20px;
    }

    .nav-link {
        font-size: 1.1rem;
    }

    .header-cta {
        display: none;
    }

    .nav-toggle {
        display: block;
    }

    #hero {
        padding: 120px 0 80px;
    }

    .hero-content {
        max-width: 100%;
        text-align: center;
    }

    .hero-image {
        display: none;
    }

    .hero-buttons {
        flex-direction: column;
        justify-content: center;
        gap: 15px;
    }

    .section-title {
        font-size: 2rem;
    }

    .sobre-dados {
        flex-direction: column;
        gap: 20px;
    }

    .servico-card.card-featured {
        transform: none;
    }

    .tab-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 1.8rem;
    }


    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        bottom: 20px;
        right: 20px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }
    .membro-image{
        height: 400px;
    }
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

/* consent mode 
#consent-overlay {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    padding: 25px;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    font-family: 'Arial', sans-serif;
    border-top: 3px solid #4CAF50;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  #consent-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
  }
  
  .consent-title {
    color: #2c3e50;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
  }
  
  .consent-text {
    color: #7f8c8d;
    font-size: 0.9rem;
    margin-bottom: 20px;
    line-height: 1.5;
  }
  
  .consent-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
  }
  
  .consent-btn {
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
  }
  
  .btn-accept {
    background-color: #4CAF50;
    color: white;
  }
  
  .btn-accept:hover {
    background-color: #3e8e41;
    transform: translateY(-2px);
  }
  
  .btn-reject {
    background-color: transparent;
    color: #7f8c8d;
    border: 1px solid #bdc3c7;
  }
  
  .btn-reject:hover {
    background-color: #f5f5f5;
  }
  
  .cookie-icon {
    width: 30px;
    height: 30px;
    margin-bottom: 10px;
  }
  
  .benefits-list {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 15px 0;
    flex-wrap: wrap;
  }
  
  .benefit-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: #2c3e50;
  }
  
  .benefit-icon {
    color: #4CAF50;
    font-size: 1rem;
  }*/