/**
 * Frontend styles for the hero-video block.
 */
:root {
  --bg-dark: #000;
  --bg-mid: #f5f8fb;
  --cyan: var(--cyan);
  --text: #e8f0fa;
  --ink: #111827;
  --soft: #f3f7fc;
  --line: #ebf2fa;
  --icon: #415c82;
}

.hero-video {
  background: top center url("https://www.ima.pe/wp-content/uploads/2026/05/hero-cars.avif") no-repeat;
  background-size: cover;
}

.hero-video .container {
  display: flex;
  justify-items: center;
  align-items: start;
  color: #fff;
  max-width: 1560px;
  margin: 0 auto;
  padding: 0 24px;
  height: 900px;
  font-size: 24px;
}

.hero-video .hero-logo {
  margin-left: 24px;
  margin-bottom: 36px;
  width: 135px;
}

.hero-video .information {
  padding: 48px 24px 64px 0;
  text-align: left;
  width: calc(100% - 600px);
}

.hero-video .information .video-embed {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  min-height: 580px;
  overflow: hidden;
  margin-bottom: 40px;
  border-radius: 12px;
}

.hero-video .information .video-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 12px;
}

.hero-video .information .form-open {
  background: #fff;
  color: #000;
  border: none;
  padding: 16px 32px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.3s ease;
  margin-top: 32px;
}

.hero-video .information .form-open:hover {
  background: #0fa1d0;
}

/* Responsive */
@media (max-width: 1200px) {
  .hero-video .information {
    width: 100%;
  }
}
@media (max-width: 992px) {
  .hero-video .container {
    padding: 0 16px;
    max-width: 380px;
    margin: auto;
    display: block;
    height: auto;
  }
  .hero-video .information {
    padding: 30px 0 30px 0;
    width: 100%;
  }
  .hero-video .hero-logo {
    width: 70px;
    margin-bottom: 8px;
  }
}
@media (max-width: 992px) {
  .hero-video .container {
    padding: 0 16px;
    max-width: 380px;
    margin: auto;
    display: block;
    height: auto;
  }
  .hero-video .information h1 {
    max-width: 100%;
  }
}
@media (max-width: 576px) {
  .hero-video .information {
    padding: 24px 0;
  }
}

/*# sourceMappingURL=style.css.map */
