/* ***********************************************************************
* FUENTES
* ************************************************************************/
@font-face {
  font-family: 'Roboto-Bold';
  src: url('./../cookies/fonts/Roboto-Bold.ttf') format('truetype');
}

@font-face {
  font-family: 'Roboto-Regular';
  src: url('./../cookies/fonts/Roboto-Regular.ttf') format('truetype');
}

@font-face {
  font-family: 'Roboto-Medium';
  src: url('./../cookies/fonts/Roboto-Medium.ttf') format('truetype');
}

@font-face {
  font-family: 'Playfair-Display';
  src: url('./../fonts/Playfair-Display.ttf') format('truetype');
}

@font-face {
  font-family: 'Nunito-Sans';
  src: url('./../fonts/Nunito-Sans.ttf') format('truetype');
}

@font-face {
  font-family: 'Jost';
  src: url('./../fonts/Jost.ttf') format('truetype');
}

/* ***********************************************************************
* BASE
* ************************************************************************/
:root {
  --bg: rgb(246 243 243);
  --black: rgb(0 0 0);
  --container: 1800px;
  --primary-color: rgb(208 13 45);
  --text-color: rgb(83, 88, 90, 0.8);
  --white: rgb(255 255 255);
}

body {
  overflow-x: hidden;
  position: relative;
}

a {
  color: inherit;
  text-decoration: none;
}

h1 {
  color: var(--white);
  font-family: 'Playfair-Display';
  font-size: clamp(36px, 4vw - 1rem, 54px);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

h1.jost {
  font-family: 'Playfair-Display';
  font-size: clamp(36px, 4vw - 1rem, 36px);
}

h2 {
  color: var(--primary-color);
  font-family: 'Playfair-Display';
  font-size: clamp(36px, 4vw - 1rem, 52px);
  font-style: normal;
  font-weight: 500;
}

h2.special {
  font-size: clamp(36px, 4vw - 1rem, 50px);
  font-style: italic;
  font-weight: 400;
}

h3 {
  color: var(--primary-color);
  font-family: 'Jost';
  font-size: 26px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px;
  text-transform: uppercase;
}

h3.special {
  font-size: 24px;
  font-weight: 300;
  text-transform: capitalize;
}

h4 {
  color: var(--white);
  font-family: 'Playfair-Display';
  font-size: clamp(36px, 4vw - 1rem, 68px);
  font-style: normal;
  font-weight: 900;
  line-height: 32px;
  text-align: center;
}

h5 {
  color: var(--white);
  font-family: 'Nunito-Sans';
  font-size: clamp(14px, 4vw - 1rem, 20px);
  font-style: normal;
  font-weight: 800;
  line-height: 32px;
  text-align: center;
}

h5.normal {
  font-weight: 400;
}

h5.special {
  color: var(--primary-color);
  font-size: clamp(24px, 4vw - 1rem, 36px);
  font-weight: 500;
  text-align: start;
}

h6 {
  color: var(--primary-color);
  font-family: 'Jost';
  font-size: clamp(36px, 4vw - 1rem, 44px);
  font-style: normal;
  font-weight: 700;
  line-height: 130%;
}

h6.special {
  font-weight: 400;
  line-height: normal;
  margin: 0;
  width: 500px;
}

@media (width <=768px) {
  h6.special {
    line-height: 120%;
    width: 90%;
  }
}

p {
  color: var(--text-color);
  font-family: 'Nunito-Sans';
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px;
}

@media (width <=992px) {
  p.special {
    line-height: 4px;
  }
}

p > strong {
  font-weight: 700;
}

span {
  color: var(--primary-color);
  font-family: 'Playfair-Display';
  font-size: 20px;
  font-style: italic;
  font-weight: 400;
  line-height: 31px;
}

#PopCookies .modal-dialog .modal-content .modal-body #textoPopCookies span {
  font-size: 14px;
}

::selection {
  background-color: var(--black);
}

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

.container {
  max-width: var(--container);
}

.container.special {
  max-width: 1400px;
}

.container.container__right {
  margin-right: 0;
}

