@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;700&display=swap');

/* RESET */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #0A192F; /* Azul Escuro */
    color: white;
}

/* NAVBAR */
.navbar {
    display: flex; justify-content: space-between; align-items: center;
    padding: 1rem 5%; background-color: #0A192F;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    position: sticky; top: 0; z-index: 1000;
}
.logo { color: #D4AF37; font-weight: bold; font-size: 1.5rem; }
.nav-links { display: flex; list-style: none; gap: 20px; }
.nav-links a { color: white; text-decoration: none; font-size: 0.9rem; }
.btn-agendar { background: #D4AF37; color: #0A192F; padding: 8px 15px; border-radius: 5px; text-decoration: none; font-weight: bold; }

/* HERO SECTION */
.hero {
    display: flex;
    flex-direction: column-reverse; /* No celular: Imagem em cima, texto embaixo (ou vice-versa se preferir column) */
    padding: 40px 5%;
    align-items: center;
    gap: 40px;
    min-height: 90vh;
}

.hero-content { flex: 1; text-align: center; }
.hero-content h1 { font-size: 2.2rem; margin-bottom: 20px; line-height: 1.2; }
.hero-content h1 span { color: #D4AF37; }
.hero-content p { margin-bottom: 30px; font-size: 1.1rem; }

.hero-botoes { display: flex; flex-direction: column; gap: 15px; }

.btn-agende-agora { background: #25D366; color: white; padding: 15px; border-radius: 8px; text-decoration: none; font-weight: bold; text-align: center; }
.btn-siga-nos { border: 2px solid #D4AF37; color: #D4AF37; padding: 15px; border-radius: 8px; text-decoration: none; font-weight: bold; text-align: center; }

/* CORREÇÃO DA IMAGEM */
.hero-image-container {
    flex: 1;
    width: 100%;
    display: flex;
    justify-content: center;
}

.img-real {
    width: 100%;
    max-width: 600px; /* Limita o tamanho máximo */
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    border: 2px solid #D4AF37; /* Borda dourada para destacar */
}

/* CARDS */
.especialidades { padding: 60px 5%; text-align: center; background: #0e1e35; }
.linha-dourada { width: 50px; height: 3px; background: #D4AF37; margin: 10px auto 40px; }
.cards-container { display: flex; flex-wrap: wrap; gap: 20px; justify-content: center; }
.card { background: rgba(255,255,255,0.05); padding: 30px; border-radius: 10px; width: 300px; }
.card i { font-size: 2rem; color: #D4AF37; margin-bottom: 15px; }

/* MAPA E FOOTER */
.map-section { padding: 60px 5%; text-align: center; }
.map-container { margin-top: 30px; border: 2px solid #D4AF37; border-radius: 15px; overflow: hidden; }
.footer { padding: 30px; background: #060e1a; text-align: center; border-top: 1px solid rgba(255,255,255,0.1); }
.whatsapp-float { position: fixed; bottom: 20px; right: 20px; background: #25D366; color: white; width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 30px; z-index: 2000; }

/* RESPONSIVIDADE DESKTOP */
@media (min-width: 768px) {
    .navbar { padding: 1rem 8%; }
    
    .hero {
        flex-direction: row; /* Lado a lado no PC */
        text-align: left;
        height: 85vh; /* Altura fixa no PC para ficar bonito */
    }
    
    .hero-content { text-align: left; padding-right: 50px; }
    .hero-botoes { flex-direction: row; }
    .btn-agende-agora, .btn-siga-nos { width: auto; padding: 15px 30px; }
    
    .img-real {
        max-height: 500px; /* Não deixa a imagem ficar gigante na altura */
        width: auto; 
        object-fit: cover;
    }
}

@media (max-width: 768px) {
    .nav-links { display: none; } /* Esconde menu no mobile para nao quebrar */
    .hero { gap: 30px; padding-top: 20px; }
}