/* ============================================
   VETS LAR - Estilo Acolhedor e Elegante
   Inspirado em clínicas veterinárias premium
   ============================================ */

:root {
    /* Paleta Principal - Azul Original do Vetslar */
    --primary: #3a59a1;
    --primary-light: #6b8dd6;
    --primary-dark: #2a4080;
    --primary-gradient: linear-gradient(135deg, #3a59a1 0%, #6b8dd6 100%);
    
    /* Secundário - Azul Escuro */
    --secondary: #2a4080;
    --secondary-light: #3a59a1;
    --secondary-dark: #1a2850;
    --secondary-gradient: linear-gradient(135deg, #2a4080 0%, #3a59a1 100%);
    
    /* Accent - Dourado */
    --accent: #e9c46a;
    --accent-light: #f0d385;
    --accent-dark: #d4a843;
    
    /* Warm - Laranja */
    --warm: #f4a261;
    --warm-light: #f7b87e;
    --warm-dark: #e08b3e;
    
    /* Tons Neutros */
    --dark: #1a2332;
    --dark-soft: #2a3545;
    --gray-900: #1e2a35;
    --gray-800: #2a3848;
    --gray-700: #3d4f5f;
    --gray-600: #5a6f7e;
    --gray-500: #7a8e9a;
    --gray-400: #9aacb5;
    --gray-300: #c5d1d8;
    --gray-200: #e2e9ed;
    --gray-100: #f0f4f6;
    --gray-50: #f8fafb;
    --white: #ffffff;
    
    /* Cores de Background */
    --bg-cream: #f8fafb;
    --bg-beige: #f0f4f6;
    --bg-warm: #e8f4f2;
    
    /* Texto */
    --text-dark: #1a2332;
    --text: #5a6f7e;
    --text-light: #7a8e9a;
    --light: #f8fafb;
    
    /* Fonte - Mais Elegante */
    --font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Plus Jakarta Sans', Georgia, serif;
    
    /* Espaçamentos */
    --section-padding: 100px;
    
    /* Bordas mais suaves */
    --radius-sm: 12px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 40px;
    --radius-full: 9999px;
    
    /* Sombras mais suaves */
    --shadow-sm: 0 2px 12px rgba(38, 70, 83, 0.06);
    --shadow-md: 0 8px 30px rgba(38, 70, 83, 0.08);
    --shadow-lg: 0 16px 50px rgba(38, 70, 83, 0.1);
    --shadow-xl: 0 24px 70px rgba(38, 70, 83, 0.12);
    
    /* Transições suaves */
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

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

body {
    font-family: var(--font-family);
    color: var(--text);
    background: linear-gradient(135deg, var(--bg-cream) 0%, var(--bg-beige) 100%);
    background-attachment: fixed;
    line-height: 1.75;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    position: relative;
}

/* ============================================
   PADRÃO DE PATINHAS - Background Global
   ============================================ */

/* Padrão de patinhas no fundo geral do site */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' fill='%232a9d8f'%3E%3Cpath d='M20 35c3.3 0 6-3.4 6-7.5S23.3 20 20 20s-6 3.4-6 7.5S16.7 35 20 35zm15-10c3.3 0 6-3.4 6-7.5S38.3 10 35 10s-6 3.4-6 7.5S31.7 25 35 25zm30 0c3.3 0 6-3.4 6-7.5S68.3 10 65 10s-6 3.4-6 7.5S61.7 25 65 25zm15 10c3.3 0 6-3.4 6-7.5S83.3 20 80 20s-6 3.4-6 7.5S76.7 35 80 35zm-30 5c-8.3 0-15 8.1-15 18s6.7 18 15 18 15-8.1 15-18-6.7-18-15-18z'/%3E%3C/svg%3E");
    background-size: 120px 120px;
    opacity: 0.035;
    pointer-events: none;
    z-index: 0;
}

/* Variante clara (para fundos escuros como footer) */
.paw-pattern-light {
    position: relative;
}

.paw-pattern-light::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' fill='%23ffffff'%3E%3Cpath d='M20 35c3.3 0 6-3.4 6-7.5S23.3 20 20 20s-6 3.4-6 7.5S16.7 35 20 35zm15-10c3.3 0 6-3.4 6-7.5S38.3 10 35 10s-6 3.4-6 7.5S31.7 25 35 25zm30 0c3.3 0 6-3.4 6-7.5S68.3 10 65 10s-6 3.4-6 7.5S61.7 25 65 25zm15 10c3.3 0 6-3.4 6-7.5S83.3 20 80 20s-6 3.4-6 7.5S76.7 35 80 35zm-30 5c-8.3 0-15 8.1-15 18s6.7 18 15 18 15-8.1 15-18-6.7-18-15-18z'/%3E%3C/svg%3E");
    background-size: 100px 100px;
    opacity: 0.04;
    pointer-events: none;
    z-index: 0;
}

.paw-pattern-light > * {
    position: relative;
    z-index: 1;
}

/* ============================================
   SEÇÕES ALTERNADAS - Diferenciação de Cores
   ============================================ */

/* Seção com fundo claro (branco) */
.section-light {
    background: var(--white);
}

/* Seção com fundo bege */
.section-alt {
    background: rgba(0, 155, 151, 0.03);
}

.container { 
    max-width: 1200px; 
    margin: 0 auto; 
    padding: 0 32px; 
    position: relative; 
    z-index: 1; 
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; }

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

/* ============================================
   BUTTONS - Estilo Elegante
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: var(--radius-full);
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    white-space: nowrap;
    letter-spacing: 0.3px;
}

.btn-primary {
    background: var(--primary-gradient);
    color: var(--white);
    border-color: var(--primary);
    box-shadow: 0 4px 20px rgba(0, 155, 151, 0.3);
}
.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 155, 151, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.5);
}
.btn-outline:hover {
    background: rgba(255,255,255,0.15);
    border-color: var(--white);
}

.btn-outline-primary {
    background: transparent;
    color: var(--secondary);
    border-color: var(--secondary);
}
.btn-outline-primary:hover {
    background: var(--secondary);
    color: var(--white);
}

.btn-white {
    background: var(--white);
    color: var(--secondary);
    border-color: var(--white);
}
.btn-white:hover {
    background: var(--gray-50);
    transform: translateY(-3px);
}

.btn-whatsapp {
    background: #25d366;
    color: var(--white);
    border-color: #25d366;
}
.btn-whatsapp:hover {
    background: #1fb855;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.35);
}

/* ============================================
   SECTION LABELS & HEADERS - Estilo Elegante
   ============================================ */
.section-label {
    margin-bottom: 20px;
}
.section-label span {
    display: inline-flex;
    align-items: center;
    padding: 8px 20px;
    background: rgba(0, 155, 151, 0.1);
    color: var(--primary);
    font-weight: 600;
    font-size: 0.8rem;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

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

.section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 20px;
    color: var(--secondary);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--text);
    line-height: 1.85;
}

