* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: #000;
  color: #fff;
}

/* MENU */
.menu {
  position: fixed;
  width: 100%;
  background: rgba(0, 0, 0, 0.85);
  padding: 15px;
  z-index: 100;
}

.menu ul {
  display: flex;
  justify-content: center;
  gap: 40px;
  list-style: none;
}

.menu a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

/* BANNER */
.inicio {
  height: 100vh;
  background: url("img/banner.jpg") center/cover no-repeat;
  position: relative;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
}

.texto-banner {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  padding-left: 10%;
  max-width: 600px;
}

.texto-banner h1 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 80px;
}

.sub {
  font-size: 22px;
  margin: 10px 0;
}

.info {
  color: #ccc;
  margin-bottom: 20px;
}

.stack span {
  display: inline-block;
  background: #111;
  padding: 6px 12px;
  margin: 5px 5px 0 0;
  border-radius: 4px;
}

.links {
  display: flex;           /* Coloca os ícones em linha */
  gap: 15px;               /* Espaço entre os ícones */
  margin-top: 20px;        /* Afasta os ícones do texto acima */
  align-items: center;     /* Centraliza verticalmente em relação ao container */
}

.links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;             /* Largura dos ícones */
  height: 50px;            /* Altura dos ícones */
  border: 1px solid #e50914;
  border-radius: 50%;
  color: #fff;
  font-size: 22px;         /* Tamanho do ícone */
  transition: background 0.3s, transform 0.3s;
}

.links a:hover {
  background: #e50914;
  transform: scale(1.1);
}
/* PROJETOS */
.projetos {
  padding: 80px 5%;
}

.projetos h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 48px;
  color: #e50914;
  margin-bottom: 30px;
}

/* CARROSSEL */
.carrossel-container {
  position: relative;
}

.carrossel {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
}

.carrossel::-webkit-scrollbar {
  display: none;
}

/* CARD */
.card {
  min-width: 260px;
  background: #111;
  border-radius: 8px;
  overflow: hidden;
}

.card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.card:hover img {
  transform: scale(1.08);
}

.card-info {
  padding: 14px;
}

.card-info h3 {
  font-size: 16px;
  margin-bottom: 6px;
}

.card-info p {
  font-size: 14px;
  color: #aaa;
  margin-bottom: 6px;
}

.card-info span {
  font-size: 12px;
  color: #e50914;
}

/* BOTÕES */
.btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.6);
  border: none;
  color: white;
  font-size: 30px;
  cursor: pointer;
  padding: 10px;
  z-index: 20;
}

.left {
  left: 0;
}
.right {
  right: 0;
}

/* SOBRE */
.sobre {
  padding: 80px 10%;
  text-align: center;
}

.sobre2 {
  color: #e50914;
  font-size: 35px;
  margin-bottom: 20px;
}

/* CENTRALIZA O TEXTO */
.sobre p {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

/* FOTO PERFIL */
.foto-perfil {
  position: absolute;
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

.foto-perfil img {
  width: 260px;
  height: 260px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #e50914;
  box-shadow: 0 0 30px rgba(229, 9, 20, 0.3);
}

footer {
  text-align: center;
  padding: 20px;
  color: #777;
}
