/* Reset e Configurações Gerais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Variáveis CSS - Esquema Elegante e Profissional */
:root {
    --primary-color: #1e40af;
    --primary-dark: #1e3a8a;
    --primary-light: #3b82f6;
    --secondary-color: #059669;
    --secondary-dark: #047857;
    --accent-color: #dc2626;
    --accent-gold: #d97706;
    --text-dark: #0f172a;
    --text-dark-secondary: #1e293b;
    --text-light: #64748b;
    --text-muted: #94a3b8;
    --bg-light: #f1f5f9;
    --bg-white: #ffffff;
    --bg-dark: #0f172a;
    --border-color: #e2e8f0;
    --border-dark: #cbd5e1;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --gradient-primary: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
    --gradient-secondary: linear-gradient(135deg, #059669 0%, #047857 100%);
    --gradient-accent: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    --gradient-gold: linear-gradient(135deg, #d97706 0%, #b45309 100%);
    --gradient-dark: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    --gradient-green: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

/* Header mais compacto para desktop */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.navbar {
    padding: 0.75rem 0;
    transition: padding 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.nav-logo h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
    transition: font-size 0.3s ease;
}

.nav-logo span {
    font-size: 0.8rem;
    color: var(--text-dark-secondary);
    font-weight: 400;
    display: block;
    transition: font-size 0.3s ease;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
}

.nav-menu a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
}

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

.nav-cta .btn-primary {
    padding: 0.5rem 1.25rem;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.nav-cta .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}

/* Header scroll effect - mais sutil */
.header.scrolled {
    background: rgba(255, 255, 255, 0.98) !important;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08) !important;
    backdrop-filter: blur(15px);
}

.header.scrolled .navbar {
    padding: 0.5rem 0;
}

.header.scrolled .nav-logo h2 {
    font-size: 1.4rem;
}

.header.scrolled .nav-logo span {
    font-size: 0.75rem;
}

/* Ajustar espaçamento do hero para header compacto */
.hero {
    padding: 120px 0 100px;
    background: var(--gradient-dark);
    color: white;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(30, 64, 175, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(5, 150, 105, 0.2) 0%, transparent 50%),
        linear-gradient(135deg, rgba(15, 23, 42, 0.9) 0%, rgba(30, 41, 59, 0.9) 100%);
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}



.hero-title {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.highlight {
    background: linear-gradient(135deg, #00d4ff 0%, #0099cc 50%, #0066ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    font-weight: 800;
    text-shadow: 
        0 0 1px rgba(0, 212, 255, 0.08),
        0 0 2px rgba(0, 212, 255, 0.05);
    animation: neonGlow 5s ease-in-out infinite alternate;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #00d4ff 0%, #0099cc 50%, #0066ff 100%);
    border-radius: 2px;
    opacity: 0.4;
    box-shadow: 
        0 0 1px rgba(0, 212, 255, 0.1),
        0 0 2px rgba(0, 212, 255, 0.05);
    animation: neonPulse 5s ease-in-out infinite alternate;
}

@keyframes neonGlow {
    0% {
        text-shadow: 
            0 0 1px rgba(0, 212, 255, 0.08),
            0 0 2px rgba(0, 212, 255, 0.05);
    }
    100% {
        text-shadow: 
            0 0 2px rgba(0, 212, 255, 0.12),
            0 0 3px rgba(0, 212, 255, 0.08),
            0 0 4px rgba(0, 212, 255, 0.05);
    }
}

@keyframes neonPulse {
    0% {
        box-shadow: 
            0 0 1px rgba(0, 212, 255, 0.1),
            0 0 2px rgba(0, 212, 255, 0.05);
    }
    100% {
        box-shadow: 
            0 0 2px rgba(0, 212, 255, 0.15),
            0 0 3px rgba(0, 212, 255, 0.1),
            0 0 4px rgba(0, 212, 255, 0.05);
    }
}

.hero-subtitle {
    font-size: 1.375rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    line-height: 1.7;
    font-weight: 400;
    max-width: 600px;
}

.hero-note {
    display: block;
    margin-top: 1rem;
    font-size: 0.875rem;
    color: var(--accent-color);
    font-weight: 500;
    font-style: italic;
}

/* Prova Social Visual */
.hero-social-proof {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.proof-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #00d4ff;
}

.proof-item i {
    font-size: 1rem;
    color: #00d4ff;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.btn-primary {
    background: var(--gradient-green);
    color: white;
    padding: 1.25rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow);
    text-transform: uppercase;
    letter-spacing: 0.025em;
    position: relative;
    overflow: hidden;
}



.btn-subtitle {
    font-size: 0.75rem;
    font-weight: 400;
    text-transform: none;
    opacity: 0.9;
    margin-top: 0.25rem;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

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

.btn-secondary {
    background: transparent;
    color: white;
    padding: 1.25rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.025em;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.btn-large {
    padding: 1.5rem 3rem;
    font-size: 1.25rem;
}

/* Garantia */
.hero-guarantee {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 1rem;
}

.hero-guarantee i {
    color: var(--accent-gold);
}

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

.doctor-photo {
    position: relative;
    width: 400px;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 4px solid rgba(255, 255, 255, 0.1);
}

.doctor-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Badges da Dra. Bianca */
.doctor-badges {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.badge {
    background: rgba(255, 255, 255, 0.95);
    color: var(--text-dark);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
}

.badge i {
    color: var(--primary-color);
    font-size: 0.875rem;
}

/* Section Headers - Design Elegante */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-header::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
    font-weight: 400;
}

/* Sobre Section - Novo Design Elegante */
.sobre {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
}

.sobre::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--primary-color) 50%, transparent 100%);
}

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

/* Foto Principal */
.sobre-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transform: perspective(1000px) rotateY(-5deg);
    transition: all 0.3s ease;
}

.sobre-image:hover {
    transform: perspective(1000px) rotateY(0deg);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.sobre-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    object-position: center top;
}

.image-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
}

.overlay-badge {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
}

.overlay-badge i {
    font-size: 1.125rem;
}

/* Citação Destaque */
.citacao-destaque {
    position: relative;
    margin-bottom: 3rem;
    padding: 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-left: 5px solid var(--primary-color);
}

.quote-icon {
    position: absolute;
    top: -15px;
    left: 30px;
    background: var(--primary-color);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.citacao-destaque blockquote {
    font-style: italic;
    font-size: 1.25rem;
    color: var(--text-dark);
    line-height: 1.6;
    margin: 0;
    padding-top: 1rem;
}

.citacao-destaque cite {
    display: block;
    text-align: right;
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1.125rem;
    margin-top: 1rem;
    font-style: normal;
}

/* Estatísticas Principais */
.estatisticas-principais {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.stat-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-color);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.stat-content {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.3;
}

/* Estatísticas da seção Sobre - Labels em preto */
.sobre .stat-label {
    color: var(--text-dark);
}

/* Credenciais Section */
.credenciais-section {
    margin-top: 4rem;
}

.credenciais-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.credencial-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.credencial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.card-header {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.card-header i {
    font-size: 1.5rem;
}

.card-header h3 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
}

.card-content {
    padding: 2rem;
}

/* Formação Lista */
.formacao-lista {
    list-style: none;
    margin: 0;
    padding: 0;
}

.formacao-lista li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid #f1f5f9;
    transition: all 0.3s ease;
}

