/* Variáveis de Cores e Estilo */
:root {
    --primary-blue: #122e40; /* Azul profundo */
    --secondary-blue: #1e4e59; /* Azul-verde */
    --accent-green: #25D366; /* Verde WhatsApp */
    --light-bg: #d9cec5;
    --text-dark: #2c2c2c;
    --text-light: #73675d;
    --white: #FFFFFF;
    --accent-light: #e8dfd3;
    --gradient-hero: linear-gradient(135deg, #122e40 0%, #1e4e59 100%);
    --shadow-soft: 0 2px 8px rgba(18, 46, 64, 0.08);
    --shadow-medium: 0 4px 16px rgba(18, 46, 64, 0.12);
    --shadow-card: 0 8px 24px rgba(18, 46, 64, 0.1);
    --color-trust-light: #e8dfd3;
    --color-care-warm: #d9cec5;
    --gradient-authority: linear-gradient(135deg, #052752 0%, #0d3a6b 100%);
    --gradient-warm: linear-gradient(135deg, #d9cec5 0%, #FFFFFF 100%);
    --shadow-depth-1: 0 2px 8px rgba(18, 46, 64, 0.08);
    --shadow-depth-2: 0 4px 16px rgba(18, 46, 64, 0.12);
    --shadow-depth-3: 0 8px 24px rgba(18, 46, 64, 0.15);
}

/* Resets */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--light-bg);
}

h1, h2, h3 {
    color: var(--primary-blue);
}

a {
    text-decoration: none;
    transition: color 0.3s ease;
}

/* Botões */
.btn-whatsapp {
    display: inline-block;
    background-color: var(--accent-green);
    color: var(--white);
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    font-size: 1.1rem;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 8px 20px rgba(37,211,102,0.3);
    position: relative;
    overflow: hidden;
}

.btn-whatsapp:hover {
    background-color: #1EBE55;
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(37,211,102,0.4);
}

.btn-whatsapp::before {
    content: ''; position: absolute; top: 0; left: -100%; width: 50%; height: 100%; background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0) 100%); transform: skewX(-25deg); transition: all 0.5s ease;
}
.btn-whatsapp:hover::before {
    left: 150%;
}

.btn-whatsapp i {
    margin-right: 8px;
}

/* Cards Genéricos */
.card {
    border-radius: 12px;
    padding: 24px;
    background: #fff;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    transition: 0.3s;
}
.card:hover {
    transform: translateY(-5px);
}

/* Cabeçalho / Navbar */
#main-header {
    background-color: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: box-shadow 0.3s ease, backdrop-filter 0.3s ease;
}
#main-header.scrolled {
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 80px;
    width: 100%;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    white-space: nowrap;
    padding: 20px 0;
    flex-shrink: 0;
}

.logo-img {
    height: 65px;
    width: auto;
    object-fit: contain;
}

.logo span {
    background: linear-gradient(90deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo span span {
    color: var(--secondary-blue);
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: nowrap;
    justify-content: center;
    padding: 20px 0;
    flex: 1;
}

.nav-links li {
    display: flex;
    align-items: center;
}
.nav-item {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.3s;
    position: relative;
    white-space: nowrap;
    padding: 8px 12px;
}
.nav-item::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--secondary-blue) 0%, #7a1e1b 100%);
    transition: width 0.3s ease;
}
.nav-item:hover {
    color: #7a1e1b;
}
.nav-item:hover::after {
    width: 100%;
}
.btn-nav-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--accent-green);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: background-color 0.3s ease;
    white-space: nowrap;
    padding: 8px 16px;
    flex-shrink: 0;
}
.btn-nav-whatsapp:hover {
    background-color: #1EBE55;
}
.btn-nav-whatsapp i {
    margin-right: 8px;
}
.hamburger {
    display: none;
    font-size: 1.8rem;
    color: var(--primary-blue);
    cursor: pointer;
}

/* Seções Gerais */
.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #052752;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: calc(50% - 30px);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #7a1e1b 0%, #d4576b 100%);
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* 1. Hero */
#hero {
    background-size: cover;
    background-position: center;
    padding: 120px 40px 80px 40px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    min-height: 700px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10,58,92,0.35) 0%, rgba(30,78,89,0.25) 100%);
    pointer-events: none;
    z-index: 1;
}

#hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 0;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#hero .hero-content {
    animation: fadeInUp 0.8s ease-out forwards;
}

#hero .hero-image {
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
    opacity: 0;
}
.hero-container {
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    gap: 60px;
    width: 100%;
    padding: 0 40px;
    position: relative;
    z-index: 2;
}
.hero-content { text-align: left; max-width: 700px; }

#hero {
    position: relative;
    overflow: hidden;
}

