/* ===== VARIÁVEIS E RESET ===== */
:root {
    /* Cores principais com bom contraste */
    --blue-primary: #0056b3;
    --blue-dark: #003d80;
    --blue-light: #E6F2FF;
    --lime: #BFFF00;
    --lime-dark: #7cb305;
    --lime-light: #E6FF99;
    --white: #FFFFFF;
    --gray-50: #F8FAFC;
    --gray-100: #F1F5F9;
    --gray-200: #E2E8F0;
    --gray-300: #CBD5E1;
    --gray-600: #4b5563;
    --gray-800: #1f2937;
    
    /* Cores de texto com alto contraste */
    --text-primary: #111827;
    --text-secondary: #374151;
    --text-muted: #4b5563;
    --text-on-light-bg: #1f2937;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --transition: all 0.3s ease;
    
    /* Variáveis responsivas */
    --vh: 1vh;
    --container-padding: 20px;
    --header-height: 80px;
}

/* Ajustes para dispositivos móveis */
@media (max-width: 768px) {
    :root {
        --container-padding: 15px;
        --header-height: 70px;
    }
}

@media (max-width: 480px) {
    :root {
        --container-padding: 12px;
        --header-height: 65px;
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: #ffffff;
}

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

/* Container responsivo */
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
}

@media (max-width: 1199px) {
    .container {
        max-width: 960px;
    }
}

@media (max-width: 991px) {
    .container {
        max-width: 720px;
    }
}

@media (max-width: 767px) {
    .container {
        max-width: 540px;
    }
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
}

.logo-placeholder {
    width: auto; /* Largura automática para manter proporção */
    height: 50px; /* Altura próxima ao máximo do header (80px - padding) */
    max-width: 200px; /* Limite máximo de largura */
    min-width: 120px; /* Largura mínima para garantir visibilidade */
    background-image: url('./assets/images/lab.jpg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-color: rgba(0, 86, 179, 0.05); /* Fundo sutil azul */
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    /* Filtros para melhorar visibilidade */
    filter: contrast(1.2) brightness(1.1) saturate(1.1);
    /* Borda sutil para definição */
    border: 1px solid rgba(0, 86, 179, 0.1);
}

/* Fallback text styling - apenas para footer */
.footer-logo.logo-placeholder span {
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

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

.nav-links a:hover {
    color: var(--blue-primary);
}

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

.btn-exames-nav {
    background: linear-gradient(135deg, var(--blue-primary), var(--blue-dark));
    color: white;
    padding: 12px 24px;
    border-radius: var(--radius-xl);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.btn-exames-nav:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: var(--gray-800);
    border-radius: 3px;
    transition: var(--transition);
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #a8d4ff 0%, #cce5ff 30%, #ffffff 50%, #d4f59a 70%, #b8e86e 100%);
    position: relative;
    padding-top: 100px;
    overflow: hidden;
}

/* Fundo em mobile */
@media (max-width: 768px) {
    .hero {
        background: linear-gradient(135deg, #b8dcff 0%, #d6ebff 30%, #ffffff 50%, #dcf7a8 70%, #c8ed88 100%);
    }
}

.hero-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.15; /* Reduzido para não interferir no contraste */
}

/* Formas ainda mais sutis em mobile */
@media (max-width: 768px) {
    .shape {
        opacity: 0.08;
    }
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, var(--blue-primary), transparent);
    top: -100px;
    right: -100px;
    filter: blur(60px);
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--lime), transparent);
    bottom: 100px;
    left: -50px;
    filter: blur(50px);
}

.shape-3 {
    width: 200px;
    height: 200px;
    background: var(--blue-light);
    top: 40%;
    right: 30%;
    filter: blur(40px);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 60px;
    align-items: center;
    min-height: calc(100vh - 200px);
    position: relative;
    z-index: 1;
}

.hero-text h1 {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-primary);
}

/* Contraste forte em mobile */
@media (max-width: 768px) {
    .hero-text h1 {
        color: #111827;
    }
}

.highlight {
    color: #0056b3; /* Azul escuro com bom contraste */
    font-weight: 700;
}

