/*////////////// CSS REVISTO //////////////*/


#slogan-circuitos {
  display: block;
  width: 100%;
  max-width: clamp(140px, 25vw, 450px);
  height: auto;
}

.hero-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
  background: #000;
}

.hero-video iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  /* 16:9 ratio — garante cover em qualquer viewport */
  width: max(100vw, 177.78vh);
  height: max(56.25vw, 100vh);
  border: none;
  pointer-events: none;
}

.hero-video::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.25) 0%,
      rgba(0, 0, 0, 0.1) 60%,
      rgba(0, 0, 0, 0.55) 100%);
}

.scroll-container {
  position: relative;
  z-index: 10;
  padding-top: 100vh;
}

.content-card {
  position: relative;
  width: 100vw;
  margin: 0 auto;

  background: #fff;
  border-radius: 40px 40px 0 0;
  min-height: 60vh;
}

.scroll-hint {
  position: fixed;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 1;
  transition: opacity 0.4s;
  pointer-events: none;
}

.scroll-hint.hidden {
  opacity: 0;
}

.scroll-hint span {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  font-family: 'DM Sans', sans-serif;
}

.scroll-hint-arrow {
  width: 36px;
  height: 36px;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: bounce 1.8s ease-in-out infinite;
}

.scroll-hint-arrow svg {
  width: 14px;
  height: 14px;
  stroke: rgba(255, 255, 255, 0.7);
  fill: none;
}

.slide-col--text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(0.5rem, 1.2vw, 1.1rem);
  line-height: normal;
  z-index: 1;
  position: fixed;
  bottom: 10%;
  left: 0px;
  background: #ffffff52;
  width: fit-content;
  padding: 1rem 1rem 1rem 60px;
  backdrop-filter: blur(5px);
  box-shadow: var(--shadow);
  border-radius: 0 40px 40px 0;
}

#slogan-circuitos {
  display: block;
  width: 100%;
  max-width: clamp(300px, 25vw, 450px);
  height: auto;
}

.slide-col--text .p-intro {
  color: var(--color-secondary);
}

.slide-col--text .p-banner {
  color: #fff;
  font-weight: 700;
}

.footer-ccv {
  z-index: 3;
  position: relative;
}

#maincontainer {
  padding-top: 10px;
  padding-bottom: 0px;
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(6px);
  }
}

@media (max-width: 768px) {
  .slide-col--text {
    bottom: 20%;
  }
}