/* ============================================
   REVEAL ANIMATIONS
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   NAVBAR - Estilo Clean e Elegante
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: 0 2px 30px rgba(38, 70, 83, 0.08);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    z-index: 1001;
}

.nav-logo .logo-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: var(--primary-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--white);
}

.nav-logo .logo-text { display: flex; flex-direction: column; }
.nav-logo .logo-name {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--white);
    transition: var(--transition);
    letter-spacing: -0.02em;
}
.navbar.scrolled .logo-name { color: var(--secondary); }
.nav-logo .logo-tagline {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.75);
    font-weight: 500;
    letter-spacing: 0.8px;
    transition: var(--transition);
    text-transform: uppercase;
}
.navbar.scrolled .logo-tagline { color: var(--text-light); }

.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 6px;
}

.nav-link {
    padding: 10px 18px;
    font-size: 0.92rem;
    font-weight: 500;
    color: rgba(255,255,255,0.9);
    border-radius: var(--radius-sm);
    transition: var(--transition);
    position: relative;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 24px;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
    transition: var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--white); }
.nav-link.active::after { transform: translateX(-50%) scaleX(1); }

.navbar.scrolled .nav-link { color: var(--text); }
.navbar.scrolled .nav-link:hover, .navbar.scrolled .nav-link.active { color: var(--secondary); }
.navbar.scrolled .nav-link.active::after { background: var(--primary); }

.nav-actions { display: flex; align-items: center; gap: 14px; }
.btn-action {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.88rem;
    cursor: pointer;
    transition: var(--transition);
}
.btn-agendar {
    background: var(--primary-gradient);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(0, 155, 151, 0.3);
}
.btn-agendar:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(0, 155, 151, 0.4);
    background: var(--primary-dark);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    width: 48px;
    height: 48px;
    background: rgba(255,255,255,0.12);
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    z-index: 1001;
    padding: 10px;
    transition: var(--transition);
}
.nav-toggle:hover {
    background: rgba(255,255,255,0.22);
}
.navbar.scrolled .nav-toggle {
    background: var(--gray-100);
}
.navbar.scrolled .nav-toggle:hover {
    background: var(--gray-200);
}
.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--white);
    border-radius: 3px;
    transition: all 0.35s cubic-bezier(0.68, -0.6, 0.32, 1.6);
    transform-origin: center;
}
.navbar.scrolled .nav-toggle span { background: var(--secondary); }

/* Animação X do hamburger */
.nav-toggle.active span:nth-child(1) { 
    transform: translateY(8px) rotate(45deg); 
}
.nav-toggle.active span:nth-child(2) { 
    opacity: 0;
    transform: scaleX(0);
}
.nav-toggle.active span:nth-child(3) { 
    transform: translateY(-8px) rotate(-45deg); 
}

/* Overlay mobile */
.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(38, 70, 83, 0.5);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s ease;
    z-index: 999;
}
.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.nav-actions-mobile { display: none; }

/* ============================================
   HERO - Estilo Acolhedor
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 80px;
}

/* === HERO COM VÍDEO DE FUNDO === */
.hero-video {
    background: #0d1a26;
}

.hero-video-wrapper {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.hero-video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
}

.hero-video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(58, 89, 161, 0.85) 0%,
        rgba(58, 89, 161, 0.6) 50%,
        rgba(26, 35, 60, 0.9) 100%
    );
    z-index: 1;
}

/* Hero tradicional (sem vídeo) */
.hero-bg {
    position: absolute;
    inset: 0;
    background: var(--secondary-gradient);
}
.hero-gradient {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(212, 168, 75, 0.2) 0%, transparent 70%),
                radial-gradient(ellipse at 70% 20%, rgba(196, 149, 106, 0.15) 0%, transparent 50%);
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.25) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 80px 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    background: rgba(255,255,255,0.1);
    color: var(--accent-light);
    font-weight: 600;
    font-size: 0.88rem;
    border-radius: var(--radius-full);
    margin-bottom: 28px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.12);
    letter-spacing: 0.5px;
}

.hero-title {
    font-size: clamp(2.8rem, 6.5vw, 4.2rem);
    color: var(--white);
    margin-bottom: 24px;
    letter-spacing: -0.03em;
    font-weight: 700;
}
.gradient-text {
    background: linear-gradient(135deg, var(--accent-light) 0%, var(--warm) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.85);
    max-width: 620px;
    margin: 0 auto 40px;
    line-height: 1.85;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 28px;
    flex-wrap: wrap;
}
.hero-stats .stat-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 28px;
    background: rgba(255,255,255,0.08);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.1);
}
.hero-stats .stat-icon {
    width: 46px;
    height: 46px;
    border-radius: var(--radius-md);
    background: var(--primary-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.1rem;
}
.hero-stats .stat-number { font-weight: 700; color: var(--white); font-size: 1rem; }
.hero-stats .stat-label { font-size: 0.78rem; color: rgba(255,255,255,0.65); }
.hero-stats .stat-info { display: flex; flex-direction: column; }


@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); opacity: 0.5; }
    50% { transform: translateY(8px); opacity: 1; }
}

/* === Botões do Hero com Vídeo === */
.btn-hero {
    padding: 18px 36px;
    font-size: 1rem;
    box-shadow: 0 6px 30px rgba(0, 155, 151, 0.35);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn-hero:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 40px rgba(0, 155, 151, 0.5);
}
.btn-hero-outline {
    padding: 18px 36px;
    font-size: 1rem;
    background: rgba(255,255,255,0.06);
    border: 2px solid rgba(255,255,255,0.35);
    color: var(--white);
    backdrop-filter: blur(8px);
}
.btn-hero-outline:hover {
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.6);
    transform: translateY(-4px);
}

/* ============================================
   FEATURES BAR - Estilo Elegante
   ============================================ */
.features-bar {
    /* background: var(--bg-cream); */
    padding: 0;
    margin-top: -50px;
    position: relative;
    z-index: 5;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 60px rgba(0, 155, 151, 0.1);
    overflow: hidden;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 32px 28px;
    transition: var(--transition);
    border-right: 1px solid var(--gray-100);
}
.feature-item:last-child { border-right: none; }
.feature-item:hover { background: var(--bg-beige); }

.feature-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    background: rgba(0, 155, 151, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.3rem;
    flex-shrink: 0;
}

.feature-text h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 4px;
}
.feature-text p {
    font-size: 0.82rem;
    color: var(--text-light);
}

/* ============================================
   PAGE HEADER (Páginas Internas) - Estilo Elegante
   ============================================ */
.page-header {
    padding: 160px 0 80px;
    background: var(--secondary-gradient);
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' fill='%23ffffff'%3E%3Cpath d='M20 35c3.3 0 6-3.4 6-7.5S23.3 20 20 20s-6 3.4-6 7.5S16.7 35 20 35zm15-10c3.3 0 6-3.4 6-7.5S38.3 10 35 10s-6 3.4-6 7.5S31.7 25 35 25zm30 0c3.3 0 6-3.4 6-7.5S68.3 10 65 10s-6 3.4-6 7.5S61.7 25 65 25zm15 10c3.3 0 6-3.4 6-7.5S83.3 20 80 20s-6 3.4-6 7.5S76.7 35 80 35zm-30 5c-8.3 0-15 8.1-15 18s6.7 18 15 18 15-8.1 15-18-6.7-18-15-18z'/%3E%3C/svg%3E");
    background-size: 120px 120px;
    opacity: 0.04;
    pointer-events: none;
}

.page-header-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.page-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 24px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.85);
    transition: var(--transition);
}

.breadcrumb a:hover {
    color: var(--white);
}

.breadcrumb span:last-child {
    color: var(--accent-light);
    font-weight: 600;
}

/* ============================================
   ABOUT SECTION - Estilo Acolhedor
   ============================================ */
.about-section {
    padding: var(--section-padding) 0;
    /* background: var(--white); */
    position: relative;
    overflow: hidden;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 60px;
    align-items: start;
    margin-top: 50px;
    position: relative;
    z-index: 1;
}

.about-image {
    position: sticky;
    top: 100px;
}

.image-frame {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 155, 151, 0.15);
}

.image-frame::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    border: 3px solid var(--primary);
    opacity: 0.25;
    z-index: 1;
}

.image-frame img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: var(--radius-lg);
    aspect-ratio: 3/4;
    max-height: 480px;
}

.image-placeholder {
    width: 100%;
    aspect-ratio: 4/5;
    background: linear-gradient(135deg, var(--gray-100) 0%, var(--gray-200) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    border-radius: var(--radius-lg);
    color: var(--gray-400);
}
.image-placeholder i { font-size: 3.5rem; }
.image-placeholder span { font-size: 1rem; font-weight: 600; }

.experience-badge {
    position: absolute;
    bottom: 24px;
    right: 24px;
    background: var(--primary-gradient);
    color: var(--white);
    padding: 18px 22px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow-lg);
}
.experience-badge .years {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
    color: var(--white);
}
.experience-badge .text {
    font-size: 0.72rem;
    font-weight: 600;
    line-height: 1.35;
    opacity: 0.9;
}

.about-content {
    background: var(--white);
    padding: 42px;
    border-radius: var(--radius-lg);
    box-shadow: 0 15px 50px rgba(0, 155, 151, 0.08);
    position: relative;
}

.about-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--primary-gradient);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.about-subtitle {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    gap: 14px;
}
.about-subtitle i {
    color: var(--primary);
    font-size: 1.25rem;
}

