/* Reset e Estilos Gerais */
html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    background-color: #fdfdfd; 
    color: #1a1a1a; 
}

/* --- Seção 1: Hero (Tela Cheia) --- */
#hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    box-sizing: border-box;
    
    background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('./assets/foto-perfil.jpg');
    background-size: cover;
    background-position: center 30%;
    background-attachment: fixed;
}

.hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.hero-title, .hero-subtitle, .hero-credentials {
    color: white;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.6);
}

.hero-title {
    font-size: 3.5em;
    font-weight: 700;
    margin: 0;
    letter-spacing: 1px;
}

.hero-subtitle {
    font-size: 1.2em;
    margin: 10px 0;
    font-weight: 400;
    letter-spacing: 1px;
}

.hero-credentials {
    font-size: 0.9em;
    margin: 10px 0 0 0;
}

.scroll-down-arrow {
    animation: bounce 2s infinite;
}
.scroll-down-arrow svg {
    fill: white;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-20px); }
    60% { transform: translateY(-10px); }
}

/* --- Seção 2: Links --- */
#links {
    padding: 60px 20px;
    background-color: #fdfdfd; 
    text-align: center;
}

.links-container {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.link-button {
    /* NOVA COR DE DESTAQUE (Bege do Dr. Márcio Resende) */
    background-color: #ad9372; 
    color: white;
    border: 2px solid #ad9372;
    padding: 20px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1em;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background-color 0.3s, color 0.3s, transform 0.2s;
}

.link-button:hover {
    background-color: transparent;
    /* NOVA COR DE DESTAQUE no hover */
    color: #ad9372; 
    transform: scale(1.02);
}

.footer-logo {
    width: 100px;
    margin-top: 60px;
    opacity: 0.6;
}

/* --- Ajustes para Mobile --- */
@media (max-width: 600px) {
    #hero {
        justify-content: space-around; 
    }
    .hero-container {
        gap: 0;
    }
    .hero-title { font-size: 2.5em; }
    .hero-subtitle { font-size: 1em; }
    .hero-credentials { font-size: 0.8em; }
}