.highlight-lime {
    color: #7cb305; /* Verde mais escuro para melhor legibilidade */
    font-weight: 700;
}

/* Cores ainda mais escuras em mobile */
@media (max-width: 768px) {
    .highlight {
        color: #1e40af;
    }
    
    .highlight-lime {
        color: #65a30d; /* Verde escuro para mobile */
    }
}

.hero-text p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

/* Texto mais escuro em mobile */
@media (max-width: 768px) {
    .hero-text p {
        color: #374151;
        font-weight: 500;
    }
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius-xl);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--blue-primary), var(--blue-dark));
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--lime), var(--lime-dark));
    color: #1a1a1a; /* Texto escuro para contraste no fundo lime */
    box-shadow: var(--shadow-md);
    font-weight: 700;
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: #000000;
}

.btn-outline {
    background: transparent;
    color: #0056b3;
    border: 2px solid #0056b3;
    font-weight: 600;
}

.btn-outline:hover {
    background: #0056b3;
    color: white;
}

/* Botões em mobile */
@media (max-width: 768px) {
    .btn-secondary {
        color: #000000;
        font-weight: 700;
    }
    
    .btn-outline {
        color: #1e40af;
        border-color: #1e40af;
        font-weight: 600;
    }
}

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

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

.btn svg {
    width: 20px;
    height: 20px;
}

/* ===== CARD DE EXAMES (DESTAQUE) ===== */
.exames-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 35px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

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

.exames-card-header {
    text-align: center;
    margin-bottom: 25px;
}

.exames-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--blue-light), var(--lime-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    border: 2px solid rgba(37, 99, 235, 0.1); /* Borda para definição */
}

.exames-icon svg {
    width: 35px;
    height: 35px;
    color: #0056b3;
}

.exames-card-header h2 {
    font-size: 1.5rem;
    color: #111827; /* Texto muito escuro */
    margin-bottom: 5px;
    font-weight: 700;
}

.exames-card-header p {
    color: #4b5563; /* Cinza escuro */
    font-size: 0.95rem;
    font-weight: 500;
}

/* Card em mobile */
@media (max-width: 768px) {
    .exames-card {
        background: white;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    }
    
    .exames-card-header h2 {
        color: #111827;
    }
    
    .exames-card-header p {
        color: #374151;
        font-weight: 500;
    }
}

.exames-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.input-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1f2937; /* Cor escura para labels */
    margin-bottom: 2px;
}

/* Labels em mobile */
@media (max-width: 768px) {
    .input-group label {
        color: #111827;
        font-weight: 600;
    }
}

.input-group input,
.input-group textarea {
    padding: 14px 16px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

.input-group input:focus,
.input-group textarea:focus {
    outline: none;
    border-color: var(--blue-primary);
    box-shadow: 0 0 0 3px var(--blue-light);
}

.exames-help {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
}

.exames-help a {
    color: #0056b3;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: var(--transition);
}

.exames-help a:hover {
    text-decoration: underline;
    color: #003d80;
}

/* Links em mobile */
@media (max-width: 768px) {
    .exames-help a {
        color: #1e40af;
        font-weight: 600;
    }
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.hero-wave svg {
    display: block;
    width: 100%;
    height: 80px;
}

/* ===== SEÇÕES ===== */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--blue-light), var(--lime-light));
    color: #0056b3;
    padding: 8px 20px;
    border-radius: var(--radius-xl);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #111827;
    margin-bottom: 10px;
}

.section-header p {
    color: #4b5563;
    font-size: 1.1rem;
}

/* ===== SERVIÇOS ===== */
.servicos {
    padding: 100px 0;
    background: var(--white);
}

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

.servicos-2col {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.servico-card {
    background: var(--gray-50);
    padding: 35px 25px;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.servico-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--blue-light);
}

.servico-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--blue-primary), var(--blue-dark));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.servico-card:hover .servico-icon {
    background: linear-gradient(135deg, var(--lime), var(--lime-dark));
}

.servico-icon svg {
    width: 32px;
    height: 32px;
    color: white;
}

.servico-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #111827;
}

.servico-card p {
    color: #4b5563;
    font-size: 0.95rem;
}