.about-content p {
    margin-bottom: 18px;
    color: var(--text);
    line-height: 1.85;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin: 28px 0 36px;
}
.about-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.92rem;
    color: var(--secondary);
    background: rgba(0, 155, 151, 0.06);
    padding: 14px 16px;
    border-radius: var(--radius-md);
    border-left: 3px solid var(--primary);
    transition: var(--transition);
}
.about-feature:hover {
    background: rgba(0, 155, 151, 0.12);
    transform: translateX(4px);
}
.about-feature i {
    color: var(--primary);
    font-size: 1.05rem;
}

/* ============================================
   STATS BAR - Barra de Estatísticas
   ============================================ */
.stats-bar {
    padding: 60px 0;
    background: var(--secondary-gradient);
    position: relative;
    overflow: hidden;
}

.stats-bar::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(58, 89, 161, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(107, 141, 214, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

.stats-bar-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

.stat-bar-item {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.stat-bar-item:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.stat-bar-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin-bottom: 10px;
    background: linear-gradient(135deg, var(--white) 0%, var(--accent-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-bar-label {
    display: block;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    letter-spacing: 0.02em;
}

/* ============================================
   DIFERENCIAIS SECTION - Por que nos escolher
   ============================================ */
.diferenciais-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
    position: relative;
}

.diferenciais-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 20px;
}

.diferencial-card {
    background: var(--white);
    border-radius: 16px;
    padding: 36px 28px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(58, 89, 161, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.diferencial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--primary-gradient);
    border-radius: 0 0 4px 4px;
    opacity: 0;
    transition: all 0.4s ease;
}

.diferencial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(58, 89, 161, 0.12);
    border-color: rgba(58, 89, 161, 0.15);
}

.diferencial-card:hover::before {
    opacity: 1;
    width: 100%;
}

.diferencial-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(58, 89, 161, 0.08) 0%, rgba(107, 141, 214, 0.08) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.8rem;
    transition: all 0.4s ease;
    position: relative;
}

.diferencial-icon::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: var(--primary-gradient);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.diferencial-icon i {
    position: relative;
    z-index: 1;
    transition: color 0.4s ease;
}

.diferencial-card:hover .diferencial-icon::after {
    opacity: 1;
}

.diferencial-card:hover .diferencial-icon i {
    color: var(--white);
}

.diferencial-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--secondary-dark);
    margin-bottom: 12px;
}

.diferencial-card p {
    font-size: 0.9rem;
    color: var(--text);
    line-height: 1.65;
    margin: 0;
}

@media (max-width: 1200px) {
    .diferenciais-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .diferenciais-grid {
        grid-template-columns: 1fr;
    }
    
    .diferencial-card {
        padding: 28px 24px;
    }
}

/* ============================================
   MVV SECTION - Estilo Elegante
   ============================================ */
.mvv-section {
    padding: 90px 0;
    background: var(--white);
}

.mvv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.mvv-card {
    background: var(--bg-cream);
    padding: 45px 36px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border-top: 5px solid transparent;
}
.mvv-card.mission { border-top-color: var(--primary); }
.mvv-card.vision { border-top-color: var(--accent); }
.mvv-card.values { border-top-color: var(--warm); }

.mvv-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.mvv-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin: 0 auto 24px;
}
.mission .mvv-icon { background: rgba(0, 155, 151, 0.1); color: var(--primary); }
.vision .mvv-icon { background: rgba(233, 196, 106, 0.15); color: var(--accent-dark); }
.values .mvv-icon { background: rgba(244, 162, 97, 0.15); color: var(--warm); }

.mvv-card h3 {
    font-size: 1.35rem;
    margin-bottom: 16px;
}
.mvv-card p {
    color: var(--text);
    font-size: 0.98rem;
    line-height: 1.75;
    font-style: italic;
}


/* ============================================
   SERVICES SECTION - Estilo Elegante
   ============================================ */
.services-section {
    position: relative;
    padding: var(--section-padding) 0;
    background: var(--bg-cream);
}
.services-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: var(--bg-beige);
}

.services-section .container { position: relative; z-index: 1; }

/* Service Tabs */
.services-tabs {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.service-tab {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-full);
    background: var(--white);
    color: var(--text);
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 0.92rem;
    cursor: pointer;
    transition: var(--transition);
}
.service-tab:hover {
    border-color: var(--secondary);
    color: var(--secondary);
}
.service-tab.active {
    background: var(--primary-gradient);
    border-color: var(--primary);
    color: var(--white);
    box-shadow: 0 6px 20px rgba(0, 155, 151, 0.3);
}

.service-tab-content { display: none; }
.service-tab-content.active { display: block; }

/* ============================================
   SERVIÇOS HOME - Estilo Cards com Imagem
   ============================================ */
.services-home-section {
    padding: 100px 0;
    background: var(--bg-cream);
}

.services-home-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

@media (max-width: 1200px) {
    .services-home-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 640px) {
    .services-home-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.service-home-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 28px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s ease;
    border: 1px solid var(--gray-100);
    position: relative;
    overflow: hidden;
}

.service-home-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-home-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 155, 151, 0.15);
    border-color: var(--primary-light);
}

.service-home-card:hover::before {
    transform: scaleX(1);
}

.service-home-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 24px;
    overflow: hidden;
    border: 4px solid var(--gray-100);
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.service-home-card:hover .service-home-image {
    border-color: var(--primary);
    transform: scale(1.05);
}

.service-home-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-home-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2.5rem;
}

.service-home-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 12px;
}

.service-home-card p {
    font-size: 0.92rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-home-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: rgba(0, 155, 151, 0.08);
    color: var(--primary);
    font-size: 0.82rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    transition: all 0.3s ease;
}

.service-home-card:hover .service-home-tag {
    background: var(--primary);
    color: var(--white);
}

.services-home-cta {
    text-align: center;
}

.services-home-cta .btn {
    padding: 16px 40px;
    font-size: 1rem;
}

/* ============================================
   SERVIÇOS LISTA - Estilo DomLab
   ============================================ */
.services-list-section {
    padding: 100px 0;
    background: rgba(0, 155, 151, 0.04);
    position: relative;
}

.services-list-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-list-header .section-label {
    margin-bottom: 16px;
}

.services-list-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 16px;
}

.services-list-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.services-list-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

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

@media (max-width: 640px) {
    .services-list-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .services-list-header h2 {
        font-size: 1.8rem;
    }
}

.service-list-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    border: 1px solid var(--gray-100);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-list-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary-gradient);
    transform: scaleY(0);
    transition: transform 0.4s ease;
    transform-origin: bottom;
}

.service-list-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 155, 151, 0.12);
    border-color: var(--primary-light);
}

.service-list-card:hover::before {
    transform: scaleY(1);
}

.service-list-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, rgba(0, 155, 151, 0.1) 0%, rgba(0, 155, 151, 0.05) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.4rem;
    margin-bottom: 20px;
    transition: all 0.4s ease;
}

.service-list-card:hover .service-list-icon {
    background: var(--primary-gradient);
    color: var(--white);
    transform: scale(1.05);
}

.service-list-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 12px;
}

