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

body {
font-family: Arial, sans-serif;
background: #000;
color: #fff;
}

@font-face {
font-family: BebasNeue;
src: url(fonts/BebasNeue);
}

:root {
--amarelo: #ffcc00;
}

p {
color: #fff;
}

.video-container {
position: relative;
width: 100%;
height: 650px;
overflow: hidden;
margin-bottom: 0;
box-shadow: 0 0 10px var(--amarelo);
}

.video-container video {
width: 100%;
height: 100%;
object-fit: cover;
}

.menu {
position: absolute;
top: 0;
left: 0;
width: 100%;
background: rgba(0, 0, 0, 0.55); 
font-size: 20px;
z-index: 10;
}

.menu-content {
max-width: 1200px;  
margin: 0 auto;      
padding: 15px 40px; 
display: flex;
justify-content: space-between; 
align-items: center;
flex-wrap: wrap;
}

.logo img {
width: 100px;            
height: 100px;           
border-radius: 50%;     
border: 3px solid var(--amarelo);
box-shadow: 0 0 10px var(--amarelo); 
}

.nav-links {
display: flex;
flex-wrap: wrap;
gap: 20px;
}

.nav-links a {
color: #fff;
text-decoration: none;
font-weight: bold;
transition: color 0.3s;
}

.nav-links a:hover {
color: #f4d03f;
}

h2 {
font-size: 48px;
color: var(--amarelo);
letter-spacing: 2px;
text-align: center;
margin: 40px;
}

footer {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
align-items: center;
margin: 0 auto;
padding: 15px 50px;
background-color: rgba(26, 26, 26, 0.6);
font-size: 14px;
margin-top: 100px;
border-top: 1px solid #444;
position: relative;
z-index: 2;
color: #fff;
box-shadow: 0 0 10px var(--amarelo);
gap: 20px;
}

.logo-footer {
width: 80px;
height: 80px;
border-radius: 50%;
border: 3px solid var(--amarelo);
flex-shrink: 0;
}

footer p {
margin: 0;
font-family: 'BebasNeue';
font-size: medium;
text-align: center;
flex: 1;
}

.redes-sociais {
display: flex;
flex-direction: column;
align-items: flex-start;
gap: 15px;
}

.redes-sociais a img {
width: 32px;
height: 32px;
margin: 0 10px;
transition: transform 0.3s;
}

.redes-sociais h3 {
margin: 0;
font-size: 20px;
color: white;
}

.redes-sociais a {
text-decoration: none;
}

.redes-sociais a img:hover {
transform: scale(1.2);
}

@media (max-width: 1024px) {
.menu-content {
  padding: 15px 20px;
}

.logo img {
  width: 80px;
  height: 80px;
}

.nav-links {
  gap: 15px;
}

h2 {
  font-size: 36px;
}
}

@media (max-width: 768px) {
.menu-content {
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.nav-links {
  justify-content: center;
  flex-wrap: wrap;
  text-align: center;
  gap: 10px;
}

.video-container {
  height: 400px;
}

footer {
  flex-direction: column;
  text-align: center;
  padding: 20px;
}

.redes-sociais {
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 15px;
}

footer p {
  margin: 10px 0;
}
}

@media (max-width: 480px) {
.logo img {
  width: 60px;
  height: 60px;
}

h2 {
  font-size: 28px;
}

.logo-footer {
  width: 60px;
  height: 60px;
}

footer p {
  font-size: 14px;
}

.redes-sociais a img {
  width: 28px;
  height: 28px;
}

.menu-content {
  padding: 10px;
}

.nav-links a {
  font-size: 16px;
}
}
