:root {
    /* PALETA CONSULTAS - "Clínica Premium & Acolhedora" */
    --brand-navy: #0F172A; 
    --brand-blue: #1E3A8A; 
    --brand-gold: #D97706; 
    --brand-gold-light: #FDE68A;
    
    --bg-main: #FFFFFF;
    --bg-sand: #F8FAFC; 
    --text-main: #334155;
    --text-muted: #64748B;
    --border-color: #E2E8F0;
    
    --radius-full: 9999px;
    --radius-lg: 24px;
    --radius-md: 16px;
    
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Manrope', sans-serif; color: var(--text-main); background-color: var(--bg-main); line-height: 1.6; -webkit-font-smoothing: antialiased; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.text-center { text-align: center; }
.mb-4 { margin-bottom: 2rem; }
.mt-4 { margin-top: 2rem; }
.w-100 { width: 100%; }
.bg-sand { background-color: var(--bg-sand); }
.section-padding { padding: 90px 0; }

/* Tipografia */
.section-title { font-size: clamp(2rem, 4vw, 2.5rem); color: var(--brand-navy); font-weight: 800; line-height: 1.2; margin-bottom: 16px; letter-spacing: -0.5px; }
.highlight { color: var(--brand-blue); }

/* Botões */
.btn { display: inline-flex; align-items: center; justify-content: center; padding: 16px 32px; font-size: 1.05rem; font-weight: 700; border-radius: var(--radius-full); text-decoration: none; transition: var(--transition); cursor: pointer; border: none; font-family: inherit; }
.btn-primary { background-color: var(--brand-blue); color: white; box-shadow: 0 8px 20px rgba(30, 58, 138, 0.25); }
.btn-primary:hover { background-color: var(--brand-navy); transform: translateY(-3px); box-shadow: 0 12px 25px rgba(15, 23, 42, 0.3); }
.btn-accent { background-color: var(--brand-gold); color: white; box-shadow: 0 8px 20px rgba(217, 119, 6, 0.3); }
.btn-accent:hover { background-color: #B45309; transform: translateY(-3px); }
.btn-outline { background-color: transparent; border: 2px solid var(--border-color); color: var(--brand-navy); }
.btn-outline:hover { border-color: var(--brand-blue); color: var(--brand-blue); background: white; }
.btn-large { font-size: 1.2rem; padding: 20px 40px; }

/* Topbar & WhatsApp */
.topbar { background-color: var(--brand-navy); color: white; text-align: center; padding: 12px 20px; font-size: 0.85rem; font-weight: 700; letter-spacing: 1px; display: flex; align-items: center; justify-content: center; gap: 10px; }
.pulse-dot { width: 8px; height: 8px; background-color: var(--brand-gold); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(217, 119, 6, 0.7); } 70% { box-shadow: 0 0 0 10px rgba(217, 119, 6, 0); } 100% { box-shadow: 0 0 0 0 rgba(217, 119, 6, 0); } }

.fab-whatsapp { position: fixed; bottom: 30px; right: 30px; background-color: #25D366; color: white; width: 64px; height: 64px; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-lg); z-index: 999; transition: var(--transition); }
.fab-whatsapp:hover { transform: translateY(-5px) scale(1.05); }

/* Hero Premium */
.hero-premium { padding: 60px 0 100px; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 60px; align-items: center; }
.badge-group { display: flex; gap: 12px; margin-bottom: 24px; flex-wrap: wrap; }
.badge { display: inline-block; padding: 6px 16px; background-color: var(--brand-gold-light); color: #92400E; border-radius: var(--radius-full); font-size: 0.85rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.5px; }
.badge-outline { background: transparent; border: 1px solid var(--border-color); color: var(--text-muted); }

.hero-premium h1 { font-size: clamp(2.5rem, 4.5vw, 3.8rem); font-weight: 800; color: var(--brand-navy); margin-bottom: 20px; letter-spacing: -1px; line-height: 1.1; }
.hero-premium .subtitle { font-size: 1.15rem; color: var(--text-muted); margin-bottom: 40px; max-width: 90%; }

.hero-actions { display: flex; flex-direction: column; gap: 24px; align-items: flex-start; }
.trust-indicators { display: flex; align-items: center; gap: 16px; }
.avatars { display: flex; }
.avatars img { width: 48px; height: 48px; border-radius: 50%; border: 3px solid white; object-fit: cover; margin-left: -16px; box-shadow: var(--shadow-sm); }
.avatars img:first-child { margin-left: 0; }
.trust-text strong { display: block; color: var(--brand-navy); font-size: 0.95rem; }
.trust-text span { color: var(--text-muted); font-size: 0.85rem; }

.hero-image { position: relative; border-radius: var(--radius-lg); padding-bottom: 20px; padding-right: 20px; }
.hero-image::before { content: ''; position: absolute; bottom: 0; right: 0; width: 80%; height: 80%; background-color: var(--brand-gold-light); border-radius: var(--radius-lg); z-index: -1; }
.hero-image img { width: 100%; height: auto; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); z-index: 1; position: relative; }

.floating-info { position: absolute; bottom: 40px; left: -30px; background: white; padding: 20px; border-radius: var(--radius-md); box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 16px; z-index: 10; border-left: 4px solid var(--brand-blue); }
.floating-info .icon { font-size: 2rem; }
.floating-info .text strong { display: block; color: var(--brand-navy); font-size: 1.05rem; }
.floating-info .text span { color: var(--text-muted); font-size: 0.9rem; }

/* Reasons Cards Grid */
.section-header { max-width: 700px; margin: 0 auto 60px; }
.section-header p { font-size: 1.1rem; color: var(--text-muted); }

.reasons-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.reason-card { background: white; padding: 40px; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); border: 1px solid transparent; transition: var(--transition); }
.reason-card:hover { border-color: var(--brand-gold-light); transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.rc-icon { font-size: 2.5rem; margin-bottom: 20px; background: var(--bg-sand); width: 70px; height: 70px; display: flex; align-items: center; justify-content: center; border-radius: var(--radius-md); }
.reason-card h3 { font-size: 1.3rem; color: var(--brand-navy); margin-bottom: 12px; }
.reason-card p { color: var(--text-muted); font-size: 1rem; }

/* Eval Grid (O que avaliamos) */
.eval-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; }
.eval-item { background: var(--bg-sand); padding: 30px; border-radius: var(--radius-md); position: relative; border-top: 4px solid var(--brand-blue); }
.eval-num { position: absolute; top: -20px; left: 30px; background: var(--brand-gold); color: white; width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; border-radius: 50%; font-weight: 800; font-size: 1.2rem; box-shadow: var(--shadow-sm); }
.eval-item strong { display: block; font-size: 1.2rem; color: var(--brand-navy); margin-bottom: 12px; margin-top: 10px; }
.eval-item p { color: var(--text-muted); font-size: 0.95rem; margin: 0; }

/* Differentials */
.diff-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.diff-image { position: relative; }
.diff-image img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.experience-badge { position: absolute; top: -20px; right: -20px; background: var(--brand-navy); color: white; padding: 20px; border-radius: var(--radius-md); text-align: center; box-shadow: var(--shadow-lg); }
.experience-badge strong { display: block; font-size: 2rem; color: var(--brand-gold); line-height: 1; }
.experience-badge span { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; }

.premium-list { list-style: none; display: flex; flex-direction: column; gap: 24px; }
.premium-list li { display: flex; gap: 20px; align-items: flex-start; }
.check-icon { background: var(--brand-blue); color: white; width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; border-radius: 50%; font-size: 0.9rem; flex-shrink: 0; margin-top: 4px; }
.premium-list strong { display: block; color: var(--brand-navy); font-size: 1.15rem; margin-bottom: 4px; }
.premium-list p { color: var(--text-muted); margin: 0; }

/* Map Card Elegante */
.map-card { background: white; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); display: grid; grid-template-columns: 400px 1fr; overflow: hidden; border: 1px solid var(--border-color); }
.map-sidebar { padding: 40px; display: flex; flex-direction: column; justify-content: center; }
.map-sidebar h2 { font-size: 1.8rem; color: var(--brand-navy); margin-bottom: 16px; line-height: 1.2; }
.map-sidebar p { color: var(--text-muted); font-size: 1rem; }

