/* -------------------------------------------------------------
   DESIGN SYSTEM & CUSTOM PROPERTIES (VETCLIN SÃO JOÃO)
------------------------------------------------------------- */
:root {
    /* Cores */
    --color-white: #ffffff;
    --color-light-bg: #fdfdfd;
    --color-gray-light: #f7f9f7;
    --color-gray-alt: #f0f3f1;
    --color-border: #e9ece9;
    
    /* Cores da Marca */
    --color-brand-red: #8c1c1c;      /* Vermelho escuro profissional */
    --color-brand-red-hover: #6d1414;
    --color-brand-red-light: #fdf2f2;
    --color-lime-green: #8de300;     /* Verde-limão de destaque */
    --color-lime-green-hover: #7bc500;
    --color-lime-green-light: #f7fdf0;
    
    /* Textos */
    --color-text-dark: #2a2f35;      /* Grafite escuro */
    --color-text-muted: #5e6670;     /* Grafite suave */
    
    /* Tipografia */
    --font-headings: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Sombras */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.08);
    --shadow-glass: 0 8px 32px 0 rgba(0, 0, 0, 0.04);
    
    /* Transições */
    --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-fast: all 0.15s ease;
    
    /* Raio da Borda (Evitando excessos, cantos elegantes e modernos) */
    --border-radius-sm: 6px;
    --border-radius-md: 10px;
    --border-radius-lg: 16px;
    
    /* Largura Máxima */
    --max-width: 1200px;
}

/* -------------------------------------------------------------
   RESET & ESTILOS GLOBAIS
------------------------------------------------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-light-bg);
    color: var(--color-text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-headings);
    color: var(--color-text-dark);
    font-weight: 700;
    line-height: 1.25;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

input, button, select, textarea {
    font: inherit;
}

/* Scrollbar Customizado */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--color-gray-light);
}
::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* -------------------------------------------------------------
   UTILITÁRIOS E LAYOUT
------------------------------------------------------------- */
.container-1200 {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

.section-badge {
    display: inline-block;
    padding: 6px 14px;
    background-color: var(--color-lime-green-light);
    border: 1px solid rgba(141, 227, 0, 0.3);
    color: #4a7a00;
    font-family: var(--font-headings);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 30px;
    margin-bottom: 16px;
}

.section-badge.badge-alt {
    background-color: var(--color-brand-red-light);
    border: 1px solid rgba(140, 28, 28, 0.15);
    color: var(--color-brand-red);
}

.section-header-center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px auto;
}

.section-header-center h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
    color: var(--color-text-dark);
}

.section-subtitle {
    color: var(--color-text-muted);
    font-size: 1.125rem;
}

.accent-text {
    color: var(--color-brand-red);
}

/* Espaçamento Consistente entre Seções */
section {
    padding: 100px 0;
}

@media (max-width: 768px) {
    section {
        padding: 70px 0;
    }
}

/* -------------------------------------------------------------
   BOTÕES (ELEMENTOS DE INTERAÇÃO)
------------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-family: var(--font-headings);
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
}

.btn-primary {
    background-color: var(--color-brand-red);
    color: var(--color-white);
    box-shadow: 0 4px 14px rgba(140, 28, 28, 0.2);
}

.btn-primary:hover {
    background-color: var(--color-brand-red-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(140, 28, 28, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-text-dark);
    border: 2px solid var(--color-border);
}

.btn-secondary:hover {
    border-color: var(--color-text-dark);
    background-color: rgba(0, 0, 0, 0.04);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background-color: #25D366;
    color: var(--color-white);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.25);
}

.btn-whatsapp:hover {
    background-color: #20ba5a;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp-large {
    background-color: #25D366;
    color: var(--color-white);
    padding: 16px 36px;
    font-size: 1.1rem;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp-large:hover {
    background-color: #20ba5a;
    transform: scale(1.03);
    box-shadow: 0 10px 28px rgba(37, 211, 102, 0.4);
}

.btn-icon {
    width: 18px;
    height: 18px;
}

/* -------------------------------------------------------------
   CABEÇALHO (HEADER)
------------------------------------------------------------- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: var(--color-white);
    transition: var(--transition-smooth);
    border-bottom: 1px solid var(--color-border);
}

/* Efeito glassmorphic ao rolar a página */
.site-header.scrolled {
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: var(--shadow-glass);
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

.header-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: var(--transition-smooth);
}

