/* Reset e Variáveis de Cores */
:root {
    --primaria: #661414;
    --texto: #2d2d2d;
    --text2: #fff;
    --fundo-claro: #f8eef0;
    --borda: #e0ddd5;
    --hover: #f7c8d0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    font-family: 'Lato', sans-serif;
    background-color: var(--fundo-claro);
    color: var(--texto);
    line-height: 1.6;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background-color: var(--primaria);
    backdrop-filter: blur(5px);
    border-bottom: 1px solid var(--borda);
    position: relative;
    z-index: 1000;
}

.logo-img {
    height: 55px;
    width: auto;
    transition: transform 0.3s ease;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text2);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--hover);
}

.menu-toggle {
	display: none;
	flex-direction: column;
	cursor: pointer;
	gap: 5px;
}

.menu-toggle .bar {
	width: 25px;
	height: 3px;
	background-color: white;
	transition: all 0.3s ease-in-out;
}

@media screen and (max-width: 768px) {
    /* Garante que nada saia lateralmente da tela */
    body {
        overflow-x: hidden;
    }

    .menu-toggle {
        display: flex;
        position: relative;
        z-index: 1001; 
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background-color: var(--primaria);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: transform 0.4s ease-in-out, right 0.4s ease-in-out;
        z-index: 1000;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
    }

    .nav-links a {
        font-size: 1.8rem;
        display: block;
        width: 100%;
        padding: 15px 0;
    }
}


h1, h2, .label {
    font-family: 'Playfair Display', serif;
}

#inicio {
    padding: 100px 10%;
    max-width: 1300px;
    margin: 0 auto;
}

.hero-header {
    text-align: center;
    margin-bottom: 80px;
}

.hero-header h1 {
    font-size: 3rem;
    color: var(--primaria);
    margin-bottom: 15px;
}

.linha-fina {
    width: 50px;
    border: 0;
    border-top: 2px solid var(--primaria);
    margin: 0 auto 20px;
}

.subtitulo {
    font-style: italic;
    font-size: 1.2rem;
    color: #666;
}

.perfil-horizontal {
    display: flex;
    align-items: center;
    gap: 80px;
    background: white;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.foto-container img {
    width: 380px;
    height: 500px;
    object-fit: cover;
    border-radius: 10px;
    filter: sepia(10%) contrast(105%); 
}

.label {
    color: var(--primaria);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    font-weight: bold;
    display: block;
    margin-bottom: 10px;
}

.bio-texto h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
}

.bio-texto p {
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: #555;
}

.btn-premium {
    display: inline-block;
    background-color: var(--primaria);
    color: white;
    padding: 18px 40px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    margin-top: 30px;
    transition: all 0.3s ease;
    border: 1px solid var(--primaria);
}

.btn-premium:hover {
    background-color: transparent;
    color: var(--primaria);
    transform: translateY(-3px);
}

@media (max-width: 1200px) {
    .perfil-horizontal {
        flex-direction: column;
        padding: 30px;
    }
    .foto-container img {
        width: 100%;
        height: auto;
    }
}

footer {
    padding: 40px 10%;
    background-color: #ffffff;/
    text-align: center;
    margin-top: 60px;
}

footer p {
    font-family: 'Lato', sans-serif;
    color: #888;                  
    font-size: 0.85rem;          
    letter-spacing: 1px;        
    text-transform: uppercase; 
}