.picture img {
  max-height: 85vh;
  object-fit: cover;
  width: 100%;
}

.button button {
  background-color: transparent;
  border: 1px solid var(--primary-color);
  border-radius: 10px;
  color: var(--primary-color);
  font-family: 'Jost';
  font-weight: 400;
  padding-block: 8px;
  padding-inline: 24px;
  transition: background-color 300ms ease;
}

.button.active button {
  background-color: var(--primary-color);
  color: var(--white);
}

.button button:hover {
  background-color: var(--primary-color);
  color: var(--white);
}

@media (width <=992px) {
  .button.lg {
    width: 100%;
  }

  .button.lg button {
    width: 100%;
  }
}

/* ***********************************************************************
* MENU
* ************************************************************************/
.menu {
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  transform: translateY(-740px);
  transition: transform 500ms ease, opacity 500ms ease;
  visibility: hidden;
  width: 100%;
  z-index: 1;
}

.menu.show {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

.close {
  cursor: pointer;
}

.navbar {
  padding-block: 0;
}

.menu-left {
  background-color: var(--primary-color);
  height: 80vh;
  min-height: 730px;
  transition: 1000ms ease;
  width: 100%;
}

.menu-left > div {
  margin: 0 auto;
  width: 60%;
}

.menu-right {
  padding-block: 64px;
  transition: 1000ms ease;
  visibility: hidden;
  width: 0;
}

@media (width <=992px) {
  .menu-left {
    width: 100%;
  }

  .menu-left > div {
    margin: 0 auto;
    width: 90%;
  }

  .menu-right {
    width: 100%;
  }
}

.menu-opacity {
  align-items: center;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-around;
  opacity: 0;
  transition: opacity 800ms ease;
}

.menu-right img {
  min-width: 300px;
  width: 80%;
}

.menu-right p {
  color: #0f284f;
  font-family: 'Nunito-Sans';
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  margin: 0 auto;
  padding-block: 4px;
}

.border-bottom {
  border-bottom: 1px solid rgb(15 40 79 / 24%);
  margin: 0 auto;
  width: 60%;
}

.vertical-line {
  border: 1px solid rgb(15 40 79 / 24%);
  height: 118px;
}

.menu-left ul .nav-link,
.menu-left ul .nav-link.show,
.dropdown-item {
  color: var(--white);
  font-family: 'Playfair-Display';
  font-size: 34px;
  font-style: normal;
  font-weight: 400;
  list-style: none;
  margin-left: 18px;
}

.dropdown-item:hover {
  background-color: transparent;
  color: var(--white);
}

.dropdown-menu {
  background-color: transparent;
  border: 0;
  margin-left: 12px;
}

.menu-left ul li:nth-of-type(3) {
  margin-bottom: 0;
}

.menu-left ul li {
  cursor: pointer;
  margin-bottom: 18px;
}

.menu-right {
  background-color: var(--white);
  height: 80vh;
  min-height: 730px;
}

/* ***********************************************************************
* MENU PROMOS
* ************************************************************************/
.menu-promos {
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  transform: translateY(-740px);
  transition: transform 500ms ease, opacity 500ms ease;
  visibility: hidden;
  width: 100%;
  z-index: 5;
}

.menu-promos.show {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

.menu-promos__close {
  background-color: var(--white);
  display: flex;
  min-height: 74px;
}

.menu-promos__close img {
  cursor: pointer;
}

.menu-promos__bg {
  background-color: #f6f7f8;
  display: flex;
  gap: 100px;
  height: 100vh;
  min-height: 900px;
}

@media (width <=992px) {
  .menu-promos__bg {
    flex-wrap: wrap;
    gap: 0;
    height: auto;
  }
}

.menu-promos__list {
  width: 20%;
}

.menu-promos__bg ul li {
  color: var(--primary-color);
  cursor: pointer;
  font-family: 'Nunito-Sans';
  font-size: clamp(14px, 4vw - 1rem, 15px);
  font-weight: 600;
  list-style: none;
  margin-block: 64px;
}

.menu-promos__bg ul li.active {
  background-color: var(--primary-color);
  border-radius: 14px;
  color: var(--white);
  padding-block: 12px;
  text-align: center;
}

@media (width <=992px) {
  .menu-promos__list {
    width: 100%;
  }

  .menu-promos__bg ul {
    padding-left: 16px;
  }

  .menu-promos__bg ul li {
    margin-block: 36px;
  }
}

.contenedor {
  width: 62%;
}

.menu-promos__bg .grid-4 {
  display: grid;
  grid-template-columns: repeat(5, minmax(150px, 1fr));
  width: 100%;
  /* overflow-y: scroll; */
  /* padding-right: 300px; */
}

@media (width <=1600px) {
  .menu-promos__bg .grid-4 {
    padding-right: 0;
  }
}

@media (width <=1400px) {
  .menu-promos__bg .grid-4 {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (width <=992px) {
  .menu-promos__bg .grid-4 {
    width: 100%;
  }
}

@media (width <=768px) {
  .menu-promos__bg .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.menu-promos__bg .grid-4 .picture img {
  border-radius: 10px;
}

.menu-promos__bg .grid-4 .picture.vertodas img {
  border-radius: 0;
}

.menu-promos__card {
  cursor: pointer;
  margin: 16px;
}

.menu-promos__card h5 {
  color: #53585a;
  font-family: Jost;
  font-size: clamp(14px, 4vw - 1rem, 18px);
  font-style: normal;
  font-weight: 500;
  letter-spacing: 1.056px;
  line-height: 25.334px;
  text-align: start;
  text-transform: uppercase;
  /* min-height: 54px; */
}

.menu-promos__card h6 {
  color: #53585a;
  font-family: 'Nunito-Sans';
  font-size: clamp(14px, 4vw - 1rem, 17px);
  font-style: normal;
  font-weight: 400;
  line-height: 25.334px;
}

.menu-promos__bg .contenedor {
  display: none;

  /* Oculta las secciones por defecto */
}

.menu-promos__bg .contenedor.active {
  display: block;
  /* Muestra la sección activa */
}

/* #promo-proximamente,
#promo-entregadas {
  display: none;
} */

/* ***********************************************************************
* HEADER
* ************************************************************************/
.header {
  height: 100vh;
  min-height: 900px;
  position: relative;
}

.header::before {
  background-color: rgb(0 0 0 / 40%);
  content: '';
  height: 100%;
  position: absolute;
  width: 100%;
}

.header video {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

@media (width <=992px) {
  .header {
    height: 70vh;
    min-height: 500px;
  }
}

/* #about {
            background: url(./../images/about.jpg) 50% 50% / cover;
          }
#promotors {
            background: url(./../images/promotors.jpg) 50% 50% / cover;
          } */
#promociones {
  background: url(./../images/promociones.jpg) 50% 50% / cover;
}

#proximas {
  background: url(./../images/proximas.jpg) 50% 50% / cover;
}

#entregadas {
  background: url(./../images/entregadas.jpg) 50% 50% / cover;
}

#can-fluixa {
  background: url(./../images/can-fluixa.jpg) 50% 50% / cover;
}

#labritja {
  background: url(./../images/labritja-header.jpg) 50% 50% / cover;
}

#priorat {
  background: url(./../images/priorat-header.jpg) 50% 50% / cover;
}