/* Logo & Filtro de Cor */
.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-logo {
    height: 64px;
    width: auto;
    object-fit: contain;
    /* Filtro para transformar o logo branco da VetClin em Vermelho Escuro (#8C1C1C) */
    filter: brightness(0) saturate(100%) invert(15%) sepia(83%) saturate(3225%) hue-rotate(349deg) brightness(81%) contrast(92%);
    transition: var(--transition-smooth);
}

.brand-name {
    font-family: var(--font-headings);
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--color-text-dark);
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

/* Menu de Navegação */
.nav-list {
    display: flex;
    gap: 32px;
}

.nav-item {
    font-family: var(--font-headings);
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--color-text-dark);
    position: relative;
    padding: 8px 0;
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-lime-green);
    transition: var(--transition-fast);
}

.nav-item:hover {
    color: var(--color-brand-red);
}

.nav-item:hover::after {
    width: 100%;
}

.nav-item.active {
    color: var(--color-brand-red);
}

.nav-item.active::after {
    width: 100%;
    background-color: var(--color-brand-red);
}

.header-cta .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
}

/* Hamburguer Menu (Mobile) */
.mobile-nav-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1100;
}

.hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--color-text-dark);
    position: relative;
    transition: var(--transition-fast);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: var(--color-text-dark);
    transition: var(--transition-fast);
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    top: 8px;
}

/* Estado ativo do hamburger */
.mobile-nav-toggle[aria-expanded="true"] .hamburger {
    background-color: transparent;
}

.mobile-nav-toggle[aria-expanded="true"] .hamburger::before {
    transform: rotate(45deg);
    top: 0;
}

.mobile-nav-toggle[aria-expanded="true"] .hamburger::after {
    transform: rotate(-45deg);
    top: 0;
}

/* Responsividade Header */
@media (max-width: 992px) {
    .brand-logo {
        height: 44px; /* Diminui o logo no mobile */
    }
    
    .mobile-nav-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%; /* Preenche a tela toda na largura */
        height: 100vh;
        background-color: var(--color-white);
        box-shadow: none; /* Sem sombra necessária para tela cheia */
        padding: 120px 40px 40px 40px;
        transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
        display: flex;
        flex-direction: column;
        align-items: center; /* Centraliza verticalmente e horizontalmente */
        justify-content: center;
        z-index: 1000;
    }
    
    .nav-menu.active {
        right: 0;
        transform: translateX(0);
    }
    
    .nav-list {
        flex-direction: column;
        gap: 32px;
        text-align: center;
    }
    
    .nav-item {
        font-size: 1.5rem; /* Aumenta o tamanho da fonte para se adequar ao menu tela cheia */
        display: block;
    }
    
    .header-cta {
        display: none; /* Oculta o botão no header para mobile, o WhatsApp flutuante dará conta */
    }
}

/* -------------------------------------------------------------
   HERO PRINCIPAL (HERO SECTION)
------------------------------------------------------------- */
.hero-section {
    position: relative;
    background-image: url('assets/images/hero_bg.png');
    background-size: auto 125%; /* Zoom de 125% para eliminar a borda branca da esquerda */
    background-position: right center;
    background-repeat: no-repeat;
    background-color: #ffffff;
    padding-top: 180px; /* Compensa o header fixo */
    padding-bottom: 120px;
    display: flex;
    align-items: center;
    overflow: hidden;
    min-height: 700px;
}

.hero-mobile-image-box {
    display: none; /* Oculta por padrão no desktop */
}

/* Detalhe de fundo suave */
.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.85) 35%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr;
    position: relative;
    z-index: 2;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 580px;
    z-index: 3;
}

/* Selo Discreto Google */
.google-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--color-white);
    padding: 8px 16px;
    border-radius: 50px;
    box-shadow: var(--shadow-sm);
    font-size: 0.85rem;
    margin-bottom: 24px;
    border: 1px solid var(--color-border);
}

.star-icon {
    width: 16px;
    height: 16px;
    color: #FFB300; /* Estrela dourada do Google */
}

.hero-content h1 {
    font-size: 2.8rem;
    color: var(--color-text-dark);
    margin-bottom: 20px;
    letter-spacing: -0.03em;
    line-height: 1.2;
}

