/* FONTS */
@font-face {
  font-family: 'Montserat';
  src: url('./../fonts/Montserrat-VariableFont_wght.ttf') format('truetype');
}
@font-face {
  font-family: 'Montserat Italic';
  src: url('./../fonts/Montserrat-Italic-VariableFont_wght.ttf') format('truetype');
}

/* COMMON */
:root {
  --font-primary: 'Montserat', Arial, Helvetica, sans-serif;
  --font-primary-italic: 'Montserat Italic', Arial, Helvetica, sans-serif;
  --font-secondary: 'Montserat', Arial, Helvetica, sans-serif;

  --color-text: #000000;
  --color-link: #000000;
  --color-link-hover: #000000;

  --color-primary: #274128;
  --color-primary-dark: #122113;
  --color-primary-light: #3b713d;

  --color-secondary: #E46403;
  --color-secondary-dark: #b45207;
  --color-secondary-light: #EF7D27;

  --color-tertiary: #406256;
  --color-tertiary-dark: #406256;
  --color-tertiary-light: #2E6F6D;

  --padding-container-x: 120px;
  --padding-container-y: 120px;

  --max-width-container-semi-narrow: 1560px;
  --max-width-container-narrow: 1320px;
  --max-width-container-super-narrow: 900px;
  --max-width-container-ultra-narrow: 600px;
}
@media (max-width: 1200px) {
  :root {
    --padding-container-x: 80px;
    --padding-container-y: 80px;
  }
}
@media (max-width: 992px) {
  :root {
    --padding-container-x: 40px;
    --padding-container-y: 80px;
  }
}
* {
  box-sizing: border-box;
  font-family: var(--font-primary);
}
html, 
body {
  overflow-x: hidden;
}
body {
  position: relative;
}
a {
  color: var(--color-link);
  text-decoration: none;
}
a:hover {
  color: var(--color-link-hover);
  text-decoration: none;
}
strong {
  font-weight: 600;
}
.h1, .h2, .h3, .h4, .h5, .h6,
h1, h2, h3, h4, h5, h6 {
  margin-bottom: 0;
}
h1 { font-size: 48px; }
h2 { font-size: 36px; }
h3 { font-size: 28px; }
p,
a,
span,
ul,
li {
  color: var(--color-text);
  font-size: 20px;
}
@media (max-width: 768px) {
  p,
  a,
  span,
  ul,
  li {
    font-size: 16px;
  }
}
figure {
  margin-bottom: 0px;
}
::selection {
  background-color: var(--color-primary-light);
  color: var(--color-primary-dark);
}
img {
  width: 100%;
  height: auto;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-user-select: none;
  user-select: none;
}
.section {
  display: flex;
  justify-content: center;
  align-items: center;
}
.section.dark {
  background-color: var(--color-primary);
}
.section.light {
  background-color: white;
}
.container {
  max-width: 100%;
  padding: var(--padding-container-y) var(--padding-container-x);
  z-index: 1;
}
.container.semi-narrow {
  max-width: var(--max-width-container-semi-narrow);
}
.container.narrow {
  max-width: var(--max-width-container-narrow);
}
.container.super-narrow {
  max-width: var(--max-width-container-super-narrow);
}
.dark .title,
.dark .text {
  color: white;
}
.light .title,
.light .text {
  color: var(--color-primary);
}
.section-header {
  margin-bottom: 100px;
}
.section-title {
  font-size: 40px;
  font-weight: 300;
}
.noise-bg {
  background-image: url('./../images/noise.png');
}
@media (max-width: 992px) {
  .section-header {
    margin-bottom: 40px;
  }
  .section-title {
    font-size: 30px;
  }
}
@media (max-width: 768px) {
  .section-title {
    font-size: 26px;
  }
}
.button {
  display: inline-block;
  border-radius: 6px;
  background-color: var(--color-secondary);
  color: white;
  padding: 10px 20px;
  margin: 20px 0;
  transition: background 250ms ease-in-out;
  border: 0;
}
.button:hover {
  background-color: var(--color-secondary-light);
  color: white;
  transition: background 250ms ease-in-out;
}
.green-patch {
  position: absolute;
  height: 50%;
  width: 50%;
  top: 0;
  left: 0;
  background-color: var(--color-primary);
}

