﻿/* ===================================
   CSS Reset & Base
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Laboclin Colors */
    --primary: #729C10;
    --primary-dark: #5a7d0d;
    --primary-light: #96AD5A;
    --secondary: #666666;
    --gray-light: #9F9F9E;
    --white: #FEFEFE;
    --background: #FFFFFF;
    --text: #333333;
    --text-light: #666666;
    --whatsapp: #25D366;
    --whatsapp-hover: #128C7E;
    
    /* Spacing */
    --container-width: 1200px;
    --section-padding: 5rem 1.5rem;
    --section-padding-mobile: 3rem 1.5rem;
    
    /* Typography */
    --font-body: 'Inter', sans-serif;
    --font-heading: 'Poppins', sans-serif;
    
    /* Transitions */
    --transition: all 0.3s ease;
}

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

body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--background);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

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

a {
    text-decoration: none;
    color: inherit;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* ===================================
   Typography
   =================================== */
.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

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

/* ===================================
   Buttons
   =================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
    white-space: nowrap;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.btn-primary:hover,
.btn-primary:focus {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(114, 156, 16, 0.3);
}

.btn-primary-nav {
    background: var(--primary);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
}

.btn-primary-nav:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

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

.btn-outline:hover,
.btn-outline:focus {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background: var(--whatsapp);
    color: var(--white);
    border-color: var(--whatsapp);
}

.btn-whatsapp:hover,
.btn-whatsapp:focus {
    background: var(--whatsapp-hover);
    border-color: var(--whatsapp-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

/* ===================================
   Header/Navbar
   =================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    z-index: 1000;
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

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

.nav-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary);
    z-index: 1001;
}

.site-logo {
    height: 48px;
    width: auto;
    max-width: 160px;
    display: block;
    object-fit: contain;
}

.logo-highlight {
    color: var(--primary);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}

.nav-link {
    font-weight: 500;
    color: var(--text);
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.nav-link:hover,
.nav-link:focus {
    color: var(--primary);
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    z-index: 1001;
}

.nav-toggle-icon,
.nav-toggle-icon::before,
.nav-toggle-icon::after {
    width: 25px;
    height: 3px;
    background: var(--secondary);
    border-radius: 3px;
    transition: var(--transition);
}

.nav-toggle-icon::before,
.nav-toggle-icon::after {
    content: '';
    display: block;
}

.nav-toggle-icon::before {
    transform: translateY(-8px);
}

.nav-toggle-icon::after {
    transform: translateY(5px);
}

/* ===================================
   Hero Section
   =================================== */
.hero {
    padding: calc(80px + 5rem) 0 5rem;
    background: linear-gradient(135deg, rgba(114, 156, 16, 0.05) 0%, rgba(255, 255, 255, 1) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-logo-wrapper {
    display: none;
}

.hero-side-logo {
    max-width: 450px;
    width: 100%;
    height: auto;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* ===================================
   Resultados Section
   =================================== */
.resultados {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    text-align: center;
}

.resultados .section-title {
    color: var(--white);
}

.resultados-text {
    font-size: 1.125rem;
    max-width: 700px;
    margin: 0 auto 2rem;
    line-height: 1.8;
}

.resultados .btn-primary {
    background: var(--white);
    color: var(--primary);
}

.resultados .btn-primary:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* ===================================
   Sobre Section
   =================================== */
.sobre {
    padding: var(--section-padding);
}

.sobre-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.sobre-text {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.sobre-image img {
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* ===================================
   Serviços Section
   =================================== */
.servicos {
    padding: var(--section-padding);
    background: var(--white);
}

.servicos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.servico-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid #f0f0f0;
    transition: var(--transition);
}

.servico-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(114, 156, 16, 0.15);
}

.servico-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.servico-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 0.75rem;
}

.servico-description {
    color: var(--text-light);
    line-height: 1.6;
}

/* ===================================
   Diferenciais Section
   =================================== */
.diferenciais {
    padding: var(--section-padding);
    background: linear-gradient(135deg, rgba(114, 156, 16, 0.05) 0%, rgba(255, 255, 255, 1) 100%);
}

.diferenciais-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.diferencial-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border-top: 4px solid var(--primary);
}

.diferencial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(114, 156, 16, 0.2);
}

.diferencial-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    opacity: 0.3;
    margin-bottom: 1rem;
}

.diferencial-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 1rem;
}

.diferencial-description {
    color: var(--text-light);
    line-height: 1.7;
}

/* ===================================
   Contato Section
   =================================== */
.contato {
    padding: 3rem 2rem;
    background: var(--white);
}

.contato-logo-wrapper {
    text-align: center;
    margin-bottom: 1.5rem;
}

.contato-logo {
    max-width: 180px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.contato-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contato-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contato-icon {
    flex-shrink: 0;
    color: var(--primary);
}

.contato-label {
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

.contato-link {
    color: var(--primary);
    font-weight: 500;
    transition: var(--transition);
}

.contato-link:hover {
    text-decoration: underline;
}

.contato-cta {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 3rem;
    border-radius: 12px;
    color: var(--white);
}

.contato-cta-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.contato-cta-text {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* ===================================
   Footer
   =================================== */
.footer {
    background: var(--secondary);
    color: var(--white);
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 2rem;
}

.footer-brand .logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-brand-logo {
    height: 56px;
    width: auto !important;
    max-width: 220px;
    object-fit: contain;
    display: block;
    margin-bottom: 0.75rem;
    background: #ffffff;
    border-radius: 10px;
    padding: 0.4rem 0.7rem;
}

.footer-tagline {
    margin-top: 0.5rem;
    opacity: 0.8;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-link {
    transition: var(--transition);
    opacity: 0.9;
}

.footer-link:hover {
    opacity: 1;
    color: var(--primary-light);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    opacity: 0.8;
    font-size: 0.9rem;
}

.footer-dev {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dev-logo {
    height: 26px;
    width: auto;
    display: block;
}

.dev-link {
    display: inline-flex;
    align-items: center;
    transition: var(--transition);
}

.dev-link:hover {
    transform: translateY(-1px);
    opacity: 0.9;
}

/* ===================================
   WhatsApp Floating Button
   =================================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--whatsapp);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    background: var(--whatsapp-hover);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.6); }
}

/* ===================================
   Exames Page
   =================================== */
/* ===================================
   Exames Page — Hero
   =================================== */
.exames-hero {
    padding: calc(80px + 4rem) 0 3.5rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.exames-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,0.07) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
}

.exames-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3);
    color: var(--white);
    font-size: 0.82rem;
    font-weight: 600;
    padding: 0.4rem 1.1rem;
    border-radius: 999px;
    margin-bottom: 1.25rem;
    position: relative;
}

.exames-hero-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
}

.exames-hero-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 2.25rem;
    line-height: 1.7;
    position: relative;
}