/* ===== DIFERENCIAIS ===== */
.diferenciais {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--blue-primary), var(--blue-dark));
    position: relative;
    overflow: hidden;
}

.diferenciais-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.shape-4 {
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.05);
    top: -200px;
    right: -200px;
    border-radius: 50%;
}

.shape-5 {
    width: 300px;
    height: 300px;
    background: var(--lime);
    opacity: 0.1;
    bottom: -100px;
    left: -100px;
    border-radius: 50%;
}

.diferenciais-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.diferenciais-text .section-tag {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.diferenciais-text h2 {
    font-size: 2.3rem;
    color: white;
    margin-bottom: 30px;
}

.diferenciais-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.diferenciais-list li {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.check-icon {
    width: 30px;
    height: 30px;
    background: var(--lime);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #1a1a1a;
    flex-shrink: 0;
}

.diferenciais-list strong {
    color: white;
    display: block;
    margin-bottom: 3px;
}

.diferenciais-list p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.diferenciais-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

.stat-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--lime);
    margin-bottom: 5px;
}

.stat-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

/* ===== UNIDADES ===== */
.unidades {
    padding: 100px 0;
    background: var(--gray-50);
}

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

.unidade-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.unidade-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.unidade-img {
    height: 180px;
    background: linear-gradient(135deg, var(--blue-light), var(--lime-light));
}

.unidade-info {
    padding: 25px;
}

.unidade-info h3 {
    font-size: 1.3rem;
    color: #111827;
    margin-bottom: 8px;
}

.unidade-info p {
    color: #4b5563;
    margin-bottom: 8px;
}

.unidade-horario {
    display: block;
    font-size: 0.85rem;
    color: #0056b3;
    margin-bottom: 15px;
}

/* ===== SOBRE ===== */
.sobre {
    padding: 100px 0;
    background: white;
    position: relative;
    overflow: hidden;
}

.sobre-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.shape-6 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, var(--lime-light), transparent);
    bottom: -100px;
    right: -100px;
    border-radius: 50%;
    filter: blur(60px);
}

.sobre-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* ===== CARROSSEL DE IMAGENS ===== */
.carousel-container {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    background: var(--gray-100);
}

.carousel-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
    transform: scale(1.1);
}

.carousel-slide.active {
    opacity: 1;
    transform: scale(1);
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Botões de navegação */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
    box-shadow: var(--shadow-md);
}

.carousel-btn:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: var(--shadow-lg);
}

.carousel-prev {
    left: 20px;
}

.carousel-next {
    right: 20px;
}

.carousel-btn svg {
    width: 24px;
    height: 24px;
    color: var(--blue-primary);
}

/* Indicadores */
.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid white;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
}

.indicator.active {
    background: white;
    transform: scale(1.2);
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.8);
}

/* Responsividade do carrossel */
@media (max-width: 768px) {
    .carousel-container {
        height: 300px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
    }
    
    .carousel-btn svg {
        width: 20px;
        height: 20px;
    }
    
    .carousel-prev {
        left: 15px;
    }
    
    .carousel-next {
        right: 15px;
    }
    
    .indicator {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 480px) {
    .carousel-container {
        height: 250px;
    }
    
    .carousel-btn {
        width: 35px;
        height: 35px;
    }
    
    .carousel-btn svg {
        width: 18px;
        height: 18px;
    }
    
    .carousel-prev {
        left: 10px;
    }
    
    .carousel-next {
        right: 10px;
    }
}

.sobre-img-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--blue-light), var(--lime-light));
    border-radius: var(--radius-lg);
    position: relative;
}

.sobre-img-placeholder::before {
    content: '';
    position: absolute;
    inset: 20px;
    border: 3px dashed var(--blue-primary);
    border-radius: var(--radius-md);
    opacity: 0.3;
}

.sobre-text h2 {
    font-size: 2.3rem;
    margin-bottom: 20px;
    color: #111827;
}

.sobre-text p {
    color: #4b5563;
    margin-bottom: 15px;
}

.certificacoes {
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid var(--gray-200);
}

.certificacoes span {
    display: block;
    font-weight: 600;
    margin-bottom: 10px;
    color: #111827;
}