.service-list-card p {
    font-size: 0.92rem;
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

.services-list-cta {
    text-align: center;
}

.services-list-cta .btn {
    padding: 16px 40px;
    font-size: 1rem;
}

/* ============================================
   SERVIÇOS GRID (Original)
   ============================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

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

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

.service-card {
    background: var(--white);
    border-radius: 16px;
    padding: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(58, 89, 161, 0.08);
    overflow: hidden;
    position: relative;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(58, 89, 161, 0.15);
    border-color: rgba(58, 89, 161, 0.2);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card-header {
    padding: 32px 28px 24px;
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.service-icon {
    width: 64px;
    height: 64px;
    min-width: 64px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(58, 89, 161, 0.1) 0%, rgba(107, 141, 214, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.6rem;
    transition: all 0.4s ease;
    position: relative;
}

.service-icon::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 14px;
    background: var(--primary-gradient);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-icon i {
    position: relative;
    z-index: 1;
    transition: color 0.4s ease;
}

.service-card:hover .service-icon::after {
    opacity: 1;
}

.service-card:hover .service-icon i {
    color: var(--white);
}

.service-card-title-area {
    flex: 1;
}

.service-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--secondary-dark);
    line-height: 1.3;
}

.service-card p {
    color: var(--text);
    font-size: 0.9rem;
    line-height: 1.65;
    margin: 0;
}

.service-card-body {
    padding: 0 28px 28px;
}

.service-card-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 0;
    padding: 20px;
    background: linear-gradient(135deg, rgba(58, 89, 161, 0.03) 0%, rgba(107, 141, 214, 0.03) 100%);
    border-radius: 12px;
}

.service-card-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.88rem;
    color: var(--text);
    padding: 4px 0;
    transition: all 0.3s ease;
}

.service-card-features li:hover {
    transform: translateX(4px);
}

.service-card-features li i {
    width: 20px;
    height: 20px;
    min-width: 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    font-size: 0.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ============================================
   CTA SECTION - Estilo Acolhedor
   ============================================ */
.cta-section {
    padding: 70px 0;
    background: var(--secondary);
}

.cta-content {
    display: flex;
    align-items: center;
    gap: 36px;
    flex-wrap: wrap;
    justify-content: center;
}

.cta-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(255,255,255,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.6rem;
    flex-shrink: 0;
}

.cta-text {
    flex: 1;
    min-width: 260px;
}
.cta-text h2 {
    color: var(--white);
    font-size: 1.6rem;
    margin-bottom: 6px;
}
.cta-text p {
    color: rgba(255,255,255,0.85);
    font-size: 1rem;
}

.cta-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* ============================================
   TEAM SECTION - Estilo Elegante
   ============================================ */
.team-section {
    padding: var(--section-padding) 0;
    background: var(--bg-beige);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 28px;
}

.team-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--gray-100);
}
.team-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.team-card-featured {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 300px 1fr;
}

.team-photo {
    position: relative;
    background: linear-gradient(135deg, var(--gray-100), var(--gray-200));
    min-height: 220px;
}

.team-photo-placeholder {
    width: 100%;
    height: 100%;
    min-height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    font-size: 3.5rem;
}

.team-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 6px 16px;
    background: var(--secondary);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.team-info {
    padding: 32px;
}
.team-info h3 {
    font-size: 1.2rem;
    color: var(--secondary);
    margin-bottom: 6px;
}
.team-crmv {
    display: inline-block;
    font-size: 0.8rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 10px;
}
.team-role {
    font-size: 0.9rem;
    color: var(--accent-dark);
    font-weight: 600;
    margin-bottom: 14px;
}
.team-bio {
    font-size: 0.88rem;
    color: var(--text);
    line-height: 1.7;
}

.team-card:not(.team-card-featured) .team-photo {
    height: 180px;
}

/* ============================================
   URGENCY SECTION - Estilo Acolhedor
   ============================================ */
.urgency-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(135deg, #fdf5e6 0%, #fff9f0 100%);
}

.urgency-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 70px;
    align-items: center;
}

.urgency-content .section-title {
    color: var(--warm-dark);
}
.urgency-content p {
    color: var(--text);
    line-height: 1.85;
    margin-bottom: 28px;
}

.urgency-features {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-bottom: 32px;
}

.urgency-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--warm-dark);
}
.urgency-feature i { color: var(--warm); }

.urgency-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 55px 45px;
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 2px solid rgba(196, 149, 106, 0.2);
}
.urgency-icon-big {
    width: 85px;
    height: 85px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--warm) 0%, #c07838 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2.2rem;
    margin: 0 auto 24px;
    animation: urgencyPulse 2s infinite;
}
@keyframes urgencyPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(196, 149, 106, 0.4); }
    50% { box-shadow: 0 0 0 18px rgba(196, 149, 106, 0); }
}

.urgency-card h3 { font-size: 1.4rem; margin-bottom: 10px; color: var(--secondary); }
.urgency-card p { color: var(--text-light); margin-bottom: 18px; }
.urgency-phone {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: var(--bg-cream);
    border-radius: var(--radius-md);
    font-weight: 700;
    color: var(--warm-dark);
    font-size: 1.15rem;
}

/* ============================================
   TESTIMONIALS CAROUSEL - Estilo Elegante
   ============================================ */
.testimonials-section {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.testimonials-carousel {
    position: relative;
    overflow: hidden;
    padding: 12px 0 50px;
}

.carousel-track {
    display: flex;
    gap: 28px;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card {
    width: calc((100% - 56px) / 3);
    min-width: calc((100% - 56px) / 3);
    max-width: calc((100% - 56px) / 3);
    flex-shrink: 0;
    background: var(--bg-cream);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    text-align: center;
    border: 1px solid var(--gray-100);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}
.testimonial-card:hover {
    background: var(--white);
    box-shadow: var(--shadow-md);
    border-color: var(--accent);
}

.testimonial-photo {
    margin-bottom: 18px;
}
.testimonial-photo img {
    width: 78px;
    height: 78px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto;
    display: block;
    border: 3px solid rgba(0, 155, 151, 0.2);
    transition: var(--transition);
}
.testimonial-card:hover .testimonial-photo img {
    border-color: var(--primary);
}
.testimonial-photo-placeholder {
    width: 78px;
    height: 78px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 155, 151, 0.12), rgba(0, 155, 151, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.6rem;
    margin: 0 auto;
    border: 3px solid rgba(0, 155, 151, 0.2);
}

.testimonial-stars {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: 18px;
}
.testimonial-stars i {
    color: var(--accent);
    font-size: 0.95rem;
}

.testimonial-text {
    font-size: 0.95rem;
    color: var(--text);
    line-height: 1.75;
    font-style: italic;
    margin-bottom: 18px;
    height: 85px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    white-space: normal;
    word-break: break-word;
}

.testimonial-author {
    font-weight: 700;
    color: var(--secondary);
    font-size: 0.92rem;
}

/* Carousel Controls */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid var(--gray-200);
    background: var(--white);
    color: var(--text);
    font-size: 1.05rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    z-index: 5;
}
.carousel-btn:hover {
    background: var(--secondary);
    color: var(--white);
    border-color: var(--secondary);
}
.carousel-prev { left: -12px; }
.carousel-next { right: -12px; }

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 28px;
}
.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: var(--gray-300);
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}
.carousel-dot.active {
    background: var(--secondary);
    transform: scale(1.15);
}

.testimonial-cta {
    text-align: center;
    margin-top: 45px;
}

/* Botão Deixe seu Depoimento */
.btn-leave-review {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: var(--secondary);
    color: var(--white);
    border: none;
    border-radius: var(--radius-full);
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px rgba(38, 70, 83, 0.25);
    text-transform: uppercase;
    letter-spacing: 0.8px;
}
.btn-leave-review:hover {
    background: var(--secondary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(38, 70, 83, 0.35);
}
.btn-leave-review i {
    font-size: 1.1rem;
}

/* ============================================
   MODAL DEPOIMENTO - Estilo Elegante
   ============================================ */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(61, 50, 37, 0.6);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    backdrop-filter: blur(6px);
}
.modal-overlay.active {
    display: flex;
}

@keyframes modalIn {
    from { opacity: 0; transform: translateY(25px) scale(0.95); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.modal-depoimento {
    background: var(--white);
    border-radius: var(--radius-lg);
    max-width: 560px;
    width: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(61, 50, 37, 0.2);
    animation: modalIn 0.35s ease;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-depoimento .modal-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--gray-100);
    color: var(--text-light);
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    z-index: 2;
}
.modal-depoimento .modal-close:hover {
    background: var(--gray-200);
    color: var(--secondary);
    transform: scale(1.1);
}

.modal-depoimento-header {
    padding: 36px 36px 24px;
    text-align: center;
    color: var(--secondary);
}

.modal-depoimento-icon {
    width: 68px;
    height: 68px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: var(--white);
    box-shadow: 0 8px 28px rgba(38, 70, 83, 0.3);
}

.modal-depoimento-header h2 {
    font-size: 1.55rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--secondary);
}

