/* ===================================
   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-hero {
    padding: calc(80px + 3rem) 0 3rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    text-align: center;
}

.exames-hero-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.exames-hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.95;
}

.exames-hero-badges {
    margin-top: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
}

.exames-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.28);
    color: var(--white);
    padding: 0.5rem 0.9rem;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 500;
}

.exames-content {
    padding: var(--section-padding);
}

.exames-insights {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.insight-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fbf2 100%);
    border: 1px solid rgba(114, 156, 16, 0.2);
    border-radius: 14px;
    padding: 1.2rem;
    box-shadow: 0 6px 20px rgba(114, 156, 16, 0.08);
}

.insight-card h3 {
    font-family: var(--font-heading);
    color: var(--secondary);
    font-size: 1.05rem;
    margin-bottom: 0.45rem;
}

.insight-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

.exames-quick-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.9rem;
    margin-bottom: 2.2rem;
}

.exames-search {
    display: flex;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.search-input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

.search-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(114, 156, 16, 0.12);
}

.exames-filter {
    margin-bottom: 3rem;
}

.filter-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 1rem;
    text-align: center;
}

.az-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.az-btn {
    width: 45px;
    height: 45px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    background: var(--white);
    color: var(--secondary);
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    cursor: pointer;
}

.az-btn:hover:not(:disabled) {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.az-btn.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.az-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.top10-section {
    margin-bottom: 4rem;
}

.top10-section .section-title {
    text-align: center;
    margin-bottom: 2rem;
}

.results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.results-count {
    font-size: 0.95rem;
    color: var(--text-light);
    font-weight: 500;
}

.exames-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.exam-card {
    background: var(--white);
    border: 1px solid rgba(114, 156, 16, 0.18);
    border-radius: 12px;
    padding: 1.5rem;
    transition: var(--transition);
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
}

.exam-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.exam-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: 0 14px 28px rgba(114, 156, 16, 0.16);
}

.exam-letter {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: var(--white);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.exam-name {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--secondary);
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.exam-code {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0.25rem;
}

.exam-material {
    font-size: 0.9rem;
    color: var(--text-light);
}

.empty-state {
    text-align: center;
    padding: 4rem 2rem;
}

.empty-state svg {
    margin: 0 auto 1.5rem;
    color: var(--gray-light);
}

.empty-state p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

/* ===================================
   Modal
   =================================== */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
}

.modal-content {
    position: relative;
    background: var(--white);
    border-radius: 16px;
    max-width: 700px;
    max-height: 90vh;
    overflow-y: auto;
    z-index: 2001;
    animation: modalSlideUp 0.3s ease;
}

@keyframes modalSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.1);
    color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 1;
}

.modal-close:hover {
    background: var(--primary);
    color: var(--white);
    transform: rotate(90deg);
}

.modal-header {
    padding: 2rem 2rem 1rem;
    border-bottom: 2px solid #f0f0f0;
}

.modal-title {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--secondary);
    padding-right: 3rem;
}

.modal-body {
    padding: 2rem;
}

.modal-info {
    margin-bottom: 2rem;
}

.modal-info-label {
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 0.5rem;
    display: block;
}

.modal-info-value {
    color: var(--text-light);
    line-height: 1.7;
}

.modal-footer {
    padding: 1.5rem 2rem;
    border-top: 2px solid #f0f0f0;
    background: #f9f9f9;
    border-radius: 0 0 16px 16px;
}

.modal-footer-note {
    font-size: 0.9rem;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 1rem;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    width: 100%;
    justify-content: center;
}

/* Modal Badge */
.modal-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, var(--primary-color), #0056b3);
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: 8px;
    letter-spacing: 0.5px;
    margin-bottom: 0.75rem;
    box-shadow: 0 2px 8px rgba(0, 123, 255, 0.3);
}

.modal-code {
    font-size: 0.95rem;
    color: var(--text-light);
    font-weight: 500;
    margin-top: 0.5rem;
}

/* Modal Content Sections */
.modal-info-section {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #f8f9fa;
    border-left: 4px solid var(--primary-color);
    border-radius: 8px;
}

.modal-info-section:last-of-type {
    margin-bottom: 0;
}

.modal-section-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.modal-section-title svg {
    flex-shrink: 0;
}

.modal-info-value {
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 0;
}

.modal-info-value br {
    display: block;
    margin-bottom: 0.5rem;
    content: "";
}

.modal-info-value sub {
    font-size: 0.75em;
}

.modal-info-value strong {
    font-weight: 600;
    color: var(--primary-color);
}