.cert-badges {
    display: flex;
    gap: 10px;
}

.cert-badge {
    background: var(--blue-light);
    color: #0056b3;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.9rem;
}

/* ===== CTA EXAMES ===== */
.cta-exames {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--lime), var(--lime-dark));
    position: relative;
    overflow: hidden;
}

.cta-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.shape-7 {
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.3);
    top: -100px;
    left: -100px;
    border-radius: 50%;
}

.shape-8 {
    width: 200px;
    height: 200px;
    background: var(--blue-primary);
    opacity: 0.1;
    bottom: -50px;
    right: 10%;
    border-radius: 50%;
}

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

.cta-content h2 {
    font-size: 2.5rem;
    color: #111827;
    margin-bottom: 10px;
}

.cta-content p {
    font-size: 1.1rem;
    color: #374151;
    margin-bottom: 25px;
}

.btn-cta {
    background: var(--blue-dark);
    color: white;
    padding: 16px 35px;
    font-size: 1.1rem;
}

.btn-cta:hover {
    background: var(--blue-primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* ===== CONTATO ===== */
.contato {
    padding: 100px 0;
    background: var(--gray-50);
}

.contato-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contato-info h2 {
    font-size: 2.3rem;
    margin-bottom: 10px;
    color: #111827;
}

.contato-info > p {
    color: #4b5563;
    margin-bottom: 30px;
}

.contato-items {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contato-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.contato-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--blue-primary), var(--blue-dark));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contato-icon svg {
    width: 24px;
    height: 24px;
    color: white;
}

.contato-item strong {
    display: block;
    color: #111827;
    margin-bottom: 3px;
}

.contato-item p {
    color: #4b5563;
}

.contato-form {
    background: white;
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.contato-form .input-group {
    margin-bottom: 20px;
}

.contato-form textarea {
    resize: vertical;
    min-height: 100px;
}

/* ===== FOOTER ===== */
.footer {
    background: linear-gradient(135deg, var(--blue-dark), var(--blue-primary));
    color: white;
    position: relative;
    padding-top: 60px;
}

.footer-wave {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}

.footer-wave svg {
    display: block;
    width: 100%;
    height: 60px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding: 40px 0;
}

/* Footer simplificado */
.footer-content.footer-simple {
    display: flex;
    justify-content: center;
    text-align: center;
}

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

.footer-brand p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--lime);
    color: var(--gray-800);
}

.social-links svg {
    width: 20px;
    height: 20px;
}

.footer-links h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: white;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 0;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* ===== RESPONSIVO AVANÇADO ===== */

/* Extra Large Devices (1400px+) */
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
    
    .hero-text h1 {
        font-size: 3.5rem;
    }
    
    .section-header h2 {
        font-size: 2.8rem;
    }
}

/* Large Devices (1200px - 1399px) */
@media (max-width: 1399px) {
    .container {
        max-width: 1140px;
    }
}

/* Medium-Large Devices (992px - 1199px) */
@media (max-width: 1199px) {
    .container {
        max-width: 960px;
        padding: 0 15px;
    }
    
    .hero-content {
        grid-template-columns: 1fr 380px;
        gap: 40px;
    }
    
    .hero-text h1 {
        font-size: 2.8rem;
    }
    
    .servicos-2col {
        gap: 30px;
    }
    
    .diferenciais-content {
        gap: 50px;
    }
    
    .sobre-content {
        gap: 50px;
    }
    
    .contato-grid {
        gap: 50px;
    }
}

/* Medium Devices (768px - 991px) - Tablets */
@media (max-width: 991px) {
    .container {
        max-width: 720px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
        padding: 40px 0;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
        gap: 12px;
    }

    .exames-card {
        max-width: 450px;
        margin: 0 auto;
        padding: 30px;
    }

    .servicos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .servicos-2col {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .diferenciais-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .diferenciais-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .unidades-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .sobre-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .sobre-img-placeholder {
        height: 300px;
        order: -1;
    }

    .contato-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .mvv-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        max-width: 500px;
        margin: 0 auto;
    }
}