.modal-depoimento-header p {
    font-size: 0.92rem;
    color: var(--text-light);
    max-width: 400px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Form dentro do modal */
.modal-depoimento .contact-form {
    padding: 24px;
}

.modal-depoimento .contact-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.modal-depoimento .contact-form-group {
    margin-bottom: 16px;
}

.modal-depoimento .contact-form-group.full-width {
    grid-column: 1 / -1;
}

.modal-depoimento .contact-form-group label {
    display: block;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 6px;
    font-size: 13px;
}

.modal-depoimento .contact-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.modal-depoimento .contact-input-wrapper i {
    position: absolute;
    left: 14px;
    color: var(--gray-400);
    font-size: 14px;
    z-index: 1;
}

.modal-depoimento .contact-input-wrapper input,
.modal-depoimento .contact-input-wrapper textarea {
    width: 100%;
    border: 2px solid var(--gray-200);
    border-radius: 50px;
    padding: 12px 14px 12px 42px;
    font-size: 14px;
    transition: all 0.3s ease;
    font-family: inherit;
    background: var(--gray-50);
    color: var(--gray-700);
    box-sizing: border-box;
}

.modal-depoimento .contact-input-wrapper textarea {
    border-radius: var(--radius-lg);
}

.modal-depoimento .contact-input-wrapper input:focus,
.modal-depoimento .contact-input-wrapper textarea:focus {
    outline: none;
    border-color: var(--secondary);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(38, 70, 83, 0.1);
}

.modal-depoimento .contact-input-wrapper input::placeholder,
.modal-depoimento .contact-input-wrapper textarea::placeholder {
    color: var(--gray-400);
}

.modal-depoimento .textarea-wrapper {
    align-items: flex-start;
}

.modal-depoimento .textarea-wrapper i {
    top: 14px;
    transform: none;
}

.modal-depoimento .textarea-wrapper textarea {
    min-height: 100px;
    resize: vertical;
}

/* Avatar Selector */
.avatar-selector {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 10px;
    margin-bottom: 12px;
}

.avatar-option {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--gray-200);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    background: none;
    max-width: 55px;
}

.avatar-option img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.avatar-option:hover {
    border-color: var(--secondary);
    transform: scale(1.08);
}

.avatar-option.selected {
    border-color: var(--secondary);
    border-width: 3px;
    box-shadow: 0 0 0 3px rgba(38, 70, 83, 0.2);
}

.avatar-selected-preview {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 8px;
}

.avatar-preview-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--secondary);
}

.avatar-preview-label {
    font-size: 13px;
    color: var(--text-light);
}

.avatar-selected-preview.has-avatar .avatar-preview-label {
    color: var(--secondary);
    font-weight: 600;
}

/* Botão submit depoimento */
.btn-submit-depoimento {
    width: 100%;
    padding: 16px;
    border-radius: var(--radius-full);
    font-size: 15px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.4s ease;
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    background: var(--secondary);
    color: var(--white);
}
.btn-submit-depoimento:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(38, 70, 83, 0.35);
    background: var(--secondary-dark);
}

/* Mensagem de sucesso */
.depoimento-success {
    text-align: center;
    padding: 45px 36px;
}
.depoimento-success i {
    font-size: 3.2rem;
    color: var(--secondary);
    margin-bottom: 18px;
}
.depoimento-success h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--secondary);
}
.depoimento-success p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Erros de validação inline */
.is-invalid {
    border-color: #dc3545 !important;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.15) !important;
}
.invalid-feedback {
    font-size: 12px;
    color: #dc3545;
    margin-top: 6px;
    display: flex;
    align-items: center;
    gap: 4px;
}
.invalid-feedback::before {
    content: '\f06a';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 11px;
}

/* Toast Notification */
.toast-notification {
    position: fixed;
    top: 24px;
    right: 24px;
    z-index: 99999;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    transform: translateX(120%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    max-width: 400px;
    backdrop-filter: blur(10px);
}
.toast-notification.show {
    transform: translateX(0);
}
.toast-notification i:first-child {
    font-size: 1.2rem;
    flex-shrink: 0;
}
.toast-notification span {
    flex: 1;
    line-height: 1.4;
}
.toast-close {
    background: none;
    border: none;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.2s;
    padding: 0;
    margin-left: 8px;
    flex-shrink: 0;
}
.toast-close:hover {
    opacity: 1;
}

/* Toast Success */
.toast-success {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #6ee7b7;
}
.toast-success i:first-child {
    color: #059669;
}
.toast-success .toast-close {
    color: #065f46;
}

/* Toast Error */
.toast-error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}
.toast-error i:first-child {
    color: #dc2626;
}
.toast-error .toast-close {
    color: #991b1b;
}

@media (max-width: 480px) {
    .toast-notification {
        top: 12px;
        right: 12px;
        left: 12px;
        max-width: none;
    }
}

/* Responsivo Modal */
@media (max-width: 768px) {
    .modal-depoimento {
        margin: 10px;
        max-width: calc(100% - 20px);
    }
    .modal-depoimento-header {
        padding: 24px 20px;
    }
    .modal-depoimento-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    .modal-depoimento-header h2 {
        font-size: 1.25rem;
    }
    .modal-depoimento .contact-form {
        padding: 20px;
    }
    .modal-depoimento .contact-form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .avatar-selector {
        grid-template-columns: repeat(8, 1fr);
        gap: 6px;
    }
    .avatar-option {
        max-width: 42px;
    }
}

@media (max-width: 480px) {
    .btn-leave-review {
        padding: 14px 24px;
        font-size: 14px;
    }
    .modal-depoimento .contact-form {
        padding: 16px;
    }
    .avatar-selector {
        grid-template-columns: repeat(4, 1fr);
        gap: 8px;
    }
    .avatar-option {
        max-width: 50px;
    }
}

/* ============================================
   GALLERY SECTION - Estilo Elegante
   ============================================ */

/* Gallery Intro */
.gallery-intro {
    padding: 60px 0 40px;
    background: var(--white);
}

.gallery-intro-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
}

.gallery-intro-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    border-radius: 50%;
    background: var(--primary-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
}

.gallery-intro-content h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary-dark);
    margin-bottom: 16px;
}

.gallery-intro-content p {
    font-size: 1rem;
    color: var(--text);
    line-height: 1.75;
}

/* Gallery Stats */
.gallery-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    padding: 30px 0;
    border-top: 1px solid var(--gray-100);
    border-bottom: 1px solid var(--gray-100);
}

.gallery-stat {
    text-align: center;
}

.gallery-stat .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.gallery-stat .stat-text {
    display: block;
    font-size: 0.9rem;
    color: var(--text);
    margin-top: 8px;
}

/* Gallery Section */
.gallery-section {
    padding: var(--section-padding) 0;
    background: var(--bg-beige);
    position: relative;
    overflow: hidden;
}

/* Padrão de patinhas na galeria */
.gallery-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' fill='%238B6914'%3E%3Cpath d='M20 35c3.3 0 6-3.4 6-7.5S23.3 20 20 20s-6 3.4-6 7.5S16.7 35 20 35zm15-10c3.3 0 6-3.4 6-7.5S38.3 10 35 10s-6 3.4-6 7.5S31.7 25 35 25zm30 0c3.3 0 6-3.4 6-7.5S68.3 10 65 10s-6 3.4-6 7.5S61.7 25 65 25zm15 10c3.3 0 6-3.4 6-7.5S83.3 20 80 20s-6 3.4-6 7.5S76.7 35 80 35zm-30 5c-8.3 0-15 8.1-15 18s6.7 18 15 18 15-8.1 15-18-6.7-18-15-18z'/%3E%3C/svg%3E");
    background-size: 140px 140px;
    opacity: 0.03;
    pointer-events: none;
    z-index: 0;
}

.gallery-section .container {
    position: relative;
    z-index: 1;
}

/* Gallery Grid - Pets Layout */
/* Gallery Grid */
.gallery-grid-pets {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 50px;
}

.gallery-pet-card {
    border-radius: 16px;
    overflow: hidden;
    background: var(--white);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.gallery-pet-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.gallery-pet-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    line-height: 0;
}

.gallery-pet-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-pet-card:hover .gallery-pet-image img {
    transform: scale(1.05);
}

.gallery-pet-name {
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
}

.gallery-pet-name i {
    color: var(--primary);
    font-size: 0.85rem;
}

.gallery-pet-name span {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--secondary-dark);
    letter-spacing: 0.3px;
}