/* Destaque especial para seções de Preparo e Coleta */
.preparo-section {
    background: linear-gradient(135deg, #fff8e1 0%, #fffbf0 100%);
    border-left-color: #ff9800;
    padding: 1.25rem;
}

.preparo-section .modal-section-title {
    color: #f57c00;
}

.coleta-section {
    background: linear-gradient(135deg, #e8f5e9 0%, #f1f8f4 100%);
    border-left-color: #4caf50;
    padding: 1.25rem;
}

.coleta-section .modal-section-title {
    color: #2e7d32;
}

.modal-info-label {
    font-weight: 600;
    color: var(--text-dark);
    margin-right: 0.5rem;
}

/* Material Type Colors */
.modal-info-section.material-sangue {
    border-left-color: #dc3545;
}

.modal-info-section.material-urina {
    border-left-color: #ffc107;
}

.modal-info-section.material-fezes {
    border-left-color: #795548;
}

.modal-info-section.material-swab {
    border-left-color: #17a2b8;
}

/* Modal Tips Section */
.modal-tips {
    background: linear-gradient(135deg, #fff9e6 0%, #fffbf0 100%);
    border: 2px solid #ffd966;
    border-radius: 12px;
    padding: 1.25rem;
    margin: 1.5rem 0;
    display: flex;
    gap: 1rem;
}

.tips-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: #ffc107;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.tips-content {
    flex: 1;
}

.tips-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #f57c00;
    margin: 0 0 0.75rem 0;
}

.tips-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tips-list li {
    font-size: 0.95rem;
    color: #5d4037;
    line-height: 1.6;
    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: #ffc107;
    font-weight: 700;
    font-size: 1.1rem;
}

/* Timeline/Prazo Visual */
.modal-timeline {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: linear-gradient(135deg, #e3f2fd 0%, #f0f8ff 100%);
    border-radius: 8px;
    margin-top: 1rem;
}

.modal-timeline svg {
    flex-shrink: 0;
    color: var(--primary-color);
}

.modal-timeline-text {
    font-size: 1rem;
    color: var(--text-dark);
}

.modal-timeline-text strong {
    color: var(--primary-color);
    font-weight: 700;
}

/* ===================================
   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: 2rem;
    }

    .exames-hero-badges {
        gap: 0.55rem;
    }

    .exames-badge {
        font-size: 0.82rem;
    }

    .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: 95%;
        max-height: 90vh;
        margin: 2rem 0;
    }
    
    .modal-header,
    .modal-body,
    .modal-footer {
        padding: 1.25rem;
    }
    
    .modal-tips {
        flex-direction: column;
        padding: 1rem;
    }
    
    .tips-icon {
        width: 32px;
        height: 32px;
    }
    
    .modal-badge {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    .modal-section-title {
        font-size: 1rem;
    }
    
    .modal-timeline {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    /* Logo responsiva */
    .hero-side-logo {
        max-width: 300px;
    }
    
    .contato-logo {
        max-width: 140px;
    }
}

@media (max-width: 480px) {
    .exames-badge {
        width: 100%;
        justify-content: center;
    }

    .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);
    }

    .area-item svg {
        color: var(--primary);
        flex-shrink: 0;
    }

    .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 + 3rem) 0 3rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    text-align: center;
}

.unidades-hero-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.unidades-hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.95;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Galeria */
.unidades-galeria {
    padding: 3rem 0 0;
    background: var(--background);
}

.galeria-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    border-radius: 16px;
    overflow: hidden;
}

.galeria-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.galeria-item:hover img {
    transform: scale(1.05);
}

/* Sede Principal */
.unidades-sede {
    padding: 3rem 0;
    background: var(--background);
}

.sede-card {
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    border: 2px solid var(--primary);
    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.85rem;
    font-weight: 600;
    padding: 0.4rem 1rem;
    border-radius: 999px;
    z-index: 2;
}

.sede-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.sede-info {
    position: relative;
}

.sede-img {
    width: 100%;
    height: 100%;
    min-height: 320px;
    object-fit: cover;
}

.sede-details {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.sede-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.sede-city {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    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.6;
    margin-bottom: 1rem;
}

.sede-horario {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    background: rgba(114, 156, 16, 0.06);
    padding: 0.75rem 1rem;
    border-radius: 8px;
}

.sede-horario svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--primary);
}

.sede-horario strong {
    color: var(--text);
}

.sede-ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* 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-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.25rem;
    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);
}

/* Unidades Lista */
.unidades-lista {
    padding: var(--section-padding);
    background: linear-gradient(135deg, rgba(114, 156, 16, 0.03) 0%, var(--background) 100%);
}

.unidade-card {
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    margin-bottom: 2.5rem;
    transition: var(--transition);
}

.unidade-card:hover {
    box-shadow: 0 8px 30px rgba(114, 156, 16, 0.12);
}

.unidade-header {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.75rem 2rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
}

.unidade-numero {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 12px;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.unidade-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.15rem;
}

.unidade-cidade-destaque {
    font-size: 0.95rem;
    opacity: 0.9;
}

.unidade-body {
    padding: 2rem;
}

/* Local (cada cidade dentro da unidade) */
.unidade-local {
    padding: 1.5rem;
    background: rgba(114, 156, 16, 0.03);
    border-radius: 12px;
    border-left: 4px solid var(--primary);
}

.local-info {
    margin-bottom: 1rem;
}

.local-cidade {
    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: 0.35rem;
}

.local-cidade svg {
    flex-shrink: 0;
    color: var(--primary);
}

.local-complemento {
    font-size: 0.95rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 0.2rem;
    padding-left: 1.75rem;
}

.local-endereco {
    color: var(--text-light);
    font-size: 0.95rem;
    padding-left: 1.75rem;
}

/* Contatos (botões WhatsApp inline) */
.local-contatos {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.btn-contato {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--whatsapp);
    color: var(--white);
    padding: 0.6rem 1.15rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.btn-contato:hover {
    background: var(--whatsapp-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.25);
}

.btn-contato svg {
    flex-shrink: 0;
}

/* Divisor entre locais dentro da mesma unidade */
.unidade-divisor {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(114, 156, 16, 0.3), transparent);
    margin: 1.5rem 0;
}

/* 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);
}

.unidades-cta-content {
    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: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.unidades-cta p {
    font-size: 1.1rem;
    opacity: 0.95;
    line-height: 1.7;
    margin-bottom: 2rem;
}

/* ===================================
   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;
}

.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;
    }
}