#hero::before {
    content: '\f004';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 10%;
    left: 5%;
    font-size: 18rem;
    color: var(--secondary-blue);
    opacity: 0.05;
    transform: rotate(-25deg);
    pointer-events: none;
    z-index: 1;
}

#hero::after {
    content: '\f004';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 8%;
    right: 8%;
    font-size: 16rem;
    color: var(--secondary-blue);
    opacity: 0.05;
    transform: rotate(20deg);
    pointer-events: none;
    z-index: 1;
}
#hero h1 {
    color: var(--white);
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    font-size: 3.5rem;
    line-height: 1.2;
    font-weight: 800;
    margin-bottom: 24px;
}

@media (min-width: 769px) {
    #hero h1 {
        white-space: nowrap;
    }
}

#hero p { font-size: 1.2rem; line-height: 1.6; margin-bottom: 40px; color: var(--white); max-width: 100%; text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3); text-align: left; }

.hero-badge {
    display: inline-block;
    color: var(--white);
    padding: 12px 24px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.35);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.hero-badge:hover {
    background: rgba(255, 255, 255, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.35);
}

.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.btn-outline {
    display: inline-flex; align-items: center; justify-content: center;
    background-color: #7a1e1b; color: var(--white);
    padding: 16px 32px; border-radius: 12px; font-weight: 700; letter-spacing: 0.5px;
    font-size: 1.1rem; transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 2px solid #7a1e1b;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(115,29,44,0.2);
    position: relative;
    overflow: hidden;
}

.btn-outline::before {
    content: ''; position: absolute; top: 0; left: -100%; width: 50%; height: 100%; background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0) 100%); transform: skewX(-25deg); transition: all 0.5s ease;
}

.btn-outline:hover { background-color: #7a1e1b; color: var(--white); transform: translateY(-4px); box-shadow: 0 12px 28px rgba(115,29,44,0.3); }

.btn-outline:hover::before { left: 150%; }
.hero-support { font-size: 0.95rem !important; font-weight: 600; color: var(--white) !important; opacity: 1; letter-spacing: 0.5px; margin-bottom: 0 !important; text-shadow: 0 2px 6px rgba(0, 0, 0, 0.3); }
.hero-image { position: relative; width: 100%; }
@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(28,110,158,0.4);
    }
    50% {
        box-shadow: 0 0 0 20px rgba(28,110,158,0);
    }
}

.hero-placeholder {
    width: 100%; max-width: 480px; margin: 0 auto; aspect-ratio: 4/5;
    background: linear-gradient(135deg, #E0EFF8 0%, #C4E0F3 100%);
    border-radius: 24px; position: relative; overflow: hidden;
    box-shadow: var(--shadow-depth-3); border: 4px solid var(--white);
    animation: pulse 2s infinite;
}
.hero-placeholder::after {
    content: ''; position: absolute; width: 300px; height: 300px; background: var(--white); opacity: 0.3; border-radius: 50%; top: -80px; right: -80px;
}
.hero-placeholder::before {
    content: '\f207'; font-family: 'Font Awesome 6 Free'; font-weight: 900; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); font-size: 7rem; color: rgba(28, 110, 158, 0.15);
}

/* Utilitário de Título Alinhado à Esquerda */
.section-title.left-align { text-align: left; padding-bottom: 16px; }
.section-title.left-align::after { left: 0; }

/* 4.5 Nossa Equipe */
#nossa-equipe {
    background: linear-gradient(135deg, #F8F9FA 0%, #E8F3F9 50%, #F8F9FA 100%);
    padding: 100px 5%;
    position: relative;
}

#nossa-equipe::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--secondary-blue) 50%, transparent 100%);
}

.team-grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Novo estilo de cards verticais */
.team-card-new {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-depth-2);
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    display: flex;
    flex-direction: column;
}

.team-card-new:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-depth-3);
}

.team-card-image {
    width: 100%;
    height: 320px;
    object-fit: cover;
    object-position: center 20%;
    display: block;
}

