/* --- 1. IMPORTAÇÃO DE FONTES LOCAIS --- */
/* Substitua 'MinhaFonte-Bold.ttf' pelo nome real do arquivo que você baixar */
@font-face {
    font-family: 'TituloElegante';
    src: url('../fonts/PlayfairDisplay-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'TextoModerno';
    src: url('../fonts/Montserrat-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* --- 2. VARIÁVEIS DE TEMA (Cores Dentista Premium) --- */
:root {
    --primary: #0a3d62;       /* Azul Profundo (Confiança) */
    --secondary: #3c6382;     /* Azul Médio */
    --accent: #28a745;        /* Verde (Saúde/WhatsApp) */
    --gold: #c5a059;          /* Dourado (Estética/Premium) */
    --light: #f8f9fa;         /* Fundo quase branco */
    --white: #ffffff;
    --text: #2d3436;          /* Cinza escuro para leitura */
}

/* --- 3. RESET E ESTILO GLOBAL --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'TextoModerno', sans-serif;
    line-height: 1.6;
    color: var(--text);
    background-color: var(--white);
    scroll-behavior: smooth;
}

h1, h2, h3 {
    font-family: 'TituloElegante', serif;
    color: var(--primary);
    line-height: 1.2;
}

/* --- 4. LAYOUT DA HERO (O "Escorregador") --- */
#hero {
    padding: 80px 5%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: linear-gradient(135deg, #f1f2f6 0%, #ffffff 100%);
    min-height: 90vh;
}

#hero img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid var(--white);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

#hero h1 {
    font-size: 3rem;
    max-width: 800px;
    margin-bottom: 20px;
}

#hero .hero-premissa {
    font-size: 1.2rem;
    max-width: 700px;
    color: var(--secondary);
    margin-bottom: 15px;
}

#hero .hero-escorregador {
    font-size: 1.1rem;
    font-weight: bold;
    color: var(--primary);
    margin-bottom: 30px;
}

/* --- 5. COMPONENTES REUTILIZÁVEIS --- */
#btn-whatsapp {
    display: inline-block;
    background-color: var(--accent);
    color: var(--white);
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#btn-whatsapp:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(40, 167, 69, 0.3);
}

.authority-badge {
    margin-bottom: 30px;
    font-size: 0.9rem;
    color: var(--secondary);
    font-style: italic;
}