html, body {
margin: 0;
padding: 0;
background: black;
font-family: Arial, sans-serif;
}
/* 🎥 FUNDO FIXO */
.video {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: -3;
}
.video iframe {
width: 100%;
height: 100%;
border: none;
}
/* overlay escuro para leitura */
.overlay {
position: fixed;
inset: 0;
background: rgba(0,0,0,0.45);
z-index: -2;
}
/* 🧭 HEADER SEM CONFLITO */
header {
position: fixed;
top: 10px;
left: 0;
width: 100%;
display: flex;
align-items: center;
padding: 10px 50px;
z-index: 10;
}
/* LOGO */
.logo img {
height: 55px;
}
/* MENU */
nav {
margin-left: 60px;
display: flex;
gap: 30px;
}
/* 📄 CONTEÚDO NÃO SOBREPÕE MAIS */
#about, #contact {
position: relative;
z-index: 5;
max-width: 800px;
margin: 0 auto;
padding: 120px 50px;
color: white;
font-size: 12px;
line-height: 1.8;
}
/* separação real do topo */
#about {
margin-top: 100vh; /* 👈 isso resolve o “tudo em cima do vídeo” */
}
/* links */
#contact a {
color: #d6b25e;
text-decoration: none;
}