.team-card-placeholder {
    width: 100%;
    height: 320px;
    background: linear-gradient(135deg, #E8F3F9 0%, #D9CECA 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: rgba(18, 46, 64, 0.2);
}

.team-card-content {
    padding: 32px 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.team-card-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.team-card-specialty {
    font-size: 1.05rem;
    color: #99A3AF;
    font-weight: 500;
    margin-bottom: 12px;
}

.team-card-credentials {
    font-size: 0.9rem;
    color: #73675D;
    font-weight: 500;
    margin-bottom: 24px;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-saiba-mais-team {
    display: inline-block;
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 12px 32px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-blue);
    align-self: center;
    cursor: pointer;
    font-family: inherit;
}

.btn-saiba-mais-team:hover {
    background-color: var(--secondary-blue);
    color: var(--white);
    border-color: var(--secondary-blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(18,46,64,0.3);
}

/* 5. Sobre a Clínica Refatorada */
#sobre { background-color: var(--white); padding: 100px 5% 100px 5%; }
.sobre-container { max-width: 1200px; margin: 0 auto; }

/* Bloco Principal */
.sobre-main-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; margin-bottom: 80px; }
.sobre-image-wrapper { border-radius: 24px; overflow: hidden; box-shadow: var(--shadow-depth-2); border: 4px solid var(--white); }
.sobre-main-img { width: 100%; height: auto; display: block; aspect-ratio: 4/4; object-fit: cover; object-position: center 35%; }
.sobre-content { text-align: left; }
.sobre-text { font-size: 1.15rem; color: var(--text-light); line-height: 1.7; margin-bottom: 40px; max-width: 540px; }

/* Destaques (Mini-cards horizontais) */
.sobre-features-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.feature-mini-card { background: var(--white); padding: 16px 20px; border-radius: 12px; box-shadow: var(--shadow-depth-1); display: flex; align-items: center; gap: 16px; border: 1px solid rgba(10,58,92,0.05); transition: all 0.3s ease; }
.feature-mini-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-depth-2); }
.feature-mini-card i { font-size: 1.4rem; color: #7a1e1b; background: #fdf2f6; width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; border-radius: 8px; flex-shrink: 0; }
.feature-mini-card span { font-size: 0.95rem; font-weight: 600; color: var(--primary-blue); }

/* Prova Social */
.sobre-stats-bar {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
    background: linear-gradient(135deg, rgba(232, 217, 211, 0.4) 0%, rgba(253, 242, 246, 0.5) 100%);
    padding: 40px; border-radius: 20px; box-shadow: var(--shadow-depth-2); margin-bottom: 100px;
    border: 1px solid rgba(115, 29, 44, 0.1);
    position: relative;
    overflow: hidden;
}

.sobre-stats-bar::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(115,29,44,0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.stat-box {
    text-align: left; display: flex; flex-direction: column; gap: 8px;
    border-left: 4px solid #7a1e1b; padding-left: 20px;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.stat-box:hover {
    transform: translateX(8px);
}
.stat-number { font-size: 2.5rem; font-weight: 700; color: var(--primary-blue); line-height: 1; display: flex; align-items: center; gap: 8px; }
.stat-number i { font-size: 1.5rem; color: #F59E0B; }
.stat-text { font-size: 1.05rem; color: var(--text-light); font-weight: 500; }

/* Equipe Médica */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.team-member-card {
    background: var(--white); border-radius: 16px; padding: 20px 24px;
    display: flex; align-items: flex-start; gap: 20px;
    box-shadow: var(--shadow-depth-1); border: 1px solid rgba(10,58,92,0.05); transition: all 0.3s ease;
    flex-wrap: wrap;
}
.team-member-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-depth-3); border-color: var(--secondary-blue); }

.team-member-card a[href*="wa.me"]:hover {
    background: #5d1724 !important;
    transform: scale(1.15);
    box-shadow: 0 4px 12px rgba(37,211,102,0.4);
}
.team-member-avatar { width: 80px; height: 80px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 2.2rem; color: var(--primary-blue); border-radius: 20px; border: 3px solid transparent; background: linear-gradient(var(--color-trust-light), var(--color-trust-light)) padding-box, linear-gradient(135deg, var(--secondary-blue) 0%, #7a1e1b 100%) border-box; }

.team-member-avatar-img { width: 80px; height: 80px; flex-shrink: 0; border-radius: 20px; object-fit: cover; object-position: center 25%; border: 3px solid transparent; background: linear-gradient(var(--color-trust-light), var(--color-trust-light)) padding-box, linear-gradient(135deg, var(--secondary-blue) 0%, #7a1e1b 100%) border-box; }
.team-member-info { text-align: left; padding: 0; }
.team-member-info h4 { font-size: 1.15rem; font-weight: 700; color: var(--primary-blue); margin-bottom: 4px; }
.team-member-info p { font-size: 0.95rem; color: var(--text-light); font-weight: 500; margin: 0; }

/* 3. Serviços e Exames */
#servicos {
    background: #F8F9FA;
    padding: 100px 5%;
    position: relative;
}

#servicos::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--secondary-blue) 50%, transparent 100%);
}
.services-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; max-width: 1200px; margin: 0 auto; align-items: stretch;
    counter-reset: service-counter;
}
@media (max-width: 992px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .services-grid { grid-template-columns: 1fr; } }
.service-card {
    background-color: var(--white); padding: 32px 24px; border-radius: 16px; border: 1px solid rgba(10, 58, 92, 0.05);
    border-top: 3px solid #7a1e1b;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1); box-shadow: 0 4px 16px rgba(0,0,0,0.03); text-align: left; display: flex; flex-direction: column; height: 100%;
    position: relative;
    counter-increment: service-counter;
}
.service-card-action { margin-top: 24px; }
.service-card {
    box-shadow: 0 12px 32px rgba(0,0,0,0.08); border-color: rgba(28, 110, 158, 0.2);
}
.btn-saiba-mais { width: 100%; padding: 12px 20px; font-size: 1rem; font-weight: 600; border-radius: 8px; display: flex; justify-content: center; align-items: center; background-color: var(--white); color: #7a1e1b; border: 1px solid #7a1e1b; transition: all 0.3s ease; text-decoration: none; }
.btn-saiba-mais:hover { background-color: #7a1e1b; color: var(--white); }
.service-card:hover {
    transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.08); border-color: rgba(28, 110, 158, 0.2);
    border-top-color: #7a1e1b;
}
.service-card::before {
    content: '';
    display: none;
}

.service-card h3 { font-size: 1.15rem; color: var(--primary-blue); font-weight: 700; margin-bottom: 12px; display: flex; flex-direction: column; align-items: flex-start; gap: 16px; padding-top: 8px; }
.service-card p { color: #6B7280; line-height: 1.6; font-size: 0.95rem; margin-bottom: 0; flex-grow: 1; }
.icon-service { color: #7a1e1b; margin-right: 0; background: #fdf2f6; width: 56px; height: 56px; display: flex; align-items: center; justify-content: center; border-radius: 14px; font-size: 1.5rem; transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1); }
.service-card:hover .icon-service { background: #7a1e1b; color: var(--white); transform: scale(1.1); }

.icon-service-img { width: 56px; height: 56px; object-fit: contain; margin-right: 0; transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1); }
.service-card:hover .icon-service-img { transform: scale(1.1); }

/* 6. Sobre o Médico — Novo Design */
/* 6. Sobre o Médico */
#medico {
    background: #f8f9fb;
    padding: 80px 24px;
    position: relative;
    width: 100%;
}

.medico-section-title {
    color: #122e40;
    position: relative;
    padding-bottom: 20px;
    margin-bottom: 40px;
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
}

.medico-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 48px;
    height: 4px;
    background: #731d2c;
    border-radius: 2px;
}

.medico-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.10);
    background: var(--white);
}

.medico-image {
    width: 100%;
    height: 100%;
    min-height: 500px;
}

.medico-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
}