.exames-hero-stats {
    display: inline-flex;
    align-items: center;
    gap: 2rem;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.22);
    border-radius: 14px;
    padding: 1.1rem 2.25rem;
    position: relative;
}

.eh-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.15rem;
}

.eh-stat strong {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
}

.eh-stat span {
    font-size: 0.73rem;
    opacity: 0.8;
    font-weight: 500;
}

.eh-stat-div {
    width: 1px;
    height: 36px;
    background: rgba(255,255,255,0.25);
    flex-shrink: 0;
}

/* Exames Content */
.exames-content {
    padding: var(--section-padding);
}

/* Insight cards */
.exames-insights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}

.insight-card {
    background: var(--white);
    border: 1px solid rgba(114,156,16,0.15);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 4px 16px rgba(114,156,16,0.07);
    transition: var(--transition);
}

.insight-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(114,156,16,0.12);
    border-color: rgba(114,156,16,0.3);
}

.insight-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: var(--white);
}

.insight-icon--catalog { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); }
.insight-icon--filter  { background: linear-gradient(135deg, #3b82f6, #1d4ed8); }
.insight-icon--whatsapp { background: linear-gradient(135deg, #25D366, #128C7E); }

.insight-card h3 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.4rem;
}

.insight-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Quick actions */
.exames-quick-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.9rem;
    margin-bottom: 2.5rem;
}

/* Search */
.exames-search {
    display: flex;
    gap: 0.75rem;
    max-width: 640px;
    margin: 0 auto 3rem;
}

.search-input-wrapper {
    flex: 1;
    position: relative;
}

.search-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
    pointer-events: none;
}

.search-input {
    width: 100%;
    padding: 0.9rem 1rem 0.9rem 2.85rem;
    border: 2px solid var(--border-light, #e5e7eb);
    border-radius: 10px;
    font-size: 0.97rem;
    font-family: inherit;
    background: var(--white);
    transition: var(--transition);
    color: var(--text);
}

.search-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(114,156,16,0.12);
}

/* A-Z Filter */
.exames-filter {
    margin-bottom: 3rem;
}

.filter-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    margin-bottom: 1rem;
}

.az-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    justify-content: center;
}

.az-btn {
    width: 42px;
    height: 42px;
    border: 1.5px solid var(--border-light, #e5e7eb);
    border-radius: 10px;
    background: var(--white);
    color: var(--text);
    font-weight: 700;
    font-size: 0.9rem;
    transition: var(--transition);
    cursor: pointer;
}

.az-btn:hover:not(:disabled) {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(114,156,16,0.25);
}

.az-btn.active {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    border-color: var(--primary-dark);
    box-shadow: 0 4px 14px rgba(114,156,16,0.3);
}

.az-btn:disabled {
    opacity: 0.22;
    cursor: not-allowed;
}

/* Top 10 */
.top10-section {
    margin-bottom: 3.5rem;
}

.top10-section .section-title {
    text-align: center;
    margin-bottom: 2rem;
}

/* Results header */
.results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(114,156,16,0.1);
}

.results-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text);
}

.results-count {
    background: rgba(114,156,16,0.08);
    color: var(--primary-dark);
    font-size: 0.82rem;
    font-weight: 700;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
}

/* Exam Grid */
.exames-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.25rem;
    margin-bottom: 3rem;
}

/* Exam Card */
.exam-card {
    background: var(--white);
    border: 1.5px solid rgba(114,156,16,0.12);
    border-radius: 16px;
    padding: 1.35rem 1.5rem;
    transition: var(--transition);
    cursor: pointer;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.exam-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--primary-dark));
}