.route-pills { display: flex; flex-wrap: wrap; gap: 10px; }
.pill { background: var(--bg-sand); border: 1px solid var(--border-color); padding: 10px 16px; border-radius: var(--radius-full); font-size: 0.9rem; font-weight: 600; color: var(--text-main); cursor: pointer; transition: var(--transition); display: flex; align-items: center; gap: 8px; font-family: inherit; }
.pill span { color: var(--brand-gold); background: white; padding: 2px 8px; border-radius: 12px; font-size: 0.8rem; box-shadow: var(--shadow-sm); }
.pill:hover { border-color: var(--brand-blue); }
.pill.active { background: var(--brand-blue); color: white; border-color: var(--brand-blue); }
.pill.active span { color: var(--brand-blue); }
.btn-gps { margin-top: 20px; }

.map-frame iframe { width: 100%; height: 100%; min-height: 400px; display: block; }

/* FAQ Minimalista */
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 16px; }
.faq-box { background: white; border: 1px solid var(--border-color); border-radius: var(--radius-md); cursor: pointer; transition: var(--transition); box-shadow: var(--shadow-sm); }
.faq-box:hover { border-color: var(--brand-blue); }
.faq-head { padding: 24px; font-weight: 700; color: var(--brand-navy); font-size: 1.1rem; position: relative; }
.faq-head::after { content: '+'; position: absolute; right: 24px; font-size: 1.5rem; color: var(--brand-blue); font-weight: 400; transition: transform 0.3s; }
.faq-box.active .faq-head::after { transform: rotate(45deg); }
.faq-body { padding: 0 24px; max-height: 0; overflow: hidden; color: var(--text-muted); transition: all 0.3s ease; }
.faq-box.active .faq-body { padding: 0 24px 24px; max-height: 300px; }

/* Footer */
.footer-premium { background-color: var(--brand-navy); padding: 80px 0 40px; }
.text-white { color: white !important; }
.op-80 { opacity: 0.8; font-size: 1.1rem; }
.footer-divider { height: 1px; background: rgba(255,255,255,0.1); margin: 60px 0 30px; }
.copyright { color: rgba(255,255,255,0.5); font-size: 0.9rem; }

/* Animations */
.reveal { opacity: 0; transform: translateY(30px); transition: all 0.8s cubic-bezier(0.5, 0, 0, 1); }
.reveal.active { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }

/* Responsive */
@media (max-width: 992px) {
    .hero-grid, .diff-grid { grid-template-columns: 1fr; gap: 40px; }
    .floating-info { left: 20px; bottom: -20px; }
    .map-card { grid-template-columns: 1fr; }
    .map-frame iframe { min-height: 350px; }
}
@media (max-width: 768px) {
    .hero-premium h1 { font-size: 2.2rem; }
    .hero-actions { align-items: stretch; width: 100%; }
    .btn { width: 100%; }
    .trust-indicators { justify-content: center; margin-top: 16px; }
    .section-padding { padding: 60px 0; }
    .route-pills { justify-content: flex-start; overflow-x: auto; padding-bottom: 10px; flex-wrap: nowrap; }
    .pill { white-space: nowrap; flex-shrink: 0; }
}