.medico-content {
    background: #122e40;
    padding: 48px 44px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
    color: var(--white);
}

.medico-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.10);
    color: rgba(255, 255, 255, 0.75);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 600;
    width: fit-content;
    border: none;
}

.medico-name {
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--white);
    margin: 0;
    line-height: 1.2;
}

.medico-specialty {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    font-weight: 500;
    margin: 0;
}

.medico-crm {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.82rem;
    margin: 0;
    letter-spacing: 0.3px;
}

.medico-bio-short {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9rem;
    line-height: 1.7;
    margin: 0;
}

.medico-timeline {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.medico-timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 24px;
    bottom: 0;
    width: 2px;
    background: rgba(255, 255, 255, 0.20);
}

.timeline-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    position: relative;
    padding-left: 24px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -6px;
    top: 4px;
    width: 12px;
    height: 12px;
    background: #e8667a;
    border-radius: 50%;
    border: 3px solid #122e40;
}

.timeline-year {
    font-weight: 700;
    color: #e8667a;
    min-width: 45px;
    font-size: 0.95rem;
}

.timeline-text {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
    line-height: 1.5;
}

.btn-agendar-medico {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: #25D366;
    color: var(--white);
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    margin-top: 32px;
    width: fit-content;
    align-self: flex-start;
}

.btn-agendar-medico:hover {
    background-color: #1EBE55;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

/* 6. Diferenciais */
#diferenciais { background: var(--color-trust-light); }
#como-funciona { background: var(--color-trust-light); }
.diff-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; text-align: center; }
.diff-card { background: var(--white); padding: 32px; border-radius: 12px; box-shadow: var(--shadow-depth-2); border-top: 4px solid transparent; transition: all 0.3s ease; }
.diff-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-depth-3); border-top-color: #7a1e1b; }
.diff-card h3 { font-size: 1.25rem; color: var(--primary-blue); font-weight: 600; margin-bottom: 15px; }
.diff-card p { color: var(--text-light); line-height: 1.7; }
.diff-card i { font-size: 2.5rem; color: var(--secondary-blue); margin-bottom: 15px; }