#teia {
  background: url(./../images/teia-header.jpg) 50% 50% / cover;
}

#vistaalegre {
  background: url(./../images/vistaalegre-header.jpg) 50% 50% / cover;
}

#iluro {
  background: url(./../images/iluro-header.jpg) 50% 50% / cover;
}

#pau {
  background: url(./../images/pau-header.jpg) 50% 50% / cover;
}

.header .logo__home {
  left: 50%;
  opacity: 0;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}

.header .logo {
  left: 50%;
  position: absolute;
  top: 10%;
  transform: translate(-50%, -50%);
}

.header .logo img {
  min-width: 180px;
  width: 30%;
}

@keyframes logo__up {
  from {
    top: 50%;
  }

  to {
    top: 10%;
  }
}

@keyframes logo__fade {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* .logo__up {
            animation: logo__up 3000ms ease-out 1000ms forwards;
          }
.logo__fade {
            animation: logo__fade 600ms ease-out 600ms forwards;
          } */
.logo {
  position: relative;

  /* Asegúrate de que el contenedor tenga una posición relativa */
}

.combined {
  animation: logo__fade 1000ms ease-out 1000ms forwards,
    logo__up 3000ms ease-out 1800ms forwards;
}

.header .logo img {
  width: 100%;
}

@media (width <=992px) {
  .header .logo img,
  .header .logo__home img {
    max-width: 240px;
    width: 100%;
  }
}

@media (width <=768px) {
  .header .logo img,
  .header .logo__home img {
    max-width: 200px;
  }
}

.header .title {
  left: 50%;
  position: absolute;
  text-align: center;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}

#promotors .title {
  top: 58%;
}