/* Instagram CTA */
.gallery-instagram {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.instagram-cta-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.instagram-cta-content > i {
    font-size: 3rem;
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.instagram-cta-text h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--secondary-dark);
    margin-bottom: 4px;
}

.instagram-cta-text p {
    font-size: 0.95rem;
    color: var(--text);
    margin: 0;
}

.btn-instagram {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: var(--white);
    font-weight: 600;
    font-size: 1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-instagram:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(225, 48, 108, 0.4);
    color: var(--white);
}

/* Estrutura Section */
.estrutura-section {
    padding: 80px 0;
    background: var(--white);
}

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

.estrutura-item {
    text-align: center;
    padding: 36px 24px;
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
    border-radius: 16px;
    border: 1px solid var(--gray-100);
    transition: all 0.4s ease;
}

.estrutura-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: var(--primary-light);
}

.estrutura-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: var(--primary-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
}

.estrutura-item h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--secondary-dark);
    margin-bottom: 10px;
}

.estrutura-item p {
    font-size: 0.9rem;
    color: var(--text);
    line-height: 1.6;
    margin: 0;
}

/* Responsivo Galeria */
@media (max-width: 1200px) {
    .gallery-grid-pets {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .estrutura-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .gallery-stats {
        gap: 30px;
    }
    
    .gallery-stat .stat-number {
        font-size: 2rem;
    }
    
    .gallery-grid-pets {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .gallery-pet-name {
        padding: 14px 16px;
    }
    
    .gallery-pet-name span {
        font-size: 1rem;
    }
    
    .instagram-cta-content {
        flex-direction: column;
        text-align: center;
    }
    
    .estrutura-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .gallery-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .gallery-grid-pets {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .gallery-instagram {
        padding: 24px;
    }
}

/* ============================================
   PARTNERS SECTION - Estilo Elegante
   ============================================ */
.partners-section {
    padding: var(--section-padding) 0;
    background: var(--white);
    position: relative;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 28px;
    margin-top: 12px;
}

.partner-card {
    display: flex;
    gap: 22px;
    background: var(--bg-cream);
    border-radius: var(--radius-lg);
    padding: 28px;
    border: 1px solid var(--gray-100);
    transition: var(--transition);
}
.partner-card:hover {
    background: var(--white);
    box-shadow: var(--shadow-md);
    border-color: var(--accent);
    transform: translateY(-4px);
}

.partner-photo {
    flex-shrink: 0;
    width: 95px;
    height: 95px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--accent);
    box-shadow: 0 4px 15px rgba(233, 196, 106, 0.15);
}
.partner-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.partner-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.partner-info h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--secondary);
    margin: 0;
    line-height: 1.3;
}
.partner-crmv {
    font-size: 0.8rem;
    color: var(--text-light);
    font-weight: 600;
}
.partner-area {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: var(--primary);
    font-weight: 600;
    margin: 2px 0 8px;
}
.partner-area i {
    font-size: 0.78rem;
}
.partner-info p {
    font-size: 0.85rem;
    color: var(--text);
    line-height: 1.65;
    margin: 0;
}

/* ============================================
   CONTACT FULL SECTION - Estilo Elegante
   ============================================ */
.contact-full-section {
    padding: var(--section-padding) 0;
    background: var(--bg-beige);
}

/* Grid 2 colunas */
.contact-grid-v2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 45px;
    align-items: start;
}

/* Cards empilhados à esquerda */
.contact-cards-stack {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.contact-card-v2 {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px;
    border: 1px solid var(--gray-100);
    transition: var(--transition);
}
.contact-card-v2:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-md);
}

.contact-card-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--white);
}
.contact-card-icon.location {
    background: var(--secondary);
}
.contact-card-icon.phone {
    background: var(--primary);
}
.contact-card-icon.hours {
    background: var(--accent-dark);
}

.contact-card-body h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 8px;
}
.contact-card-body p {
    font-size: 0.95rem;
    color: var(--text);
    margin: 0;
    line-height: 1.7;
}
.contact-card-body .phone-number {
    font-weight: 600;
    color: var(--secondary);
}
.contact-card-body .phone-number a {
    color: var(--secondary);
    transition: var(--transition);
}
.contact-card-body .phone-number a:hover {
    color: var(--primary);
}

.contact-card-hint {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    margin-top: 10px;
}
.contact-card-hint.whatsapp {
    color: var(--accent-dark);
}

/* Tabela de horários dentro do card */
.contact-schedule-table {
    margin-top: 6px;
}
.schedule-row-v2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 7px 0;
}
.schedule-row-v2 + .schedule-row-v2 {
    border-top: 1px solid var(--gray-100);
}
.schedule-row-v2.highlight {
    border-top: 1px solid rgba(0, 155, 151, 0.15);
}
.schedule-service {
    font-size: 0.88rem;
    color: var(--text);
}
.schedule-hours {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--secondary);
}
.schedule-row-v2.highlight .schedule-hours {
    color: var(--accent-dark);
}

/* Caixa de ação à direita */
.contact-action-box {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 48px 40px;
    text-align: center;
    border: 1px solid var(--gray-100);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 100px;
}

.contact-action-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 28px;
}
.action-logo-icon {
    width: 78px;
    height: 78px;
    border-radius: var(--radius-md);
    background: rgba(0, 155, 151, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 14px;
    box-shadow: 0 5px 15px rgba(0, 155, 151, 0.12);
}
.action-logo-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--secondary);
}
.action-logo-tagline {
    font-size: 0.78rem;
    color: var(--text-light);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

.contact-action-box h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 10px;
}
.contact-action-box > p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 32px;
}

/* Botões de ação */
.contact-action-buttons {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 28px;
    border-radius: var(--radius-full);
    font-size: 0.98rem;
    font-weight: 700;
    transition: all 0.4s ease;
    text-decoration: none;
    cursor: pointer;
}
.action-btn:hover {
    transform: scale(1.04);
}

.action-btn.whatsapp {
    background: var(--secondary);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(38, 70, 83, 0.25);
}
.action-btn.whatsapp:hover {
    box-shadow: 0 8px 30px rgba(38, 70, 83, 0.4);
}

.action-btn.phone {
    background: rgba(212, 168, 75, 0.1);
    color: var(--accent-dark);
    border: 2px solid rgba(212, 168, 75, 0.3);
}
.action-btn.phone:hover {
    background: rgba(212, 168, 75, 0.18);
    border-color: var(--accent);
}

.action-btn.maps {
    background: var(--bg-cream);
    color: var(--secondary);
    border: 1px solid var(--gray-200);
}
.action-btn.maps:hover {
    background: var(--white);
    border-color: var(--secondary);
    color: var(--secondary);
}
.action-btn.maps i {
    color: var(--primary);
}

/* ============================================
   FOOTER - Estilo Elegante
   ============================================ */
.footer {
    background: var(--secondary);
    color: rgba(255,255,255,0.75);
    position: relative;
}

.footer-wave {
    position: relative;
    margin-bottom: -2px;
    color: var(--bg-cream);
}
.footer-wave svg { display: block; width: 100%; height: 70px; }

.footer-main { 
    padding: 70px 0 45px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 45px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 22px;
}
.footer-logo .logo-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    background: rgba(212, 168, 75, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-light);
    font-size: 1.1rem;
}
.footer-logo .logo-name { font-size: 1.15rem; font-weight: 700; color: var(--white); }
.footer-logo .logo-tagline { font-size: 0.68rem; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.5px; }
.footer-logo .logo-text { display: flex; flex-direction: column; }

.footer-brand p {
    font-size: 0.92rem;
    line-height: 1.75;
    margin-bottom: 22px;
}

.footer-social {
    display: flex;
    gap: 12px;
}
.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    transition: var(--transition);
}
.footer-social a:hover {
    background: var(--accent);
    color: var(--secondary);
    transform: translateY(-3px);
}

.footer-links h4, .footer-services h4, .footer-contact h4 {
    color: var(--white);
    font-size: 1.05rem;
    margin-bottom: 22px;
    font-weight: 700;
}