/* 7. Localização */
#localizacao {
    background-color: var(--white);
    text-align: center;
    padding: 100px 5%;
}
.map-placeholder {
    background-color: #e9ecef;
    height: 580px;
    max-width: 1000px;
    margin: 0 auto 20px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    color: var(--text-light);
    font-weight: 600;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(10, 58, 92, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.map-placeholder:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 50px rgba(10, 58, 92, 0.2);
}

.map-placeholder iframe {
    border-radius: 16px;
}
.address-text { font-size: 1.1rem; }

/* 8. CTA Final */
#cta-final { background-color: var(--light-bg); padding: 80px 5% 120px 5%; }
.cta-container { background: var(--gradient-authority); border-radius: 32px; padding: 80px 40px; max-width: 1040px; margin: 0 auto; text-align: center; position: relative; overflow: hidden; box-shadow: 0 20px 40px rgba(10, 58, 92, 0.15); border: 1px solid rgba(255,255,255,0.1); }
.cta-container::before { content: ''; position: absolute; top: -50%; left: -20%; width: 50%; height: 200%; background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%); transform: rotate(30deg); pointer-events: none; z-index: 1; }
.cta-container::after { content: ''; position: absolute; bottom: -50%; right: -20%; width: 50%; height: 200%; background: radial-gradient(circle, rgba(37,211,102,0.15) 0%, transparent 70%); transform: rotate(-30deg); pointer-events: none; z-index: 1; }
@keyframes heartBeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.cta-container > * { position: relative; z-index: 2; }

.cta-container::after {
    content: '\f004';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    right: 5%;
    transform: translate(0, -50%);
    font-size: 15rem;
    color: rgba(255, 255, 255, 0.05);
    animation: heartBeat 1.5s ease-in-out infinite;
    z-index: 1;
}

#cta-final h2 { color: var(--white); margin-bottom: 20px; font-size: 3.2rem; font-weight: 800; letter-spacing: -1px; line-height: 1.2; }
#cta-final p { margin-bottom: 40px; font-size: 1.25rem; color: rgba(255,255,255,0.9); line-height: 1.6; max-width: 600px; margin-left: auto; margin-right: auto; }
#cta-final .btn-whatsapp { padding: 20px 40px; font-size: 1.15rem; }

/* 9. FAQ */
#faq {
    padding: 80px 5%; background-color: #F8F9FA;
    position: relative;
}

#faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--secondary-blue) 50%, transparent 100%);
}

.faq-container {
    max-width: 800px; margin: 0 auto;
    counter-reset: faq-counter;
}

.faq-item {
    background: var(--white); margin-bottom: 16px; border-radius: 8px; border: 1px solid #E0E0E0;
    border-left: 4px solid transparent;
    transition: all 0.3s ease;
    counter-increment: faq-counter;
}
.faq-item:hover { box-shadow: var(--shadow-depth-2); border-color: var(--secondary-blue); }
.faq-question {
    width: 100%; text-align: left; padding: 20px 24px; background: linear-gradient(135deg, rgba(10,58,92,0.02) 0%, rgba(28,110,158,0.02) 100%);
    border: none; font-size: 1.1rem; font-weight: 600; color: var(--primary-blue); display: flex; justify-content: space-between; align-items: center; gap: 16px; cursor: pointer; transition: all 0.3s ease; border-radius: 8px;
    position: relative;
    padding-left: 50px;
}

.faq-question::before {
    content: counter(faq-counter);
    position: absolute;
    left: 16px;
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #7a1e1b 0%, #d4576b 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}
.faq-question:hover { background: #E8F3F9; }
.faq-question[aria-expanded="true"] {
    background: linear-gradient(135deg, rgba(10,58,92,0.05) 0%, rgba(28,110,158,0.05) 100%);
}

.faq-item.active {
    border-left-color: #7a1e1b;
}

.faq-question[aria-expanded="true"] i { transform: rotate(180deg); }
.faq-question i { transition: transform 0.3s ease; color: var(--secondary-blue); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.4s ease; background: var(--white); padding: 0 24px; }
.faq-item.active .faq-answer { max-height: none; padding: 24px 24px; min-height: 80px; overflow: visible; }

/* Rodapé */
footer {
    background: var(--gradient-authority); color: var(--white);
    border-top: 4px solid #7a1e1b;
    padding: 60px 5%;
    margin-top: 80px;
    font-size: 0.85rem;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #7a1e1b 50%, transparent 100%);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    margin-bottom: 40px;
    text-align: left;
}

.footer-section h4 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--white);
}