.highlight-red {
    color: var(--color-brand-red);
    display: inline-flex;
    align-items: center;
}

.heart-icon {
    width: 1.05em;
    height: 1.05em;
    stroke: var(--color-brand-red);
    stroke-width: 2.2;
    fill: none;
    margin-left: 6px;
    display: inline-block;
    vertical-align: middle;
    transform: translateY(-3px);
    flex-shrink: 0;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--color-text-muted);
    margin-bottom: 36px;
    max-width: 540px;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
    width: 100%;
}

/* Indicadores rápidos no Hero */
.hero-features-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hero-features-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-text-dark);
}

.check-icon {
    width: 18px;
    height: 18px;
    color: var(--color-brand-red); /* Mantendo a identidade médica */
    background-color: var(--color-brand-red-light);
    border-radius: 50%;
    padding: 3px;
}

/* Responsividade Hero */
@media (max-width: 992px) {
    .hero-section {
        padding-top: 140px;
        padding-bottom: 80px;
        min-height: 550px;
    }
    
    .hero-bg-overlay {
        background: rgba(255, 255, 255, 0.88);
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-content h1 {
        font-size: 2.6rem;
    }
    
    .hero-actions {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .hero-section {
        background-image: url('assets/images/hero_bg_mobile.png');
        background-size: cover;
        background-position: center center;
        padding-top: 120px;
        padding-bottom: 60px;
        min-height: 100svh;
    }
    
    .hero-bg-overlay {
        background: transparent;
    }

    /* Botão secundário no mobile — verde sálvia da imagem do hero */
    .btn-secondary {
        background-color: #7a9e7e;
        color: var(--color-white);
        border: 2px solid #7a9e7e;
    }

    .btn-secondary:hover {
        background-color: #628065;
        border-color: #628065;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding-top: 110px;
        padding-bottom: 50px;
    }
    
    .hero-content h1 {
        font-size: 2.1rem;
    }
}

/* -------------------------------------------------------------
   FAIXA DE INFORMAÇÕES RÁPIDAS
------------------------------------------------------------- */
.quick-info-bar {
    background-color: var(--color-white);
    padding: 30px 0;
    border-bottom: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
    position: relative;
    z-index: 10;
    margin-top: -40px; /* Sobrepõe levemente o Hero */
    border-radius: var(--border-radius-md);
    max-width: calc(var(--max-width) - 48px);
    margin-left: auto;
    margin-right: auto;
}

.quick-info-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.info-card {
    display: flex;
    align-items: center;
    gap: 16px;
}

.info-icon-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: var(--border-radius-sm);
    background-color: var(--color-lime-green-light);
    color: var(--color-brand-red); /* Destaque */
    border: 1px solid rgba(141, 227, 0, 0.3);
    flex-shrink: 0;
}

.info-icon-box svg {
    width: 22px;
    height: 22px;
}

.info-details {
    display: flex;
    flex-direction: column;
}

.info-label {
    font-family: var(--font-headings);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--color-text-muted);
    letter-spacing: 0.05em;
}

.info-value {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-text-dark);
}

.info-link:hover {
    color: var(--color-brand-red);
}

/* Responsividade Faixa */
@media (max-width: 992px) {
    .quick-info-bar {
        margin-top: 0;
        max-width: 100%;
        border-radius: 0;
        padding: 40px 24px;
    }
    
    .quick-info-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
}

@media (max-width: 576px) {
    .quick-info-container {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

/* -------------------------------------------------------------
   SOBRE A CLÍNICA
------------------------------------------------------------- */
.about-section {
    background-color: var(--color-white);
    padding: 80px 0;
}

.about-container {
    display: grid;
    grid-template-columns: 4fr 6fr;
    gap: 24px;
    align-items: stretch;
}

.about-image-card {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-border);
    height: 100%;
}

.about-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left center;
    display: block;
}

