/* Importa uma fonte elegante */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600&family=Poppins:wght@300;400;600&display=swap');
/* Importa a fonte "Raleway" */
@font-face {
    font-family: 'Raleway';
    src: url('raleway/Raleway-Regular.otf') format('truetype');
} 


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

body {
    background-color: #f5f5eb; /* Preto suave */
    color: #ffffff; /* Texto branco */
    font-family: Raleway !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    width: 100%;
}

/* Estilização do botão de menu */
.menu-button {
    position: fixed;
    top: 20px;
    left: 20px;
    background: #fff;
    border: none;
    padding: 10px 15px;
    font-size: 24px;
    cursor: pointer;
    z-index: 10000; /* 🆕 Garante que o botão do menu sempre fique visível */
}


.side-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 250px;
    height: 100%;
    background: rgba(0, 0, 0, 0.9); /* Fundo escuro translúcido */
    color: white;
    padding-top: 50px;
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
    z-index: 9999; /* 🆕 Garante que o menu fica sempre na frente */
}

.side-menu a {
    display: block;
    padding: 15px;
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: background 0.3s;
}

.side-menu a:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Quando o menu estiver ativo */
.side-menu.open {
    transform: translateX(0);
}

.close-button {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 24px;
    color: #ffffff;
    cursor: pointer;
}

/* Seção da imagem */
.hero {
    width: 100%;
    height: 92vh; /* Altura ajustada para cobrir 75% da tela */
    min-height: 600px;
    max-height: 800px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 50px;
}

/* Imagem de fundo com opacidade */
.hero::before {
    content: "";
    background: url('imagens/foto5.jpg') no-repeat center center/cover;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 1; /* Define opacidade na própria imagem */
    z-index: -1; /* Mantém a imagem atrás do conteúdo */
}

/* Estilização do logo */
.logo {
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    height: 300px;
    max-width: 100%;
}

/* Seção "Sobre mim" */
.about {
    padding: 20px;
    max-width: 80%;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    margin-top: 200px;
}

.about h2 {
	  font-family: Raleway;
    font-size: 1.8rem;
    color: #b3907a;
}

.about p {
    font-size: 1.2rem;
    color: #f5f5eb;
    font-style: italic;
}

/* Espaçamento entre a imagem e os botões */
.spacer {
    height: 0px;
}

/* Título antes dos botões */
.section-title {
    font-size: 2rem;
    color: #b3907a;
    text-align: center;
    margin-bottom: 20px;
    padding-top: 40px;
}

/* Container para os botões */
.container {
    text-align: center;
    width: 100%;
    max-width: 400px;
    min-height: 400px;
    padding-bottom: 25px;
}

/* Estilo dos botões */
.links {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.button {
    display: block;
    background: #d89991;
    color: #ffffff;
    text-decoration: none;
    padding: 16px;
    font-size: clamp(1rem, 2vw, 1.2rem);
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
    text-align: center;
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
    box-shadow: 3px 3px 15px rgba(217, 136, 91, 0.4);
}

.button:hover {
    background: #b3907a;
    transform: scale(1.05);
}

/* Aumenta o espaçamento entre a foto e a secção de valores */
.hero {
    margin-bottom: 50px; /* Adiciona espaço abaixo da seção hero */
}


/*Estilo Quem sou eu */
.quem-sou-eu {
    /* background: #f9f9f9; */
    padding: 50px 20px;
    text-align: center;
}

.quem-sou-eu .container {
    max-width: 800px;
    margin: 0 auto;
}

.quem-sou-eu h2 {
    font-size: 26px;
    margin-bottom: 20px;
    font-weight: bold;
    color: #d89991;
}

.quem-sou-eu p {
    font-size: 18px;
    line-height: 1.6;
    color: #555;
}



/* Estilização moderna para a seção "Valores da Emáris" */
.valores-emaris {
    text-align: center;
    padding: 40px 20px;
    /* background: linear-gradient(135deg, #e8d3f2, #f5eef8); /* Degradê suave */ */
    border-radius: 15px; /* Bordas arredondadas */
    /* box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1); /* Efeito de sombra leve */ */
    max-width: 800px;
    margin: 0 auto; /* Centraliza a seção */
}

.valores-emaris h2 {
   font-size: 26px;
   margin-bottom: 20px;
   color: #d89991;
    font-weight: bold;
    margin-bottom: 15px;
}

.valores-emaris p {
    font-size: 18px;
    font-weight: 500;
    color: #0c0c0c;
    margin-bottom: 20px;
}

.valores-emaris ul {
    list-style: none;
    padding: 0;
}

.valores-emaris li {
    font-size: 18px;
    /* font-weight: 600; */
    color: #0c0c0c; /* Tom mais escuro para contraste */
    padding: 8px 0;
    transition: transform 0.3s ease-in-out;
}

.valores-emaris li:hover {
    transform: scale(1.05); /* Pequeno efeito ao passar o mouse */
}