@media (width <=992px) {
  .header .title {
    top: 55%;
  }

  #promotors .title {
    top: 70%;
  }
}

@keyframes title__home {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.title__home {
  animation: title__home 3000ms ease-out;
  animation-delay: 4500ms;
  animation-fill-mode: forwards;
  opacity: 0;
}

.header .hamburguer {
  cursor: pointer;
  left: 5%;
  position: absolute;
  top: 5%;

  /* z-index: 2; */
}

.header .lang {
  color: var(--white);
  display: flex;
  font-family: 'Nunito-Sans';
  font-size: clamp(12px, 4vw - 1rem, 18px);
  font-style: normal;
  font-weight: 400;
  gap: 8px;
  line-height: 32px;
  position: absolute;
  right: 5%;
  text-transform: uppercase;
  top: 5%;
}

@media (width <=992px) {
  .header .lang {
    flex-direction: column;
  }
}

.header .lang > div {
  border: 1px solid var(--white);
  border-radius: 4px;
  max-width: 56px;
  padding-inline: 8px;
  transition: 300ms ease;
}

.header .lang .active,
.header .lang > div:hover {
  color: var(--primary-color);
}

.header .lang > div.active,
.header .lang > div:hover {
  border: 1px solid var(--primary-color);
}

.bg {
  background-color: var(--bg);
  height: 100%;
}

.paragraph {
  margin: 0 auto;
  width: 75%;
}

.paragraph2 {
  margin: 0 auto;
  width: 800px;
}

@media (width <=1600px) {
  .paragraph,
  .paragraph2 {
    width: 600px;
  }
}

@media (width <=1400px) {
  .paragraph,
  .paragraph2 {
    width: 400px;
  }
}

@media (width <=992px) {
  .paragraph,
  .paragraph2 {
    width: 90%;
  }
}

/* ***********************************************************************
* HOME - S1
* ************************************************************************/
#home_s1.grid-3 {
  display: grid;
  gap: 25px;
  grid-template-columns: repeat(5, 1fr);
  justify-items: center;
}

@media (width <=992px) {
  #home_s1.grid-3 {
    gap: 80px;
    grid-template-columns: repeat(1, 1fr);
  }
}

#home_s1 span {
  color: rgba(208, 13, 45, 0.1);
  font-family: 'Jost';
  font-size: clamp(100px, 11vw - 1rem, 150px);
  font-style: normal;
  font-weight: 400;
  line-height: 104.348px;
  text-align: center;
}

@media (width <=992px) {
  #home_s1 span {
    line-height: 80px;
  }
}

#home_s1.grid-3 > div {
  position: relative;
}

#home_s1.grid-3 p {
  font-weight: 500;
  left: 50%;
  position: absolute;
  text-transform: uppercase;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}

#home_s1 span[data-target] {
  font-variant-numeric: tabular-nums;
}

#mouse p {
  font-size: 12px;
  text-transform: uppercase;
}

.blink_me {
  animation: blinker 2s linear infinite;
}

@keyframes blinker {
  50% {
    opacity: 0;
  }
}

/* ***********************************************************************
* HOME - S3
* ************************************************************************/
#home_s3 p {
  margin-inline: auto;
  width: 72%;
}