.footer-links ul, .footer-services ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.footer-links a, .footer-services a {
    font-size: 0.92rem;
    color: rgba(255,255,255,0.65);
    transition: var(--transition);
}
.footer-links a:hover, .footer-services a:hover {
    color: var(--accent-light);
    padding-left: 6px;
}

.contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.contact-list li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}
.contact-list li i {
    color: var(--primary-light);
    font-size: 0.9rem;
    margin-top: 4px;
}
.contact-list li div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.contact-list li span, .contact-list li a {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
}
.contact-list li a:hover { color: var(--primary-light); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 20px 0;
}

.footer-bottom-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.4);
    flex-wrap: wrap;
    gap: 10px;
}

.bensvet-link {
    color: rgba(255,255,255,0.4);
    font-size: 0.8rem;
}
.bensvet-link:hover { color: var(--primary-light); }
.bensvet-link strong { font-weight: 700; }

/* ============================================
   WHATSAPP FLOAT
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25d366;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    transition: var(--transition);
    animation: whatsappPulse 2s infinite;
}
.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37,211,102,0.5);
}
@keyframes whatsappPulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
    50% { box-shadow: 0 4px 20px rgba(37,211,102,0.4), 0 0 0 10px rgba(37,211,102,0.1); }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .feature-item { border-right: none; border-bottom: 1px solid var(--gray-100); }
    
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .mvv-grid { grid-template-columns: 1fr; }
    .stats-bar-grid { grid-template-columns: repeat(2, 1fr); }
    
    .urgency-grid { grid-template-columns: 1fr; gap: 40px; }
    
    .team-card-featured {
        grid-template-columns: 1fr;
    }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    
    .testimonial-card {
        min-width: calc((100% - 24px) / 2);
    }
    
    .partners-grid { grid-template-columns: 1fr 1fr; }
    
    .contact-grid-v2 { grid-template-columns: 1fr 1fr; }
    
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
    .about-section { padding-top: 50px; padding-bottom: 50px; }
    .about-grid { margin-top: 30px; gap: 28px; }
    .experience-badge { padding: 10px 14px; bottom: 10px; right: 0; }
    .experience-badge .years { font-size: 1.2rem; }
    .experience-badge .text { font-size: 0.7rem; }
}

@media (max-width: 768px) {
    :root { --section-padding: 70px; }
    
    /* ===== MENU MOBILE ESTILO MEDCLIN ===== */
    .nav-toggle { display: flex; }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        max-width: 85vw;
        height: 100vh;
        height: 100dvh;
        background: var(--white);
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        gap: 0;
        padding: 100px 0 30px 0;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -10px 0 50px rgba(0,0,0,0.2);
        z-index: 1000;
        overflow-y: auto;
    }
    .nav-menu.active { right: 0; }
    
    .nav-menu li {
        border-bottom: 1px solid var(--gray-100);
    }
    .nav-menu li:last-child {
        border-bottom: none;
    }
    
    .nav-link { 
        display: flex;
        align-items: center;
        color: var(--gray-700); 
        padding: 16px 24px;
        font-size: 1rem;
        font-weight: 500;
        border-radius: 0;
        transition: all 0.25s ease;
    }
    .nav-link::after {
        display: none;
    }
    .nav-link:hover { 
        color: var(--secondary);
        background: rgba(0, 155, 151, 0.06);
        padding-left: 32px;
    }
    .nav-link.active { 
        color: var(--secondary);
        background: rgba(0, 155, 151, 0.08);
        border-left: 4px solid var(--primary);
    }
    
    .nav-actions { display: none; }
    
    .nav-actions-mobile { 
        display: block; 
        padding: 24px;
        margin-top: auto;
        border-top: 1px solid var(--gray-100);
    }
    .nav-actions-mobile .btn-whatsapp-nav {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        width: 100%;
        padding: 14px 24px;
        background: var(--secondary);
        color: var(--white);
        border-radius: var(--radius-md);
        font-weight: 600;
        font-size: 0.95rem;
        box-shadow: 0 4px 20px rgba(38, 70, 83, 0.25);
        transition: all 0.4s ease;
    }
    .nav-actions-mobile .btn-whatsapp-nav:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 25px rgba(38, 70, 83, 0.35);
    }
    
    /* Menu header no mobile */
    .nav-menu::before {
        content: 'Menu';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        padding: 24px;
        font-size: 0.75rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 2px;
        color: var(--gray-400);
        background: var(--gray-50);
        border-bottom: 1px solid var(--gray-100);
    }
    
    /* Overlay ativo */
    .nav-overlay.active {
        opacity: 1;
        visibility: visible;
    }
    
    .hero { min-height: 100vh; padding-top: 60px; }
    .hero-title { font-size: 2.2rem; }
    .hero-desc { font-size: 1rem; }
    .hero-stats { 
        display: grid; 
        grid-template-columns: repeat(2, 1fr); 
        gap: 12px;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
    .hero-stats .stat-card {
        padding: 12px 14px;
        gap: 10px;
    }
    .hero-stats .stat-card:last-child {
        grid-column: span 2;
        justify-self: center;
        max-width: 200px;
    }
    .hero-stats .stat-icon {
        width: 38px;
        height: 38px;
        font-size: 0.95rem;
    }
    .hero-stats .stat-number { font-size: 0.9rem; }
    .hero-stats .stat-label { font-size: 0.7rem; }
    
    .features-grid { grid-template-columns: 1fr; }
    .features-bar { margin-top: -20px; }
    
    .about-features { grid-template-columns: 1fr; }
    .about-section { padding-top: 36px; padding-bottom: 36px; }
    .about-grid { margin-top: 18px; gap: 18px; }
    .about-content { padding: 20px; padding-bottom: 20px; }
    .experience-badge { padding: 7px 10px; bottom: 6px; right: 0; }
    .experience-badge .years { font-size: 1rem; }
    .experience-badge .text { font-size: 0.65rem; }
    
    .stats-bar-grid { grid-template-columns: repeat(2, 1fr); }
    
    .services-tabs { gap: 8px; }
    .service-tab { padding: 10px 18px; font-size: 0.85rem; }
    .services-grid { grid-template-columns: 1fr; }
    
    .team-grid { grid-template-columns: 1fr; }
    .team-card-featured { grid-template-columns: 1fr; }
    
    .testimonial-card { min-width: 100%; }
    
    .partners-grid { grid-template-columns: 1fr; }
    
    .contact-grid-v2 { grid-template-columns: 1fr; }
    .contact-action-box { 
        position: static;
        padding: 32px 24px;
    }
    
    .cta-content { flex-direction: column; text-align: center; }
    
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .footer-brand { align-items: center; }
    .footer-logo { justify-content: center; }
    .footer-brand p { text-align: center; }
    .footer-social { justify-content: center; }
    .footer-links h4, .footer-services h4, .footer-contact h4 { text-align: center; }
    .footer-links ul, .footer-services ul { align-items: center; }
    .footer-links a:hover, .footer-services a:hover { padding-left: 0; }
    .contact-list { align-items: center; }
    .contact-list li { flex-direction: column; align-items: center; text-align: center; gap: 6px; }
    .contact-list li i { margin-top: 0; }
    .footer-bottom-row { flex-direction: column; justify-content: center; text-align: center; gap: 10px; }
}

@media (max-width: 480px) {
    :root { --section-padding: 50px; }
    
    /* Menu ainda mais compacto */
    .nav-menu {
        width: 100%;
        max-width: 100%;
        padding-top: 80px;
    }
    .nav-menu::before {
        padding: 20px;
    }
    .nav-link {
        padding: 14px 20px;
        font-size: 0.95rem;
    }
    .nav-actions-mobile {
        padding: 20px;
    }
    
    .hero-title { font-size: 1.8rem; }
    .hero-actions { flex-direction: column; align-items: center; }
    .btn { padding: 12px 22px; font-size: 0.88rem; }
    
    .stat-bar-number { font-size: 2rem; }
    
    .carousel-prev { left: 0; }
    .carousel-next { right: 0; }
    
    .contact-cta-buttons { flex-direction: column; align-items: center; }
    .about-section { padding-top: 18px; padding-bottom: 18px; }
    .about-grid { margin-top: 8px; gap: 10px; }
    .about-content { padding: 16px; }
    .about-feature { padding: 10px 12px; font-size: 0.85rem; }
    .experience-badge { padding: 4px 7px; bottom: 2px; right: 0; }
    .experience-badge .years { font-size: 0.8rem; }
    .experience-badge .text { font-size: 0.55rem; }
    
    /* Stats em 1 coluna */
    .stats-bar-grid { grid-template-columns: 1fr; }
}