/* Small-Medium Devices (576px - 767px) - Large Phones */
@media (max-width: 767px) {
    .container {
        max-width: 540px;
        padding: 0 15px;
    }
    
    /* Header Mobile */
    .nav {
        padding: 12px 15px;
        position: relative;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow-lg);
        border-radius: 0 0 var(--radius-md) var(--radius-md);
        z-index: 1000;
    }
    
    .nav-links.active {
        display: flex;
    }

    .btn-exames-nav {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    /* Hero Mobile */
    .hero {
        padding-top: 80px;
        min-height: auto;
        padding-bottom: 60px;
    }

    .hero-text h1 {
        font-size: 2.2rem;
        line-height: 1.3;
    }
    
    .hero-text p {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    /* Sections Mobile */
    .section-header h2 {
        font-size: 2rem;
        line-height: 1.3;
    }
    
    .section-header p {
        font-size: 1rem;
    }

    /* Services Mobile */
    .servicos {
        padding: 80px 0;
    }
    
    .servicos-grid,
    .servicos-2col {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .servico-card {
        padding: 30px 20px;
    }

    /* Diferenciais Mobile */
    .diferenciais {
        padding: 80px 0;
    }
    
    .diferenciais-text h2 {
        font-size: 2rem;
    }
    
    .diferenciais-stats {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .stat-card {
        padding: 25px 15px;
    }

    .stat-number {
        font-size: 2.2rem;
    }

    /* Unidades Mobile */
    .unidades {
        padding: 80px 0;
    }
    
    .unidades-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .horarios-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    /* Sobre Mobile */
    .sobre {
        padding: 80px 0;
    }
    
    .sobre-text h2 {
        font-size: 2rem;
    }

    /* MVV Mobile */
    .missao-visao-valores {
        padding: 80px 0;
    }

    /* CTA Mobile */
    .cta-exames {
        padding: 60px 0;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }

    /* Contato Mobile */
    .contato {
        padding: 80px 0;
    }
    
    .contato-info h2 {
        font-size: 2rem;
    }
    
    .contato-form {
        padding: 30px 20px;
    }

    /* Footer Mobile */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 25px;
    }

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

    .social-links {
        justify-content: center;
    }
}

/* Small Devices (480px - 575px) - Standard Phones */
@media (max-width: 575px) {
    .container {
        padding: 0 12px;
    }
    
    /* Logo smaller on mobile */
    .logo-placeholder {
        height: 46px; /* Altura máxima para mobile (70px header - padding) */
        max-width: 180px;
        background-size: contain;
    }
    
    /* Hero extra small */
    .hero-text h1 {
        font-size: 1.9rem;
    }
    
    .hero-text p {
        font-size: 1rem;
    }

    /* Exames card mobile */
    .exames-card {
        padding: 25px 18px;
        margin: 0 10px;
    }
    
    .exames-icon {
        width: 60px;
        height: 60px;
    }
    
    .exames-icon svg {
        width: 30px;
        height: 30px;
    }

    /* Buttons mobile */
    .btn {
        padding: 12px 20px;
        font-size: 0.95rem;
    }
    
    .btn svg {
        width: 18px;
        height: 18px;
    }

    /* Stats mobile */
    .diferenciais-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .stat-card {
        padding: 20px 15px;
    }

    /* MVV mobile */
    .mvv-card {
        padding: 25px 18px;
    }
    
    .mvv-icon {
        width: 65px;
        height: 65px;
    }
    
    .mvv-icon svg {
        width: 32px;
        height: 32px;
    }

    /* Contact mobile */
    .contato-form {
        padding: 25px 18px;
    }
    
    .contato-items {
        gap: 20px;
    }
    
    .contato-icon {
        width: 45px;
        height: 45px;
    }
    
    .contato-icon svg {
        width: 20px;
        height: 20px;
    }

    /* CTA mobile */
    .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
}

/* Extra Small Devices (320px - 479px) - Small Phones */
@media (max-width: 479px) {
    .container {
        padding: 0 10px;
    }
    
    /* Header extra small */
    .nav {
        padding: 10px 12px;
    }
    
    .logo-placeholder {
        height: 40px; /* Altura para telas muito pequenas */
        max-width: 160px;
        background-size: contain;
    }
    
    /* Hero extra small */
    .hero {
        padding-top: 70px;
    }
    
    .hero-text h1 {
        font-size: 1.7rem;
        line-height: 1.2;
    }
    
    .hero-text p {
        font-size: 0.95rem;
    }

    /* Sections extra small */
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .section-tag {
        font-size: 0.85rem;
        padding: 6px 16px;
    }

    /* Cards extra small */
    .exames-card {
        padding: 20px 15px;
        margin: 0 5px;
    }
    
    .servico-card {
        padding: 25px 15px;
    }
    
    .mvv-card {
        padding: 20px 15px;
    }

    /* Stats extra small */
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.85rem;
    }

    /* Forms extra small */
    .input-group input,
    .input-group textarea {
        padding: 12px 14px;
        font-size: 0.95rem;
    }

    /* Buttons extra small */
    .btn {
        padding: 10px 18px;
        font-size: 0.9rem;
    }

    /* Footer extra small */
    .footer-content {
        padding: 30px 0;
    }
    
    .footer-bottom {
        padding: 20px 0;
    }
    
    .footer-bottom p {
        font-size: 0.85rem;
    }
}

/* Landscape Phones */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 80px 0 40px;
    }
    
    .hero-content {
        min-height: auto;
        padding: 20px 0;
    }
    
    .hero-text h1 {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    
    .hero-text p {
        margin-bottom: 20px;
    }
    
    .exames-card {
        padding: 20px;
    }
}