@media (width <=1400px) {
  #home_s3 p {
    width: 100%;
  }
}

#home_s3--cards .grid-3 {
  display: grid;
  gap: 25px;
  grid-template-columns: repeat(3, 1fr);
}

@media (width <=768px) {
  #home_s3--cards .grid-3 {
    grid-template-columns: repeat(1, 1fr);
  }
}

#home_s3--cards .box {
  position: relative;
  transition: 300ms ease;
}

#home_s3--cards .box_lg {
  transition: 100ms ease;
}

#home_s3--cards .box_sm {
  flex-direction: column;
  justify-content: space-between;
  transition: 600ms ease;
  height: 100%;
  z-index: 1;
}

#home_s3--cards .box_sm--card {
  position: relative;
}

#home_s3--cards .box_sm--card::before {
  background-color: rgb(0 0 0 / 40%);
  content: '';
  height: 100%;
  position: absolute;
  width: 100%;
}

#home_s3--cards .box:hover .box_lg {
  opacity: 0;
}

#home_s3--cards .box_lg .title {
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}

#home_s3--cards .box::before {
  background-color: rgb(0 0 0 / 20%);
  content: '';
  height: 100%;
  position: absolute;
  width: 100%;
}

#home_s3--cards .box:hover::before {
  background-color: rgb(0 0 0 / 0);
}

#home_s3--cards .box_sm {
  display: none;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

/* @media (width <= 992px) {
  #home_s3--cards .box_lg {
                  display: none;
                }
  #home_s3--cards .box_sm {
                  display: block;
                }
  } */
#home_s3--cards .box_sm--card .title {
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}

#home_s3--cards .box:hover .box_sm {
  display: flex;
}

/* ***********************************************************************
* HOME - S4
* ************************************************************************/
#home_s4 {
  background-color: var(--bg);
}

/* ***********************************************************************
* PROMOTORS - NUMBERS
* ************************************************************************/
#numbers {
  background: url(./../images/contenedora.png) 50% 50% / cover;
  width: 100%;
}

#numbers .grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  justify-items: center;
}

@media (max-width: 992px) {
  #numbers .grid-4 {
    gap: 48px;
    grid-template-columns: repeat(2, 1fr);
  }
}

#numbers span:first-of-type {
  color: var(--white);
  font-family: 'Jost';
  font-size: clamp(50px, 6vw - 1rem, 100px);
  font-style: normal;
  font-weight: 400;
  line-height: 68px;
  text-align: center;
}

#numbers span:last-of-type {
  color: var(--white);
  font-family: 'Jost';
  font-size: clamp(36px, 4vw - 1rem, 50px);
  font-style: normal;
  font-weight: 400;
  line-height: 68px;
  text-align: center;
}

#numbers span.special {
  font-size: 30px;
}

#numbers p {
  color: var(--white);
  font-family: 'Nunito-Sans';
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 28px;
  margin-top: 36px;
  text-align: center;
  text-transform: uppercase;
}

@media (max-width: 992px) {
  #numbers .grid-4 {
    padding-inline: 18px;
  }

  #numbers p {
    margin-top: 0;
  }
}

/* ***********************************************************************
* PROMOTORS - ICONS
* ************************************************************************/
#promotors_icons .grid-5 {
  display: grid;
  /* gap: 80px; */
  grid-template-columns: repeat(5, 1fr);
  justify-items: center;
}

@media (max-width: 992px) {
  #promotors_icons .grid-5 {
    grid-template-columns: repeat(2, 1fr);
    justify-items: center;
    padding-inline: 36px;
  }

  #promotors_icons .grid-5 > :nth-child(5) {
    grid-column: 1 / -1;
    justify-self: center;
  }
}

#promotors_icons p {
  color: #d00d2d;
  font-family: 'Jost';
  font-size: clamp(18px, 4vw - 1rem, 24px);
  font-style: normal;
  font-weight: 400;
  line-height: 32px;
  margin-top: 58px;
  text-align: center;
  text-transform: uppercase;
}

