* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, sans-serif;
  overflow-x: hidden;
}

/* SIDEBAR */
.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 380px;
  height: 100vh;
  background: #0f0f0f;
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 1000;
}

.logo {
  width: 250px;
  margin: 0 auto 40px;
  display: block;
}

.menu {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
}

.menu a {
  position: relative;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  text-transform: uppercase;
  transition: color 0.3s ease;
  padding-bottom: 6px;
}

.menu a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 2px;
  background: #f47c20;
  transform: translateX(-50%);
  transition: width 0.3s ease;
}

.menu a:hover {
  color: #f47c20;
}

.menu a:hover::after {
  width: 100%;
}

.menu a.active {
  color: #f47c20;
}

.menu a.active::after {
  width: 100%;
}

.sidebar-footer {
  text-align: center;
  font-size: 12px;
  margin-bottom: 20px;
  color: rgba(255,255,255,0.6);
}

/* CONTEÚDO */
.content {
  margin-left: 250px;
  width: calc(100% - 250px);
}

/* SEÇÃO INÍCIO */
#inicio {
  padding: 0;
  margin: 0;
  width: 100%;
  height: 100vh;
}

/* CARROSSEL */
.carousel {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.slides {
  display: flex;
  height: 100%;
  transition: transform 0.6s ease;
}

.slide {
  min-width: 100%;
  height: 100vh;
  flex-shrink: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* PONTINHOS */
.dots {
  position: absolute;
  bottom: 30px;
  left: 10%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  flex-direction: column;
  z-index: 10;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: 0.3s;
}

.dot.active {
  background: #f47c20;
  transform: scale(1.2);
}

.socials {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-bottom: 50px;
}

.socials a {
  color: white;
  border: 1px solid rgba(255,255,255,0.4);
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: 0.3s;
}

.socials a:hover {
  border-color: #f47c20;
  color: #f47c20;
}

.socials svg {
  width: 18px;
  height: 18px;
  stroke-width: 1.5;
}

/* OUTRAS SEÇÕES */
section:not(#inicio) {
  min-height: 100vh;
  padding: 60px;
  background: #fff;
}