.exam-card--sangue::before  { background: linear-gradient(90deg, #ef4444, #b91c1c); }
.exam-card--urina::before   { background: linear-gradient(90deg, #f59e0b, #d97706); }
.exam-card--fezes::before   { background: linear-gradient(90deg, #8b5e3c, #5c3d1e); }
.exam-card--swab::before    { background: linear-gradient(90deg, #0ea5e9, #0369a1); }

.exam-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(114,156,16,0.14);
}

.exam-card:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

.exam-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
}

.exam-letter-badge {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* Material chip on card */
.exam-mc {
    font-size: 0.72rem;
    font-weight: 600;
    padding: 0.22rem 0.7rem;
    border-radius: 999px;
    white-space: nowrap;
}

.exam-mc--sangue  { background: #fee2e2; color: #b91c1c; }
.exam-mc--urina   { background: #fef3c7; color: #92400e; }
.exam-mc--fezes   { background: #f5e6dc; color: #7c3d11; }
.exam-mc--swab    { background: #e0f2fe; color: #075985; }
.exam-mc--outro   { background: rgba(114,156,16,0.1); color: var(--primary-dark); }

.exam-name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.98rem;
    color: var(--text);
    line-height: 1.4;
}

.exam-card-meta {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.exam-code-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.78rem;
    color: var(--text-light);
    background: rgba(0,0,0,0.04);
    padding: 0.2rem 0.6rem;
    border-radius: 6px;
    font-weight: 500;
}

.exam-prazo-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.75rem;
    color: var(--primary-dark);
    background: rgba(114,156,16,0.08);
    padding: 0.2rem 0.6rem;
    border-radius: 6px;
    font-weight: 600;
}

.exam-card-cta {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary);
    margin-top: 0.35rem;
    opacity: 0;
    transition: opacity 0.2s;
}

.exam-card:hover .exam-card-cta {
    opacity: 1;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 4rem 2rem;
}

.empty-state svg {
    margin: 0 auto 1.5rem;
    color: var(--gray-light, #9ca3af);
}

.empty-state p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

/* ===================================
   Modal
   =================================== */
.modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.72);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    background: #f8f9fb;
    border-radius: 20px;
    max-width: 720px;
    width: 100%;
    max-height: 92vh;
    overflow-y: auto;
    z-index: 2001;
    animation: modalSlideUp 0.3s cubic-bezier(0.34,1.56,0.64,1);
    box-shadow: 0 24px 60px rgba(0,0,0,0.3);
}

@keyframes modalSlideUp {
    from { opacity: 0; transform: translateY(40px) scale(0.97); }
    to   { opacity: 1; transform: translateY(0)   scale(1); }
}

/* Close button */
.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(255,255,255,0.25);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 10;
    border: 1px solid rgba(255,255,255,0.25);
}

.modal-close:hover {
    background: rgba(255,255,255,0.4);
    transform: rotate(90deg);
}

/* Modal Header */
.modal-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 2.25rem 2rem 1.75rem;
    position: relative;
    overflow: hidden;
}

.modal-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1px);
    background-size: 22px 22px;
    pointer-events: none;
}

.modal-header-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.9rem;
    position: relative;
}

.modal-letter-badge {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.22);
    border: 2px solid rgba(255,255,255,0.4);
    color: var(--white);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    flex-shrink: 0;
}

.modal-code-tag {
    background: rgba(255,255,255,0.18);
    color: rgba(255,255,255,0.9);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.3rem 0.85rem;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.28);
}

.modal-title {
    font-family: var(--font-heading);
    font-size: 1.55rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.3;
    padding-right: 2.5rem;
    margin-bottom: 0.9rem;
    position: relative;
}

/* Material chip in modal */
.modal-material-chip {
    position: relative;
}

.modal-mc {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.82rem;
    font-weight: 600;
    padding: 0.4rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.5);
    max-width: 100%;
}