@media (max-width: 992px) {
  #promotors_icons p {
    margin-top: 12px;
  }

  #promotors_icons img {
    max-height: 64px;
  }
}

#promotors_icons .grid-5 .icon-container {
  display: flex;
  justify-content: center;
  flex-direction: column;
  position: relative;
  width: 100%;
  height: 460px;
}

#promotors_icons .grid-5 .icon-container:first-of-type {
  border: 1px solid var(--primary-color);
}

@media (max-width: 768px) {
  #promotors_icons .grid-5 {
    gap: 80px;
  }

  #promotors_icons .grid-5 .icon-container {
    height: auto;
  }
}

#promotors_icons .grid-5 .icon-container .icon-container__box {
  display: flex;
  align-items: center;
  align-self: flex-end;
  background-color: var(--primary-color);
  position: absolute;
  height: 100%;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 400ms;
}

#promotors_icons .grid-5 .icon-container:hover .icon-container__box {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 768px) {
  #promotors_icons .grid-5 .icon-container:hover .icon-container__box {
    opacity: 0;
    visibility: hidden;
  }
}

#promotors_icons .grid-5 .icon-container .icon-container__box > div {
  margin: 0 auto;
  width: 65%;
}

#promotors_icons .grid-5 .icon-container .icon-container__box h6 {
  color: var(--white);
  font-family: Jost;
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px;
  text-transform: uppercase;
  text-align: start;
}

#promotors_icons .grid-5 .icon-container .icon-container__box p {
  color: var(--white);
  font-family: 'Nunito-Sans';
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0.5px;
  text-align: start;
  text-transform: unset;
  margin: 0;
}

/* ***********************************************************************
* FICHAS
* ************************************************************************/
@media (max-width: 992px) {
  .info > div {
    width: 100%;
  }
}

#promociones-entregadas .grid-4 {
  align-items: center;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 1400px) {
  #promociones-entregadas .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  #promociones-entregadas .grid-4 {
    grid-template-columns: repeat(1, 1fr);
  }
}

/* ***********************************************************************
* CONTACTO
* ************************************************************************/
.contact p {
  font-size: 16px;
}

/* ***********************************************************************
* FORM
* ************************************************************************/
.input-flex {
  display: flex;
  justify-content: space-between;
}

.form-group {
  margin-top: 30px;
  position: relative;
}

.form-group.md {
  width: 48%;
}

@media (width <=992px) {
  .input-flex {
    flex-wrap: wrap;
  }

  .form-group.md {
    width: 100%;
  }
}

.form-label {
  left: 0;
  position: absolute;
  top: 10px;
  transition: transform 300ms ease-out, font-size 300ms ease-out;
  z-index: 10;
}

.focused .form-label {
  font-size: 0.75em;
  transform: translateY(-125%);
}

.form-input {
  border: 0;
  box-shadow: 0 1px 0 0 #979797;
  color: #000000;
  font-family: 'Nunito-Sans';
  font-size: 18px;
  font-weight: 500;
  outline: 0;
  padding: 12px 0px 12px 0;
  position: relative;
  transition: box-shadow 150ms ease-out;
  width: 100%;
}

.form-input:focus {
  box-shadow: 0 2px 0 0 var(--primary-color);
}

@media (width <=992px) {
  .form-input {
    padding: 4px 0px 4px 0;
  }
}

.form-input.filled {
  box-shadow: 0 2px 0 0 var(--primary-color);
}

.form form {
  margin: 0 auto;
  width: 100%;
}

@media (width <=992px) {
  .form form {
    width: 95%;
  }
}

.form form label {
  color: #666666;
  font-family: 'Nunito-Sans';
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
}

@media (width <=768px) {
  .form form label {
    font-size: 14px;
  }
}

.form form .checkbox {
  align-items: end;
  display: flex;
  margin-block: 8px;
}

.form form .checkbox:first-of-type {
  margin-top: 36px;
}

@media (width <=768px) {
  .form form .checkbox:first-of-type {
    margin-top: 24px;
  }
}