/* TOP BAR */
.header-top-bar {
  /*
  position: absolute;
  top: 0;
  left: 0;
  */
  background-color: var(--color-primary);
  width: 100%;
  z-index: 1;
}
.header-top-bar .container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding-top: 0px;
  padding-bottom: 0px;
}
@media (max-width: 1200px) {
  .header-top-bar .container {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
.header-top-bar .header-logo {
  display: flex;
  align-items: center;
}
.header-top-bar .header-logo img {
  width: 100%;
  height: auto;
  max-width: 400px;
  padding-bottom: 10px;
}
.header-top-bar .header-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
}
.header-top-bar .header-nav ul li a {
  color: white;
  display: inline-block;
  font-size: 16px;
  font-weight: 400;
  padding: 40px 70px;
  transition: background 250ms ease-in-out;
}
.header-top-bar .header-nav ul li a.active {
  background-color: var(--color-secondary);
  transition: background 250ms ease-in-out;
}
.header-top-bar .header-nav ul li a:hover {
  background-color: var(--color-primary-light);
  transition: background 250ms ease-in-out;
}
@media (max-width: 1200px) {
  .header-top-bar .logo img {
    max-width: 200px;
  }
  .header-top-bar .header-nav ul li a {
    font-size: 18px;
  }
}

/* NAV MOBILE */
.nav-toggler-btn,
.nav-close-btn {
  display: none;
}
.backdrop {
  position: absolute;
  height: 100%;
  width: 100%;
  display: none;
  backdrop-filter: blur(0px);
  opacity: 0;
  z-index: 5;
  transition: opacity 300ms ease-in-out;
}
html .header-nav {
  z-index: 10;
}
@media (max-width: 1200px) {
  html.mobile .backdrop {
    display: block;
    backdrop-filter: blur(3px);
    opacity: 1;
    transition: opacity 300ms ease-in-out;
  }
  html .header-nav {
    position: fixed;
    height: 100vh;
    right: -100%;
    top: 0;
    display: block;
    background-color: black;
    padding: 83px 0 0 0;
    transition: right 300ms ease-in-out;
  }
  html.mobile .header-nav {
    right: 0;
    top: 0;
    transition: right 300ms ease-in-out;
  }
  .header-top-bar {
    z-index: 10;
    height: var(--height-header-top-bar);
    padding: 0 0 0 var(--padding-x-container);
  }
  .header-top-bar .header-logo img {
    width: 200px;
  }
  .header-top-bar .header-nav ul {
    flex-direction: column;
    padding: 10px 0;
    gap: 0;
  }
  .header-top-bar .header-nav ul li {
    display: block;
    width: 100%;
  }
  .header-top-bar .header-nav ul li a {
    display: block;
    color: white;
    padding: 24px 60px 24px 30px;
    font-size: 18px;
    background-image: none;
    font-weight: 100;
  }
  .nav-toggler-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    height: 100%;
    aspect-ratio: 1/1;
    padding-top: 10px;
  }
  .nav-toggler-btn img {
    width: 26px;
  }
  .nav-close-btn {
    display: flex;
    justify-content: right;
    align-items: center;
    width: 100%;
    height: 83px;
    position: absolute;
    padding: 0 var(--padding-container-x);
    top: 0;
    right: 0;
    aspect-ratio: 1/1;
    background-color: var(--color-primary-dark);
  }
  .nav-close-btn img {
    width: 40px;
  }
}

