html,
body {
  height: 100%;
  overflow-y: auto;
  /* Asegúrate de que el overflow-y esté configurado para permitir el scroll */
}

@font-face {
  font-family: "Sniglet";
  src: url("/app/common/fonts/Sniglet-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

body {
  font-family: "Sniglet", sans-serif;
}

h1,
h2,
h3 {
  font-family: "Sniglet", sans-serif;
}

.container {
  height: auto;
  /* Asegúrate de que los contenedores tengan altura automática */
}

img {
  -webkit-user-drag: none;
  user-drag: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.body-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 550px;
}

.primary-text-color {
  color: #960611;
}

.secondary-text-color {
  color: #1e1e1e;
}

.tertiary-text-color {
  color: #918989;
}

.red-button {
  background: #e5182c;
  border: 1px solid #ec221f;
  border-radius: 8px;
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 120%;
  letter-spacing: -0.02em;
  color: #f5f5f5;
}

.bold-text {
  font-weight: bold;
}

@media (max-width: 768px) {
  .main-video-hero video {
    width: 100%;
    height: clamp(500px, 75vh, 820px);
    /* alto flexible */
    object-fit: fill;
    object-position: center center;
    display: block;
    margin-top: 30px;
  }
}
