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

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

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

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

.hero .information {
  padding: 56px 24px 64px 0;
  text-align: left;
  width: 59.5%;
}

.hero .information h1 {
  font-size: 56px;
  line-height: 1.2;
  margin: 0 0 24px;
  font-weight: bold;
  color: var(--text);
}

.hero .information h1 span {
  color: var(--cyan);
}

.hero .information .lead {
  font-size: 24px;
  margin-bottom: 56px;
}

.hero .information .disclaimer {
  font-size: 16px;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero .disclaimer .icon {
  margin-right: 8px;
  background: #fff;
  color: #000;
  border-radius: 50%;
  min-width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero .information .facts {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.hero .information .facts .item {
  flex: 1;
  display: flex;
  align-items: center;
  font-size: 13px;
  line-height: normal;
}

.hero .information .facts .item .icon {
  width: 50px;
  margin-right: 16px;
  height: 50px;
  font-size: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero .information .facts .item img {
  width: 50px;
  margin-right: 16px;
  border-radius: 8px;
  height: 50px;
}

.hero .information .facts .item label {
  display: block;
  font-weight: bold;
}

.hero .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 .information .form-open:hover {
  background: #0fa1d0;
}

/* Responsive */
@media (max-width: 1200px) {
  .hero .information {
    width: 100%;
  }
}
@media (max-width: 992px) {
  .hero .container {
    padding: 0 16px;
    max-width: 380px;
    margin: auto;
    display: block;
    height: auto;
  }
  .hero .hero-logo {
    width: 72px;
    margin-bottom: 24px;
    margin-left: 13px;
  }
  .hero .information {
    padding: 30px 0 20px 0;
    width: 100%;
    margin: 0 auto;
    height: auto;
  }
  .hero .information .kicker {
    font-size: 20px;
  }
  .hero .information h1 {
    font-size: 40px;
    line-height: 1.2;
    margin-bottom: 16px;
  }
  .hero .information .lead {
    font-size: 20px;
    margin-bottom: 64px;
  }
  .hero .information .disclaimer {
    font-size: 12px;
  }
}