/* COMMON FANTASIA DE ONA HEADER */
.fantasia-de-ona-header {
  height: 150vh;
  min-height: 1200px;
  position: relative;
}
.fantasia-de-ona-header .bg {
  background-image: url('./../images/header.jpg');
  background-size: cover;
  background-position: center center;
  position: absolute;
  height: 100%;
  width: 100%;
}
.fantasia-de-ona-header .header-video::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
}
.fantasia-de-ona-header .header-logo-mobile {
  position: absolute;
  left: var(--padding-container-x);
  display: none;
  top: 50px;
}
.fantasia-de-ona-header .header-logo-mobile img {
  width: 100%;
  max-width: 180px;
}
@media (max-width: 992px) {
  .fantasia-de-ona-header .header-logo-mobile {
    display: block;
  }
}
.fantasia-de-ona-header .header-video {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  line-height: 0;
}
.fantasia-de-ona-header .header-video.header-image {
  background-size: cover;
  background-position: center;
}
.fantasia-de-ona-header .header-video video {
  height: 100%;
  object-fit: cover;
  width: 100%;
}
.fantasia-de-ona-header .header-info {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.fantasia-de-ona-header .header-info .title {
  position: absolute;
  text-align: center;
  top: 24%;
  font-size: 58px;
  padding: 0 20px;
  color: white;
}
@media (max-width: 1200px) {
  .home .header-top-bar {
    position: relative;
  }
  .fantasia-de-ona-header {
    height: auto;
    min-height: 0;
  }
  .fantasia-de-ona-header .bg {
    position: relative;
  }
  .fantasia-de-ona-header .header-video {
    position: relative;
    aspect-ratio: 16 / 9;
    height: auto;
  }
  .fantasia-de-ona-header .header-info {
    width: 100%;
    aspect-ratio: 16 / 9;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .fantasia-de-ona-header .header-info .title {
    font-size: 38px;
    top: unset;
  }
}
@media (max-width: 768px) {
  .fantasia-de-ona-header .header-info .title {
    font-size: 24px;
  }
}

.fantasia-de-ona-header .header-about {
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: var(--color-primary);
  width: calc(var(--max-width-container-narrow) + ((100% - var(--max-width-container-narrow)) / 2));
  display: flex;
}
.fantasia-de-ona-header .header-about .image {
  min-width: calc(100% - var(--max-width-container-narrow));
  grid-area: fantasia;
  display: flex;
  justify-content: center;
}
.fantasia-de-ona-header .header-about .image .fantasia-de-ona {
  position: absolute;
  transform: translateY(-60px);
  width: 100px;
}
.fantasia-de-ona-header .header-about .title {
  padding-right: 150px;
  font-size: 26px;
  grid-area: title;
}
.fantasia-de-ona-header .header-about .title,
.fantasia-de-ona-header .header-about .text {
  padding-top: 90px;
  padding-bottom: 140px;
}
.fantasia-de-ona-header .header-about .text {
  padding-right: 200px;
  grid-area: text;
}
.fantasia-de-ona-header .header-about .text .btns {
  display: flex;
  gap: 20px;
}
.fantasia-de-ona-header .header-about .text .btns .button {
  background-color: transparent;
  border: 1px solid var(--color-secondary);
  padding: 10px 40px;
  text-align: center;
}
.fantasia-de-ona-header .header-about .text .btns .button:hover {
  background-color: var(--color-secondary);
}
.fantasia-de-ona-header .header-about * {
  color: white;
}
@media (max-width: 1650px) {
  .fantasia-de-ona-header .header-about .image {
    min-width: 200px;
  }
}
@media (max-width: 1200px) {
  .fantasia-de-ona-header .header-about {
    position: relative;
    display: grid;
    width: 100%;
    grid-template-areas: "fantasia title title" "fantasia text text";
    padding: 40px var(--padding-container-x) 140px;
  }
  .fantasia-de-ona-header .header-about .image {
    min-width: 200px;
  }
  .fantasia-de-ona-header .header-about .image .fantasia-de-ona {
    transform: translate(-40px, -60px);
  }
  .fantasia-de-ona-header .header-about .title {
    padding: 0;
    margin-bottom: 20px;
  }
  .fantasia-de-ona-header .header-about .text {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .fantasia-de-ona-header .header-about .image .fantasia-de-ona {
    transform: translate(-20px, -60px);
  }
}
@media (max-width: 768px) {
  .fantasia-de-ona-header .header-about {
    grid-template-areas: "fantasia" "title" "text";
  }
  .fantasia-de-ona-header .header-about {
    padding: 40px var(--padding-container-x) 0px;
  }
  .fantasia-de-ona-header .header-about .image .fantasia-de-ona {
    position: relative;
    width: 60px;
    transform: translate(0px, -100px);
    margin-bottom: -60px;
  }
  .fantasia-de-ona-header .header-about .text .btns {
    display: block;
    margin-bottom: 40px;
  }
  .fantasia-de-ona-header .header-about .text .btns .button {
    width: 100%;
    margin-bottom: 0px;
  }
}

/* FANTASÍA DE ONA CAROUSEL */
.fantasia-de-ona-carousel .container {
  padding: 0;
}
.fantasia-de-ona-carousel .container .owl-carousel {
  display: flex;
  flex-direction: column-reverse;
  transform: translateY(-100px);
}
.fantasia-de-ona-carousel .container .owl-nav {
  text-align: right;
}
.fantasia-de-ona-carousel .container .owl-nav button {
  width: 100px;
  height: 100px;
  background-color: var(--color-secondary);
  transition: background 250ms ease-in-out;
}
.fantasia-de-ona-carousel .container .owl-nav button img {
  width: 35px;
}
.fantasia-de-ona-carousel .container .owl-nav button:nth-child(1) img {
  transform: rotate(180deg);
}
.fantasia-de-ona-carousel .container .owl-nav button:hover {
  background-color: var(--color-secondary-light);
  transition: background 250ms ease-in-out;
}
@media (max-width: 768px) {
  .fantasia-de-ona-carousel .container .owl-carousel {
    flex-direction: column;
    transform: unset;
  }
  .fantasia-de-ona-carousel .container .owl-nav {
    text-align: right;
  }
  .fantasia-de-ona-carousel .container .owl-nav button {
    width: 50%;
  }
}

/* COMMON SECTION FICHA FLOTANTE */
.section-ficha-flotante {
  background-color: white;
  position: relative;
}
.section-ficha-flotante .container {
  padding-top: 200px;
  padding-left: 0;
  padding-right: 0;
}
.section-ficha-flotante .section-header {
  width: 100%;
  max-width: calc(var(--max-width-container-narrow) + ((100% - var(--max-width-container-narrow)) / 2));
}
.section-ficha-flotante .section-title {
  text-align: right;
  margin-bottom: 60px;
  padding-right: 40px;
}
.section-ficha-flotante .section-image {
  aspect-ratio: 16 / 9;
  background-position: center center;
  background-size: cover;
}
.section-ficha-flotante .ficha-container {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.section-ficha-flotante .ficha-container .ficha {
  position: absolute;
  background-color: var(--color-primary);
  padding: 100px;
  width: 750px;
  bottom: 100px;
  right: 100px;
}
.section-ficha-flotante .ficha-container .ficha-logo-container {
  text-align: center;
  margin-bottom: 40px;
}
.section-ficha-flotante .ficha-container .ficha-logo-container .ficha-logo {
  max-width: 200px;
}
.section-ficha-flotante .ficha-container .ficha-logo-container .ficha-tit {
  max-width: 200px;
}
.section-ficha-flotante .ficha-container .ficha-tit {
  font-size: 36px;
  margin-bottom: 30px;
  font-weight: 500;
  color: white;
}
.section-ficha-flotante .ficha-container .ficha-txt {
  color: white;
}
@media (max-width: 1200px) {
  .section-ficha-flotante .ficha-container .ficha-tit {
    font-size: 30px;
  }
}
@media (max-width: 992px) {
  .section-ficha-flotante {
    display: block;
  }
  .section-ficha-flotante .container {
    padding-bottom: 0;
    padding-top: 140px;
  }
  .section-ficha-flotante .section-header {
    margin-bottom: 0;
  }
  .section-ficha-flotante .section-title {
    padding: 0 20px;
    text-align: center;
  }
  .section-ficha-flotante .ficha-container,
  .section-ficha-flotante .ficha-container .ficha {
    position: relative;
    bottom: unset;
    right: unset;
  }
  .section-ficha-flotante .ficha-container .ficha {
    top: -40px;
    padding: var(--padding-container-x);
  }
  .section-ficha-flotante .ficha-container {
    padding: 0 var(--padding-container-x);
    display: flex;
    justify-content: center;
  }
  .section-ficha-flotante .ficha-container .ficha-tit {
    font-size: 24px;
  }
}
@media (max-width: 768px) {
  .section-ficha-flotante .container {
    padding-top: 100px;
  }
  .section-ficha-flotante .ficha-container {
    padding: 0 20px;
  }
}

/* SECTION HOME PROYECTOS */
.home-proyectos .section-image {
  background-image: url('./../images/pages/home/proyectos-bg.jpg');
}

/* SECTION EXPERIENCIA */
.experiencia .container {
  padding-bottom: 0;
}
.experiencia .section-header {
  text-align: center;
}
.experiencia .data-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.experiencia .data-cards .data-card {
  width: 100%;
  aspect-ratio: 1 / 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
}
.experiencia .data-cards .data-card:nth-child(odd) {
  transform: translateY(80px);
  background-color: var(--color-tertiary);
}
.experiencia .data-cards .data-card:nth-child(even) {
  background-color: var(--color-tertiary-light);
}
.experiencia .data-cards .data-card p {
  margin-bottom: 0;
}
.experiencia .data-cards .data-card .data-card-num {
  color: white;
  font-size: 120px;
  line-height: 1.2;
  font-weight: 600;
}
.experiencia .data-cards .data-card .data-card-txt {
  color: white;
  font-size: 30px;
  font-weight: 200;
}
@media (max-width: 1600px) {
  .experiencia .data-cards .data-card .data-card-num {
    font-size: 80px;
  }
  .experiencia .data-cards .data-card .data-card-txt {
    font-size: 20px;
  }
}
@media (max-width: 1200px) {
  .experiencia .data-cards {
    gap: 20px;
  }
  .experiencia .data-cards .data-card:nth-child(odd) {
    transform: translateY(40px);
  }
  .experiencia .data-cards .data-card .data-card-num {
    font-size: 50px;
  }
  .experiencia .data-cards .data-card .data-card-txt {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .experiencia .data-cards .data-card:nth-child(odd) {
    transform: translateY(20px);
  }
  .experiencia .data-cards .data-card .data-card-num {
    font-size: 24px;
  }
  .experiencia .data-cards .data-card .data-card-txt {
    font-size: 13px;
  }
}
@media (max-width: 500px) {
  .experiencia .container {
    padding-bottom: var(--padding-container-y);
  }
  .experiencia .data-cards {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 1fr);
    padding: 0 20px;
    gap: 20px;
  }
  .experiencia .data-cards .data-card .data-card-num {
    font-size: 60px;
  }
  .experiencia .data-cards .data-card .data-card-txt {
    font-size: 20px;
  }
  .experiencia .data-cards .data-card:nth-child(odd) {
    transform: translate(20px, 0px);
  }
  .experiencia .data-cards .data-card:nth-child(even) {
    transform: translate(-20px, 0px);
  }
}

/* COMMON GREEN CLAIM */
.green-claim {
  height: 100vh;
  min-height: 800px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
.green-claim .container {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(39, 65, 40, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
}
.green-claim .section-title {
  text-align: center;
  font-weight: 500;
  color: white;
}
.green-claim .section-btn-container {
  text-align: center;
}
@media (max-width: 768px) {
  .green-claim {
    height: 500px;
    min-height: unset
  }
}

/* HOME FOOTER CLAIM */
.home-footer-claim {
  background-image: url('./../images/pages/home/footer-bg.jpg');
}

/* COMMON PAGE HEADER */
.page-header {
  text-align: center;
  display: flex;
  justify-content: center;
  background-color: var(--color-primary);
  position: relative;
}
.page-header::after {
  content: '';
  position: absolute;
  display: block;
  height: 20%;
  width: 100%;
  bottom: 0;
  background-color: white;
}
.page-header .container {
  padding-bottom: 20px;
}
.page-header .header-info {
  margin-bottom: 80px;
}
.page-header .header-info .title {
  font-size: 48px;
  color: white;
  margin-bottom: 80px;
}
.page-header .fantasia-de-ona {
  max-width: 100px;
  width: 100%;
}
.page-header .header-image {
  width: 100%;
}
@media (max-width: 1200px) {
  .page-header .header-info {
    margin-bottom: 40px;
  }
  .page-header .header-info .title {
    font-size: 30px;
    margin-bottom: 40px;
  }
  .page-header .fantasia-de-ona {
    max-width: 40px;
  }
}

/* COMMON SECTION TITLE LEFT */
.section-title-left .container {
  display: flex;
}
.section-title-left .container .section-header {
  padding-right: 150px;
}
.section-title-left .container .section-header .section-title {
  font-weight: 500;
  font-size: 26px;
}
@media (max-width: 1200px) {
  .section-title-left .container {
    display: block;
  }
  .section-title-left .container .section-header {
    padding-right: 0px;
    margin-bottom: 20px;
  }
}

/* SOBRE NOSOTROS */
/* SOBRE NOSOTROS INTERNACIONAL */
.sobre-nosotros .section-image {
  background-image: url('./../images/pages/sobre-nosotros/internacional-bg.jpg');
}
/* SOBRE NOSOTROS FOOTER CLAIM */
.sobre-nosotros-footer-claim {
  background-image: url('./../images/pages/sobre-nosotros/footer-bg.jpg');
}

/* FICHA PROMOCIÓN AMPLIADA */
.ficha-promocion .ficha-promocion-caracteristicas {
  background-image: url('./../images/noise.png');
}
.ficha-promocion .ficha-promocion-caracteristicas .section-title {
  color: white;
  margin-bottom: 120px;
  text-align: center;
}
.ficha-promocion .ficha-promocion-caracteristicas .section-content {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 80px;
}
.ficha-promocion .ficha-promocion-caracteristicas .section-content .section-icon .icon-top {
  font-size: 30px;
  font-weight: 500;
  color: white;
  padding-bottom: 30px;
  border-bottom: 1px solid white;
  line-height: 70px;
  white-space: nowrap;
}
.ficha-promocion .ficha-promocion-caracteristicas .section-content .section-icon .icon-top img {
  max-width: 64px;
  width: 100%;
  aspect-ratio: 1 / 1;
}
.ficha-promocion .ficha-promocion-caracteristicas .section-content .section-icon .icon-bottom {
  color: white;
  margin-top: 40px;
}
.ficha-promocion .ficha-contact .container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.ficha-promocion .ficha-contact .container .contact-info {
  display: flex;
  align-items: center;
  justify-content: center;
}
.ficha-promocion .ficha-contact .container .contact-info .ficha-logo {
  max-width: 200px;
}
@media (max-width: 992px) {
  .ficha-promocion .ficha-promocion-caracteristicas .section-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
  .ficha-promocion .ficha-promocion-caracteristicas .section-content .section-icon .icon-top {
    font-size: 18px;
    padding-bottom: 10px;
    line-height: 40px;
  }
  .ficha-promocion .ficha-promocion-caracteristicas .section-content .section-icon .icon-top img {
    max-width: 32px;
  }
  .ficha-promocion .ficha-promocion-caracteristicas .section-content .section-icon .icon-bottom {
    color: white;
    margin-top: 20px;
  }
  .ficha-promocion .ficha-contact {
    height: auto;
  }
  .ficha-promocion .ficha-contact .container {
    height: auto;
    position: relative;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
  .ficha-promocion .ficha-contact .container .contact-info {
    margin-bottom: 26px;
  }
}

/* CONTACTO */
/* CONTACTO HEADER */
.contacto-header .header-about .title {
  max-width: 400px;
  width: 100%;
  padding-right: 100px;
}
.contacto-header .title .title-tit {
  color: white;
  font-weight: 500;
  margin-bottom: 40px;
}
.contacto-header .title .title-txt {
  color: white;
  font-size: 18px;
  margin-bottom: 60px;
}
.contacto-header .title-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.contacto-header .title .contact-link {
  display: flex;
  align-items: center;
  gap: 5px;
  color: white;
  font-weight: 500;
  font-size: 18px;
}
.contacto-header .title .contact-link::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 24px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.contacto-header .title .phone-link::before {
  background-image: url('./../images/icons/ico-phone.svg');
}
.contacto-header .title .email-link::before {
  background-image: url('./../images/icons/ico-email.svg');
}
.contacto-header .header-about .contacto-form {
  width: 100%;
  max-width: 100%;
}
@media (max-width: 1200px) {
  .contacto-header.fantasia-de-ona-header .header-about {
    display: block;
  }
  .contacto-header .header-about .title {
    max-width: 100%;
    padding-right: 0;
  }
  .contacto-header .header-about .title-tit {
    margin-bottom: 20px;
  }
  .contacto-header .header-about .title-txt {
    margin-bottom: 20px;
  }
  .contacto-header .header-about .title-links {
    margin-bottom: 60px;
  }
}

/* FOOTER */
.footer {
  background-color: var(--color-primary);
}
.footer .container-top {
  display: grid;
  grid-template-columns: 3fr 9fr 3fr;
  gap: 40px;
  padding-top: 40px;
  padding-bottom: 40px;
}
.footer .footer-logo-container {
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer .footer-logo-container img {
  max-width: 250px;
}
.footer .footer-info-container .footer-info-top {
  border-bottom: 1px solid white;
}
.footer .footer-info-container .footer-info-top,
.footer .footer-info-container .footer-info-bottom {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 20px;
}
.footer .footer-info-container * {
  color: white;
  font-size: 16px;
}
.footer .footer-social-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.footer .footer-social-container img {
  max-width: 28px;
}
.footer .container-bottom {
  background-color: var(--color-primary);
  padding-top: 10px;
  padding-bottom: 10px;
  text-align: center;
}
.footer .container-bottom,
.footer .container-bottom * {
  color: white;
  font-size: 16px;
}
@media (max-width: 992px) {
  .footer .container-top {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 500px) {
  .footer .footer-info-top,
  .footer .footer-info-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

/* FORM */
.form {
  width: 100%;
}
.form .inputs {
  display: grid;
  grid-template-areas: "nombre apellidos" "telefono email" "mensaje mensaje";
  gap: 0 20px
}
.form .inputs .box-nombre { grid-area: nombre; }
.form .inputs .box-apellidos { grid-area: apellidos; }
.form .inputs .box-telefono { grid-area: telefono; }
.form .inputs .box-email { grid-area: email; }
.form .inputs .box-mensaje { grid-area: mensaje; }

.form .input-box {
  margin-bottom: 18px;
}
.form .input-box input,
.form .input-box textarea {
  background-color: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,.5);
  border-radius: 0px;
  font-size: 16px;
  padding: 10px 18px 5px 0px;
  width: 100%;
}
.form .input-box textarea {
  resize: none;
}
.form .input-box input::placeholder,
.form .input-box textarea::placeholder {
  color: white;
  font-size: 16px;
}
.form .input-box input:focus {
  border: 0;
  outline: 2px solid var(--black);
}
.form .checkbox {
  display: flex;
  align-items: flex-start;
  margin-bottom: 8px;
}
.form .checkbox input {
  min-width: 15px;
  margin-top: 5px;
}
.form .checkbox input[type='checkbox'] {
  appearance: none;
  background-color: transparent;
  border: 1px solid white;
  height: 1em;
  width: 1em;
  cursor: pointer;
  place-content: center;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 8px;
}
.form .checkbox input[type='checkbox']::before {
  content: '';
  display: block;
  box-shadow: inset 1em white;
  height: 8px;
  width: 8px;
  transform: scale(0);
  transition: 120ms transform ease-in-out;
  background-color: black;
}
.form .checkbox input[type='checkbox']:checked::before {
  transform: scale(1);
}
.form .checkbox * {
  color: #ffffff;
  font-size: 14px;
}
.form-container .submit {
  margin-top: 24px;
}
.form-container .submit input {
  border: 0;
  background-color: var(--color-secondary);
  color: black;
  font-weight: 600;
  font-size: 18px;
  padding: 10px;
  width: 100%;
  transition: all 300ms ease-in;
}
.form-container .submit input:hover {
  background-color: var(--color-secondary-light);
  transition: all 300ms ease-in;
}
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-background-clip: text;
  -webkit-text-fill-color: #ffffff;
  transition: background-color 5000s ease-in-out 0s;
  box-shadow: inset 0 0 20px 20px var(--color-primary);
  box-shadow: inset 0 0 0px 0px transparent;
  border-bottom: 1px solid rgba(255,255,255,.5);
}
.form-legal,
.form-legal * {
  color: white;
  font-size: 10px;
  margin-bottom: 0;
  padding-bottom: 20px;
}
@media (max-width: 768px) {
  .form .inputs {
    display: block;
  }
}
@media (width <=1200px) {
  .form-container .submit input {
    width: 100%;
  }
}

/* CAROUSEL */
.owl-carousel .owl-item {
  aspect-ratio: 16/9;
}
.owl-carousel .owl-item img {
  object-fit: cover;
}
#renders .owl-carousel .owl-dots {
  text-align: center;
  transform: translateY(-70px);
  position: absolute;
  width: 100%;
}
#renders .owl-carousel .owl-dots .owl-dot {
  width: 20px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: rgba(255,255,255,.5);
  margin: 0 5px;
  transition: background 300ms ease-in-out;
}
#renders .owl-carousel .owl-dots .owl-dot.active {
  background-color: rgba(255,255,255,.8);
  transition: background 300ms ease-in-out;
}
#renders .owl-carousel .owl-dots .owl-dot:hover {
  background-color: rgba(255,255,255,1);
  transition: background 300ms ease-in-out;
}

/* COMPROBANTE */
.comprobante {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
.comprobante img {
  width: 150px;
  margin-bottom: 20px;
}
.comprobante h1 {
  color: black;
  text-align: center;
  margin-bottom: 20px;
}
.comprobante p {
  color: black;
  font-size: 20px;
  text-align: center;
}
.comprobante .button {
  color: white!important;
}
.comprobante a {
  color: rgb(34, 34, 34);
  text-decoration: none;
}
/* ***********************************************************************
* 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 {
  -webkit-box-shadow: 0px 17px 19px -8px rgba(0, 0, 0, 0.6);
  -moz-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%;
}

/* ANIMACIONES */

@keyframes title__fade {
  from {
    opacity: 0;
    transform: translateY(-100px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.title__fade {
  animation: title__fade 500ms ease-out;
  animation-delay: 600ms;
  animation-fill-mode: forwards;
  opacity: 0;
}

@media (max-width: 768px) {
  .logo img {
    width: 170px;
  }
}