.modal-mc--sangue  { background: rgba(239,68,68,0.18); color: #fecaca; border-color: rgba(239,68,68,0.3); }
.modal-mc--urina   { background: rgba(245,158,11,0.18); color: #fde68a; border-color: rgba(245,158,11,0.35); }
.modal-mc--fezes   { background: rgba(139,92,60,0.2);  color: #ddb899; border-color: rgba(139,92,60,0.35); }
.modal-mc--swab    { background: rgba(14,165,233,0.18); color: #bae6fd; border-color: rgba(14,165,233,0.3); }
.modal-mc--outro   { background: rgba(255,255,255,0.15); color: rgba(255,255,255,0.9); border-color: rgba(255,255,255,0.28); }

/* Prazo bar */
/* Prazo bar — JS renders <svg> + <span> directly inside .modal-prazo-bar */
.modal-prazo-bar {
    background: rgba(114,156,16,0.07);
    border-bottom: 1px solid rgba(114,156,16,0.12);
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.75rem 2rem;
    color: var(--primary-dark);
    font-size: 0.9rem;
}

.modal-prazo-bar svg {
    flex-shrink: 0;
    color: var(--primary);
}

.modal-prazo-bar strong {
    font-weight: 700;
    color: var(--primary-dark);
}

/* Modal Body */
.modal-body {
    padding: 1.75rem 2rem 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Individual sections */
.modal-section {
    background: var(--white);
    border-radius: 14px;
    padding: 1.35rem 1.5rem;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.modal-section-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.85rem;
    padding-bottom: 0.65rem;
    border-bottom: 1px solid rgba(0,0,0,0.07);
}

.modal-section--preparo .modal-section-label { color: #d97706; }
.modal-section--preparo .modal-section-label svg { color: #d97706; }
.modal-section--preparo { border-left: 4px solid #f59e0b; }

.modal-section--coleta .modal-section-label { color: #16a34a; }
.modal-section--coleta .modal-section-label svg { color: #16a34a; }
.modal-section--coleta { border-left: 4px solid #22c55e; }

.modal-section--sinonimos .modal-section-label { color: var(--primary); }
.modal-section--sinonimos .modal-section-label svg { color: var(--primary); }
.modal-section--sinonimos { border-left: 4px solid var(--primary); }

.modal-section-text {
    font-size: 0.93rem;
    color: var(--text);
    line-height: 1.8;
}

.modal-section-text sub {
    font-size: 0.75em;
}

.modal-section-text strong {
    color: var(--text);

}

.modal-sinonimos-text {
    color: var(--primary-dark);
    font-weight: 600;
    font-size: 0.9rem;
}

/* Health Info block */
/* Health Info block */
.modal-health-info {
    background: linear-gradient(135deg, #f0f9e8 0%, #f8fef2 100%);
    border: 1.5px solid rgba(114,156,16,0.2);
    border-radius: 16px;
    padding: 1.5rem;
    margin: 1rem 2rem;
}

.mhi-header {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary-dark);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 0.85rem;
}

.mhi-header svg {
    color: var(--primary);
    flex-shrink: 0;
}

.mhi-why {
    font-size: 0.95rem;
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.mhi-importance {
    display: flex;
    gap: 0.65rem;
    background: rgba(114,156,16,0.07);
    border-radius: 10px;
    padding: 0.9rem 1rem;
    align-items: flex-start;
}

.mhi-importance-icon {
    width: 28px;
    height: 28px;
    background: var(--primary);
    color: var(--white);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
}

.mhi-importance p {
    font-size: 0.88rem;
    color: var(--primary-dark);
    line-height: 1.65;
    font-weight: 500;
}

/* Tips Section */
.modal-tips {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: #fffbeb;
    border: 1.5px solid #fcd34d;
    border-radius: 14px;
    padding: 1.25rem 1.5rem;
    margin: 0.5rem 2rem 0;
}

.tips-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: #fbbf24;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.tips-content {
    flex: 1;
}

.tips-title {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    color: #92400e;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 0.75rem 0;
}

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

.tips-list li {
    font-size: 0.9rem;
    color: #78350f;
    line-height: 1.65;
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.5rem;
}

.tips-list li:last-child { margin-bottom: 0; }

.tips-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #f59e0b;
    font-weight: 700;
}

/* Modal Footer */
.modal-footer {
    padding: 1.5rem 2rem;
    border-top: 1px solid rgba(0,0,0,0.07);
    background: var(--white);
    border-radius: 0 0 20px 20px;
    margin-top: 1.5rem;
}

.modal-footer-note {
    font-size: 0.88rem;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 1rem;
}

.modal-cta-btn {
    width: 100%;
    justify-content: center;
    padding: 1rem 2rem;
    font-size: 1.05rem;
    border-radius: 12px;
}
/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 1024px) {
    .section-title {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-container,
    .sobre-grid,
    .contato-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-image {
        order: -1;
    }

    .exames-insights {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 3rem 1.5rem;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        gap: 2rem;
        padding: 2rem;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
        transition: var(--transition);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .nav-link {
        font-size: 1.125rem;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .hero {
        padding: calc(80px + 3rem) 0 3rem;
        min-height: auto;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-cta .btn {
        width: 100%;
    }
    
    .servicos-grid,
    .diferenciais-grid {
        grid-template-columns: 1fr;
    }
    
    .exames-hero-title {
        font-size: 1.9rem;
    }

    .exames-hero-stats {
        flex-wrap: wrap;
        gap: 1rem 1.5rem;
        padding: 1rem 1.5rem;
    }

    .exames-insights {
        grid-template-columns: 1fr;
    }

    .exames-quick-actions {
        flex-direction: column;
    }

    .exames-quick-actions .btn {
        width: 100%;
    }
    
    .exames-search {
        flex-direction: column;
    }
    
    .exames-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }

    .footer-bottom {
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }

    .footer-dev {
        justify-content: center;
    }
    
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
    }
    
    /* Modal responsive */
    .modal-content {
        width: 98%;
        max-height: 92vh;
        border-radius: 16px;
    }

    .modal-header {
        padding: 1.5rem 1.25rem 1.25rem;
    }

    .modal-title {
        font-size: 1.25rem;
        padding-right: 2.25rem;
    }

    .modal-body {
        padding: 1.25rem 1.25rem 0.5rem;
    }

    .modal-health-info {
        margin: 0.75rem 1.25rem;
        padding: 1.25rem;
    }

    .modal-tips {
        margin: 0.5rem 1.25rem 0;
        flex-direction: column;
        gap: 0.75rem;
    }

    .modal-footer {
        padding: 1.25rem;
    }

    .mhi-importance {
        flex-direction: column;
    }

    .modal-prazo-bar {
        padding: 0.65rem 1.25rem;
    }
    
    /* Logo responsiva */
    .hero-side-logo {
        max-width: 300px;
    }
    
    .contato-logo {
        max-width: 140px;
    }
}

@media (max-width: 480px) {
    .exames-hero-title {
        font-size: 1.6rem;
    }

    .exames-hero-stats {
        gap: 0.75rem 1rem;
        padding: 0.85rem 1.25rem;
    }

    .eh-stat strong {
        font-size: 1.2rem;
    }

    .az-filter {
        gap: 0.25rem;
    }
    
    .az-btn {
        width: 38px;
        height: 38px;
        font-size: 0.9rem;
    }
    
    .results-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

    /* ===================================
       PREMIUM VERSION - EXTRA STYLES
       =================================== */

    /* Hero Trust Highlights */
    .hero-trust {
        display: flex;
        gap: 2rem;
        margin-top: 3rem;
        flex-wrap: wrap;
    }

    .trust-item {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        color: var(--text-light);
        font-size: 0.95rem;
    }

    .trust-item svg {
        color: var(--primary);
        flex-shrink: 0;
    }

    /* Resultados Premium */
    .resultados-header {
        text-align: center;
        margin-bottom: 3rem;
    }

    .section-title-white {
        font-family: var(--font-heading);
        font-size: 2.5rem;
        font-weight: 700;
        color: var(--white);
        margin-bottom: 1rem;
    }

    .resultados-steps {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
        margin-bottom: 3rem;
    }

    .step-card {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        border-radius: 12px;
        padding: 2rem;
        border: 2px solid rgba(255, 255, 255, 0.2);
        text-align: center;
        transition: var(--transition);
    }

    .step-card:hover {
        background: rgba(255, 255, 255, 0.15);
        border-color: rgba(255, 255, 255, 0.4);
        transform: translateY(-5px);
    }

    .step-number {
        width: 60px;
        height: 60px;
        background: var(--white);
        color: var(--primary);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.75rem;
        font-weight: 700;
        margin: 0 auto 1.5rem;
    }

    .step-title {
        font-family: var(--font-heading);
        font-size: 1.25rem;
        font-weight: 600;
        color: var(--white);
        margin-bottom: 0.75rem;
    }

    .step-description {
        color: var(--white);
        opacity: 0.9;
    }

    .resultados-cta {
        text-align: center;
    }

    .btn-primary-white {
        background: var(--white);
        color: var(--primary);
        border-color: var(--white);
    }

    .btn-primary-white:hover {
        background: rgba(255, 255, 255, 0.9);
        transform: translateY(-3px);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    }

    .resultados-security {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        margin-top: 1.5rem;
        color: var(--white);
        font-size: 0.9rem;
        opacity: 0.9;
    }

    .resultados-security svg {
        flex-shrink: 0;
    }

    /* Servicos Grid Premium */
    .servicos-grid-premium {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
        margin-bottom: 3rem;
    }

    .servicos-cta {
        text-align: center;
        padding-top: 2rem;
    }

    .btn-outline-large {
        padding: 1rem 2.5rem;
        font-size: 1.125rem;
    }

    /* Diferenciais Grid Premium */
    .diferenciais-grid-premium {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 2rem;
    }

    /* Área Atendida */
    .area-atendida {
        padding: var(--section-padding);
        background: var(--white);
    }

    .areas-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
        max-width: 800px;
        margin: 0 auto 2rem;
    }

    .area-item {
        display: flex;
        align-items: center;
        gap: 1rem;
        padding: 1rem 1.5rem;
        background: rgba(114, 156, 16, 0.05);
        border-radius: 8px;
        border-left: 4px solid var(--primary);
    }

    a.area-item-link {
        text-decoration: none;
        color: inherit;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    a.area-item-link:hover {
        background: rgba(114, 156, 16, 0.12);
        border-left-color: var(--primary-dark);
        transform: translateX(4px);
        box-shadow: 0 4px 12px rgba(114, 156, 16, 0.15);
    }

    a.area-item-link:hover svg {
        transform: scale(1.15);
    }

    .area-item svg {
        color: var(--primary);
        flex-shrink: 0;
        transition: transform 0.3s ease;
    }

    .area-note {
        text-align: center;
        color: var(--text-light);
        font-size: 0.95rem;
        font-style: italic;
    }

    /* Depoimentos */
    .depoimentos {
        padding: var(--section-padding);
        background: linear-gradient(135deg, rgba(114, 156, 16, 0.05) 0%, rgba(255, 255, 255, 1) 100%);
    }

    .depoimentos-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 2rem;
    }

    .depoimento-card {
        background: var(--white);
        padding: 2rem;
        border-radius: 12px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
        transition: var(--transition);
    }

    .depoimento-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(114, 156, 16, 0.15);
    }

    .depoimento-rating {
        display: flex;
        gap: 0.25rem;
        margin-bottom: 1.5rem;
        color: #FFB800;
    }

    .depoimento-text {
        color: var(--text-light);
        line-height: 1.7;
        margin-bottom: 1.5rem;
        font-style: italic;
    }

    .depoimento-author {
        font-weight: 600;
        color: var(--secondary);
    }

    /* Como Chegar */
    .como-chegar {
        padding: var(--section-padding);
        background: var(--white);
    }

    .chegar-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        margin-top: 3rem;
    }

    .chegar-item {
        display: flex;
        gap: 1.5rem;
        margin-bottom: 2.5rem;
    }

    .chegar-item svg {
        color: var(--primary);
        flex-shrink: 0;
    }

    .chegar-label {
        font-family: var(--font-heading);
        font-size: 1.25rem;
        font-weight: 600;
        color: var(--secondary);
        margin-bottom: 0.75rem;
    }

    .chegar-text {
        color: var(--text-light);
        line-height: 1.7;
    }

    .chegar-map iframe {
        width: 100%;
        height: 100%;
        min-height: 400px;
    }

    /* FAQ */
    .faq {
        padding: var(--section-padding);
        background: linear-gradient(135deg, rgba(114, 156, 16, 0.05) 0%, rgba(255, 255, 255, 1) 100%);
    }

    .faq-list {
        max-width: 900px;
        margin: 0 auto;
    }

    .faq-item {
        background: var(--white);
        border-radius: 12px;
        margin-bottom: 1rem;
        border: 2px solid #f0f0f0;
        transition: var(--transition);
    }

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

    .faq-item[open] {
        border-color: var(--primary);
    }

    .faq-question {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 1.5rem 2rem;
        cursor: pointer;
        font-family: var(--font-heading);
        font-size: 1.125rem;
        font-weight: 600;
        color: var(--secondary);
        list-style: none;
        user-select: none;
    }

    .faq-question::-webkit-details-marker {
        display: none;
    }

    .faq-icon {
        flex-shrink: 0;
        color: var(--primary);
        transition: var(--transition);
    }

    .faq-item[open] .faq-icon {
        transform: rotate(180deg);
    }

    .faq-answer {
        padding: 0 2rem 2rem;
        color: var(--text-light);
        line-height: 1.8;
    }

    .faq-answer p {
        margin: 0;
    }

    /* Contato Premium */
    .contato-grid-premium {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        margin-top: 3rem;
    }

    .contato-info-premium {
        display: flex;
        flex-direction: column;
        gap: 2.5rem;
    }

    .contato-icon-large {
        flex-shrink: 0;
        color: var(--primary);
    }

    .contato-text {
        color: var(--text-light);
        line-height: 1.7;
    }

    .contato-cta-premium {
        background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
        padding: 3.5rem;
        border-radius: 16px;
        color: var(--white);
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .btn-large {
        padding: 1.125rem 2.5rem;
        font-size: 1.125rem;
    }

    /* Footer Grid Premium */
    .footer-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 3rem;
        padding-bottom: 3rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        margin-bottom: 2rem;
    }

    .footer-col {
        display: flex;
        flex-direction: column;
    }

    .footer-logo {
        font-family: var(--font-heading);
        font-size: 1.5rem;
        font-weight: 700;
        margin-bottom: 0.75rem;
    }

    .footer-description {
        opacity: 0.8;
        font-size: 0.95rem;
        margin-top: 0.75rem;
        line-height: 1.6;
    }

    .footer-title {
        font-family: var(--font-heading);
        font-size: 1.125rem;
        font-weight: 600;
        margin-bottom: 1.25rem;
    }

    .footer-links-list {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }

    .footer-contact {
        margin-bottom: 1.5rem;
        opacity: 0.9;
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .footer-local {
        opacity: 0.7;
        font-size: 0.9rem;
    }

    /* ===================================
       Responsive Design - Premium Specific
       =================================== */
    @media (max-width: 1024px) {
        .chegar-content,
        .contato-grid-premium {
            grid-template-columns: 1fr;
        }
    
        .footer-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 768px) {
        .section-title-white {
            font-size: 2rem;
        }
    
        .hero-trust {
            gap: 1rem;
        }
    
        .trust-item {
            width: 100%;
            font-size: 0.9rem;
        }
    
        .resultados-steps {
            grid-template-columns: 1fr;
        }
    
        .servicos-grid-premium,
        .diferenciais-grid-premium,
        .depoimentos-grid {
            grid-template-columns: 1fr;
        }
    
        .footer-grid {
            grid-template-columns: 1fr;
            gap: 2rem;
        }

        .footer-local {
            text-align: center;
        }
    }

    @media (max-width: 480px) {
        .step-number {
            width: 50px;
            height: 50px;
            font-size: 1.5rem;
        }
    
        .faq-question {
            font-size: 1rem;
            padding: 1.25rem 1.5rem;
        }
    
        .faq-answer {
            padding: 0 1.5rem 1.5rem;
        }
    
        .contato-cta-premium {
            padding: 2.5rem 1.5rem;
        }
    }

/* ===================================
   Unidades de Coleta
   =================================== */

/* Hero */
.unidades-hero {
    padding: calc(80px + 4rem) 0 3.5rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.unidades-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,0.07) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
}

.unidades-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3);
    color: var(--white);
    font-size: 0.82rem;
    font-weight: 600;
    padding: 0.4rem 1.1rem;
    border-radius: 999px;
    margin-bottom: 1.25rem;
    position: relative;
}

.unidades-hero-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
}

.unidades-hero-subtitle {
    font-size: 1.15rem;
    opacity: 0.9;
    max-width: 640px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
    position: relative;
}

.unidades-hero-stats {
    display: inline-flex;
    align-items: center;
    gap: 2rem;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.22);
    border-radius: 16px;
    padding: 1.25rem 2.5rem;
    position: relative;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
}

.hero-stat strong {
    font-family: var(--font-heading);
    font-size: 1.65rem;
    font-weight: 700;
    line-height: 1;
}

.hero-stat span {
    font-size: 0.75rem;
    opacity: 0.8;
    font-weight: 500;
    white-space: nowrap;
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.25);
    flex-shrink: 0;
}

/* Galeria */
.unidades-galeria {
    padding: 3rem 0 0;
    background: var(--background);
}

.galeria-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 0.6rem;
    border-radius: 20px;
    overflow: hidden;
}

.galeria-item {
    position: relative;
    overflow: hidden;
}

.galeria-item--featured {
    grid-row: span 2;
}

.galeria-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

.galeria-item--featured img {
    height: 100%;
    min-height: 406px;
}

.galeria-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(90,125,13,0.72) 0%, transparent 55%);
    opacity: 0;
    transition: opacity 0.35s ease;
    display: flex;
    align-items: flex-end;
    padding: 1rem 1.1rem;
}

.galeria-item:hover .galeria-overlay {
    opacity: 1;
}

.galeria-item:hover img {
    transform: scale(1.06);
}

.galeria-caption {
    color: var(--white);
    font-weight: 600;
    font-size: 0.88rem;
    letter-spacing: 0.5px;
}

/* Cobertura Strip */
.cobertura-strip {
    padding: 2.25rem 0;
    background: var(--background);
    border-bottom: 1px solid rgba(114,156,16,0.1);
}

.cobertura-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.cobertura-stat {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.1rem 1.25rem;
    background: rgba(114,156,16,0.04);
    border: 1px solid rgba(114,156,16,0.12);
    border-radius: 14px;
    transition: var(--transition);
}

.cobertura-stat:hover {
    background: rgba(114,156,16,0.09);
    border-color: rgba(114,156,16,0.28);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(114,156,16,0.1);
}

.cobertura-stat-icon {
    width: 46px;
    height: 46px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cobertura-stat-text {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.cobertura-stat-text strong {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1.2;
}

.cobertura-stat-text span {
    font-size: 0.78rem;
    color: var(--text-light);
}

/* Sede Principal */
.unidades-sede {
    padding: 4rem 0;
    background: rgba(114,156,16,0.02);
}

.sede-card {
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 6px 30px rgba(0,0,0,0.08);
    overflow: hidden;
    border: 2px solid rgba(114,156,16,0.15);
    position: relative;
}

.sede-badge {
    position: absolute;
    top: 1.25rem;
    left: 1.25rem;
    background: var(--primary);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.4rem 1rem;
    border-radius: 999px;
    z-index: 2;
    box-shadow: 0 2px 10px rgba(114,156,16,0.3);
}

.sede-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.sede-info {
    position: relative;
    overflow: hidden;
}

.sede-img {
    width: 100%;
    height: 100%;
    min-height: 340px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.sede-info:hover .sede-img {
    transform: scale(1.03);
}

.sede-details {
    padding: 2.75rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.sede-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.sede-city {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.05rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.sede-city svg {
    flex-shrink: 0;
}

.sede-address {
    color: var(--text-light);
    line-height: 1.65;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

/* New horario grid */
.sede-horario-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-bottom: 1.75rem;
}

.sede-horario-item {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    padding: 0.85rem 1rem;
    background: rgba(114,156,16,0.06);
    border-radius: 10px;
    border-left: 3px solid var(--primary);
}

.sede-horario-dia {
    font-size: 0.73rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--primary);
}

.sede-horario-hora {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
}

.sede-ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Sede Mapa */
.sede-mapa {
    padding: 0 0 3rem;
    background: rgba(114,156,16,0.02);
}

.mapa-container {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid rgba(114,156,16,0.12);
}

/* Buttons */
.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--whatsapp);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: var(--transition);
}

.btn-whatsapp:hover {
    background: var(--whatsapp-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(37,211,102,0.3);
}

.btn-whatsapp.btn-sm {
    padding: 0.55rem 1.1rem;
    font-size: 0.88rem;
    border-radius: 8px;
}

.btn-whatsapp.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-radius: 12px;
}

.btn-rota {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: var(--primary);
    padding: 0.65rem 1.2rem;
    border: 2px solid var(--primary);
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: var(--transition);
}

.btn-rota:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(114,156,16,0.25);
}

/* Como Agendar */
.como-agendar {
    padding: var(--section-padding);
    background: rgba(114,156,16,0.03);
}

.como-agendar-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    margin-top: 3rem;
}

.agendar-step {
    flex: 1;
    max-width: 240px;
    text-align: center;
    padding: 0 1rem;
}

.agendar-step-num {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.agendar-step-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    box-shadow: 0 8px 24px rgba(114,156,16,0.28);
}

.agendar-step h3 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.agendar-step p {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.6;
}

.agendar-step-connector {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    padding-top: 38px;
    color: var(--primary);
    opacity: 0.35;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

/* Unidades Lista */
.unidades-lista {
    padding: var(--section-padding);
    background: var(--background);
}

.unidades-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.unidade-card {
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(114,156,16,0.08);
}

.unidade-card:hover {
    box-shadow: 0 10px 32px rgba(114,156,16,0.14);
    transform: translateY(-4px);
}

.unidade-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.4rem 1.75rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    position: relative;
}

.unidade-num {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    opacity: 0.25;
    line-height: 1;
    flex-shrink: 0;
    letter-spacing: -1px;
}

.unidade-nome {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    flex: 1;
}

.unidade-badge-domiciliar {
    background: rgba(255,255,255,0.2);
    border: 1px solid rgba(255,255,255,0.35);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.3rem 0.75rem;
    border-radius: 999px;
    white-space: nowrap;
}

.unidade-body {
    padding: 1.5rem 1.75rem;
}

.unidade-endereco,
.unidade-horario {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 0.92rem;
    margin-bottom: 0.6rem;
}

.unidade-endereco svg,
.unidade-horario svg {
    flex-shrink: 0;
    color: var(--primary);
    margin-top: 2px;
}

.unidade-contato {
    margin-top: 1.1rem;
    margin-bottom: 1rem;
}

.unidade-mapa {
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(114,156,16,0.1);
}

.unidade-mapa iframe {
    display: block;
}

/* CTA Final */
.unidades-cta {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.unidades-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
}

.unidades-cta-content {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

.unidades-cta-logo {
    width: 160px;
    margin: 0 auto 1.5rem;
    filter: drop-shadow(0 0 1px #fff) drop-shadow(0 0 2px rgba(255,255,255,0.6));
}

.unidades-cta h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.unidades-cta p {
    font-size: 1.1rem;
    opacity: 0.92;
    line-height: 1.7;
    margin-bottom: 2rem;
}

/* ===================================
   Responsive — Unidades
   =================================== */
@media (max-width: 1100px) {
    .cobertura-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .unidades-hero-title {
        font-size: 2.4rem;
    }

    .unidades-hero-stats {
        gap: 1.25rem;
        padding: 1rem 1.5rem;
    }

    .galeria-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .galeria-item--featured {
        grid-row: span 1;
    }

    .galeria-item--featured img {
        min-height: 200px;
    }

    .sede-content {
        grid-template-columns: 1fr;
    }

    .sede-img {
        min-height: 260px;
    }

    .como-agendar-steps {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    .agendar-step-connector {
        transform: rotate(90deg);
        padding-top: 0;
    }

    .unidades-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .unidades-hero-title {
        font-size: 2rem;
    }

    .unidades-hero-stats {
        gap: 1rem;
        padding: 0.9rem 1.25rem;
    }

    .hero-stat strong {
        font-size: 1.3rem;
    }

    .cobertura-stats {
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
    }

    .sede-horario-grid {
        grid-template-columns: 1fr;
    }

    .sede-details {
        padding: 1.75rem;
    }

    .galeria-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sede-ctas {
        flex-direction: column;
    }

    .sede-ctas .btn-whatsapp,
    .sede-ctas .btn-rota {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .unidades-hero-stats {
        flex-wrap: wrap;
        gap: 1rem;
        padding: 1rem;
        justify-content: center;
    }

    .hero-stat-divider {
        display: none;
    }

    .cobertura-stats {
        grid-template-columns: 1fr;
    }

    .galeria-grid {
        grid-template-columns: 1fr;
    }

    .como-agendar-steps {
        gap: 1.5rem;
    }
}

/* ===================================
   Exame Toxicológico - Motoristas
   =================================== */
.toxico-section {
    padding: var(--section-padding);
    background: var(--background);
}

.toxico-badge-row {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.toxico-badge {
    display: inline-flex;
    align-items: center;
    background: var(--primary);
    color: var(--white);
    padding: 0.4rem 1rem;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    font-family: var(--font-heading);
}

.toxico-badge-alt {
    background: #1a73e8;
}

.toxico-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text);
    text-align: center;
    margin-bottom: 1rem;
}

.toxico-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 750px;
    margin: 0 auto 3rem;
}

/* ===================================
   Exames por Cidade - SEO Local
   =================================== */
.exames-por-cidade {
    background: linear-gradient(135deg, #f3f4f6 0%, #f9fafb 100%);
    padding: 4rem 2rem;
    margin: 3rem 0;
}

.exames-por-cidade .section-title {
    color: var(--primary);
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.exames-por-cidade .section-subtitle {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
}

.cidade-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.cidade-link-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 1.5rem;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    text-decoration: none;
    color: var(--text);
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.cidade-link-card:hover {
    border-color: var(--primary);
    background: linear-gradient(135deg, #f0f9ff 0%, #f0fdf4 100%);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(114, 156, 16, 0.15);
}

.cidade-link-card svg {
    color: var(--primary);
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.cidade-link-card:hover svg {
    transform: scale(1.2);
}

.cidade-link-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    text-align: center;
}

.cidade-link-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
    .exames-por-cidade {
        padding: 3rem 1.5rem;
    }
    
    .exames-por-cidade .section-title {
        font-size: 1.8rem;
    }
    
    .cidade-links-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .cidade-link-card {
        padding: 1.5rem 1rem;
    }
}

@media (max-width: 480px) {
    .exames-por-cidade {
        padding: 2rem 1rem;
        margin: 2rem 0;
    }
    
    .exames-por-cidade .section-title {
        font-size: 1.5rem;
    }
    
    .cidade-links-grid {
        grid-template-columns: 1fr;
    }
    
    .cidade-link-card {
        padding: 1.5rem;
    }
    
    .cidade-link-card h3 {
        font-size: 1rem;
    }
}

.toxico-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.toxico-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 14px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
    text-align: center;
    transition: var(--transition);
    border-top: 4px solid var(--primary);
}

.toxico-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(114, 156, 16, 0.12);
}

.toxico-card-icon {
    width: 64px;
    height: 64px;
    background: rgba(114, 156, 16, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    color: var(--primary);
}

.toxico-card h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.75rem;
}

.toxico-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.65;
}

.toxico-info-box {
    background: rgba(114, 156, 16, 0.06);
    border: 1px solid rgba(114, 156, 16, 0.2);
    border-radius: 14px;
    padding: 2rem;
    margin-bottom: 2.5rem;
}

.toxico-info-box h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.toxico-info-box h3 svg {
    color: var(--primary);
    flex-shrink: 0;
}

.toxico-info-box ul {
    list-style: none;
    padding: 0;
}

.toxico-info-box li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
}

.toxico-info-box li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary);
}