/* High DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .logo-placeholder,
    .exames-icon,
    .servico-icon,
    .mvv-icon {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Touch Devices - Larger touch targets */
@media (pointer: coarse) {
    .btn {
        min-height: 44px;
        min-width: 44px;
    }
    
    .nav-links a {
        padding: 12px 0;
    }
    
    .mobile-menu-btn {
        padding: 12px;
        min-width: 44px;
        min-height: 44px;
    }
    
    .social-links a {
        width: 44px;
        height: 44px;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .shape-1,
    .shape-2,
    .shape-3 {
        animation: none;
    }
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .hero-bg-shapes,
    .mobile-menu-btn,
    .btn,
    .social-links {
        display: none !important;
    }
    
    .hero {
        background: white !important;
        color: black !important;
    }
    
    .container {
        max-width: none !important;
        padding: 0 !important;
    }
}

/* ===== ANIMAÇÕES ===== */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.shape-1 { animation: float 8s ease-in-out infinite; }
.shape-2 { animation: float 10s ease-in-out infinite; }
.shape-3 { animation: float 6s ease-in-out infinite; }

/* ===== ACESSIBILIDADE ===== */
@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
}

:focus-visible {
    outline: 3px solid var(--blue-primary);
    outline-offset: 2px;
}

/* Skip link para acessibilidade */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--blue-primary);
    color: white;
    padding: 8px 16px;
    z-index: 9999;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 0;
}

/* ===== UNIDADE ÚNICA (ATUALIZADO) ===== */
.unidade-single {
    max-width: 700px;
    margin: 0 auto;
}

.unidade-card-main {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.unidade-info-main {
    padding: 30px;
}

.unidade-info-main h3 {
    font-size: 1.5rem;
    color: #111827;
    margin-bottom: 15px;
}

.unidade-info-main .endereco {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #4b5563;
    margin-bottom: 20px;
}

.unidade-info-main .endereco svg {
    flex-shrink: 0;
    color: #0056b3;
    margin-top: 3px;
}

.horarios-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 25px;
}

.horario-item {
    background: var(--blue-light);
    padding: 15px;
    border-radius: var(--radius-sm);
    text-align: center;
}

.horario-item.fechado {
    background: var(--gray-100);
}

.horario-item .dia {
    display: block;
    font-size: 0.85rem;
    color: #4b5563;
    margin-bottom: 5px;
}

.horario-item .hora {
    display: block;
    font-weight: 600;
    color: #0056b3;
    font-size: 1.1rem;
}

.horario-item.fechado .hora {
    color: #4b5563;
}

