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

body {
  font-family: 'Poppins', sans-serif;
  background: #faf4db;
  color: #0b3b34;
}

/* VIDEO FUNDO FIXO */
.bg-video {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

/* overlay suave */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.15);
  z-index: -1;
}

/* HEADER */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 80px;
  background: #faf4db;
  z-index: 1000;
  display: flex;
  justify-content: center;
}

.nav {
  width: 90%;
  max-width: 1200px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

/* LOGO MAIOR */
.logo {
  height: calc(100% - 0px); /* 12px em cima e embaixo */
  max-height: 100px;
}

/* LINKS MENU */
.nav-link {
  position: absolute;
  text-decoration: none;
  font-weight: 600;
  color: #0b3b34;
  white-space: nowrap;
}

/* alinhados ao logo como ponto zero */
.nav-link.left {
  right: calc(50% + 100px);
  text-align: right;
}

.nav-link.right {
  left: calc(50% + 100px);
  text-align: left;
}

/* HERO VIDEO */
.hero-video-only {
  height: calc(100vh - 50px);
}

/* FAIXA */
.hero-highlight {
  position: relative;
  width: 100%;
  background: #faf4db;
  padding: 110px 20px 90px;
  display: flex;
  justify-content: center;
  overflow: visible;
}

.highlight-bold {
  font-weight: 700;
  display: block;
  margin-top: 10px;
  color: #062f29;
}

/* CONTAINER CENTRAL */
.highlight-content {
  width: 100%;
  max-width: 1100px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center; /* centralização vertical */
  min-height: 140px;
}

/* TEXTO CENTRAL */
.highlight-text {
  max-width: 650px;
  text-align: center;
  z-index: 2;

  display: flex;
  flex-direction: column;
  align-items: center;
}

.highlight-text p {
  font-size: 22px;
  margin-bottom: 28px;
  line-height: 1.45;
}

/* LATA DIREITA, FLUTUANDO */
.highlight-can {
  position: absolute;
  right: -250px;
  top: -290px;
  z-index: 3;
  pointer-events: none;
}

.highlight-can img {
  width: 600px;
  transform: rotate(12deg);
}

/* BOTÕES */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 26px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 600;
  color: #fff;
  background: #0b3b34;
}

.btn-icon {
  width: 22px;
  height: 22px;
}

/* ABOUT */
.about {
  background: url("assets/img/bg-waterdrops.jpg") center/cover no-repeat;
  padding: 120px 20px;
  display: flex;
  justify-content: center;
}

.about-box {
  background: rgba(250, 244, 219, 0.92);
  padding: 60px;
  max-width: 800px;
  text-align: center;
}

.about-box h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.about-box p {
  font-size: 18px;
  line-height: 1.6;
}

/* CTA */
.cta {
  background: #faf4db;
  padding: 90px 20px;
  display: flex;
  flex-direction: column;
  gap: 25px;
  align-items: center;
}

/* RESPONSIVO */
@media (max-width: 1150px) {

  /* MENU SEMPRE VISÍVEL */
  .nav-link {
    display: block;
    font-size: 14px;
  }

  .nav-link.left {
    right: calc(50% + 80px);
  }

  .nav-link.right {
    left: calc(50% + 80px);
  }

  .logo {
    max-height: 72px;
  }

  /* FAIXA CENTRALIZADA */
  .highlight-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-height: auto;
  }

  .highlight-text {
    max-width: 90%;
  }

  /* LATA ANTES DO TEXTO E ULTRAPASSANDO TOPO */
  .highlight-can {
    position: absolute;
    top: -420px;       /* ultrapassa a faixa */
    right: 50%;
    transform: translateX(50%);
    margin: 0;
    z-index: 3;
  }

  .highlight-can img {
    width: 400px;
    transform: rotate(1deg);
  }

  /* espaçamento para não sobrepor o texto */
  .hero-highlight {
    padding-top: 260px;
  }

  .highlight-text p {
    font-size: 18px;
  }
}