.toxico-info-box li strong {
    color: var(--text);
}

.toxico-cta-row {
    text-align: center;
}

.toxico-cta-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

/* ===================================
   Responsive - Unidades de Coleta
   =================================== */
@media (max-width: 1024px) {
    .galeria-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sede-content {
        grid-template-columns: 1fr;
    }

    .sede-img {
        min-height: 240px;
    }

    .toxico-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .unidades-hero-title {
        font-size: 2.2rem;
    }

    .unidades-hero-subtitle {
        font-size: 1.05rem;
    }

    .galeria-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
    }

    .galeria-item img {
        height: 160px;
    }

    .sede-details {
        padding: 1.75rem;
    }

    .sede-title {
        font-size: 1.5rem;
    }

    .sede-ctas {
        flex-direction: column;
    }

    .unidade-header {
        padding: 1.5rem;
    }

    .unidade-body {
        padding: 1.5rem;
    }

    .unidade-local {
        padding: 1.25rem;
    }

    .local-contatos {
        flex-direction: column;
    }

    .btn-contato {
        justify-content: center;
    }

    .unidades-cta h2 {
        font-size: 1.6rem;
    }

    .toxico-title {
        font-size: 1.7rem;
    }

    .toxico-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .unidades-hero-title {
        font-size: 1.8rem;
    }

    .galeria-grid {
        grid-template-columns: 1fr;
    }

    .galeria-item img {
        height: 200px;
    }

    .sede-badge {
        top: 0.75rem;
        left: 0.75rem;
        font-size: 0.8rem;
    }

    .unidade-numero {
        width: 44px;
        height: 44px;
        font-size: 1.25rem;
    }
}