.unidade-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-whatsapp {
    background: #25D366;
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* ===== WHATSAPP LINK ===== */
.whatsapp-link {
    color: #25D366;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

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

/* ===== PHONE LINK ===== */
.phone-link {
    color: #0056b3;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

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

/* ===== MENU MOBILE ATIVO ===== */
.nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    padding: 20px;
    box-shadow: var(--shadow-lg);
    gap: 15px;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* ===== ANIMAÇÕES DE ENTRADA ===== */
.servico-card,
.stat-card,
.unidade-card-main {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.servico-card.animate-in,
.stat-card.animate-in,
.unidade-card-main.animate-in {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 480px) {
    .horarios-grid {
        grid-template-columns: 1fr;
    }
    
    .unidade-actions {
        flex-direction: column;
    }
    
    .unidade-actions .btn {
        width: 100%;
        justify-content: center;
    }
}
/* ===== MISSÃO, VISÃO E VALORES ===== */
.missao-visao-valores {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--gray-50), var(--blue-light));
    position: relative;
    overflow: hidden;
}

/* Efeito de degradê progressivo nas palavras Missão, Visão e Valores */
.mvv-missao {
    color: #1e3a8a; /* Azul escuro */
    font-weight: 700;
}

.mvv-visao {
    background: linear-gradient(135deg, #3b82f6, #059669); /* Azul claro para verde escuro */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.mvv-valores {
    color: #10b981; /* Verde claro */
    font-weight: 700;
}

.missao-visao-valores::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, var(--lime), transparent);
    border-radius: 50%;
    opacity: 0.1;
    filter: blur(60px);
}

.mvv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
    z-index: 1;
}

.mvv-card {
    background: white;
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

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

.mvv-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--blue-light);
}

.mvv-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--blue-primary), var(--blue-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: var(--transition);
}

.mvv-card:hover .mvv-icon {
    background: linear-gradient(135deg, var(--lime), var(--lime-dark));
    transform: scale(1.1);
}

.mvv-icon svg {
    width: 40px;
    height: 40px;
    color: white;
}

.mvv-card h3 {
    font-size: 1.4rem;
    color: #111827;
    margin-bottom: 20px;
    font-weight: 600;
}

.mvv-card p {
    color: #4b5563;
    line-height: 1.7;
    font-size: 1rem;
}

.valores-list {
    list-style: none;
    text-align: left;
    padding: 0;
}

.valores-list li {
    color: #4b5563;
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
    line-height: 1.6;
}

.valores-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4d7c0f;
    font-weight: bold;
    font-size: 1.1rem;
}

.valores-list strong {
    color: #0056b3;
}

/* Responsivo para MVV */
@media (max-width: 1024px) {
    .mvv-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .mvv-card {
        padding: 35px 25px;
    }
}

@media (max-width: 768px) {
    .missao-visao-valores {
        padding: 80px 0;
    }
    
    .mvv-card {
        padding: 30px 20px;
    }
    
    .mvv-icon {
        width: 70px;
        height: 70px;
    }
    
    .mvv-icon svg {
        width: 35px;
        height: 35px;
    }
}
/* ===== LOGO EM TEXTO ===== */
.text-logo {
    display: flex;
    align-items: center;
    font-family: 'Poppins', sans-serif;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-main {
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: -1px;
    text-transform: uppercase;
}

.logo-lab {
    color: #0056b3;
}

.logo-omega {
    color: #28a745;
}

/* Versão compacta para header */
.text-logo.compact .logo-main {
    font-size: 1.8rem;
}

/* Versão para footer */
.footer-logo {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -1px;
    text-transform: uppercase;
    text-shadow: 0 0 8px rgba(191, 255, 0, 0.4), 0 0 16px rgba(191, 255, 0, 0.2);
    margin-bottom: 20px;
    animation: footerGlow 3s ease-in-out infinite alternate;
}

.footer-logo .logo-lab {
    color: #0056b3;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.8);
    text-stroke: 1px rgba(255, 255, 255, 0.8);
}

.footer-logo .logo-omega {
    color: #28a745;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.6);
    text-stroke: 1px rgba(255, 255, 255, 0.6);
}

@keyframes footerGlow {
    0% {
        text-shadow: 0 0 8px rgba(191, 255, 0, 0.4), 0 0 16px rgba(191, 255, 0, 0.2);
    }
    100% {
        text-shadow: 0 0 12px rgba(191, 255, 0, 0.6), 0 0 24px rgba(191, 255, 0, 0.3), 0 0 36px rgba(191, 255, 0, 0.1);
    }
}

/* Responsividade */
@media (max-width: 768px) {
    .text-logo .logo-main {
        font-size: 1.6rem;
    }
    
    .text-logo.compact .logo-main {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .text-logo .logo-main {
        font-size: 1.4rem;
    }
    
    .text-logo.compact .logo-main {
        font-size: 1.2rem;
    }
}


/* ===== CARROSSEL DE SERVIÇOS ===== */
.servicos-carousel-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 50px;
}

.servicos-carousel {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    min-height: 380px;
}

.servico-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.servico-slide.active {
    position: relative;
    opacity: 1;
    visibility: visible;
}

.servico-card-expanded {
    display: flex;
    align-items: center;
    gap: 40px;
    background: linear-gradient(135deg, var(--white) 0%, var(--gray-50) 100%);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
}

.servico-icon-large {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--blue-primary) 0%, var(--blue-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 86, 179, 0.3);
}