.footer-section p, .footer-section ul {
    font-size: 0.9rem;
    line-height: 1.6;
    opacity: 0.95;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: var(--white);
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

.footer-section ul li a:hover {
    opacity: 1;
    text-decoration: underline;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-size: 0.95rem;
}

.footer-contact a {
    color: var(--white);
    opacity: 0.9;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-contact a:hover {
    opacity: 1;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}

.footer-bottom p {
    margin: 0;
    flex: 1;
}

@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
    }
}

/* Botão Flutuante WhatsApp */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}
.float-wa { position: fixed; bottom: 30px; right: 30px; background-color: var(--accent-green); color: var(--white); width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 2rem; box-shadow: 0 8px 20px rgba(37,211,102,0.3); z-index: 1000; transition: all 0.3s ease; animation: float 3s ease-in-out infinite; }
.float-wa:hover { animation: none; transform: scale(1.15); color: var(--white); box-shadow: 0 12px 24px rgba(37,211,102,0.4); }

/* Responsividade */
@media (max-width: 768px) {
    #hero { padding: 100px 5% 80px 5%; }
    .hero-container { grid-template-columns: 1fr; gap: 40px; }
    .hero-content { text-align: center; margin: 0 auto; }
    #hero h1 { font-size: 2.5rem; }
    .hero-buttons { justify-content: center; }

    #medico {
        padding: 60px 16px;
    }

    .medico-section-title {
        font-size: 1.6rem;
        margin-bottom: 30px;
    }

    .medico-card {
        grid-template-columns: 1fr;
    }

    .medico-image {
        min-height: 350px;
    }

    .medico-content {
        padding: 40px 32px;
        justify-content: flex-start;
    }

    .medico-name {
        font-size: 1.5rem;
    }

    .medico-timeline {
        margin-top: 24px;
    }

    section { padding: 60px 5%; }
    #servicos { padding: 60px 5%; }

        /* Navbar Mobile */
        .hamburger { display: block; }
        .nav-links {
            position: absolute;
            top: 100%;
            left: -100%;
            width: 100%;
            height: 100vh;
            background-color: var(--white);
            flex-direction: column;
            align-items: center;
            justify-content: flex-start;
            padding-top: 40px;
            gap: 30px;
            transition: left 0.3s ease-in-out;
            box-shadow: 0 10px 15px rgba(0,0,0,0.05);
        }
        .nav-links.active { left: 0; }

        /* Responsividade Sobre */
        .sobre-main-grid { grid-template-columns: 1fr; gap: 40px; }
        .sobre-features-grid { grid-template-columns: 1fr; }
        .sobre-stats-bar { grid-template-columns: 1fr; gap: 24px; padding: 32px 24px; }
        .team-grid { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
        .team-grid-container { grid-template-columns: 1fr; }
        .section-title.left-align { text-align: center; }
        .section-title.left-align::after { left: calc(50% - 30px); }

        /* Responsividade Team Cards */
        .team-card-name { font-size: 1.15rem; }
        .team-card-image, .team-card-placeholder { height: 280px; }
        
        /* Responsividade CTA Final */
        .cta-container { padding: 56px 24px; border-radius: 24px; }
        #cta-final h2 { font-size: 2.2rem; }
        #cta-final p { font-size: 1.05rem; margin-bottom: 32px; }
        #cta-final .btn-whatsapp { width: 100%; padding: 16px 24px; justify-content: center; }
}

/* Cookie Banner */
#cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: auto;
  width: calc(100% - 48px);
  max-width: 340px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
  border: 1px solid rgba(10, 58, 92, 0.05);
  z-index: 2000;
  padding: 24px;
  max-height: 90vh;
  overflow-y: auto;
  animation: slideUp 0.3s ease-out;
  transition: all 0.3s ease;
}

/* IMPORTANTE: Estado oculto */
#cookie-banner.hidden {
  transform: translateY(calc(100% + 20px));
  opacity: 0;
  pointer-events: none;
}

@keyframes slideUp {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); }
}

.cookie-close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  color: #9CA3AF;
  transition: color 0.3s ease;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cookie-close-btn:hover {
  color: var(--primary-blue);
}

.cookie-content {
  padding-right: 16px;
}

#cookie-title {
  font-size: 1.15rem;
  color: var(--primary-blue);
  margin-bottom: 8px;
  font-weight: 700;
}

.cookie-subtitle {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 24px;
  line-height: 1.5;
}

.cookie-buttons {
  display: flex;
  gap: 8px;
  width: 100%;
}

.btn-cookie {
  padding: 10px 16px;
  border-radius: 8px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  flex: 1;
}

.btn-cookie-primary {
  background-color: var(--accent-green);
  color: white;
}