input[type='checkbox'] {
  appearance: none;
  background-color: none;
  border: 1px solid #666666;
  border-radius: 0.05em;
  cursor: pointer;
  display: grid;
  height: 1em;
  margin: 0;
  place-content: center;
  transform: translateY(-0.075em);
  width: 1em;
}

input[type='checkbox']::before {
  box-shadow: inset 1em 1em var(--primary-color);
  content: '';
  height: 8px;
  transform: scale(0);
  transition: 120ms transform ease-in-out;
  width: 8px;
}

input[type='checkbox']:checked::before {
  transform: scale(1);
}

.form form .checkbox {
  align-items: center;
  display: flex;
}

.form form .checkbox span {
  color: #666666;
  font-family: 'Nunito-Sans';
  font-size: 13px;
  font-style: normal;
  margin-left: 6px;
}

.form form .checkbox span > strong {
  font-family: 'Nunito-Sans';
  font-weight: 600;
}

.form .submit {
  margin-top: 24px;
}

.form .submit input {
  background-color: transparent;
  border: 1px solid var(--primary-color);
  border-radius: 10px;
  color: var(--primary-color);
  font-family: 'Jost';
  font-size: 16px;
  letter-spacing: 0.2rem;
  margin-top: 12px;
  min-width: 164px;
  padding-block: 12px;
  text-transform: uppercase;
  transition: background-color 300ms ease-in;
}

.form .submit input:hover {
  background-color: var(--primary-color);
  color: var(--white);
}

.disclaimer p {
  color: #666;
  font-family: 'Nunito-Sans';
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

#formModal .modal-body {
  padding: 18px 32px 48px;
}

/* ***********************************************************************
* CAROUSEL + RENDERS
* ************************************************************************/
@media (max-width: 998px) {
  .lightboxTrigger {
    pointer-events: none;
    cursor: default;
  }
}

#renders {
  position: relative;
}

#renders .owl-carousel .owl-nav {
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  display: none;
  justify-content: space-between;
  left: 50%;
  padding: 0 40px;
  pointer-events: none;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}

#renders .owl-carousel .owl-nav button {
  border: none;
  outline: none;
  pointer-events: all;
  width: 60px;
}

#renders .owl-carousel .owl-nav button img {
  width: 100%;
}

#renders .owl-carousel .owl-nav button:nth-child(2) {
  transform: rotate(180deg);
}

#renders .owl-carousel .item {
  margin-inline: 12px;
  max-height: 320px;
  min-height: 320px;
  position: relative;
  transition: 500ms ease;

  /* height: 44vw; */
  /* opacity: 0.4; */
}

#renders .owl-carousel .item img {
  border-radius: 4px;
  height: 100%;
  max-height: 320px;
  min-height: 320px;
  object-fit: cover;
  width: 100%;
}

@media (width <=1200px) {
  #renders .owl-carousel .item {
    max-height: 500px;
    min-height: 500px;
  }

  #renders .owl-carousel .item img {
    max-height: 500px;
    min-height: 500px;
  }
}

@media (width <=768px) {
  #renders .owl-carousel .item {
    max-height: 350px;
    min-height: 350px;
  }

  #renders .owl-carousel .item img {
    max-height: 350px;
    min-height: 350px;
  }
}

#renders .owl-carousel .owl-stage-outer .owl-stage .owl-item.active {
  opacity: 1;
}

#renders .owl-carousel .owl-stage-outer .owl-stage .owl-item.active .item {
  opacity: 1;
  transition: 500ms ease;
}

#renders .owl-dots {
  bottom: 8%;
  display: none;
  flex-wrap: wrap;
  justify-content: space-between;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: max-content;
}

@media (width <=1200px) {
  #renders .owl-dots {
    display: flex;
  }
}

#renders .owl-dots .owl-dot {
  border: 1px solid var(--primary-color);
  border-radius: 15px;
  height: 15px;
  margin: 5px 10px;
  width: 15px;
}

#renders .owl-dots .owl-dot.active {
  background: var(--primary-color);
}

#renders .owl-dots .owl-dot :focus {
  outline: none;
}