/* ======================== REVIEWS CAROUSEL ======================== */
.reviews-carousel-wrapper {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 0.75rem;
    user-select: none;
    padding: 0 3rem;
}

.reviews-carousel-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.reviews-carousel-item {
    flex: 0 0 100%;
    width: 100%;
    opacity: 0.5;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.reviews-carousel-item.active {
    opacity: 1;
    pointer-events: auto;
}

.reviews-slide-pair {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    padding: 0.5rem;
}

.review-card-link {
    display: block;
    text-decoration: none;
    height: 100%;
    transition: all 0.3s ease;
}

.review-card {
    background: white;
    border-radius: 1rem;
    padding: 1.75rem;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    border: 1px solid #e5e7eb;
    height: 100%;
}

.review-card-link:hover .review-card {
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.review-author {
    display: flex;
    gap: 0.75rem;
    flex: 1;
    align-items: center;
}

.review-avatar-wrap {
    flex-shrink: 0;
}

.review-avatar-img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #e5e7eb;
}

.review-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #729C10, #96AD5A);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1rem;
    flex-shrink: 0;
}

.review-author-name {
    font-weight: 600;
    color: #111827;
    font-size: 0.95rem;
    margin: 0;
}

.review-date {
    color: #6b7280;
    font-size: 0.8rem;
    margin: 0.15rem 0 0 0;
}