.btn-cookie-primary:hover {
  background-color: #5d1724;
  box-shadow: 0 4px 12px rgba(37,211,102,0.3);
}

.btn-cookie-secondary {
  background-color: white;
  color: var(--text-dark);
  border: 1px solid #E0E0E0;
}

.btn-cookie-secondary:hover {
  background-color: #F8F9FA;
  border-color: var(--secondary-blue);
}

/* Mobile */
@media (max-width: 640px) {
  #cookie-banner {
    bottom: 16px;
    left: 16px;
    width: calc(100% - 32px);
    padding: 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  #localizacao > div[style*="grid"] {
    grid-template-columns: 1fr !important;
  }

  #localizacao > div[style*="grid"] > div:last-child div[style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
  }
}

/* === MODAL DO EXAME === REDESENHO */
.modal-exame {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-exame.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
}

.modal-content {
  position: relative;
  background: var(--white);
  border-radius: 20px;
  max-width: 600px;
  width: 90%;
  max-height: 90vh;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: slideUp 0.3s ease;
  display: flex;
  flex-direction: column;
}

.modal-header {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #122e40 0%, #1a3d52 100%);
  padding: 32px 32px;
  --modal-bg-image: none;
}

.modal-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--modal-bg-image);
  background-size: cover;
  background-position: center;
  opacity: 0.08;
  z-index: 0;
  pointer-events: none;
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  font-size: 1.5rem;
  color: var(--white);
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 50;
  border-radius: 50%;
  backdrop-filter: blur(10px);
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

