* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: #020817;
  color: white;
  padding-top: 80px;
}

/* HEADER */
header {
  position: fixed;
  width: 100%;
  top: 0;
  background: #020817;
  border-bottom: 1px solid #111;
}

.header-container {
  max-width: 1100px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
}

.logo {
  height: 60px;
}

/* MENU */
nav {
  display: flex;
  gap: 20px;
}

nav a {
  text-decoration: none;
  color: white;
  font-weight: 500;
  position: relative;
}

nav a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  background: #e46621;
  bottom: -5px;
  left: 0;
  transition: 0.3s;
}

nav a:hover::after {
  width: 100%;
}

/* HERO */
.hero {
  height: 60vh;
  position: relative;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: 1s;
}

.slide.active {
  opacity: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* SEÇÕES */
section {
  padding: 60px 20px;
}

.container {
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

/* SERVIÇOS */
.grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.card {
  width: 280px;
  background: #0f172a;
  border-radius: 10px;
  overflow: hidden;
  transition: 0.3s;
}

.card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.card h3 {
  padding: 15px;
}

.card:hover {
  transform: translateY(-5px);
  border: 1px solid #e46621;
}

/* FOOTER */
footer {
  background: #000;
  padding: 20px;
  text-align: center;
}