:root {
  --rojo: #DE001A;
  --rojo-hover: #b40015;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Lato, Arial, sans-serif;
}

.hero {
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  width: 100vw;
  overflow: hidden;
  aspect-ratio: 1905 / 487;
  background: #000;
}

.hero__media-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__media-video--desktop {
  display: block;
}

.hero__media-video--mobile {
  display: none;
}

.hero__content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 0 8%;
}

.hero__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-left: 90px;
}

.hero__title img {
  display: block;
  width: clamp(220px, 27vw, 507px);
  height: auto;
}

.hero__cta {
  display: inline-block;
  background: var(--rojo);
  color: #fff;
  font-family: Lato, Arial, sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 4px;
  transition: background-color 0.2s ease;
}

.hero__cta:hover {
  background: var(--rojo-hover);
}

.hero__cta:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

/* Mobile */
@media (max-width: 767px) {
  .hero {
    aspect-ratio: 780 / 585;
  }

  .hero__media-video--desktop {
    display: none;
  }

  .hero__media-video--mobile {
    display: block;
  }

  .hero__content {
    align-items: center;
    justify-content: flex-end;
    padding: 0 6% 8%;
    text-align: center;
  }

  .hero__inner {
    margin-left: 0;
  }

  .hero__title img {
    width: clamp(220px, 72vw, 340px);
  }

  .hero__cta {
    width: auto;
    max-width: 220px;
    text-align: center;
    font-size: 13px;
    padding: 10px 18px;
  }
}

/* Sección "Encuentra tu herramienta": el negro solo va en el footer, esta sección queda sin fondo negro */
#main-RichText-2fae615c-3d98-4022-bfec-f846347b73e4 h2,
#main-RichText-2fae615c-3d98-4022-bfec-f846347b73e4 p {
  color: #000;
}

/* Sección "Servicio técnico" (banner de imagen): fondo negro a todo el ancho de pantalla */
#main-Banner-8295e231-143d-4f30-9805-74aada059698 {
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  width: 100vw;
  background: #000;
}

#main-Banner-8295e231-143d-4f30-9805-74aada059698 > div,
#main-Banner-8295e231-143d-4f30-9805-74aada059698 a,
#main-Banner-8295e231-143d-4f30-9805-74aada059698 .CSImagestyle__Wrapper-sc-1tu5wso-0 {
  width: 100%;
}