/* ============================================
   CONTACT INFO SECTION (Cards)
   ============================================ */
.contact-info-section {
    padding: var(--section-padding) 0;
    background: var(--gray-50);
    position: relative;
}

.contact-info-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' fill='%232a9d8f'%3E%3Cpath d='M20 35c3.3 0 6-3.4 6-7.5S23.3 20 20 20s-6 3.4-6 7.5S16.7 35 20 35zm15-10c3.3 0 6-3.4 6-7.5S38.3 10 35 10s-6 3.4-6 7.5S31.7 25 35 25zm30 0c3.3 0 6-3.4 6-7.5S68.3 10 65 10s-6 3.4-6 7.5S61.7 25 65 25zm15 10c3.3 0 6-3.4 6-7.5S83.3 20 80 20s-6 3.4-6 7.5S76.7 35 80 35zm-30 5c-8.3 0-15 8.1-15 18s6.7 18 15 18 15-8.1 15-18-6.7-18-15-18z'/%3E%3C/svg%3E");
    background-size: 140px 140px;
    opacity: 0.035;
    pointer-events: none;
    z-index: 0;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
}

.contact-info-card {
    background: var(--white);
    padding: 32px 24px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid transparent;
}

.contact-info-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.contact-info-icon {
    width: 64px;
    height: 64px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--white);
    font-size: 1.5rem;
    box-shadow: 0 8px 20px rgba(0, 155, 151, 0.3);
}

.contact-info-card h4 {
    font-size: 1.1rem;
    color: var(--secondary);
    margin-bottom: 12px;
    font-weight: 700;
}

.contact-info-card p {
    color: var(--gray-600);
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.contact-info-card p a {
    color: var(--gray-700);
    font-weight: 500;
    transition: var(--transition);
}

.contact-info-card p a:hover {
    color: var(--primary);
}

.contact-info-hint {
    display: inline-block;
    margin-top: 12px;
    font-size: 0.8rem;
    color: var(--gray-500);
    background: var(--gray-100);
    padding: 6px 12px;
    border-radius: 20px;
}

.contact-info-hint.whatsapp {
    background: #dcf8c6;
    color: #128c7e;
}

/* ============================================
   FAQ + LOCATION SECTION (Duas Colunas - Estilo DomLab)
   ============================================ */
.faq-location-section {
    padding: var(--section-padding) 0;
    background: var(--white);
    position: relative;
}

.faq-location-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' fill='%232a9d8f'%3E%3Cpath d='M20 35c3.3 0 6-3.4 6-7.5S23.3 20 20 20s-6 3.4-6 7.5S16.7 35 20 35zm15-10c3.3 0 6-3.4 6-7.5S38.3 10 35 10s-6 3.4-6 7.5S31.7 25 35 25zm30 0c3.3 0 6-3.4 6-7.5S68.3 10 65 10s-6 3.4-6 7.5S61.7 25 65 25zm15 10c3.3 0 6-3.4 6-7.5S83.3 20 80 20s-6 3.4-6 7.5S76.7 35 80 35zm-30 5c-8.3 0-15 8.1-15 18s6.7 18 15 18 15-8.1 15-18-6.7-18-15-18z'/%3E%3C/svg%3E");
    background-size: 140px 140px;
    opacity: 0.035;
    pointer-events: none;
    z-index: 0;
}

.faq-location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.column-title {
    font-size: 1.8rem;
    color: var(--secondary);
    margin-bottom: 12px;
}

.column-desc {
    color: var(--gray-600);
    margin-bottom: 24px;
}

/* FAQ Column */
.faq-column {
    flex: 1;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--gray-50);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--primary);
}

.faq-item.active {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-family);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--secondary);
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--primary);
}

.faq-question span {
    flex: 1;
    padding-right: 16px;
}

.faq-question i {
    font-size: 0.8rem;
    color: var(--primary);
    transition: var(--transition);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 20px 20px;
    color: var(--gray-600);
    line-height: 1.7;
    font-size: 0.9rem;
}

/* Location Column */
.location-column {
    display: flex;
    flex-direction: column;
}

.contact-map {
    flex: 1;
    min-height: 350px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    margin-bottom: 20px;
}

.contact-map iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 350px;
}

.contact-map-info {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.map-info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gray-600);
    font-size: 0.95rem;
}

.map-info-item i {
    width: 36px;
    height: 36px;
    background: var(--primary-gradient);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

/* ============================================
   CTA SECTION (Contact)
   ============================================ */
.cta-section {
    padding: 60px 0;
    background: var(--primary-gradient);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' fill='%23ffffff'%3E%3Cpath d='M20 35c3.3 0 6-3.4 6-7.5S23.3 20 20 20s-6 3.4-6 7.5S16.7 35 20 35zm15-10c3.3 0 6-3.4 6-7.5S38.3 10 35 10s-6 3.4-6 7.5S31.7 25 35 25zm30 0c3.3 0 6-3.4 6-7.5S68.3 10 65 10s-6 3.4-6 7.5S61.7 25 65 25zm15 10c3.3 0 6-3.4 6-7.5S83.3 20 80 20s-6 3.4-6 7.5S76.7 35 80 35zm-30 5c-8.3 0-15 8.1-15 18s6.7 18 15 18 15-8.1 15-18-6.7-18-15-18z'/%3E%3C/svg%3E");
    background-size: 100px 100px;
    opacity: 0.1;
    pointer-events: none;
}

.cta-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.8rem;
}

.cta-text h2 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 4px;
}

.cta-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
}

.cta-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
    padding: 14px 28px;
    border-radius: var(--radius-xl);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-whatsapp:hover {
    background: #128c7e;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

.btn-white {
    background: var(--white);
    color: var(--primary);
    padding: 14px 28px;
    border-radius: var(--radius-xl);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.btn-white:hover {
    background: var(--gray-100);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* ============================================
   CONTACT PAGE RESPONSIVE
   ============================================ */
@media (max-width: 992px) {
    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .faq-location-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .contact-map {
        min-height: 300px;
    }
    
    .contact-map iframe {
        min-height: 300px;
    }
}

@media (max-width: 576px) {
    .contact-info-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info-card {
        padding: 24px 20px;
    }
    
    .column-title {
        font-size: 1.5rem;
    }
    
    .faq-question {
        padding: 16px 16px;
        font-size: 0.9rem;
    }
    
    .faq-answer p {
        padding: 0 16px 16px;
        font-size: 0.85rem;
    }
    
    .contact-map {
        min-height: 250px;
    }
    
    .contact-map iframe {
        min-height: 250px;
    }
    
    .contact-map-info {
        flex-direction: column;
        gap: 12px;
    }
    
    .cta-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .cta-actions .btn-whatsapp,
    .cta-actions .btn-white {
        justify-content: center;
        width: 100%;
    }
}

/* ============================================
   HOME VISIT SECTION - Consulta Domiciliar
   ============================================ */

.home-visit-section {
    padding: 80px 0;
    background: transparent;
    position: relative;
}

.home-visit-section .section-header {
    margin-bottom: 50px;
}

.home-visit-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.visit-card {
    background: var(--white);
    border-radius: 16px;
    padding: 28px 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--gray-200);
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.visit-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(0, 155, 151, 0.15);
}

.visit-card-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 1.4rem;
    color: white;
}

.visit-card h3 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 8px;
}

.visit-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.5;
    margin: 0;
}

.home-visit-cta {
    text-align: center;
}

/* Home Visit Responsivo */
@media (max-width: 992px) {
    .home-visit-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .home-visit-section {
        padding: 60px 0;
    }
    
    .home-visit-cards {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    
    .visit-card {
        padding: 20px 14px;
    }
    
    .visit-card-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        margin-bottom: 12px;
    }
    
    .visit-card h3 {
        font-size: 0.95rem;
    }
    
    .visit-card p {
        font-size: 0.8rem;
    }
}