.servico-icon-large svg {
    width: 50px;
    height: 50px;
    stroke: var(--white);
}

.servico-content {
    flex: 1;
}

.servico-content h3 {
    font-size: 1.75rem;
    color: var(--blue-primary);
    margin-bottom: 12px;
    font-weight: 600;
}

.servico-content > p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-size: 1rem;
    line-height: 1.7;
}

.servico-lista {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 24px;
}

.servico-lista li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.servico-lista li::before {
    content: "✓";
    color: var(--lime-dark);
    font-weight: bold;
    font-size: 1rem;
}

.btn-servico {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--blue-primary);
    color: var(--white);
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.btn-servico:hover {
    background: var(--blue-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Navegação do Carrossel de Serviços */
.servico-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: var(--white);
    border: 2px solid var(--blue-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
}

.servico-nav:hover {
    background: var(--blue-primary);
}

.servico-nav:hover svg {
    stroke: var(--white);
}

.servico-nav svg {
    width: 20px;
    height: 20px;
    stroke: var(--blue-primary);
    transition: var(--transition);
}

.servico-prev {
    left: 0;
}

.servico-next {
    right: 0;
}

/* Indicadores do Carrossel de Serviços */
.servicos-indicators {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.serv-indicator {
    padding: 10px 20px;
    background: var(--gray-100);
    border: 2px solid transparent;
    border-radius: var(--radius-xl);
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.serv-indicator:hover {
    background: var(--blue-light);
    border-color: var(--blue-primary);
    color: var(--blue-primary);
}

.serv-indicator.active {
    background: var(--blue-primary);
    color: var(--white);
    border-color: var(--blue-primary);
}

/* Responsivo Carrossel de Serviços */
@media (max-width: 768px) {
    .servicos-carousel-container {
        padding: 0 15px;
    }
    
    .servicos-carousel {
        min-height: auto;
    }
    
    .servico-card-expanded {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
        gap: 25px;
    }
    
    .servico-icon-large {
        width: 90px;
        height: 90px;
    }
    
    .servico-icon-large svg {
        width: 40px;
        height: 40px;
    }
    
    .servico-content h3 {
        font-size: 1.4rem;
    }
    
    .servico-lista {
        grid-template-columns: 1fr;
        text-align: left;
    }
    
    .servico-nav {
        width: 36px;
        height: 36px;
    }
    
    .servico-prev {
        left: 5px;
    }
    
    .servico-next {
        right: 5px;
    }
    
    .servicos-indicators {
        gap: 8px;
    }
    
    .serv-indicator {
        padding: 8px 14px;
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .serv-indicator span {
        display: none;
    }
    
    .serv-indicator {
        width: 12px;
        height: 12px;
        padding: 0;
        border-radius: 50%;
    }
    
    .serv-indicator.active {
        width: 30px;
        border-radius: 10px;
    }
}
