#inicio {
  height: 100vh;
  min-height: 700px;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding-bottom: 6rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../imgs/hero_image.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center 30%;
  transform: scale(1.06);
  animation: slowZoom 22s ease-out forwards;
}

@keyframes slowZoom {
  0% {
    transform: scale(1.06);
  }

  100% {
    transform: scale(1);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  height: 100%;
  /* remove qualquer height: 130% que possa existir */
  background: linear-gradient(to top,
      rgba(15, 13, 11, 0.97) 0%,
      rgba(15, 13, 11, 0.55) 20%,
      rgba(15, 13, 11, 0.15) 50%,
      rgba(15, 13, 11, 0) 100%);
}

.hero-topline {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  opacity: 0.5;
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  padding-left: 4rem;
  max-width: 720px;
  animation: fadeUp 1s ease-out;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hover-ofer {
  display: flex;
  gap: 20px;
  justify-content: start;
  align-items: center;
  margin-top: 2rem;
}

.hover-ofer-inter {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.logoTodah {
  width: 60px;
  border-radius: 8px;
  height: auto;
}

.hero-label {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.65rem;
  color: white;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  margin-bottom: 1.4rem;
  font-weight: 600;
}

.hero-label::before {
  content: '';
  display: block;
  width: 36px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.hero-logo-img {
  height: 110px;
  width: auto;
  display: block;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.5));
}

.hero-slogan {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.2rem, 2.2vw, 1.7rem);
  font-style: italic;
  font-weight: 300;
  color: var(--text-light);
  margin-bottom: 2.5rem;
  line-height: 1.5;
}

.hero-slogan em {
  color: var(--gold);
  font-style: italic;
}

/* STREAM WRAPPER */
.stream-wrapper {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 1.2rem;
}

.stream-top-label {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201, 169, 110, 0.12);
  border: 1px solid rgba(201, 169, 110, 0.35);
  border-bottom: none;
  border-radius: 6px 6px 0 0;
  padding: 0.35rem 1rem;
  font-weight: 400;
  white-space: nowrap;
}

/* BOTÃO STREAM */
.hero-stream-btn {
  display: inline-flex;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(4px);
  min-width: 300px;
  border: 1.5px solid var(--gold);
  border-radius: 0 100px 100px 100px;
  overflow: hidden;
  text-decoration: none;
  transition: all 0.25s;
}

.hero-stream-btn:hover {
  background: rgba(214, 177, 126, 0.08);
  transform: translateY(-2px);
}

.stream-arrow {
  display: flex;
  align-items: center;
  padding: 0.85rem 0.8rem 0.85rem 1.2rem;
  color: var(--gold);
  font-size: 1rem;
  border-right: 1px solid rgba(214, 177, 126, 0.35);
}

.stream-icons {
  display: flex;
  align-items: center;
}

.stream-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  color: rgba(245, 240, 232, 0.75);
  transition: color 0.2s;
  border-right: 1px solid rgba(214, 177, 126, 0.2);
}

.stream-icon:last-child {
  border-right: none;
  padding-right: 0.4rem;
}

.stream-icon:hover {
  color: var(--gold);
}

.stream-icon svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

/* BOTÕES */
.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--dark);
  padding: 0.85rem 2.2rem;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.25s;
  display: inline-block;
}

.btn-primary:hover {
  background: #c49a62;
  transform: translateY(-2px);
}

.btn-outline {
  border: 1px solid rgba(214, 177, 126, 0.5);
  color: var(--cream);
  padding: 0.85rem 2rem;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.25s;
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(214, 177, 126, 0.05);
}

/* REDES SOCIAIS */
.hero-social {
  position: absolute;
  bottom: 2.8rem;
  right: 3rem;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 1rem;
  animation: fadeUp 1s 0.4s ease-out both;
}

.hero-social-label {
  font-size: 0.58rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-muted);
  white-space: nowrap;
}

.hero-social-line {
  width: 40px;
  height: 1px;
  background: var(--gold-muted);
}

.hero-social-icons {
  display: flex;
  gap: 0.7rem;
}

.social-icon-btn {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(214, 177, 126, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(245, 240, 232, 0.6);
  text-decoration: none;
  transition: all 0.2s;
}

.social-icon-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(214, 177, 126, 0.08);
}

.social-icon-btn svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}

.esconder-desktop {
  display: none;
}

/* MOBILE */
@media (max-width: 768px) {
  #inicio {
    padding-bottom: 5rem;
  }

  .hero-content {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    max-width: 100%;
  }

  .hero-logo-img {
    height: 80px;
  }

  .hero-slogan {
    font-size: 1rem;
    margin-bottom: 1.8rem;
  }

  .hover-ofer {
    margin-top: 1.2rem;
  }

  .hover-ofer-inter h1 {
    font-size: 1.1rem;
  }

  .hover-ofer-inter p {
    font-size: 0.75rem;
  }

  .stream-wrapper {
    max-width: 280px;
  }

  .stream-top-label {
    font-size: 0.55rem;
    padding: 0.32rem 0.8rem;
  }

  .stream-arrow {
    padding: 0.75rem 0.7rem 0.75rem 1rem;
  }

  .stream-icon {
    width: 44px;
    height: 42px;
  }

  .stream-icon svg {
    width: 30px;
    height: 30px;
  }

  .esconder-celular {
    display: none;
  }

  .esconder-desktop {
    display: block;
    bottom: -70px;
    left: 30px;
  }
}

/* Solução mais simples e efetiva - aplique na hero-content */
.hero-content {
  position: relative;
  z-index: 3;
  padding-left: 4rem;
  max-width: 720px;
  animation: fadeUp 1s ease-out;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5); /* Adicione esta linha */
}

/* Sombra específica para elementos com fundo/claro */
.hero-label,
.hero-slogan,
.hero-slogan em,
.hover-ofer-inter p,
.hover-ofer-inter h1,
.stream-top-label,
.hero-social-label {
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.6);
}

/* Sombra mais intensa para o slogan principal */
.hero-slogan {
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
}