.formacao-lista li:last-child {
    border-bottom: none;
}

.formacao-lista li:hover {
    background: #f8fafc;
    margin: 0 -1rem;
    padding: 1rem;
    border-radius: 10px;
}

.formacao-lista li i {
    color: var(--primary-color);
    font-size: 1.25rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.formacao-lista li div {
    flex: 1;
}

.formacao-lista li strong {
    display: block;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.formacao-lista li span {
    color: var(--text-light);
    font-size: 0.875rem;
}

/* Especialidades Grid */
.especialidades-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.especialidade-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.especialidade-item:hover {
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.especialidade-item i {
    color: var(--primary-color);
    font-size: 1.25rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.especialidade-item div {
    flex: 1;
}

.especialidade-item strong {
    display: block;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.especialidade-item span {
    color: var(--text-dark-secondary);
    font-size: 0.875rem;
    line-height: 1.4;
    font-weight: 500;
}

/* Serviços Section */
.servicos {
    padding: 60px 0;
}

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

.servico-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

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

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

.servico-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
}

.servico-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.servico-icon i {
    font-size: 1.5rem;
    color: white;
}

.servico-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.servico-card p {
    color: var(--text-dark-secondary);
    line-height: 1.6;
}

/* Diferenciais Section */
.diferenciais {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
}

.diferenciais::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--primary-color) 50%, transparent 100%);
}

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

.diferencial-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
    border: 1px solid var(--border-color);
}

.diferencial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-color);
}

.diferencial-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.diferencial-icon i {
    font-size: 2rem;
    color: white;
}

.diferencial-card h3 {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.diferencial-card p {
    color: var(--text-dark-secondary);
    line-height: 1.7;
    font-size: 1rem;
}

.cirurgia-fotos {
    margin-top: 1.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.cirurgia-fotos img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.cirurgia-fotos img:hover {
    transform: scale(1.05);
}

/* Cirurgia Destaque */
.cirurgia-destaque {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-color);
}

.cirurgia-fotos-destaque {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.cirurgia-fotos-destaque img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.cirurgia-fotos-destaque img:hover {
    transform: scale(1.05);
}

.cirurgia-texto h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.cirurgia-texto p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-dark-secondary);
}

/* Depoimentos Section */
.depoimentos {
    padding: 60px 0;
}

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

.depoimento-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
}