.modal-header h3 {
  font-size: 1.8rem;
  color: var(--white);
  margin: 0 0 12px 0;
  font-weight: 700;
  position: relative;
  z-index: 1;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.modal-header > p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin: 0;
  position: relative;
  z-index: 1;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.modal-body {
  padding: 0;
  position: relative;
  z-index: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.modal-details {
  background: #EEF5FB;
  padding: 32px;
  margin: 0;
  border-radius: 0;
  border: none;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.modal-detail-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.modal-detail-item:first-child .modal-detail-icon::before {
  content: '\f46d';
}

.modal-detail-item:nth-child(2) .modal-detail-icon::before {
  content: '\f017';
}

.modal-detail-item:nth-child(3) .modal-detail-icon::before {
  content: '\f4fc';
}

.modal-detail-icon {
  width: 36px;
  height: 36px;
  background: #185FA5;
  border-radius: 8px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.modal-detail-icon::before {
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 1.1rem;
  color: var(--white);
}

.modal-details p {
  font-size: 0.95rem;
  color: #2c2c2c;
  line-height: 1.7;
  margin: 0;
  padding: 0;
}

.modal-details p strong {
  font-weight: 600;
}

.modal-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 32px;
  background: var(--white);
  margin-top: auto;
  position: relative;
  z-index: 2;
}

.btn-modal-whatsapp,
.btn-modal-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

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

.btn-modal-whatsapp:hover {
  background-color: #1EBE55;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

.btn-modal-phone {
  background-color: #122e40;
  color: var(--white);
}

.btn-modal-phone:hover {
  background-color: #0d1f2d;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(18, 46, 64, 0.3);
}

@keyframes slideUp {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Responsivo */
@media (max-width: 640px) {
  .modal-content {
    width: 95%;
  }

  .modal-body h3 {
    font-size: 1.5rem;
    margin-top: 50px;
  }

  .modal-body > p {
    font-size: 0.95rem;
    padding: 10px 24px 24px;
  }

  .modal-details {
    padding: 24px;
  }

  .modal-details p {
    font-size: 0.9rem;
    padding: 16px 0 16px 45px;
  }

  .modal-buttons {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 24px;
  }

  .btn-modal-whatsapp,
  .btn-modal-phone {
    padding: 12px 20px;
    font-size: 0.95rem;
  }
}

/* === MODAL CORPO CLÍNICO === */
.modal-medico-content {
  max-width: 960px;
  max-height: 92vh;
  overflow-y: auto;
}

.modal-medico-body {
  display: flex;
  align-items: stretch;
}

.modal-medico-photo-col {
  flex: 0 0 38%;
  background: var(--primary-blue);
}

.modal-medico-photo-col img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}

.modal-medico-info-col {
  flex: 1;
  justify-content: center;
  padding: 32px 36px;
  gap: 10px;
}

.modal-medico-info-col .medico-name {
  font-size: 1.5rem;
}

.modal-medico-info-col .medico-specialty {
  font-size: 0.92rem;
}

.modal-medico-info-col .medico-crm {
  font-size: 0.78rem;
}

.modal-medico-info-col .medico-bio-short {
  font-size: 0.85rem;
  line-height: 1.55;
}

.modal-medico-info-col .medico-timeline {
  margin-top: 12px;
  padding-top: 16px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 24px;
}

.modal-medico-info-col .medico-timeline::before {
  display: none;
}

.modal-medico-info-col .timeline-item {
  margin-bottom: 10px;
  padding-left: 20px;
}

.modal-medico-info-col .timeline-item::before {
  width: 8px;
  height: 8px;
  left: -4px;
  top: 5px;
}

.modal-medico-info-col .timeline-year {
  font-size: 0.8rem;
  min-width: auto;
  display: block;
}

.modal-medico-info-col .timeline-text {
  font-size: 0.78rem;
  line-height: 1.4;
  display: block;
}

.modal-medico-info-col .btn-agendar-medico {
  margin-top: 18px;
  padding: 11px 24px;
  font-size: 0.9rem;
}

@media (max-width: 480px) {
  .modal-medico-info-col .medico-timeline {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .modal-medico-content {
    max-height: 96vh;
  }

  .modal-medico-body {
    flex-direction: column;
  }

  .modal-medico-photo-col {
    width: 100%;
    flex: 0 0 auto;
  }

  .modal-medico-photo-col img {
    min-height: 150px;
    height: 150px;
  }

  .modal-medico-info-col {
    padding: 18px 18px;
    gap: 6px;
  }

  .modal-medico-info-col .medico-badge {
    padding: 4px 10px;
    font-size: 0.7rem;
  }

  .modal-medico-info-col .medico-name {
    font-size: 1.2rem;
  }

  .modal-medico-info-col .medico-specialty {
    font-size: 0.8rem;
  }

  .modal-medico-info-col .medico-crm {
    font-size: 0.7rem;
  }

  .modal-medico-info-col .medico-bio-short {
    font-size: 0.76rem;
    line-height: 1.4;
  }

  .modal-medico-info-col .medico-timeline {
    margin-top: 6px;
    padding-top: 10px;
    gap: 2px 14px;
  }

  .modal-medico-info-col .timeline-item {
    margin-bottom: 4px;
    padding-left: 16px;
  }

  .modal-medico-info-col .timeline-year {
    font-size: 0.7rem;
  }

  .modal-medico-info-col .timeline-text {
    font-size: 0.7rem;
    line-height: 1.3;
  }

  .modal-medico-info-col .btn-agendar-medico {
    margin-top: 10px;
    padding: 10px 20px;
    font-size: 0.85rem;
  }
}

@media (max-width: 640px) and (max-height: 700px) {
  .modal-medico-photo-col img {
    min-height: 110px;
    height: 110px;
  }

  .modal-medico-info-col .medico-bio-short {
    font-size: 0.72rem;
    line-height: 1.35;
  }
}

/* === PEEK CAROUSEL === */
.carousel-title {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  text-align: left;
  margin: 0 0 10px 0;
}

.peek-carousel {
  max-width: 420px;
  margin: 24px 0 0 0;
  overflow: hidden;
  border-radius: 12px;
}

.carousel-track {
  display: flex;
  gap: 12px;
  will-change: transform;
}

.carousel-track img {
  width: 195px;
  height: 120px;
  border-radius: 12px;
  object-fit: cover;
  flex-shrink: 0;
  display: block;
  /* GPU acceleration para evitar delays de rendering */
  transform: translateZ(0);
  backface-visibility: hidden;
  /* Garante que a imagem seja renderizada continuamente */
  contain: paint;
}

/* Responsivo para mobile */
@media (max-width: 767px) {
  .peek-carousel {
    max-width: 280px;
  }

  .carousel-track img {
    width: 140px;
    height: 90px;
  }
}

/* === CONVÊNIOS ATENDIDOS === */
.convênios-section {
  margin-top: 80px;
  padding-top: 60px;
  border-top: 1px solid rgba(115, 29, 44, 0.1);
}

.convênios-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-blue);
  text-align: center;
  margin-bottom: 48px;
  letter-spacing: -0.5px;
}

.convênios-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
  align-items: center;
}

.convênio-card {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  padding: 32px 24px;
  border-radius: 16px;
  box-shadow: var(--shadow-depth-1);
  border: 1px solid rgba(10, 58, 92, 0.05);
  transition: all 0.3s ease;
}

.convênio-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-depth-2);
  border-color: rgba(10, 58, 92, 0.1);
}

.convênio-logo {
  max-width: 100%;
  height: auto;
  max-height: 100px;
  object-fit: contain;
  display: block;
}

/* Responsivo para mobile */
@media (max-width: 767px) {
  .convênios-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .convênios-title {
    font-size: 1.5rem;
    margin-bottom: 32px;
  }

  .convênio-card {
    padding: 24px 20px;
  }
}