.about-text-card {
    background-color: #fafbfa; /* Fundo suave levemente verde-limão */
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 60px 40px;
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Watermark de patinha no canto inferior direito */
.about-watermark {
    position: absolute;
    bottom: -15px;
    right: -15px;
    width: 160px;
    height: 160px;
    color: rgba(74, 122, 0, 0.035);
    pointer-events: none;
    z-index: 1;
}

.about-card-inner {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 40px;
    width: 100%;
    position: relative;
    z-index: 2;
}

.about-left-side {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-badge-row {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #4a7a00;
    font-family: var(--font-headings);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.paw-icon {
    width: 18px;
    height: 18px;
    fill: var(--color-lime-green);
}

.about-left-side h3 {
    font-size: 2.1rem;
    color: var(--color-text-dark);
    margin-bottom: 20px;
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

.about-left-side p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

.about-right-side {
    display: flex;
    flex-direction: column;
    gap: 24px;
    border-left: 1px solid rgba(74, 122, 0, 0.1);
    padding-left: 40px;
    justify-content: center;
}

.check-list-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.check-circle-icon {
    width: 22px;
    height: 22px;
    color: #4a7a00;
    flex-shrink: 0;
    margin-top: 2px;
}

.check-list-item div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.check-list-item strong {
    font-size: 0.95rem;
    color: var(--color-text-dark);
    font-weight: 700;
    font-family: var(--font-headings);
}

.check-list-item span {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    line-height: 1.4;
}

@media (max-width: 1200px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-image-card {
        height: 380px;
    }
}

@media (max-width: 992px) {
    .about-card-inner {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-right-side {
        border-left: none;
        padding-left: 0;
        border-top: 1px solid rgba(74, 122, 0, 0.1);
        padding-top: 24px;
    }
}

@media (max-width: 480px) {
    .about-text-card {
        padding: 30px 24px;
    }
    
    .about-left-side h3 {
        font-size: 1.75rem;
    }
    
    .about-image-card {
        height: 280px;
    }
}

/* -------------------------------------------------------------
   SERVIÇOS (SERVICES SECTION)
------------------------------------------------------------- */
.services-section {
    background-color: var(--color-gray-light);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.services-header-compact {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 50px auto;
}

.services-badge-row {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #4a7a00;
    font-family: var(--font-headings);
    font-weight: 700;
    font-size: 1.25rem;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.services-subtitle-compact {
    color: var(--color-text-muted);
    font-size: 1.15rem;
    font-weight: 500;
}

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

.service-card-compact {
    background-color: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-md);
    padding: 32px 20px;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: var(--shadow-sm);
    justify-content: flex-start;
}

.service-card-compact:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(141, 227, 0, 0.4);
}

.service-icon-compact {
    color: #4a7a00;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    flex-shrink: 0;
}

.service-svg-icon {
    width: 48px;
    height: 48px;
}

.service-card-compact h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--color-text-dark);
    text-align: center;
    font-family: var(--font-headings);
}

.service-card-compact p {
    color: var(--color-text-muted);
    font-size: 0.925rem;
    text-align: center;
    line-height: 1.6;
    margin-bottom: 0;
}

@media (max-width: 1200px) {
    .services-grid-compact {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .services-grid-compact {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .services-grid-compact {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

/* -------------------------------------------------------------
   EXAMES E DIAGNÓSTICOS (DIAGNOSTICS SECTION)
------------------------------------------------------------- */
.diagnostics-section {
    background-color: #eff3ef; /* Tom verde-sálvia suave que combina perfeitamente com a marca */
    padding: 80px 0;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.diagnostics-container {
    width: 100%;
}

.diagnostics-row-top {
    display: grid;
    grid-template-columns: 6.5fr 3.5fr;
    gap: 24px;
    align-items: stretch;
}

.diagnostics-text-card {
    background-color: var(--color-white); /* Fundo branco para destacar no fundo sálvia */
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 50px 40px;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.diagnostics-badge-row {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #4a7a00;
    font-family: var(--font-headings);
    font-weight: 700;
    font-size: 1.25rem;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.diagnostics-subtitle-compact {
    color: var(--color-text-muted);
    font-size: 1.15rem;
    font-weight: 500;
    margin-bottom: 40px;
}

.diagnostics-grid-compact {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    width: 100%;
}

.diag-card-compact {
    background-color: #fafbfa; /* Fundo suave para contrastar com o card branco */
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-md);
    padding: 24px 16px;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: none; /* Mais minimalista */
    justify-content: flex-start;
}

.diag-card-compact:hover {
    transform: translateY(-5px);
    background-color: var(--color-white); /* Fica branco no hover com destaque */
    box-shadow: var(--shadow-md);
    border-color: rgba(74, 122, 0, 0.25);
}

.diag-icon-compact {
    color: #4a7a00;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    flex-shrink: 0;
}

.diag-svg-icon {
    width: 48px;
    height: 48px;
}

.diag-card-compact h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--color-text-dark);
    text-align: center;
    font-family: var(--font-headings);
}

.diag-card-compact p {
    color: var(--color-text-muted);
    font-size: 0.775rem;
    text-align: center;
    line-height: 1.5;
    margin-bottom: 0;
}

.diagnostics-image-card {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-border);
    height: 100%;
}

.diagnostics-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* -------------------------------------------------------------
   RESPONSÁVEL TÉCNICO SECTION
------------------------------------------------------------- */
.tech-director-section {
    background-color: var(--color-white);
    padding: 80px 0;
    border-bottom: 1px solid var(--color-border); /* Linha divisória sutil para separar do Pet Shop */
}

.tech-director-container {
    width: 100%;
}

.tech-director-row {
    width: 100%;
}

.tech-card-horizontal {
    background-color: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    display: grid;
    grid-template-columns: 3.5fr 6.5fr;
    overflow: hidden;
    align-items: stretch;
}

.tech-image-box {
    position: relative;
    height: 100%;
    overflow: hidden;
}

.tech-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    object-position: center 15%;
}

.tech-content-box {
    padding: 50px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.tech-badge-text {
    color: #4a7a00;
    font-family: var(--font-headings);
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    margin-bottom: 12px;
    letter-spacing: 0.02em;
}

.tech-content-box h2 {
    font-size: 2.2rem;
    color: var(--color-text-dark);
    font-weight: 800;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.tech-sublabel {
    font-size: 1.05rem;
    color: var(--color-text-muted);
    font-weight: 600;
    margin-bottom: 20px;
}

.tech-description {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 28px;
    max-width: 620px;
}

.tech-action .btn {
    padding: 14px 28px;
}

/* Responsividade Diagnósticos & RT */
@media (max-width: 1200px) {
    .diagnostics-row-top {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .diagnostics-image-card {
        height: 380px;
    }
}

@media (max-width: 992px) {
    .diagnostics-grid-compact {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .tech-card-horizontal {
        grid-template-columns: 1fr;
    }
    
    .tech-image-box {
        height: 320px;
    }
    
    .tech-content-box {
        padding: 40px;
    }
}

@media (max-width: 576px) {
    .diagnostics-grid-compact {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .diagnostics-text-card {
        padding: 30px 24px;
    }
    
    .tech-content-box {
        padding: 30px 24px;
    }
    
    .tech-content-box h2 {
        font-size: 1.75rem;
    }
    
    .tech-image-box {
        height: 260px;
    }
}

/* -------------------------------------------------------------
   SEÇÃO LOJA E FARMÁCIA (SHOP SECTION)
------------------------------------------------------------- */
.shop-section {
    background-color: #f4f6f4; /* Fundo cinza-esverdeado suave */
    padding: 80px 0;
    border-bottom: 1px solid var(--color-border); /* Linha divisória sutil para separar das avaliações */
}

.shop-container {
    width: 100%;
}

.shop-card-horizontal {
    background-color: var(--color-white); /* Fundo branco sólido para destacar no fundo cinza */
    border: 1px solid var(--color-border);
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    display: grid;
    grid-template-columns: 6.5fr 3.5fr;
    overflow: hidden;
    align-items: stretch;
}

.shop-content-box {
    padding: 50px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.shop-badge-row {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #4a7a00;
    font-family: var(--font-headings);
    font-weight: 700;
    font-size: 1.25rem;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.shop-subtitle-compact {
    color: var(--color-text-muted);
    font-size: 1.15rem;
    font-weight: 500;
    margin-bottom: 40px;
}

.shop-icons-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    width: 100%;
}

.shop-icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.shop-icon-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: var(--color-white);
    border: 1px solid rgba(74, 122, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: #4a7a00;
    box-shadow: var(--shadow-sm);
    flex-shrink: 0;
}

.shop-svg-icon {
    width: 28px;
    height: 28px;
}

.shop-icon-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-text-dark);
    text-align: center;
    font-family: var(--font-headings);
    line-height: 1.4;
}

.shop-image-box {
    position: relative;
    height: 100%;
    overflow: hidden;
}

.shop-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 1200px) {
    .shop-card-horizontal {
        grid-template-columns: 1fr;
    }
    
    .shop-image-box {
        height: 380px;
    }
}

@media (max-width: 992px) {
    .shop-icons-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 576px) {
    .shop-content-box {
        padding: 40px 24px;
    }
    
    .shop-image-box {
        height: 280px;
    }
}

/* -------------------------------------------------------------
   AVALIAÇÕES (REVIEWS SECTION)
------------------------------------------------------------- */
.reviews-section {
    background-color: var(--color-white);
    padding: 80px 0;
}

.reviews-container {
    width: 100%;
}

.reviews-card-horizontal {
    background-color: #fafbfa; /* Fundo suave levemente verde-limão */
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 40px;
    box-shadow: var(--shadow-sm);
}

.reviews-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

.reviews-badge-row {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #4a7a00;
    font-family: var(--font-headings);
    font-weight: 700;
    font-size: 1.25rem;
    text-transform: uppercase;
}

.reviews-google-score {
    display: flex;
    align-items: center;
    gap: 8px;
}

.score-num {
    font-size: 1.4rem;
    color: var(--color-text-dark);
    font-weight: 800;
    font-family: var(--font-headings);
}

.google-stars {
    display: flex;
    gap: 2px;
    color: #ffc107;
}

.google-stars svg {
    width: 18px;
    height: 18px;
}

.score-label {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    font-weight: 500;
}

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

.review-item-card {
    background-color: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 24px;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    position: relative;
    transition: var(--transition-smooth);
}

.review-item-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.review-user-header {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 16px;
}

.review-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid var(--color-border);
}

.review-user-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.review-user-info strong {
    font-size: 0.95rem;
    color: var(--color-text-dark);
    font-weight: 700;
    font-family: var(--font-headings);
}

.review-stars-row {
    color: #ffc107;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.review-google-icon {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 18px;
    height: 18px;
}

.review-item-card p {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 992px) {
    .reviews-header-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    
    .reviews-grid-cards {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

@media (max-width: 576px) {
    .reviews-card-horizontal {
        padding: 24px;
    }
}

/* -------------------------------------------------------------
   CHAMADA FINAL (FINAL CTA SECTION)
------------------------------------------------------------- */
.final-cta-section {
    background: linear-gradient(135deg, var(--color-brand-red) 0%, #611111 100%);
    color: var(--color-white);
    padding: 80px 0;
    overflow: hidden;
    position: relative;
}

.cta-container {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 60px;
    align-items: center;
}

.cta-content h2 {
    color: var(--color-white);
    font-size: 2.5rem;
    margin-bottom: 16px;
    font-weight: 800;
    line-height: 1.25;
}

.cta-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
    max-width: 560px;
    line-height: 1.6;
}

.cta-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
}

.cta-image {
    max-height: 360px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.25));
}

@media (max-width: 992px) {
    .cta-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }

    .cta-content p {
        font-size: 1rem;
        margin-bottom: 24px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .cta-image-wrapper {
        height: 250px;
    }
    
    .cta-image {
        height: 100%;
    }
}

/* -------------------------------------------------------------
   CONTATO E LOCALIZAÇÃO (CONTACT & LOCATION)
------------------------------------------------------------- */
.contact-section {
    background-color: var(--color-white);
}

.contact-container {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 80px;
    align-items: center;
}

.contact-details h2 {
    font-size: 2.5rem;
    margin-bottom: 36px;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.contact-info-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-info-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: var(--border-radius-sm);
    background-color: var(--color-lime-green-light);
    color: var(--color-brand-red);
    border: 1px solid rgba(141, 227, 0, 0.2);
    flex-shrink: 0;
}

.contact-info-icon svg {
    width: 20px;
    height: 20px;
}

.contact-info-item h4 {
    font-size: 1.05rem;
    margin-bottom: 4px;
    color: var(--color-text-dark);
}

.contact-info-item p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

.contact-link:hover {
    color: var(--color-brand-red);
}

/* Horários compactos */
.hours-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 6px;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    width: 250px;
    font-size: 0.9rem;
}

.closed-label {
    color: #e11d48;
}

.contact-actions-row {
    display: flex;
    gap: 16px;
}

.map-wrapper {
    height: 480px;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-border);
}

@media (max-width: 992px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .map-wrapper {
        height: 350px;
    }
}

@media (max-width: 576px) {
    .contact-actions-row {
        flex-direction: column;
    }
}

/* -------------------------------------------------------------
   RODAPÉ (FOOTER)
------------------------------------------------------------- */
.site-footer {
    background-color: var(--color-text-dark);
    color: #9ca3af;
    padding-top: 80px;
    border-top: 1px solid #374151;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 50px;
    border-bottom: 1px solid #374151;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo {
    height: 52px;
    width: auto;
    filter: none; /* Mantém o logo no seu formato original branco para contrastar no fundo escuro */
}

.footer-brand-name {
    font-family: var(--font-headings);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--color-white);
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.footer-brand-name span {
    color: var(--color-lime-green); /* Destaque verde-limão */
}

.footer-brand-desc {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 24px;
}

/* Redes Sociais no Rodapé */
.social-links {
    display: flex;
    gap: 12px;
}

.social-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: #374151;
    color: var(--color-white);
    padding: 8px 16px;
    border-radius: var(--border-radius-sm);
    font-size: 0.85rem;
    font-weight: 500;
}

.social-item:hover {
    background-color: var(--color-lime-green);
    color: var(--color-text-dark);
}

.social-item svg {
    width: 16px;
    height: 16px;
}

/* Colunas de links */
.footer-links h4,
.footer-contact h4 {
    color: var(--color-white);
    font-size: 1.1rem;
    margin-bottom: 24px;
}

.footer-links ul,
.footer-contact ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a:hover {
    color: var(--color-lime-green);
    padding-left: 4px;
}

.footer-contact li {
    font-size: 0.9rem;
    line-height: 1.5;
}

.footer-contact a {
    color: var(--color-white);
}

.footer-contact a:hover {
    color: var(--color-lime-green);
}

.footer-bottom {
    background-color: #1f2937;
    padding: 24px 0;
    font-size: 0.85rem;
}

.footer-bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.developer-credit a {
    color: var(--color-white);
    font-weight: 600;
}

.developer-credit a:hover {
    color: var(--color-lime-green);
}

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-links {
        display: none; /* Oculta links rápidos no mobile conforme solicitado */
    }
    
    .footer-bottom-container {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}

/* -------------------------------------------------------------
   BOTÃO FLUTUANTE DO WHATSAPP
------------------------------------------------------------- */
.whatsapp-floating {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    z-index: 999;
    transition: var(--transition-smooth);
    animation: pulseWhatsApp 2s infinite;
}

.whatsapp-floating:hover {
    transform: scale(1.1) rotate(5deg);
    background-color: #20ba5a;
}

.whatsapp-floating-icon {
    width: 32px;
    height: 32px;
}

@keyframes pulseWhatsApp {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@media (max-width: 480px) {
    .whatsapp-floating {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
    
    .whatsapp-floating-icon {
        width: 26px;
        height: 26px;
    }
}

/* -------------------------------------------------------------
   ANIMAÇÕES DE ENTRADA (AO ROLAR A PÁGINA)
------------------------------------------------------------- */
.animate-on-scroll {
    opacity: 0;
    transition-duration: 0.8s;
    transition-timing-function: cubic-bezier(0.25, 1, 0.5, 1);
    transition-property: opacity, transform;
}

.animate-on-scroll.slide-left {
    transform: translateX(-40px);
}

.animate-on-scroll.slide-right {
    transform: translateX(40px);
}

.animate-on-scroll.fade-in-up {
    transform: translateY(40px);
}

/* Estado ativo adicionado pelo IntersectionObserver */
.animate-on-scroll.animated {
    opacity: 1;
    transform: translate(0) scale(1);
}

/* Animação Hero imediata */
.fade-in {
    opacity: 0;
    animation: fadeInIntro 1s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.hero-content.fade-in {
    animation-delay: 0.1s;
}

.hero-image-wrapper.fade-in {
    animation-delay: 0.2s;
}

@keyframes fadeInIntro {
    to {
        opacity: 1;
        transform: translate(0);
    }
}