.depoimento-content p {
    font-style: italic;
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.stars {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

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

.depoimento-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.depoimento-author h4 {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.depoimento-author span {
    color: var(--text-dark-secondary);
    font-size: 0.875rem;
    font-weight: 500;
}

/* Contato Section */
.contato {
    padding: 60px 0;
    background: var(--bg-light);
}

.contato-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}

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

.contato-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contato-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contato-icon i {
    color: white;
    font-size: 1.25rem;
}

.contato-item h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.contato-item p {
    color: var(--text-dark-secondary);
    margin-bottom: 0.5rem;
}

.btn-whatsapp {
    background: var(--gradient-secondary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    display: inline-block;
    margin-top: 0.5rem;
    transition: all 0.3s ease;
}

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

.contato-cta {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
}

.contato-cta h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.contato-cta p {
    color: var(--text-dark-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: white;
}

.footer-section p {
    color: #9ca3af;
    margin-bottom: 0.5rem;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

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

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    text-align: center;
    color: #9ca3af;
}

/* Credibilidade Rápida removida */

/* Teste de Autoavaliação - Otimizado */
.teste-autoavaliacao {
    padding: 80px 0;
    background: var(--bg-light);
}

.teste-container {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.teste-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 20px 20px 0 0;
}

.pergunta-teste {
    display: none;
    animation: fadeInUp 0.5s ease-out;
}

.pergunta-teste.active {
    display: block;
}

.pergunta-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pergunta-numero {
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

.pergunta-teste h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.4;
    margin-bottom: 0;
}

.opcoes {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.opcoes label {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
    font-weight: 500;
    color: var(--text-dark);
}

.opcoes label:hover {
    border-color: var(--primary-color);
    background: rgba(30, 64, 175, 0.05);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.opcoes input[type="radio"] {
    width: 20px;
    height: 20px;
    accent-color: var(--primary-color);
}

.opcao-texto {
    font-size: 1.125rem;
    font-weight: 500;
}

.navegacao-teste {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
    gap: 1rem;
}

.btn-anterior,
.btn-proximo,
.btn-resultado {
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-anterior {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--border-color);
}

.btn-anterior:hover {
    background: var(--bg-light);
    border-color: var(--text-light);
}

.btn-proximo,
.btn-resultado {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow);
}

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

.btn-resultado {
    background: var(--gradient-green);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.025em;
}

.resultado-teste {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: var(--shadow-lg);
    text-align: center;
    animation: fadeInUp 0.5s ease-out;
}

.resultado-teste h3 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.resultado-teste p {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--text-dark-secondary);
    margin-bottom: 2rem;
}

/* Resultado Otimizado */
.resultado-header {
    text-align: center;
    margin-bottom: 2rem;
}



.resultado-content {
    text-align: left;
    margin-bottom: 2rem;
}

.resultado-mensagem {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    text-align: center;
}

.resultado-recomendacao {
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--text-dark-secondary);
    margin-bottom: 2rem;
    text-align: center;
}

.resultado-beneficios {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 15px;
    margin-bottom: 2rem;
}

.resultado-beneficios h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    text-align: center;
}

.resultado-beneficios ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.resultado-beneficios li {
    padding: 0.5rem 0;
    font-size: 1rem;
    color: var(--text-dark-secondary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

.resultado-garantia {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-light);
    margin-top: 1rem;
}

.resultado-garantia i {
    color: var(--accent-gold);
}

/* Estatísticas Tranquilizadoras */
.estatisticas-tranquilas {
    padding: 40px 0;
    background: white;
}

.estatisticas-tranquilas h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-card {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

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

.stat-numero {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.stat-card p {
    color: var(--text-dark);
    font-size: 1rem;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.stat-card small {
    color: var(--text-light);
    font-size: 0.8rem;
}

.mensagem-esperanca {
    text-align: center;
    background: var(--gradient-secondary);
    color: white;
    padding: 1.5rem;
    border-radius: 12px;
}

.mensagem-esperanca h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
    justify-content: center;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
}

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



/* Números Impressionantes */
.numeros-impressionantes {
    margin-top: 2rem;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.numeros-impressionantes h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.numeros-impressionantes h3 i {
    color: var(--accent-color);
}

.numeros-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1.5rem;
}

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

.numero {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.descricao {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: var(--bg-light);
}

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

.faq-item {
    border: 1px solid var(--border-color);
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
    background: white;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: var(--shadow);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f8f9fa;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #e9ecef;
}

.faq-question h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

.faq-question i {
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

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

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 1.5rem;
    max-height: 200px;
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* Nossa Clínica */
.clinica {
    padding: 80px 0;
    background: var(--bg-light);
}

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

.clinica-text h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.clinica-text h3 i {
    color: var(--accent-color);
}

.clinica-text p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.clinica-destaques {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.destaque-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

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

.destaque-item i {
    color: var(--primary-color);
    font-size: 1.25rem;
    width: 20px;
    text-align: center;
}

.destaque-item span {
    color: var(--text-dark);
    font-weight: 500;
}

.clinica-galeria {
    width: 100%;
}

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

.galeria-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.galeria-item:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.galeria-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: all 0.3s ease;
}

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

/* Primeiros Passos */
.primeiros-passos {
    padding: 80px 0;
}

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

.passo-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

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

.passo-numero {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.875rem;
}

.passo-icon {
    width: 60px;
    height: 60px;
    background: var(--bg-light);
    border: 3px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: var(--shadow);
}

.passo-icon i {
    font-size: 1.5rem;
    color: white;
}

.passo-numero-icon {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.passo-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.passo-card p {
    color: var(--text-light);
    line-height: 1.6;
}

.passos-cta {
    text-align: center;
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 15px;
}

.passos-cta p {
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-size: 1.125rem;
}

/* Depoimentos Stats */
.depoimentos-stats {
    background: var(--bg-light);
    padding: 2rem 0;
    margin-bottom: 3rem;
}

.stats-row {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.stat-highlight {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.stat-highlight i {
    font-size: 2rem;
    color: var(--accent-color);
}

.stat-highlight .stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.stat-highlight .stat-label {
    font-size: 0.875rem;
    color: var(--text-light);
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.whatsapp-btn {
    width: 70px;
    height: 70px;
    background: var(--gradient-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 1.75rem;
    box-shadow: var(--shadow-xl);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
    position: relative;
    border: 3px solid white;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 30px rgba(16, 185, 129, 0.4);
}

.whatsapp-text {
    position: absolute;
    right: 70px;
    background: white;
    color: var(--text-dark);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    white-space: nowrap;
    box-shadow: var(--shadow);
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s ease;
}

.whatsapp-btn:hover .whatsapp-text {
    opacity: 1;
    transform: translateX(0);
}

.whatsapp-tooltip {
    position: absolute;
    bottom: 70px;
    right: 0;
    background: var(--text-dark);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.75rem;
    white-space: nowrap;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.whatsapp-btn:hover + .whatsapp-tooltip {
    opacity: 1;
    transform: translateY(0);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(16, 185, 129, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

/* Responsividade */
@media (max-width: 768px) {
    .navbar {
        padding: 0.5rem 0;
    }
    
    .nav-logo h2 {
        font-size: 1.25rem;
    }
    
    .nav-logo span {
        font-size: 0.625rem;
    }
    
    .nav-menu {
        display: none;
    }

    .nav-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-social-proof {
        justify-content: center;
        gap: 1rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .doctor-badges {
        position: static;
        margin-top: 1rem;
        justify-content: center;
    }
    

    
    .teste-container {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .pergunta-teste h3 {
        font-size: 1.25rem;
    }
    
    .opcoes label {
        padding: 0.75rem 1rem;
    }
    
    .opcao-texto {
        font-size: 1rem;
    }
    
    .navegacao-teste {
        flex-direction: column;
        gap: 1rem;
    }
    
    .resultado-teste {
        margin: 0 1rem;
        padding: 2rem;
    }
    
    .resultado-beneficios {
        padding: 1rem;
    }
    
    .resultado-beneficios li {
        font-size: 0.875rem;
    }
    
    .credenciais-resultados {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .estatisticas-tranquilas {
        padding: 30px 0;
    }
    
    .estatisticas-tranquilas h2 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .stat-card {
        padding: 1rem;
    }
    
    .stat-numero {
        font-size: 1.5rem;
        margin-bottom: 0.25rem;
    }
    
    .stat-card p {
        font-size: 0.9rem;
    }
    
    .stat-card small {
        font-size: 0.75rem;
    }
    
    .mensagem-esperanca {
        padding: 1rem;
    }
    
    .mensagem-esperanca h3 {
        font-size: 1.125rem;
        margin-bottom: 0.5rem;
    }
    
    .opcoes label {
        padding: 0.75rem;
        font-size: 0.9rem;
    }
    
    .sobre-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .sobre-image {
        transform: none;
        order: -1;
    }
    
    .estatisticas-principais {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .credenciais-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .especialidades-grid {
        grid-template-columns: 1fr;
    }
    
    .citacao-destaque {
        padding: 1.5rem;
    }
    
    .citacao-destaque blockquote {
        font-size: 1.125rem;
    }
    
    .card-header {
        padding: 1.5rem;
    }
    
    .card-content {
        padding: 1.5rem;
    }
    
    .formacao-lista li {
        padding: 0.75rem 0;
    }
    
    .especialidade-item {
        padding: 0.75rem;
    }
    
    .stat-item {
        padding: 1.5rem;
        gap: 1rem;
    }
    
    .stat-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
        margin-bottom: 0.25rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
    
    .overlay-badge {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }
    
    .overlay-badge i {
        font-size: 1rem;
    }
    
    .sobre-content,
    .clinica-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .numeros-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .galeria-grid {
        grid-template-columns: 1fr;
    }
    
    .contato-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .servicos-grid,
    .diferenciais-grid,
    .depoimentos-slider,
    .passos-grid {
        grid-template-columns: 1fr;
    }
    
    .cirurgia-fotos {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .cirurgia-fotos img {
        height: 100px;
    }
    
    .cirurgia-destaque {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 1.5rem;
    }
    
    .cirurgia-fotos-destaque {
        grid-template-columns: 1fr 1fr;
    }
    
    .cirurgia-fotos-destaque img {
        height: 150px;
    }
    
    .cirurgia-texto h3 {
        font-size: 1.25rem;
    }
    
    .cirurgia-texto p {
        font-size: 1rem;
    }
    
    .stats-row {
        flex-direction: column;
        gap: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .doctor-photo {
        width: 300px;
        height: 400px;
    }
    
    .whatsapp-text {
        display: none;
    }
    
    .whatsapp-tooltip {
        display: none;
    }
}

/* Melhorias para dispositivos móveis - Layout mais condensado */
@media (max-width: 768px) {
    /* Reduzir padding geral */
    .container {
        padding: 0 15px;
    }
    
    /* Header mais compacto */
    .navbar {
        padding: 0.375rem 0;
    }
    
    .nav-logo h2 {
        font-size: 1.125rem;
    }
    
    .nav-logo span {
        font-size: 0.5rem;
    }
    
    .nav-menu {
        display: none;
    }

    .nav-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }
    
    /* Hero section mais compacto */
    .hero {
        padding: 80px 0 60px;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 1.5rem;
    }
    
    .hero-social-proof {
        justify-content: center;
        gap: 0.75rem;
        margin-bottom: 1.5rem;
    }
    
    .proof-item {
        font-size: 0.875rem;
        padding: 0.5rem 0.75rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .btn-large {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .btn-subtitle {
        font-size: 0.75rem;
    }
    
    .doctor-badges {
        position: static;
        margin-top: 0.75rem;
        justify-content: center;
        gap: 0.5rem;
    }
    
    .doctor-photo {
        width: 280px;
        height: 380px;
    }
    
    /* Seções mais compactas */
    .section-header {
        margin-bottom: 2rem;
    }
    
    .section-header h2 {
        font-size: 1.75rem;
        margin-bottom: 0.75rem;
    }
    
    .section-header p {
        font-size: 0.9rem;
    }
    
    /* Teste de autoavaliação mais compacto */
    .teste-autoavaliacao {
        padding: 2rem 0;
    }
    
    .teste-container {
        padding: 1.5rem;
        margin: 0 0.5rem;
    }
    
    .pergunta-teste h3 {
        font-size: 1.125rem;
        line-height: 1.4;
    }
    
    .opcoes label {
        padding: 0.625rem 0.875rem;
        margin-bottom: 0.5rem;
    }
    
    .opcao-texto {
        font-size: 0.9rem;
    }
    
    .navegacao-teste {
        flex-direction: column;
        gap: 0.75rem;
        margin-top: 1.5rem;
    }
    
    .resultado-teste {
        margin: 0 0.5rem;
        padding: 1.5rem;
    }
    
    .resultado-beneficios {
        padding: 0.75rem;
    }
    
    .resultado-beneficios li {
        font-size: 0.8rem;
        margin-bottom: 0.5rem;
    }
    
    /* Estatísticas mais compactas */
    .estatisticas-tranquilas {
        padding: 2rem 0;
    }
    
    .estatisticas-tranquilas h2 {
        font-size: 1.5rem;
        margin-bottom: 1.25rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
        margin-bottom: 1.25rem;
    }
    
    .stat-card {
        padding: 0.875rem;
    }
    
    .stat-numero {
        font-size: 1.375rem;
        margin-bottom: 0.375rem;
    }
    
    .stat-card p {
        font-size: 0.85rem;
        line-height: 1.3;
    }
    
    .stat-card small {
        font-size: 0.7rem;
    }
    
    .mensagem-esperanca {
        padding: 0.875rem;
    }
    
    .mensagem-esperanca h3 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .mensagem-esperanca p {
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    /* Sobre section mais compacto */
    .sobre {
        padding: 3rem 0;
    }
    
    .sobre-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .sobre-image {
        transform: none;
        order: -1;
    }
    
    .sobre-image img {
        max-width: 100%;
        height: auto;
    }
    
    .citacao-destaque {
        padding: 1.25rem;
        margin-bottom: 1.5rem;
    }
    
    .citacao-destaque blockquote {
        font-size: 1rem;
        line-height: 1.5;
    }
    
    .citacao-destaque cite {
        font-size: 0.85rem;
    }
    
    /* Credenciais mais compactas */
    .credenciais-section {
        margin-top: 2rem;
    }
    
    .credenciais-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .credencial-card {
        padding: 0;
    }
    
    .card-header {
        padding: 1.25rem;
    }
    
    .card-header h3 {
        font-size: 1.125rem;
    }
    
    .card-content {
        padding: 1.25rem;
    }
    
    .formacao-lista li {
        padding: 0.625rem 0;
    }
    
    .especialidade-item {
        padding: 0.625rem;
    }
    
    /* Clínica mais compacta */
    .clinica {
        padding: 3rem 0;
    }
    
    .clinica-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .clinica-text h3 {
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }
    
    .clinica-text p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .clinica-destaques {
        gap: 0.75rem;
        margin-top: 1rem;
    }
    
    .destaque-item {
        padding: 0.625rem;
        font-size: 0.85rem;
    }
    
    .galeria-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    /* Especialidades mais compactas */
    .diferenciais {
        padding: 3rem 0;
    }
    
    .diferenciais-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .diferencial-card {
        padding: 1.25rem;
    }
    
    .diferencial-card h3,
    .passo-card h3 {
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }
    
    .diferencial-card p,
    .passo-card p {
        font-size: 1rem;
        line-height: 1.5;
    }
    
    .cirurgia-destaque {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1.25rem;
        margin-bottom: 2rem;
    }
    
    .cirurgia-fotos-destaque {
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
    }
    
    .cirurgia-fotos-destaque img {
        height: 120px;
    }
    
    .cirurgia-texto h3 {
        font-size: 1.125rem;
        margin-bottom: 0.75rem;
    }
    
    .cirurgia-texto p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    /* FAQ mais compacto */
    .faq {
        padding: 3rem 0;
    }
    
    .faq-container {
        gap: 1rem;
    }
    
    .faq-item {
        padding: 1rem;
    }
    
    .faq-question {
        padding: 0.875rem;
    }
    
    .faq-question h3 {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .faq-answer p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    /* Depoimentos mais compactos */
    .depoimentos {
        padding: 3rem 0;
    }
    
    .depoimentos-stats {
        margin-bottom: 2rem;
    }
    
    .stats-row {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .stat-highlight {
        padding: 1rem;
    }
    
    .stat-highlight .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-highlight .stat-label {
        font-size: 0.85rem;
    }
    
    .depoimentos-slider {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .depoimento-card {
        padding: 1rem;
    }
    
    .depoimento-content p {
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    .depoimento-author h4 {
        font-size: 0.85rem;
    }
    
    .depoimento-author span {
        font-size: 0.75rem;
    }
    
    /* Primeiros passos mais compactos */
    .primeiros-passos {
        padding: 3rem 0;
    }
    
    .passos-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .passo-card {
        padding: 1rem;
    }
    
    .passo-card h3 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .passo-card p {
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    .passos-cta {
        margin-top: 1.5rem;
    }
    
    .passos-cta p {
        font-size: 0.85rem;
        margin-bottom: 0.75rem;
    }
    
    /* Contato mais compacto */
    .contato {
        padding: 3rem 0;
    }
    
    .contato-content {
        gap: 1.5rem;
    }
    
    .contato-item {
        padding: 0.75rem;
    }
    
    .contato-item h3 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .contato-item p {
        font-size: 0.85rem;
        line-height: 1.3;
    }
    
    .contato-cta {
        padding: 1.25rem;
    }
    
    .contato-cta h3 {
        font-size: 1.125rem;
        margin-bottom: 0.5rem;
    }
    
    .contato-cta p {
        font-size: 0.85rem;
        margin-bottom: 1.25rem;
    }
    
    /* Footer mais compacto */
    .footer {
        padding: 2rem 0 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    
    .footer-section h3,
    .footer-section h4 {
        font-size: 1.125rem;
        margin-bottom: 0.75rem;
    }
    
    .footer-section p {
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    .footer-section ul li {
        margin-bottom: 0.5rem;
    }
    
    .footer-section ul li a {
        font-size: 0.85rem;
    }
    
    .footer-bottom {
        padding: 0.75rem 0 0;
    }
    
    .footer-bottom p {
        font-size: 0.75rem;
    }
    
    /* WhatsApp float mais compacto */
    .whatsapp-float {
        bottom: 15px;
        right: 15px;
    }
    
    .whatsapp-btn {
        width: 55px;
        height: 55px;
        font-size: 1.375rem;
    }
    
    .whatsapp-text {
        display: none;
    }
    
    .whatsapp-tooltip {
        display: none;
    }
}

/* Melhorias para telas muito pequenas */
@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    .navbar {
        padding: 0.25rem 0;
    }
    
    .nav-logo h2 {
        font-size: 1rem;
    }
    
    .nav-logo span {
        font-size: 0.45rem;
    }
    
    .hero {
        padding: 70px 0 50px;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.1;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    .btn-large {
        padding: 0.75rem 1.25rem;
        font-size: 0.85rem;
    }
    
    .btn-subtitle {
        font-size: 0.7rem;
    }
    
    .doctor-photo {
        width: 250px;
        height: 350px;
    }
    
    section {
        padding: 2rem 0;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .section-header p {
        font-size: 0.85rem;
    }
    
    .teste-container {
        padding: 1.25rem;
        margin: 0 0.25rem;
    }
    
    .pergunta-teste h3 {
        font-size: 1rem;
    }
    
    .opcoes label {
        padding: 0.5rem 0.75rem;
        font-size: 0.85rem;
    }
    
    .opcao-texto {
        font-size: 0.85rem;
    }
    
    .resultado-teste {
        margin: 0 0.25rem;
        padding: 1.25rem;
    }
    
    .estatisticas-tranquilas {
        padding: 1.5rem 0;
    }
    
    .estatisticas-tranquilas h2 {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }
    
    .stats-grid {
        gap: 0.5rem;
        margin-bottom: 1rem;
    }
    
    .stat-card {
        padding: 0.75rem;
    }
    
    .stat-numero {
        font-size: 1.25rem;
        margin-bottom: 0.25rem;
    }
    
    .stat-card p {
        font-size: 0.8rem;
        line-height: 1.3;
    }
    
    .stat-card small {
        font-size: 0.7rem;
    }
    
    .mensagem-esperanca {
        padding: 0.75rem;
    }
    
    .mensagem-esperanca h3 {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }
    
    .mensagem-esperanca p {
        font-size: 0.8rem;
        line-height: 1.4;
    }
    
    .sobre {
        padding: 2rem 0;
    }
    
    .sobre-content {
        gap: 1.25rem;
        margin-bottom: 1.25rem;
    }
    
    .citacao-destaque {
        padding: 1rem;
        margin-bottom: 1.25rem;
    }
    
    .citacao-destaque blockquote {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    .citacao-destaque cite {
        font-size: 0.8rem;
    }
    
    .credenciais-grid {
        gap: 1.25rem;
    }
    
    .card-header {
        padding: 1rem;
    }
    
    .card-header h3 {
        font-size: 1rem;
    }
    
    .card-content {
        padding: 1rem;
    }
    
    .formacao-lista li {
        padding: 0.5rem 0;
    }
    
    .especialidade-item {
        padding: 0.5rem;
    }
    
    .clinica {
        padding: 2rem 0;
    }
    
    .clinica-content {
        gap: 1.25rem;
    }
    
    .clinica-text h3 {
        font-size: 1.125rem;
        margin-bottom: 0.5rem;
    }
    
    .clinica-text p {
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    .clinica-destaques {
        gap: 0.5rem;
        margin-top: 0.75rem;
    }
    
    .destaque-item {
        padding: 0.5rem;
        font-size: 0.8rem;
    }
    
    .galeria-grid {
        gap: 0.5rem;
    }
    
    .diferenciais {
        padding: 2rem 0;
    }
    
    .diferenciais-grid {
        gap: 1rem;
    }
    
    .diferencial-card {
        padding: 1rem;
    }
    
    .diferencial-card h3 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .diferencial-card p {
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    .cirurgia-destaque {
        gap: 1.25rem;
        padding: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .cirurgia-fotos-destaque {
        gap: 0.5rem;
    }
    
    .cirurgia-fotos-destaque img {
        height: 100px;
    }
    
    .cirurgia-texto h3 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .cirurgia-texto p {
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    .faq {
        padding: 2rem 0;
    }
    
    .faq-container {
        gap: 0.75rem;
    }
    
    .faq-item {
        padding: 0.75rem;
    }
    
    .faq-question {
        padding: 0.75rem;
    }
    
    .faq-question h3 {
        font-size: 0.9rem;
        line-height: 1.3;
    }
    
    .faq-answer p {
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    .depoimentos {
        padding: 2rem 0;
    }
    
    .depoimentos-stats {
        margin-bottom: 1.5rem;
    }
    
    .stats-row {
        gap: 1.25rem;
    }
    
    .stat-highlight {
        padding: 0.75rem;
    }
    
    .stat-highlight .stat-number {
        font-size: 1.25rem;
    }
    
    .stat-highlight .stat-label {
        font-size: 0.8rem;
    }
    
    .depoimentos-slider {
        gap: 1.25rem;
    }
    
    .depoimento-card {
        padding: 1rem;
    }
    
    .depoimento-content p {
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    .depoimento-author h4 {
        font-size: 0.85rem;
    }
    
    .depoimento-author span {
        font-size: 0.75rem;
    }
    
    .primeiros-passos {
        padding: 2rem 0;
    }
    
    .passos-grid {
        gap: 1.25rem;
    }
    
    .passo-card {
        padding: 1rem;
    }
    
    .passo-card h3 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .passo-card p {
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    .passos-cta {
        margin-top: 1.5rem;
    }
    
    .passos-cta p {
        font-size: 0.85rem;
        margin-bottom: 0.75rem;
    }
    
    .contato {
        padding: 2rem 0;
    }
    
    .contato-content {
        gap: 1.25rem;
    }
    
    .contato-item {
        padding: 0.75rem;
    }
    
    .contato-item h3 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .contato-item p {
        font-size: 0.85rem;
        line-height: 1.3;
    }
    
    .contato-cta {
        padding: 1.25rem;
    }
    
    .contato-cta h3 {
        font-size: 1.125rem;
        margin-bottom: 0.5rem;
    }
    
    .contato-cta p {
        font-size: 0.85rem;
        margin-bottom: 1.25rem;
    }
    
    .footer {
        padding: 1.5rem 0 0.75rem;
    }
    
    .footer-content {
        gap: 1.25rem;
    }
    
    .footer-section h3,
    .footer-section h4 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .footer-section p {
        font-size: 0.8rem;
        line-height: 1.3;
    }
    
    .footer-section ul li {
        margin-bottom: 0.375rem;
    }
    
    .footer-section ul li a {
        font-size: 0.8rem;
    }
    
    .footer-bottom {
        padding: 0.75rem 0 0;
    }
    
    .footer-bottom p {
        font-size: 0.75rem;
    }
    
    .whatsapp-float {
        bottom: 10px;
        right: 10px;
    }
    
    .whatsapp-btn {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Scroll Animations */
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.scroll-animate.animate,
.scroll-animate.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Animações específicas para novos elementos */
.stat-item.animate-in {
    animation: fadeInUp 0.6s ease-out;
}

.passo-card.animate-in {
    animation: fadeInUp 0.6s ease-out;
}

.faq-item.animate-in {
    animation: fadeInUp 0.6s ease-out;
}

.stat-highlight.animate-in {
    animation: fadeInUp 0.6s ease-out;
}

.galeria-item.animate-in {
    animation: fadeInUp 0.6s ease-out;
}

.destaque-item.animate-in {
    animation: fadeInUp 0.6s ease-out;
}

/* Animação para números */
@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.numero {
    animation: countUp 1s ease-out;
}

/* Melhorias finais para mobile - Performance e Acessibilidade */
@media (max-width: 768px) {
    /* Melhorar contraste e legibilidade */
    .hero-title,
    .section-header h2,
    .diferencial-card h3,
    .passo-card h3 {
        text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    }
    
    /* Aumentar tamanhos de fonte para melhor legibilidade */
    .hero-title {
        font-size: 2.75rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        line-height: 1.5;
        margin-bottom: 1.5rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    /* Aumentar texto geral */
    p, li {
        line-height: 1.6;
        text-align: left;
        font-size: 1rem;
    }
    
    /* Melhorar acessibilidade de links */
    a:focus {
        outline: 2px solid var(--primary-color);
        outline-offset: 2px;
    }
    
    /* Otimizar botões para touch */
    .btn-primary,
    .btn-secondary,
    .btn-large,
    button {
        min-height: 48px;
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
    }
    
    /* Melhorar feedback visual de botões */
    .btn-primary:active,
    .btn-secondary:active,
    .btn-large:active,
    button:active {
        transform: scale(0.98);
        transition: transform 0.1s ease;
    }
    
    /* Otimizar cards para melhor visualização */
    .diferencial-card,
    .servico-card,
    .passo-card,
    .depoimento-card,
    .faq-item {
        border-radius: 12px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
    }
    
    .diferencial-card:hover,
    .servico-card:hover,
    .passo-card:hover,
    .depoimento-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    }
    
    /* Melhorar espaçamento de ícones */
    .diferencial-icon,
    .servico-icon,
    .passo-icon {
        margin-bottom: 1rem;
    }
    
    /* Otimizar grid responsivo */
    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1rem;
    }
    
    .galeria-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 0.75rem;
    }
    
    /* Melhorar depoimentos para mobile */
    .depoimento-author img {
        width: 45px;
        height: 45px;
        border-radius: 50%;
    }
    
    /* Otimizar navegação do teste */
    .navegacao-teste button {
        min-height: 48px;
        font-size: 0.9rem;
        font-weight: 600;
        border-radius: 8px;
    }
    
    /* Melhorar resultado do teste */
    .resultado-teste {
        border-radius: 12px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        margin: 1rem 0;
    }
    
    /* Melhorar acessibilidade do WhatsApp */
    .whatsapp-btn {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
        transition: all 0.3s ease;
    }
    
    .whatsapp-btn:active {
        transform: scale(0.95);
        box-shadow: 0 2px 8px rgba(37, 211, 102, 0.4);
    }
    
    /* Otimizar imagens para mobile */
    img {
        border-radius: 8px;
        transition: transform 0.3s ease;
    }
    
    .galeria-item img:hover {
        transform: scale(1.02);
    }
    
    /* Melhorar contraste de texto */
    .text-light {
        color: var(--text-dark-secondary) !important;
    }
    
    /* Otimizar espaçamento de seções */
    section {
        padding: 2.5rem 0;
    }
    
    .hero {
        padding: 90px 0 70px;
    }
    
    /* Melhorar legibilidade de estatísticas */
    .stat-numero {
        font-weight: 700;
        color: var(--primary-color);
    }
    
    .stat-label {
        font-weight: 500;
        color: var(--text-dark-secondary);
    }
    
    /* Otimizar FAQ para mobile */
    .faq-question {
        cursor: pointer;
        user-select: none;
    }
    
    .faq-question:active {
        background-color: var(--bg-light);
    }
    
    /* Melhorar acessibilidade de formulários */
    input[type="radio"] {
        min-width: 24px;
        min-height: 24px;
        accent-color: var(--primary-color);
    }
    
    /* Otimizar espaçamento de listas */
    ul, ol {
        padding-left: 1.25rem;
    }
    
    li {
        margin-bottom: 0.5rem;
    }
    
    /* Melhorar contraste de badges */
    .badge,
    .overlay-badge {
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    /* Otimizar animações para mobile */
    .scroll-animate {
        transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    /* Melhorar performance de scroll */
    .header {
        will-change: transform;
        transform: translateZ(0);
    }
    
    /* Otimizar loading de imagens */
    img {
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    
    img.loaded {
        opacity: 1;
    }
}

/* Melhorias específicas para telas muito pequenas */
@media (max-width: 480px) {
    /* Reduzir ainda mais espaçamentos */
    .hero {
        padding: 70px 0 50px;
    }
    
    section {
        padding: 2rem 0;
    }
    
    .section-header {
        margin-bottom: 1.5rem;
    }
    
    /* Otimizar grid para telas pequenas */
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .galeria-grid {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    /* Melhorar legibilidade em telas pequenas */
    .hero-title {
        font-size: 1.75rem;
        line-height: 1.1;
        letter-spacing: -0.02em;
    }
    
    .section-header h2 {
        font-size: 1.375rem;
        line-height: 1.2;
    }
    
    /* Otimizar botões para telas pequenas */
    .btn-large {
        padding: 0.75rem 1.25rem;
        font-size: 0.85rem;
        border-radius: 8px;
    }
    
    .btn-subtitle {
        font-size: 0.7rem;
        margin-top: 0.25rem;
    }
    
    /* Melhorar espaçamento de cards */
    .diferencial-card,
    .servico-card,
    .passo-card,
    .depoimento-card,
    .faq-item {
        padding: 1rem;
        margin-bottom: 0.75rem;
    }
    
    /* Otimizar imagens para telas pequenas */
    .doctor-photo {
        width: 220px;
        height: 300px;
    }
    
    .cirurgia-fotos-destaque img {
        height: 90px;
    }
    
    /* Melhorar acessibilidade em telas pequenas */
    .nav-menu.active {
        padding: 0.75rem 0;
    }
    
    .nav-menu.active li {
        padding: 0.75rem 1.5rem;
    }
    
    .nav-menu.active a {
        font-size: 0.9rem;
        font-weight: 600;
    }
    
    /* Otimizar espaçamento de texto */
    p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    /* Melhorar contraste de elementos */
    .diferencial-card h3,
    .passo-card h3,
    .faq-question h3 {
        color: var(--text-dark);
        font-weight: 600;
    }
    
    /* Otimizar ícones para telas pequenas */
    .diferencial-icon,
    .servico-icon,
    .passo-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    /* Melhorar acessibilidade de botões */
    .btn-primary,
    .btn-secondary,
    .btn-large {
        min-height: 44px;
        font-weight: 600;
    }
    
    /* Otimizar WhatsApp para telas pequenas */
    .whatsapp-float {
        bottom: 15px;
        right: 15px;
    }
    
    .whatsapp-btn {
        width: 55px;
        height: 55px;
        font-size: 1.375rem;
        border-radius: 50%;
    }
    
    /* Melhorar legibilidade de estatísticas */
    .stat-numero {
        font-size: 1.5rem;
        font-weight: 700;
    }
    
    .stat-label {
        font-size: 0.85rem;
        font-weight: 500;
    }
    
    /* Otimizar espaçamento de seções */
    .sobre,
    .clinica,
    .diferenciais,
    .faq,
    .depoimentos,
    .primeiros-passos,
    .contato {
        padding: 2rem 0;
    }
    
    /* Melhorar contraste de elementos de fundo */
    .hero::before {
        opacity: 0.8;
    }
    
    .sobre::before,
    .diferenciais::before {
        opacity: 0.05;
    }
}

/* Melhorias de acessibilidade para mobile */
@media (max-width: 768px) {
    /* Melhorar contraste de texto */
    .text-muted {
        color: var(--text-dark-secondary) !important;
    }
    
    /* Otimizar foco para navegação por teclado */
    .nav-menu a:focus,
    .btn-primary:focus,
    .btn-secondary:focus {
        outline: 2px solid var(--primary-color);
        outline-offset: 2px;
        border-radius: 4px;
    }
    
    /* Melhorar acessibilidade de imagens */
    img {
        max-width: 100%;
        height: auto;
    }
    
    /* Otimizar para leitores de tela */
    .sr-only {
        position: absolute;
        width: 1px;
        height: 1px;
        padding: 0;
        margin: -1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
        border: 0;
    }
    
    /* Melhorar contraste de elementos interativos */
    .faq-question:hover,
    .opcoes label:hover {
        background-color: var(--bg-light);
    }
    
    /* Otimizar para touch */
    .diferencial-card,
    .servico-card,
    .passo-card,
    .depoimento-card {
        cursor: pointer;
        -webkit-tap-highlight-color: transparent;
    }
    
    /* Melhorar feedback visual */
    .btn-primary:hover,
    .btn-secondary:hover {
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }
}

/* Menu Mobile Funcional */
.nav-menu.active {
    display: flex;
    position: fixed;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 1rem 0;
    border-top: 1px solid var(--border-color);
    box-shadow: var(--shadow-lg);
    z-index: 999;
}

.nav-menu.active li {
    margin: 0;
    padding: 0.75rem 2rem;
    border-bottom: 1px solid var(--border-color);
}

.nav-menu.active li:last-child {
    border-bottom: none;
}

.nav-menu.active a {
    display: block;
    padding: 0.5rem 0;
    font-size: 1rem;
    font-weight: 600;
}

/* Hamburger Menu Animation */
.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Melhorias para scroll suave em mobile */
@media (max-width: 768px) {
    html {
        scroll-padding-top: 80px;
    }
    
    /* Melhorar espaçamento entre seções */
    section {
        scroll-margin-top: 80px;
    }
    
    /* Otimizar imagens para mobile */
    img {
        max-width: 100%;
        height: auto;
    }
    
    /* Melhorar legibilidade de texto */
    p {
        text-align: justify;
        hyphens: auto;
    }
    
    /* Otimizar botões para touch */
    .btn-primary,
    .btn-secondary,
    .btn-large {
        min-height: 44px;
        touch-action: manipulation;
    }
    
    /* Melhorar acessibilidade de links */
    a {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Otimizar formulários para mobile */
    input[type="radio"] {
        min-width: 20px;
        min-height: 20px;
    }
    
    /* Melhorar contraste e legibilidade */
    .hero-title,
    .section-header h2 {
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    }
    
    /* Otimizar cards para melhor visualização */
    .diferencial-card,
    .servico-card,
    .passo-card,
    .depoimento-card {
        border-radius: 12px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }
    
    /* Melhorar espaçamento de ícones */
    .diferencial-icon,
    .servico-icon,
    .passo-icon {
        margin-bottom: 0.75rem;
    }
    
    /* Otimizar grid de estatísticas */
    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    /* Melhorar responsividade de imagens da clínica */
    .galeria-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    /* Otimizar depoimentos para mobile */
    .depoimento-author img {
        width: 40px;
        height: 40px;
    }
    
    /* Melhorar navegação do teste */
    .navegacao-teste button {
        min-height: 44px;
        font-size: 0.9rem;
        font-weight: 600;
    }
    
    /* Otimizar resultado do teste */
    .resultado-teste {
        border-radius: 12px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }
    
    /* Melhorar acessibilidade do WhatsApp */
    .whatsapp-btn {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    }
    
    .whatsapp-btn:active {
        transform: scale(0.95);
    }
}

/* Melhorias específicas para telas muito pequenas */
@media (max-width: 480px) {
    /* Reduzir ainda mais espaçamentos */
    .hero {
        padding: 60px 0 40px;
    }
    
    .section-header {
        margin-bottom: 1.5rem;
    }
    
    /* Otimizar grid para telas pequenas */
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .galeria-grid {
        grid-template-columns: 1fr;
    }
    
    /* Melhorar legibilidade em telas pequenas */
    .hero-title {
        font-size: 1.75rem;
        line-height: 1.1;
    }
    
    .section-header h2 {
        font-size: 1.375rem;
    }
    
    /* Otimizar botões para telas pequenas */
    .btn-large {
        padding: 0.625rem 1rem;
        font-size: 0.8rem;
    }
    
    /* Melhorar espaçamento de cards */
    .diferencial-card,
    .servico-card,
    .passo-card,
    .depoimento-card {
        padding: 0.875rem;
    }
    
    /* Otimizar imagens para telas pequenas */
    .doctor-photo {
        width: 200px;
        height: 280px;
    }
    
    .cirurgia-fotos-destaque img {
        height: 80px;
    }
    
    /* Melhorar acessibilidade em telas pequenas */
    .nav-menu.active {
        padding: 0.75rem 0;
    }
    
    .nav-menu.active li {
        padding: 0.5rem 1.5rem;
    }
    
    .nav-menu.active a {
        font-size: 0.9rem;
    }
} 

/* Depoimentos mais legíveis */
.depoimento-content p {
    font-size: 1rem;
    line-height: 1.5;
}

.depoimento-author h4 {
    font-size: 1rem;
}

.depoimento-author span {
    font-size: 0.9rem;
}

/* Primeiros passos mais legíveis */
.passo-card h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.passo-card p {
    font-size: 1rem;
    line-height: 1.4;
}

.passos-cta p {
    font-size: 1rem;
    margin-bottom: 0.75rem;
}

/* Contato mais legível */
.contato-item h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.contato-item p {
    font-size: 1rem;
    line-height: 1.3;
}

.contato-cta h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.contato-cta p {
    font-size: 1rem;
    margin-bottom: 1.25rem;
} 

/* Melhorias para telas muito pequenas - Legibilidade */
@media (max-width: 480px) {
    .hero-title {
        font-size: 2.25rem;
        line-height: 1.1;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .section-header h2 {
        font-size: 1.75rem;
        line-height: 1.2;
    }
    
    .section-header p {
        font-size: 0.95rem;
    }
    
    /* Depoimentos para telas pequenas */
    .depoimento-content p {
        font-size: 0.95rem;
        line-height: 1.4;
    }
    
    .depoimento-author h4 {
        font-size: 0.95rem;
    }
    
    .depoimento-author span {
        font-size: 0.85rem;
    }
    
    /* Passos para telas pequenas */
    .passo-card h3 {
        font-size: 1.125rem;
        margin-bottom: 0.5rem;
    }
    
    .passo-card p {
        font-size: 0.95rem;
        line-height: 1.4;
    }
    
    .passo-numero-icon {
        font-size: 1.5rem;
        font-weight: 700;
    }
    
    .passo-numero-icon {
        font-size: 1.75rem;
        font-weight: 700;
    }
    
    .passos-cta p {
        font-size: 0.95rem;
        margin-bottom: 0.75rem;
    }
    
    /* Contato para telas pequenas */
    .contato-item h3 {
        font-size: 1.125rem;
        margin-bottom: 0.5rem;
    }
    
    .contato-item p {
        font-size: 0.95rem;
        line-height: 1.3;
    }
    
    .contato-cta h3 {
        font-size: 1.25rem;
        margin-bottom: 0.5rem;
    }
    
    .contato-cta p {
        font-size: 0.95rem;
        margin-bottom: 1.25rem;
    }
    
    /* Diferenciais para telas pequenas */
    .diferencial-card h3 {
        font-size: 1.125rem;
        margin-bottom: 0.5rem;
    }
    
    .diferencial-card p {
        font-size: 0.95rem;
        line-height: 1.4;
    }
    
    /* FAQ para telas pequenas */
    .faq-question h3 {
        font-size: 1rem;
        line-height: 1.3;
    }
    
    .faq-answer p {
        font-size: 0.95rem;
        line-height: 1.4;
    }
    
    /* Teste para telas pequenas */
    .pergunta-teste h3 {
        font-size: 1.125rem;
    }
    
    .opcao-texto {
        font-size: 0.95rem;
    }
    
    .resultado-teste h3 {
        font-size: 1.125rem;
    }
    
    .resultado-teste p {
        font-size: 0.95rem;
        line-height: 1.4;
    }
    
    /* Clínica para telas pequenas */
    .clinica-text h3 {
        font-size: 1.25rem;
        margin-bottom: 0.5rem;
    }
    
    .clinica-text p {
        font-size: 0.95rem;
        line-height: 1.4;
    }
    
    .destaque-item {
        font-size: 0.95rem;
    }
    
    /* Footer para telas pequenas */
    .footer-section h3,
    .footer-section h4 {
        font-size: 1.125rem;
        margin-bottom: 0.5rem;
    }
    
    .footer-section p {
        font-size: 0.95rem;
        line-height: 1.3;
    }
    
    .footer-section ul li a {
        font-size: 0.95rem;
    }
    
    .footer-bottom p {
        font-size: 0.85rem;
    }
    
    /* Mensagem de esperança para telas pequenas */
    .mensagem-esperanca h3 {
        font-size: 1.125rem;
        margin-bottom: 0.5rem;
    }
    
    .mensagem-esperanca p {
        font-size: 0.95rem;
        line-height: 1.4;
    }
    
    /* Citação para telas pequenas */
    .citacao-destaque blockquote {
        font-size: 1rem;
        line-height: 1.5;
    }
    
    .citacao-destaque cite {
        font-size: 0.9rem;
    }
    
    /* Credenciais para telas pequenas */
    .card-header h3 {
        font-size: 1.125rem;
    }
    
    .formacao-lista li strong {
        font-size: 0.95rem;
    }
    
    .formacao-lista li span {
        font-size: 0.9rem;
    }
    
    /* Estatísticas para telas pequenas */
    .stat-numero {
        font-size: 1.75rem;
        font-weight: 700;
    }
    
    .stat-label {
        font-size: 0.95rem;
        font-weight: 500;
    }
    
    .stat-card p {
        font-size: 0.95rem;
        line-height: 1.4;
    }
    
    .stat-card small {
        font-size: 0.8rem;
    }
}

/* Ocultar header na versão mobile */
@media (max-width: 768px) {
    .header {
        display: none !important;
    }
    
    /* Ajustar espaçamento do hero sem header */
    .hero {
        padding-top: 2rem;
        margin-top: 0;
    }
    
    /* Ajustar scroll padding sem header */
    html {
        scroll-padding-top: 0;
    }
    
    section {
        scroll-margin-top: 0;
    }
}

@media (max-width: 480px) {
    .header {
        display: none !important;
    }
    
    .hero {
        padding-top: 1.5rem;
        margin-top: 0;
    }
}

/* Header scroll effect - apenas para desktop */
.header.scrolled {
    background: rgba(255, 255, 255, 0.98) !important;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1) !important;
    backdrop-filter: blur(10px);
}

.header.scrolled .navbar {
    padding: 0.5rem 0;
}

.header.scrolled .nav-logo h2 {
    font-size: 1.5rem;
}

.header.scrolled .nav-logo span {
    font-size: 0.8rem;
}

/* Hamburger menu para mobile */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.hamburger:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}