/* .custom-nav button {
                          background-color: #ffffff;
                          border: none;
                          margin: 0 8px;
                          outline: none;
                          pointer-events: all;
                          width: 60px;
                        }
.custom-nav button img {
                          width: 100%;
                        }
.custom-nav button:nth-child(2) {
                          transform: rotate(180deg);
                        } */
@media (width <=992px) {
  #renders .owl-carousel .owl-nav {
    padding: 0;
  }

  #renders .owl-carousel .owl-nav button img {
    width: 70%;
  }
}

/* ***********************************************************************
* BANNER
* ************************************************************************/
.banner {
  max-height: 468px;
  min-height: 468px;
  position: relative;
}

.banner img {
  max-height: 468px;
  min-height: 468px;
}

.banner .button {
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
}

.banner::before {
  background-color: rgb(0 0 0 / 40%);
  content: '';
  height: 100%;
  position: absolute;
  width: 100%;
}

.banner .button button {
  border: 1px solid var(--white);
  color: var(--white);
}

.banner .button button:hover {
  background-color: var(--white);
  color: var(--primary-color);
}

.banner h6 {
  color: var(--white);
  font-family: 'Jost';
  font-size: 44px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-align: center;
}

.banner p {
  color: var(--white);
  font-family: 'Jost';
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-align: center;
}

.banner p.small {
  font-size: 12px;
  line-height: normal;
  text-align: justify;
}

/* ***********************************************************************
* FOOTER
* ************************************************************************/
footer {
  background: url(./../images/footer.png) 50% 50% / cover;
  position: relative;
  width: 100%;
}

footer img {
  min-width: 180px;
  width: 40%;
}

@media (width <=992px) {
  footer img {
    margin-left: -16px;
  }
}

footer p {
  color: var(--white);
  font-family: 'Nunito-Sans', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
}

footer a {
  color: inherit;
  cursor: pointer;
  text-decoration: none;
}

/* footer a:hover {
  font-family: 'Nunito-Sans', sans-serif;
  font-weight: 500;
} */

.footer-line {
  border-top: 1px solid var(--white);
}

/* ***********************************************************************
* PÁGINA DE COMPROBANTE
* ************************************************************************/
#comprobante {
  align-items: center;
  background-color: rgb(255, 255, 255);
  display: flex;
  flex-direction: column;
  height: 100vh;
  justify-content: center;
}

#comprobante img {
  height: 148px;
}

#comprobante h1 {
  color: var(--black);
  padding: 24px 0;
  text-align: center;
  width: 470px;
}

#comprobante p {
  color: #1c1b1a;
  font-size: 20px;
  text-align: center;
  width: 520px;
}

#comprobante h4 {
  border-bottom: 2px solid rgb(28, 27, 26);
  color: rgb(28, 27, 26);
  font-family: 'Roboto-Regular', sans-serif;
  font-size: 16px;
  padding-bottom: 8px;
  padding-top: 24px;
  text-decoration-color: transparent;
}

#comprobante a {
  color: rgb(34, 34, 34);
  text-decoration: none;
}

#footer p {
  font-size: 0.8rem;
}

#footer a {
  font-family: 'Roboto-Medium';
}

@media (width <=992px) {
  #comprobante h1,
  #comprobante p {
    width: 100%;
  }
}

/* ***********************************************************************
* MODAL DE POLÍTICA DE PRIVACIDAD
* ************************************************************************/
#informacion .modal-header h5 {
  color: #333333;
  font-family: 'Roboto-Bold';
  font-size: 1rem;
  letter-spacing: 0.02rem;
  text-transform: capitalize;
}

#informacion .modal-content {
  -moz-box-shadow: 0px 17px 19px -8px rgba(0, 0, 0, 0.6);
  -webkit-box-shadow: 0px 17px 19px -8px rgba(0, 0, 0, 0.6);
  box-shadow: 0px 17px 19px -8px rgba(0, 0, 0, 0.6);
}

#informacion .modal-body p,
#informacion ul li {
  color: #222222;
  font-family: 'Roboto-Regular';
  font-size: 0.9rem;
  line-height: normal;
  text-align: left;
  width: 100%;
}
