/* --- CONFIGURAÇÕES GERAIS --- */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Poppins', sans-serif; line-height: 1.6; background-color: #f4f9f9; color: #333; scroll-behavior: smooth; }

/* --- NAVEGAÇÃO --- */
#menu-principal {
    position: fixed; top: 0; width: 100%;
    display: flex; justify-content: space-between; align-items: center;
    padding: 15px 8%; background: rgba(255, 255, 255, 0.98);
    z-index: 1000; box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.logo { font-size: 1.6rem; font-weight: 700; color: #0077b6; }
.logo span { color: #00b4d8; }
.menu { display: flex; list-style: none; }
.menu li { margin-left: 30px; }
.menu li a { text-decoration: none; color: #023e8a; font-weight: 600; transition: 0.3s; }
.menu li a:hover { color: #00b4d8; }

/* --- BANNER (HERO) --- */
.banner-container { height: 100vh; }
#banner-vibrante {
    background: linear-gradient(rgba(2, 62, 138, 0.7), rgba(2, 62, 138, 0.5)), 
                url('https://images.unsplash.com/photo-1527066236129-8a149c9eb189?auto=format&fit=crop&w=1920&q=80');
    background-size: cover; background-position: center; background-attachment: fixed;
    height: 100%; display: flex; justify-content: center; align-items: center; text-align: center;
}
.banner-conteudo { color: white; padding: 20px; max-width: 800px; }
.banner-conteudo h1 { font-size: 3.5rem; margin-bottom: 20px; text-shadow: 2px 2px 10px rgba(0,0,0,0.3); }
.btn-principal {
    display: inline-block; padding: 15px 45px; background: #00b4d8;
    color: white; text-decoration: none; border-radius: 50px; font-weight: bold; transition: 0.3s;
}
.btn-principal:hover { background: #0077b6; transform: translateY(-3px); }

/* --- SEÇÕES --- */
section { padding: 100px 10%; }
.titulo-sessao { text-align: center; font-size: 2.5rem; color: #03045e; margin-bottom: 50px; }
.secao-azul { background-color: #023e8a; color: white; }
.secao-azul .titulo-sessao { color: white; }

/* --- GRID DE FATOS --- */
.grid-fatos { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }
.fato-card { background: white; padding: 40px; border-radius: 20px; text-align: center; box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
.fato-card .emoji { font-size: 3rem; display: block; margin-bottom: 15px; }

/* --- TIMELINE --- */
.timeline-tratamento { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 20px; }
.passo { flex: 1; min-width: 200px; background: rgba(255,255,255,0.1); padding: 25px; border-radius: 12px; border-top: 4px solid #90e0ef; }

/* --- GUIAS --- */
.cards-container { display: flex; gap: 30px; flex-wrap: wrap; justify-content: center; }
.guia-detalhado { background: white; padding: 35px; border-radius: 20px; width: 45%; min-width: 300px; border-bottom: 6px solid #00b4d8; }
.guia-detalhado ul { list-style: none; margin-top: 15px; }
.guia-detalhado li { margin-bottom: 10px; padding-left: 25px; position: relative; }
.guia-detalhado li::before { content: '✔️'; position: absolute; left: 0; color: #00b4d8; }

/* --- GALERIA GRID --- */
.galeria-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 25px; }
.img-box { position: relative; height: 320px; border-radius: 20px; overflow: hidden; box-shadow: 0 15px 35px rgba(0,0,0,0.2); }
.img-box img { width: 100%; height: 100%; object-fit: cover; transition: 0.7s; }
.img-box:hover img { transform: scale(1.1); filter: saturate(1.3); }
.legenda { position: absolute; bottom: 0; width: 100%; background: rgba(0, 119, 182, 0.9); color: white; padding: 15px; text-align: center; font-weight: bold; }

/* --- CONTATO E RODAPÉ --- */
.secao-contato { background: #03045e; color: white; text-align: center; }
.form-wrapper { max-width: 600px; margin: 0 auto; }
.form-wrapper input, .form-wrapper textarea { width: 100%; padding: 15px; margin-bottom: 20px; border-radius: 10px; border: none; font-family: inherit; }
.form-wrapper button { width: 100%; padding: 18px; background: #00b4d8; color: white; border: none; font-weight: bold; border-radius: 10px; cursor: pointer; transition: 0.3s; }
.form-wrapper button:hover { background: #0077b6; }
footer { background: #000814; color: white; text-align: center; padding: 60px; }