.review-google-icon {
    flex-shrink: 0;
    opacity: 0.6;
}

.review-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 0.75rem;
}

.review-star {
    width: 16px;
    height: 16px;
    color: #d1d5db;
    transition: color 0.2s ease;
}

.review-star.filled {
    color: #fbbf24;
}

.review-text {
    color: #374151;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0.5rem 0;
    flex: 1;
    font-style: italic;
}

.review-cta {
    color: #729C10;
    font-weight: 600;
    font-size: 0.85rem;
    margin: 0.5rem 0 0 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.review-card-link:hover .review-cta {
    opacity: 1;
}

/* Dots Navigation */
.reviews-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.reviews-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background-color: #d1d5db;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.reviews-dot:hover {
    background-color: #9ca3af;
    transform: scale(1.2);
}

.reviews-dot.active {
    background-color: #729C10;
    width: 28px;
    border-radius: 5px;
}

/* Navigation Arrows */
.reviews-carousel-nav {
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #e5e7eb;
    background: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: #6b7280;
    z-index: 10;
}

.reviews-carousel-nav:hover {
    background-color: #729C10;
    color: white;
    border-color: #729C10;
    transform: translateY(-50%) scale(1.05);
}

.reviews-carousel-nav svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.reviews-carousel-prev {
    left: 0;
}

.reviews-carousel-next {
    right: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .reviews-slide-pair {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .reviews-carousel-wrapper {
        padding: 0 2.5rem;
    }

    .review-card {
        padding: 1.5rem;
        min-height: auto;
    }

    .reviews-carousel-nav {
        width: 36px;
        height: 36px;
    }
}

@media (max-width: 480px) {
    .reviews-carousel-wrapper {
        padding: 0 2rem;
    }

    .review-card {
        padding: 1.25rem;
    }

    .review-header {
        flex-direction: column;
        gap: 0.5rem;
    }

    .review-google-icon {
        position: absolute;
        right: 1.25rem;
        top: 1.25rem;
    }

    .reviews-carousel-nav {
        width: 32px;
        height: 32px;
        opacity: 0.7;
    }
}
