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

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

  --color-text: #444444;
  --color-link: #444444;
  --color-link-hover: #444444;
  
  --form-input-color: #1E6159;
  --form-label-color: #1E6159;
  --form-label-active-color: #1E6159;
  --form-placeholder-color: #1E6159;
  --form-preguntas-question-color: #ffffff;
  --form-input-backgroud-color: white;
  --form-text-size: 18px;

  --color-primary: #1E6159;
  --color-primary-dark: #0f433d;
  --color-primary-light: #D1F6D3;

  --color-secondary: #444444;
  --color-secondary-dark: #222222;
  --color-secondary-light: #C5C5C5;

  --color-tertiary: #666666;
  --color-tertiary-dark: #333333;
  --color-tertiary-light: #D7D7D7;

  --color-list-bg: #ffffff;
  --color-list-bg-light: #eeeeee;

  --color-admin-area-bg: #fafafa;
  --color-admin-area-bg-dark: #333333;
  --color-admin-area-border: #dddddd;
  --color-admin-area-button-bg: #fafafa;
  --color-admin-area-button-bg-hover: #ffffff;
  --color-admin-area-ok: #1ba2c0;
  --color-admin-area-ok-hover: #0fc2ea;
  --color-admin-area-ko: #c34a4a;
  --color-admin-area-ko-hover: #e63434;

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

  --max-width-container: 1850px;
  --max-width-container-semi-narrow: 1600px;
  --max-width-container-narrow: 1350px;
  --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;
  }
}
@media (max-width: 420px) {
  :root {
    --padding-container-x: 30px;
    --padding-container-y: 60px;
  }
}
.hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
* {
  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, b {
  font-family: var(--font-primary-bold);
  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; }
@media (max-width: 992px) {
  h1 { font-size: 32px; }
  h2 { font-size: 26px; }
  h3 { font-size: 22px; }
}
p,
span,
a,
ul,
li {
  font-size: 20px;
}
@media (max-width: 992px) {
  p,
  span,
  a,
  ul,
  li {
    font-size: 16px;
  }
}
p,
span,
ul,
li {
  color: var(--color-text);
}
p span,
a span,
li span,
span span,
h1 span,
h2 span,
h3 span,
h4 span,
h5 span,
h6 span {
  font-size: inherit;
  font-family: inherit;
  font-weight: inherit;
}
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;
}
.container {
  width: 100%;
  max-width: var(--max-width-container);
  padding: var(--padding-container-y) var(--padding-container-x);
  margin: 0;
  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); }
.container.ultra-narrow { max-width: var(--max-width-container-ultra-narrow); }

.section {
  display: flex;
  justify-content: center;
  align-items: center;
}
.section .section-header {
  text-align: left;
}
.section .section-header:has(+ div) {
  margin-bottom: calc(var(--padding-container-y) / 2);
}
.section .section-title {
  font-size: 48px;
  font-weight: 700;
  font-family: var(--font-secondary);
}
.section .section-title:has(+ p) {
  margin-bottom: 60px;
}
.section p.section-text {
  font-size: 24px;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .section .section-title {
    font-size: 28px;
  }
  .section .section-title:has(+ p) {
    margin-bottom: 20px;
  }
  .section p.section-text {
    font-size: 18px;
  }
}

.section.dark                 { background-color: var(--color-primary); }
.section.light                { background-color: white; }
.section.dark .section-title  { color: white; }
.section.dark .section-text   { color: white; }
.section.light .section-title { color: var(--color-primary); }
.section.light .section-text  { color: var(--color-text); }

.section.vertical .section-header {
  text-align: left;
  margin-bottom: 0;
}
.section.vertical .container {
  display: flex;
  padding: 0;
}
.section.vertical .container > * {
  padding: var(--padding-container-y) var(--padding-container-x);
}
.section.vertical .container .section-image {
  background-position: center center;
  background-size: cover;
}
@media (min-width: 992px) {
  .section.padding-y {
    padding-top: var(--padding-container-y);
    padding-bottom: var(--padding-container-y);
  }
  .section.vertical.flip .container {
    flex-direction: row-reverse;
  }
  .section.vertical .container > * {
    width: 50%;
  }
  .section.vertical.one-two .container > *:first-child {
    width: calc((100% / 3) * 1);
  }
  .section.vertical.one-two .container > *:nth-child(2) {
    width: calc((100% / 3) * 2);
  }
  .section.vertical.two-one .container > *:first-child {
    width: calc((100% / 3) * 2);
  }
  .section.vertical.two-one .container > *:nth-child(2) {
    width: calc((100% / 3) * 1);
  }
}
@media (max-width: 992px) {
  .section.vertical .container,
  .section.vertical.flip .container {
    flex-direction: column;
  }
  .section.vertical .container .section-image {
    aspect-ratio: 1 / 1;
  }
}

/* BUTTON */
.button {
  background-color: var(--color-primary-light);
  color: var(--color-primary);
  position: relative;
  border-radius: 20px;
  font-size: 22px;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 8px 24px;
  transition: background-color 300ms ease-in-out, color 300ms ease-in-out;
}
.button::after {
  content: '';
  display: inline-block;
  width: 38px;
  height: 20px;
  background-image: url('./../images/svg/arrow-green-right.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  pointer-events: none;
}
.button.light:hover {
  background-color: #fff;
  color: var(--color-primary);
  transition: background-color 300ms ease-in-out, color 300ms ease-in-out;
}
.button.dark:hover {
  color: #fff;
  background-color: var(--color-primary-dark);
  transition: background-color 300ms ease-in-out, color 300ms ease-in-out;
}

@media (min-width: 1200px) and (max-width: 1600px)  { .button { font-size: 16px; } }
@media (min-width: 992px)  and (max-width: 1200px)  { .button { font-size: 14px; } }
@media (min-width: 380px)  and (max-width: 540px)   { .button { font-size: 16px; } }
@media (max-width: 380px)                           { .button { font-size: 14px; } }

/* SECTION VERTICAL FULL */
.section.vertical-full {
  position: relative;
}
.section.vertical-full .container > * {
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
@media (min-width: 768px) {
  .section.vertical-full .container > * {
    padding: var(--padding-container-y) var(--padding-container-x);
  }
}
.section.vertical-full .container .section-header {
  z-index: 5;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 0;
}
.section.vertical-full .container .section-header > * {
  color: white;
}
.section.vertical-full .container .section-image {
  position: absolute;
  background-position: center center;
  background-size: cover;
  z-index: 1;
}
.section.vertical-full .container .section-image::before {  
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
}
.section.vertical-full .container .section-header > * {
  width: max(50%, 500px);
  text-align: left;
}
@media (min-width: 768px) {
  .section.vertical-full.flip .container .section-header {
    align-items: flex-end;
  }
  .section.vertical-full.flip .container .section-header > * {
    text-align: right;
  }
}
@media (max-width: 786px) {
  .section.vertical-full .container .section-header > * {
    width: 100%;
    text-align: left;
  }
}

/* TOP BAR */
.skip-to-content {
  position: absolute;
  top: -40px;
  left: 0;
  background: #000;
  color: #fff;
  padding: 8px;
  z-index: 100;
  text-decoration: none;
  transition: top 0.3s;font-size: 16px;
}
.skip-to-content:focus {
  top: 0;
}
.header-top-bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
}
.header-top-bar .container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  max-width: 100%;
  padding-top: 100px;
  padding-bottom: 100px;
}
.header-top-bar .logo img {
  width: 100%;
  height: auto;
  max-width: 350px;
}
.header-top-bar .header-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 40px;
}
.header-top-bar .header-nav ul li a {
  color: white;
  font-size: 18px;
  text-transform: uppercase;
}
@media (max-width: 1200px) {
  .header-top-bar .logo img {
    max-width: 200px;
  }
  .header-top-bar .header-nav ul li a {
    font-size: 18px;
  }
}

/* LANG */
.header-lang {
  position: absolute;
  top: calc(50px + .5em);
  right: var(--padding-container-x);
  display: flex;
  gap: 10px;
}
.header-lang a,
.header-lang span {
  color: white;
  font-size: 18px;
}

/* HELPER */
.helper {
  position: fixed;
  right: 0;
  bottom: 10vh;
  background-color: var(--color-primary);
  color: white;
  padding: 20px 30px;
  border-radius: 10px 0 0 10px;
  z-index: 10;
  font-size: 22px;
  font-weight: 600;
  transition: background-color 300ms ease-in-out, color 300ms ease-in-out;
}
.helper:hover {
  color: var(--color-primary);
  background-color: var(--color-primary-light);
  transition: background-color 300ms ease-in-out, color 300ms ease-in-out;
}

/* 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;
}
@media (min-width: 1200px) {
  .header-nav {
    display: flex;
    align-items: center;
  }
}
@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: -500px;
    top: 0;
    display: block;
    background-color: black;
    padding: 128px 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 {
    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;
  }
  .nav-toggler-btn img {
    width: 26px;
  }
  .nav-close-btn {
    display: flex;
    justify-content: right;
    align-items: center;
    width: 100%;
    height: 128px;
    position: absolute;
    padding: 0 var(--padding-container-x);
    top: 0;
    right: 0;
    aspect-ratio: 1/1;
    background-color: var(--color-primary);
  }
  .nav-close-btn img {
    width: 40px;
  }
}

/* HEADER GENERAL */
.main-header {
  height: max(100vh, 700px);
  position: relative;
}
.main-header .bg {
  background-size: cover;
  background-position: center center;
  position: absolute;
  height: 100%;
  width: 100%;
}
.main-header .bg::after{
  content: '';
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
}
.main-header .lang {
  position: absolute;
  display: flex;
  right: calc(450px + var(--padding-container-x) + 40px); /* Width de .form-container + content padding + margen de seguridad */
  top: var(--padding-container-y);
  gap: 8px;
  z-index: 20;
}
.main-header .lang a,
.main-header .lang span {
  font-size: 24px;
  color: var(--color-secondary);
}
.main-header .lang a.selected {
  font-weight: 600;
}
@media (max-width: 1200px) {
  .main-header .lang {
    top: 7%;
    right: 7%;
  }
}
.main-header .header-logo-mobile {
  position: absolute;
  left: var(--padding-container-x);
  display: none;
  top: 50px;
}
.main-header .header-logo-mobile img {
  width: 100%;
  max-width: 180px;
}
@media (max-width: 1200px) {
  .main-header .header-logo-mobile {
    display: block;
  }
}
.main-header .header-info {
  position: absolute;
  left: var(--padding-container-x);
  bottom: 10%;
  width: 100%;
  max-width: calc(100vw - 500px - 15%); /* 100vw - ancho formulario - márgenes */
}
.main-header .header-info .title {
  color: white;
  font-size: 52px;
}
.main-header .header-info .subtitle {
  color: white;
  font-size: 38px;
}
.main-header .header-info .text {
  color: white;
  font-size: 28px;
}
@media (max-width: 992px) {
  .main-header .header-info .title {
    font-size: 38px;
  }
  .main-header .header-info .subtitle {
    font-size: 26px;
  }
  .main-header .header-info .text {
    font-size: 22px;
  }
}


/* HEADER HOME */
.home .main-header,
.home .main-header .bg .hero .owl-item {
  height: max(100vh, 700px);
}
.home .main-header .header-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
}
.home .main-header .bg .hero .item a {
  animation: hero-bg-zoom-in 20s ease-in-out infinite;
  will-change: background-size;
}
@media (max-width: 1600px) {
  @keyframes hero-bg-zoom-in {
    0% {
      background-size: auto 100%;
    }

    50% {
      background-size: auto 110%;
    }

    100% {
      background-size: auto 100%;
    }
  }
}
@media (min-width: 1600px) {
  @keyframes hero-bg-zoom-in {
    0% {
      background-size: 100%;
    }
    50% {
      background-size: 110%;
    }
    100% {
      background-size: 100%;
    }
  }
}
.home .main-header .bg .hero .item a {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-position: center center;
  background-size: cover;
}
.home .main-header .bg {
  background-image: url('./../images/hero/001.jpg');
  background-size: cover;
  background-position: center center;
  position: absolute;
  height: 100%;
  width: 100%;
}
.home .main-header .bg .hero .item a::after{
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
}
.home .main-header .bg .hero .item a h2 {
  color: white;
  text-align: center;
  padding: 20px;
  font-weight: 700;
  font-size: 54px;
  z-index: 1;
}
@media (max-width: 768px) {
  .home .main-header .bg .hero .item a h2 {
    font-size: 34px;
  }
}
.home .main-header .lang {
  position: absolute;
  display: flex;
  right: calc(450px + var(--padding-container-x) + 40px); /* Width de .form-container + content padding + margen de seguridad */
  top: var(--padding-container-y);
  gap: 8px;
  z-index: 20;
}
.home .main-header .lang a,
.home .main-header .lang span {
  font-size: 24px;
  color: var(--color-secondary);
}
.home .main-header .lang a.selected {
  font-weight: 600;
}
@media (max-width: 1200px) {
  .home .main-header .lang {
    top: 7%;
    right: 7%;
  }
}
.home .main-header .header-logo-mobile {
  position: absolute;
  left: var(--padding-container-x);
  display: none;
  top: 50px;
}
.home .main-header .header-logo-mobile img {
  width: 100%;
  max-width: 180px;
}
@media (max-width: 1200px) {
  .home .main-header .header-logo-mobile {
    display: block;
  }
}
.home .main-header .header-info {
  position: absolute;
  left: var(--padding-container-x);
  bottom: 10%;
  width: 100%;
  max-width: calc(100vw - 500px - 15%); /* 100vw - ancho formulario - márgenes */
}
.home .main-header .header-info .title {
  color: white;
  font-size: 52px;
}
.home .main-header .header-info .subtitle {
  color: white;
  font-size: 38px;
}
.home .main-header .header-info .text {
  color: white;
  font-size: 28px;
}
@media (max-width: 992px) {
  .home .main-header .header-info .title {
    font-size: 38px;
  }
  .home .main-header .header-info .subtitle {
    font-size: 26px;
  }
  .home .main-header .header-info .text {
    font-size: 22px;
  }
}

/* HOME PROMOCIONES */
.home .promociones:has(+ section.promociones) .container {
  padding-bottom: 0px;
}

/* FORM */
.form .form-fieldset {
  display: none;
}
.form .form-fieldset.active {
  display: block;
}
.form legend {
  text-align: center;
  font-size: 22px;
  color: var(--form-preguntas-question-color);
  margin-bottom: 20px;
}
.form .form-fieldset-questions input[type='radio'] {
  display: none;
}
.form .form-fieldset-questions label:not(.checkbox label) {
  background-color: #ffffff;
  color: #000000;
  border-radius: 5px;
  cursor: pointer;
  padding: 16px 10px;
  margin-bottom: 10px;
  text-align: center;
  width: 100%;
}
@media (min-width: 360px) {
  .form .form-inputs {
    display: grid;
    grid-template-areas: 'nombre apellido' 'telefono email' 'mensaje mensaje';
    gap: 20px;
    margin-bottom: 20px;
  }
}
.form .box-nombre   { grid-area: nombre; }
.form .box-apellido { grid-area: apellido; }
.form .box-prefijo  { grid-area: prefijo; }
.form .box-telefono { grid-area: telefono; }
.form .box-email    { grid-area: email; }
.form .box-cp       { grid-area: cp; }
.form .box-mensaje  { grid-area: mensaje; }

.form .input-box {
  display: flex;
  flex-direction: column-reverse;
}
.form .input-box label {
  margin-bottom: 5px;
  color: var(--form-label-color);
}
.form .input-box input,
.form .input-box textarea {
  background-color: var(--form-input-backgroud-color);
  color: var(--form-input-color);
  font-size: var(--form-text-size);
  border: 0;
  border-radius: 0px;
  border-bottom: 1px solid var(--color-primary);
  padding: 10px 18px;
  width: 100%;
}
.form .input-box textarea {
  resize: none;
}
.form .input-box input::placeholder,
.form .input-box textarea::placeholder {
  font-size: var(--form-text-size);
  color: var(--form-placeholder-color);
}
.form .checkbox {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}
.form .checkbox input[type='checkbox'] {
  appearance: none;
  background-color: transparent;
  border: 1px solid var(--color-primary);;
  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;
  height: 8px;
  width: 8px;
  transform: scale(0);
  transition: 120ms transform ease-in-out;
  background-color: var(--color-primary);
}
.form .checkbox input[type='checkbox']:checked::before {
  transform: scale(1);
}
.form .checkbox * {
  color: var(--color-primary);
  font-size: 14px;
}
.form-container .submit-btn {
  margin-top: 24px;
  border: 0;
  font-weight: 600;
  font-size: 18px;
  padding: 12px 40px;
  transition: all 250ms ease-in-out;
}
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  -webkit-text-fill-color: var(--form-input-color) !important;
  color: var(--form-input-color) !important;
  transition: background-color 5000s ease-in-out 0s;
  box-shadow: inset 0 0 0px 0px transparent;
}
@media (max-width: 992px) {
  .form-container .submit-btn {
    width: 100%;
  }
}

/* ESTILOS PARA LABEL FLOTANTES */
.form-container.floating-labels .form .input-box {
  flex-direction: column;
  position: relative;
  padding-top: 10px;
  margin-bottom: 18px;
}
.form-container.floating-labels .form .input-box label {
  position: absolute;
  left: 18px;
  top: 24px;
  transition: font-size 250ms ease-in-out, top 250ms ease-in-out, left 250ms ease-in-out, color 250ms ease-in-out;;
}
.form-container.floating-labels .form .input-box:focus-within label,
.form-container.floating-labels .form .input-box:focus-within textarea {
  top: -14px;
  left: 17px;
  font-size: 12px;
  color: var(--form-label-active-color);
  transition: font-size 250ms ease-in-out, top 250ms ease-in-out, left 250ms ease-in-out, color 250ms ease-in-out;
}
.form-container.floating-labels .form .input-box input:not(:placeholder-shown)+label,
.form-container.floating-labels .form .input-box textarea:not(:placeholder-shown)+label {
  top: -14px;
  font-size: 12px;
  color: var(--form-label-active-color);
}

/* CAROUSEL */
.owl-carousel {
  position: relative;
}
.owl-carousel .owl-item {
  /* aspect-ratio: 16 / 9; */
  /* height: 100vh; */
}
.owl-carousel .owl-item img {
  object-fit: cover;
}
.owl-carousel .owl-nav {
  position: absolute;
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 0 40px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.owl-carousel .owl-nav .owl-next {
  transform: rotate(180deg);
}
.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next {
  pointer-events: all;
  opacity: .5;
  transition: opacity 300ms ease-in-out;
}
.owl-carousel .owl-nav .owl-prev:hover,
.owl-carousel .owl-nav .owl-next:hover {
  opacity: .8;
  transition: opacity 300ms ease-in-out;
}
.owl-carousel .owl-dots {
  position: absolute;
  bottom: 50px;
  display: flex;
  justify-content: center;
  gap: 10px;
  width: 100%;
}
.owl-carousel .owl-dots .owl-dot {
  width: 20px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: rgba(255,255,255,.5);
  transition: background 300ms ease-in-out;
}
.owl-carousel .owl-dots .owl-dot.active {
  background-color: rgba(255,255,255,.8);
  transition: background 300ms ease-in-out;
}
.owl-carousel .owl-dots .owl-dot:hover {
  background-color: rgba(255,255,255,1);
  transition: background 300ms ease-in-out;
}

/* LIGHTBOX */
.lb-dataContainer {
  display: none!important;
}


/* ICONOS */
.icons .section-icons {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}
.icons .section-icons .icon-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}
.icons .section-icons .icon-box img {
  max-width: 64px;
}
.icons .section-icons .icon-box h3 {
  font-size: 18px;
}
@media (max-width: 768px) {
  .icons .section-icons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .icons .section-icons .icon-box img {
    max-width: 80px;
  }
  .icons .section-icons .icon-box h3 {
    font-size: 16px;
  }
}

/* HOME PROMOCIONES */
.promociones .section-promociones {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.promociones .section-promociones .promocion-card {
  display: block;
  position: relative;
  background-size: cover;
  background-position: center center;
}
.promociones .section-promociones .promocion-card,
.promociones .section-promociones .promocion-card::after,
.promociones .section-promociones .promocion-card .promocion-info {
  aspect-ratio: 4 / 3;
  border-radius: 10px;
}
.promociones .section-promociones .promocion-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 10px;
  background: rgba(0,0,0,0.4);
  z-index: 1;
  pointer-events: none;
  transition: background-color 300ms ease-in-out;
}
.promociones .section-promociones .promocion-card .promocion-info {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  gap: 10px;
  padding: 40px 50px;
  z-index: 2;
}
.promociones .section-promociones .promocion-card .promocion-info .promocion-info-top {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.promociones .section-promociones .promocion-card .promocion-status {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: white;
  font-size: 14px;
  padding: 2px 10px 2px 8px;
  text-transform: uppercase;
  border-radius: 14px;
}
.promociones .section-promociones .promocion-card .promocion-status.green {
  color: var(--color-primary);
}
.promociones .section-promociones .promocion-card .promocion-status.green::before {
  content: '';
  background-color: var(--color-primary);
  width: 12px;
  height: 12px;
  border-radius: 50%;
}
.promociones .section-promociones .promocion-card .promocion-status.red {
  color: #bd4c4c;
}
.promociones .section-promociones .promocion-card .promocion-status.red::before {
  content: '';
  background-color: #bd4c4c;
  width: 12px;
  height: 12px;
  border-radius: 50%;
}
.promociones .section-promociones .promocion-card .promocion-title {
  color: var(--color-primary-light);
  font-size: 40px;
  transition: color 300ms ease-in-out;
}
.promociones .section-promociones .promocion-card .promocion-destacado {
  color: white;
  font-size: 16px;
  text-transform: uppercase;
  font-family: var(--font-primary-bold);
  font-weight: 700;
}
@media (min-width: 1360px) and (max-width: 1800px) {
  .promociones .section-promociones .promocion-card .promocion-info {
    padding: 30px 40px;
  }
  .promociones .section-promociones .promocion-card .promocion-status {
    font-size: 12px;
  }
  .promociones .section-promociones .promocion-card .promocion-title {
    font-size: 26px;
  }
}
@media (min-width: 768px) and (max-width: 1360px) {
  .promociones .section-promociones .promocion-card .promocion-info {
    padding: 20px 30px;
  }
  .promociones .section-promociones .promocion-card .promocion-status {
    font-size: 12px;
  }
  .promociones .section-promociones .promocion-card .promocion-title {
    font-size: 20px;
  }
}
@media (max-width: 1200px) {
  .promociones .section-promociones {
    grid-template-columns: 1fr 1fr;
  }
  .promociones .section-promociones .promocion-card .promocion-destacado {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .promociones .section-promociones {
    grid-template-columns: 1fr;
  }
}
@media (min-width: 380px) and (max-width: 768px) {
  .promociones .section-promociones .promocion-card .promocion-info {
    padding: 30px 40px;
  }
  .promociones .section-promociones .promocion-card .promocion-status {
    font-size: 12px;
  }
  .promociones .section-promociones .promocion-card .promocion-title {
    font-size: 26px;
  }
}
@media (max-width: 420px) {
  .promociones .section-promociones .promocion-card::after {
    aspect-ratio: unset;
    height: auto;
  }
  .promociones .section-promociones .promocion-card,
  .promociones .section-promociones .promocion-card .promocion-info {
    position: relative;
    aspect-ratio: unset;
    height: auto;
  }
}
@media (max-width: 380px) {
  .promociones .section-promociones .promocion-card .promocion-info {
    padding: 20px 30px;
  }
  .promociones .section-promociones .promocion-card .promocion-status {
    font-size: 12px;
  }
  .promociones .section-promociones .promocion-card .promocion-title {
    font-size: 20px;
  }
}
.promociones .section-promociones .promocion-card:hover::after {
  background-color: rgba(30, 97, 89, 0.4);
  transition: background-color 300ms ease-in-out;
}
.promociones .section-promociones .promocion-card:hover .promocion-title {
  color: #fff;
  transition: color 300ms ease-in-out;
}
.promociones .section-promociones .promocion-card:hover .promocion-btn {
  background-color: #fff;
  color: var(--color-primary);
  transition: background-color 300ms ease-in-out, color 300ms ease-in-out;
}

/* HOME ABOUT */
.about {
  background-size: cover;
}
.about .section-header {
  text-align: center;
}
.about .section-header .section-logo {
  max-width: 300px;
  margin-bottom: 100px;
}
.about .section-header .section-title {
  color: white;
  margin-bottom: 50px;
}
.about .section-header .section-text {
  color: white;
  margin-bottom: 50px;
}

/* FICHA PROMOCIÓN */
.ficha-promocion.main-header .bg::after {
  position: absolute;
}
.ficha-promocion.main-header .bg {
  height: max(calc(100vh - 40px), 600px);
  position: relative;
}
.ficha-promocion.main-header .header-info {
  position: absolute;
  width: 100%;
  max-width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  z-index: 2;
}
.ficha-promocion.main-header .header-logo {
  position: absolute;
  left: var(--padding-container-x);
  bottom: var(--padding-container-y);
  max-width: 350px;
  z-index: 2;
}
@media (max-width: 1200px) {
  .ficha-promocion.main-header .header-logo {
    max-width: 200px;
    left: 50%;
    bottom: 40%;
    transform: translateX(-50%);
  }
}
.ficha-promocion.main-header .header-data {
  height: 40px;
  display: flex;
  justify-content: center;
  background-color: var(--color-primary);
}
.ficha-promocion.main-header .header-data .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 0;
}
.ficha-promocion.main-header .header-data .container .data-item {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 100%;
  font-size: 18px;
  padding: 0px 20px;
  color: white;
  pointer-events: none;
}
@media (min-width: 1400px) {
  .ficha-promocion.main-header .header-data .container .data-item::after {
    content: '';
    position: absolute;
    top: 20%;
    right: 0;
    width: 1px;
    height: 60%;
    background: #fff;
  }
}
.ficha-promocion.main-header .header-data .container .data-item:last-child {
  background-color: var(--color-primary-light);
  color: var(--color-primary);
  border-right: none;
}
@media (max-width: 1400px) {
  .ficha-promocion.main-header .bg {
    height: max(calc(100vh - 120px), 600px);
  }
  .ficha-promocion.main-header .header-data {
    height: 120px;
  }
  .ficha-promocion.main-header .header-data .container {
    grid-template-columns: repeat(2, 1fr);
  }
  .ficha-promocion.main-header .header-data .container .data-item {
    border: none;
    border-right: 1px solid white;
    border-bottom: 1px solid white;
  }
  .ficha-promocion.main-header .header-data .container .data-item:nth-child(2),
  .ficha-promocion.main-header .header-data .container .data-item:nth-child(4) {
    border-right: none;
  }
  .ficha-promocion.main-header .header-data .container .data-item:nth-child(3),
  .ficha-promocion.main-header .header-data .container .data-item:nth-child(4) {
    border-bottom: none;
  }
}
@media (max-width: 992px) {
  .ficha-promocion.main-header .bg {
    height: max(calc(100vh - 160px), 600px);
  }
  .ficha-promocion.main-header .header-data {
    height: 160px;
  }
  .ficha-promocion.main-header .header-data .container {
    grid-template-columns: 1fr;
  }
  .ficha-promocion.main-header .header-data .container .data-item {
    border: none;
    border-bottom: 1px solid white;
  }
  .ficha-promocion.main-header .header-data .container .data-item:last-child {
    border-bottom: none;
  }
}

/* FICHA PROMOCIÓN INTRO */
@media (min-width: 992px) {
  .ficha-promocion .intro.section .section-info {
    padding-left: 0;
  }
}
@media (max-width: 992px) {
  .ficha-promocion .intro.section .section-info {
    padding-top: 0;
  }
}

/* FICHA PROMOCIÓN INFO */
.ficha-promocion .info.section * {
  text-align: center;
}
.ficha-promocion .info:has(+ section.icons) .container {
  padding-bottom: 0;
}

/* FICHA PROMOCIÓN ICONOS */
.ficha-promocion .icons .section-icons {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.ficha-promocion .icons .section-icons .icon-box {
  flex: 1 1 18%;
  max-width: 18%;
  min-width: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 1200px) {
  .ficha-promocion .icons .section-icons .icon-box {
    max-width: 45%;
    flex-basis: 45%;
  }
}
@media (max-width: 768px) {
  .ficha-promocion .icons .section-icons {
    flex-direction: column;
    align-items: center;
  }
  .ficha-promocion .icons .section-icons .icon-box {
    max-width: 100%;
    flex-basis: 100%;
  }
}

/* FICHA PROMOCIÓN TIPOLOGÍAS */
.ficha-promocion .video video {
  width: 100%;
  aspect-ratio: 16 / 9;
}

/* FICHA PROMOCIÓN TIPOLOGÍAS */
.ficha-promocion .tipologias:has(+ section.ubicacion) .container {
  padding-bottom: 0;
}
.ficha-promocion .tipologias .section-header {
  text-align: center;
}
.ficha-promocion .tipologias .section-tipologias ul {
  list-style: none;
  padding: 0;
}
.ficha-promocion .tipologias .section-tipologias ul li > span {
  display: block;
}
.ficha-promocion .tipologias .section-tipologias .ico-download {
  max-width: 26px;
}
.ficha-promocion .tipologias .section-tipologias ul li,
.ficha-promocion .tipologias .section-tipologias .tipologias-titles {
  padding: 10px 20px;
  border-radius: 10px;
}
.ficha-promocion .tipologias .section-tipologias .tipologias-titles {
  background-color: var(--color-primary-light);
}
.ficha-promocion .tipologias .section-tipologias .tipologias-titles span {
  color: var(--color-primary);
  font-weight: 600;
}
.ficha-promocion .tipologias .section-tipologias ul li:nth-child(even) {
  background-color: var(--color-primary-light);
}
.ficha-promocion .tipologias .section-tipologias .tipologias-title-mobile {
  color: var(--color-primary);
}
.ficha-promocion .tipologias .section-tipologias .ico-download {
  max-width: 20px;
}
@media (min-width: 768px) {
  .ficha-promocion .tipologias .section-tipologias ul li:nth-child(even) {
    background-color: var(--color-list-bg-light);
  }
  .ficha-promocion .tipologias .section-tipologias ul li,
  .ficha-promocion .tipologias .section-tipologias .tipologias-titles {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    text-align: center;
    width: 100%;
  }
  .ficha-promocion .tipologias .section-tipologias ul li .tipologias-title-mobile {
    display: none;
  }
}
@media (max-width: 768px) {
  .ficha-promocion .tipologias .section-tipologias .tipologias-titles {
    display: none;
  }
  .ficha-promocion .tipologias .section-tipologias ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .ficha-promocion .tipologias .section-tipologias ul li {
    border: 1px solid var(--color-primary-light);
    padding: 20px 30px;
  }
  .ficha-promocion .tipologias .section-tipologias ul li h4 {
    font-size: 16px;
    display: inline-block;
  }
}

/* FICHA PROMOCIÓN UBICACIÓN */
.ficha-promocion .ubicacion .section-header {
  text-align: center;
}

/* FICHA PROMOCIÓN CONTACTO */
.ficha-promocion .contact .section-header {
  position: relative;
  height: unset;
  left: unset;
  flex-direction: column;
}
.ficha-promocion .contact .section-header .section-text {
  display: block;
  color: var(--color-primary);
  margin-bottom: 20px;
  font-weight: 500;
}
.ficha-promocion .contact .section-header .section-button {
  font-size: 44px;
  border-radius: 40px;
  padding: .5rem 2rem 1rem;
  font-weight: 600;
}
.ficha-promocion .contact .section-header .section-button::after {
  display: none;
}
@media (max-width: 1200px) {
  .ficha-promocion .contact .section-header .section-button {
    font-size: 28px;
  }
}
.ficha-promocion .contact .section-form .section-text  {
  display: block;
  color: var(--color-primary);
  margin-bottom: 20px;
  font-weight: 500;
}
@media (min-width: 992px) {
  .ficha-promocion .contact.section .section-form {
    padding-left: 0;
  }
}
@media (max-width: 992px) {
  .ficha-promocion .contact.section .section-form {
    padding-top: 0;
  }
}

/* NOSOTROS */
.nosotros .header-info {
  padding: 0 40px;
}
.nosotros .header-info .title {
  color: white;
  font-size: 38px;
  font-weight: 600;
  margin-bottom: 20px;
}
.nosotros .header-info .subtitle {
  color: white;
  font-size: 24px;
}
@media (max-width: 992px) {
  .nosotros .header-info .title {
    font-size: 28px;
  }
  .nosotros .header-info .subtitle {
    font-size: 20px;
  }
}
.nosotros .main-header .bg::after {
  position: absolute;
}
.nosotros .main-header .bg {
  height: max(calc(100vh - 40px), 600px);
  position: relative;
}
.nosotros .main-header .header-info {
  position: absolute;
  width: 100%;
  max-width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  z-index: 2;
}
.nosotros .main-header .header-logo {
  position: absolute;
  left: var(--padding-container-x);
  bottom: var(--padding-container-y);
  max-width: 350px;
  z-index: 2;
}
@media (max-width: 1200px) {
  .nosotros .main-header .header-logo {
    max-width: 200px;
    left: 50%;
    bottom: 40%;
    transform: translateX(-50%);
  }
}
.nosotros .section-myv {
  display: flex;  
}
.nosotros .section-myv .section-ico {
  position: relative;
  padding: 0 20px 0 0;
}
.nosotros .section-myv .section-ico::after {
  content: '';
  position: absolute;
  height: 40%;
  width: 1px;
  right: 0;
  top: 0;
  background-color: var(--color-primary);
}
.nosotros .section-myv .section-ico img {
  width: 64px;
}
.nosotros .section-myv .section-info {
  padding-left: 30px;
}
.nosotros .section-myv .section-info .section-text{
  font-size: 22px;
}
@media (min-width: 992px) {
  .nosotros .vertical .section-mision {
    padding-right: calc(var(--padding-container-x) / 2);
  }
  .nosotros .vertical .section-vision {
    padding-left: calc(var(--padding-container-x) / 2);
  }
}

/* NOSOTROS VALORES */
.nosotros .valores .section-header {
  text-align: center;
}
.nosotros .valores .section-valores {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.nosotros .valores .section-valores .valores-card {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 10px;
  background-position: center center;
  background-size: cover;
}
.nosotros .valores .section-valores .valores-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 10px;
  z-index: 1;
  background: linear-gradient(90deg, rgba(30, 97, 89, 1) 0%, rgba(30, 97, 89, 0) 100%);
}
.nosotros .valores .section-valores .valores-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 10px;
  z-index: 1;
  background-color: transparent;
  transition: background 300ms ease-in-out;
}
.nosotros .valores .section-valores .valores-card:hover::before {
  background-color: rgba(30, 97, 89, 1);
  transition: background 300ms ease-in-out;
}
.nosotros .valores .section-valores .valores-card .card-info {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: translateY(calc(0% - 50px));
  text-align: center;
  padding: 40px;
  z-index: 2;
  transition: transform 300ms ease-in-out, top 300ms ease-in-out;
}
.nosotros .valores .section-valores .valores-card:hover .card-info {
  top: 0%;
  transform: translateY(0%);
  transition: transform 300ms ease-in-out, top 300ms ease-in-out;
}
.nosotros .valores .section-valores .valores-card .card-info h3 {
  color: var(--color-primary-light);
}
.nosotros .valores .section-valores .valores-card .card-info p {
  padding: 0 40px;
  color: transparent;
  transition: color 300ms ease-in-out;
  margin-bottom: 0;
}
.nosotros .valores .section-valores .valores-card:hover .card-info p {
  color: white;
  transition: color 300ms ease-in-out;
}
.nosotros .valores .section-valores .valores-card .card-info .info-content {
  position: absolute;
  top: 0%;
  transform: translateY(calc(0% + 30px));
  transition: transform 300ms ease-in-out, top 300ms ease-in-out;
}
.nosotros .valores .section-valores .valores-card:hover .card-info .info-content {
  top: 50%;
  transform: translateY(-50%);
  transition: transform 300ms ease-in-out, top 300ms ease-in-out;
}
@media (min-width: 992px) {
  .nosotros .vertical .section-equipo {  
    padding-right: calc(var(--padding-container-x) / 2);
  }
  .nosotros .vertical .section-compromiso {
    padding-left: calc(var(--padding-container-x) / 2);
  }
}
@media (max-width: 992px) {
  .nosotros .vertical .section-equipo {  
    padding-bottom: calc(var(--padding-container-x) / 2);
  }
  .nosotros .vertical .section-compromiso {
    padding-top: calc(var(--padding-container-x) / 2);
  }
}
@media (max-width: 1600px) {
  .nosotros .valores .section-valores .valores-card .card-info p {
    font-size: 16px;
  }
}
@media (max-width: 1400px) {
  .nosotros .valores .section-valores {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .nosotros .valores .section-valores {
    grid-template-columns: 1fr;
  }
}

/* NOSOTROS TRAYECTORIA */
@media (min-width: 992px) {
  .nosotros .trayectoria {
    aspect-ratio: 4 / 3;
  }
}
.nosotros .trayectoria {
  position: relative;
  background-position: center;
  background-size: cover;
  aspect-ratio: 10 / 4;
}
.nosotros .trayectoria::after {
  content: '';
  position: absolute;
  background-color: rgba(30, 97, 89, 0.8);
  inset: 0;
  z-index: 1;
}
.nosotros .trayectoria .container {
  position: relative;
  z-index: 2;
}
.nosotros .trayectoria .section-header {
  text-align: center;
}
.nosotros .trayectoria .section-header .section-title {
  color: var(--color-primary-light);
}
.nosotros .trayectoria .section-header .section-text {
  color: white;
}

/* CONTACTO */
.contacto .contact {
  width: 100%;
  padding-top: 250px;
}
.contacto .main-header {
  height: unset;
}
.contacto .contact .section-header {
  position: relative;
  height: unset;
  left: unset;
  flex-direction: column;
}
.contacto .contact .section-header .section-title {
  color: white;
  margin-bottom: 20px;
}
.contacto .contact .section-header .section-text {
  display: block;
  color: white;
  margin-bottom: 40px;
  font-weight: 500;
}
.contacto .contact .section-header .section-button {
  font-size: 44px;
  border-radius: 40px;
  padding: .5rem 2rem 1rem;
  font-weight: 600;
}
.contacto .contact .section-header .section-button::after {
  display: none;
}
@media (max-width: 992px) {
  .contacto .contact .section-header .section-button {
    font-size: 28px;
  }
}
.contacto .contact .section-form .section-title {
  color: white;
  margin-bottom: 20px;
}
.contacto .contact .section-form .section-text {
  color: white;
  margin-bottom: 40px;
}
.contacto .contact .section-form .form .input-box input,
.contacto .contact .section-form .form .input-box textarea {
  background-color: transparent;
  border-bottom: 1px solid white;
}
.contacto .form .input-box label,
.contacto .form .input-box input,
.contacto .form .input-box textarea,
.contacto .form .input-box input::placeholder,
.contacto .form .input-box textarea::placeholder,
.contacto .form-container.floating-labels .form .input-box:focus-within label,
.contacto .form-container.floating-labels .form .input-box:focus-within textarea,
.contacto .form-container.floating-labels .form .input-box input:not(:placeholder-shown)+label,
.contacto .form-container.floating-labels .form .input-box textarea:not(:placeholder-shown)+label,
.contacto .form .checkbox * {
  color: white;
}
.contacto .form .checkbox input[type='checkbox'] {
  border-color: white;
}
.contacto .form .checkbox input[type='checkbox']::before {
  background-color: white;
}
@media (max-width: 1200px) {
  .contacto .contact.section .container {
    display: block;
  }
  .contacto .contact.section .container > * {
    width: 100%;
  }
}
@media (min-width: 1200px) {
  .contacto .contact.section .section-form {
    padding-left: 0;
  }
}
@media (max-width: 1200px) {
  .contacto .contact.section .section-form {
    padding-top: 0;
  }
}

/* FOOTER */
.footer {
  background-color: var(--color-primary-dark);
  display: flex;
  justify-content: center;
}
.footer,
.footer *,
.footer *:hover {
  font-size: 18px;
  color: var(--color-secondary-light);
}
.footer a,
.footer button {
  display: inline-block;
  border-bottom: 1px solid transparent;
  transition: border-bottom 250ms ease-in-out;
}
.footer a:hover,
.footer button:hover {
  border-bottom: 1px solid var(--color-secondary-light);
  transition: border-bottom 250ms ease-in-out;
}
.footer .footer-mid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--color-secondary-light);
}
.footer .footer-mid .footer-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer .footer-logo {
  max-width: 300px;
}
.footer .footer-button-link {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.footer .footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px 0;
}
.footer .footer-bottom .footer-legal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.footer .footer-bottom .footer-social {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
@media (max-width: 1450px) {
  .footer {
    text-align: center;
  }
  .footer .footer-top {
    text-align: center;
  }
  .footer .footer-mid,
  .footer .footer-mid .footer-nav,
  .footer .footer-bottom,
  .footer .footer-bottom .footer-legal {
    flex-direction: column;
    align-items: center;
  }
  .footer .footer-mid,
  .footer .footer-bottom {
    gap: 40px;
  }
  .footer .footer-mid .footer-nav,
  .footer .footer-bottom .footer-legal {
    gap: 20px;
  }
}

/* LOGIN */
.login-form-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.login-form {
  width: 100%;
  max-width: 500px;
  padding: 35px;
  border-radius: 10px;
  border: 1px solid #dddddd;
}
.login-form .form-title {
  font-size: 24px;
  margin-bottom: 20px;
}
.login-form fieldset {
  margin-bottom: 14px;
}
.login-form .error {
  text-align: center;
  border-radius: 2px;
  padding: 4px;
  margin-bottom: 10px;
  border: 1px solid #fdcbcb;
  background-color: #ffe0e0;
  color: #bd4c4c;
}
.login-form .input-box {
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-size: 16px;
  color: #666666;
  margin-bottom: 10px;
}
.login-form .input-box input {
  padding: 6px 10px;
  border-radius: 5px;
  border: 1px solid #bbbbbb;
}
.login-form .submit-button {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 8px 10px;
  border: 0;
  border-radius: 5px;
  font-size: 18px;
  background-color: var(--color-primary);
  color: white;
  transition: background 250ms ease-in-out, color 250ms ease-in-out;
}
.login-form .submit-button:hover {
  background-color: var(--color-primary-light);
  transition: background 250ms ease-in-out, color 250ms ease-in-out;
}

/* ADMIN PANEL */
.admin-panel {
  background-color: var(--color-admin-area-bg);
}
.admin-panel * {
  font-family: Arial, Helvetica, sans-serif!important;
}
.admin-panel p,
.admin-panel span,
.admin-panel a {
  font-size: 16px;
}
.admin-panel .admin-panel-header {
  background-color: white;
}
.admin-panel .admin-panel-header .container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.admin-panel .container {
  padding: 20px;
}
.admin-panel .admin-panel-button {
  display: inline-block;
  border: 1px solid var(--color-admin-area-border);
  background-color: var(--color-admin-area-button-bg);
  text-align: center;
  border-radius: 5px;
  padding: 4px 12px;
  transition: background 250ms ease-in-out;
}
.admin-panel .admin-panel-button:hover {
  background-color: var(--color-admin-area-button-bg-hover);
  transition: background 250ms ease-in-out;
}
.admin-panel .button-ko {
  color: white;
  border-color: var(--color-admin-area-ko);
  background-color: var(--color-admin-area-ko);
  transition: background 250ms ease-in-out;
}
.admin-panel .button-ko:hover {
  color: white;
  border-color: var(--color-admin-area-ko);
  background-color: var(--color-admin-area-ko-hover);
  transition: background 250ms ease-in-out;
}
.admin-panel .button-ok {
  color: white;
  border-color: var(--color-admin-area-ok);
  background-color: var(--color-admin-area-ok);
}
.admin-panel .button-ok:hover {
  color: white;
  border-color: var(--color-admin-area-ok);
  background-color: var(--color-admin-area-ok-hover);
}
.admin-panel .admin-panel-header h1 {
  padding: 10px;
  font-size: 16px;
  text-align: center;
  background-color: var(--color-admin-area-bg-dark);
  color: var(--color-admin-area-border);
}
.admin-panel .admin-name {
  font-size: 18px;
}
.admin-panel .admin-nav {
  padding: 20px;
  display: flex;
  gap: 20px;
  background-color: white;
  border: 1px solid var(--color-admin-area-border);
}
.admin-panel .admin-panel-message {
  margin-bottom: 20px;
}
.admin-panel .admin-panel-message.message-ok {
  color: var(--color-admin-area-ok);
}
.admin-panel .admin-panel-message.message-ko {
  color: var(--color-admin-area-ko);
}
.admin-panel .admin-card {
  border: 1px solid var(--color-admin-area-border);
  padding: 40px;
  border-radius: 20px;
  background-color: white;
}
.admin-panel .admin-card h2 {
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 20px;
}
.admin-panel .admin-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}
.admin-panel .user-table-head,
.admin-panel .user-item {
  display: grid;
  grid-template-columns: 1fr 1fr 2fr 1fr 1fr;
  margin-bottom: 10px;
  align-items: center;
}
@media (min-width: 768px) {
  .admin-panel .user-table .user-data-title-mobile {
    display: none;
  }
}
.form-row + .form-row {
  margin-top: 40px;
}
.admin-panel .form-inputs {
  margin-bottom: 10px;
}
.admin-panel .form-inputs .input-box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.admin-panel .form-inputs .input-box label {
  margin: 0 0 5px 0;
}
.admin-panel .form-inputs .input-box input,
.admin-panel .form-inputs .input-box textarea,
.admin-panel .form-inputs .input-box select {
  border: 1px solid var(--color-admin-area-border);
  background-color: var(--color-admin-area-button-bg);
  padding: 6px 10px;
  border-radius: 5px;
  width: 100%;
  max-width: 100%;
  margin-bottom: 10px;
}
.admin-panel .form-inputs .input-box textarea {
  field-sizing: content;
}
.admin-panel .form-add-new {
  padding: 40px;
  border-top: 3px solid var(--color-admin-area-border);
  background-color: var(--color-admin-area-bg);
  margin: 40px 0 0 0;
}
@media (max-width: 768px) {
  .admin-panel .admin-card {
    padding: 25px 20px;
  }
  .admin-panel .user-table-head {
    display: none;
  }
  .admin-panel .user-item {
    grid-template-columns: 1fr;
    gap: 6px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--color-admin-area-border);
    margin-bottom: 20px;
  }
  .admin-panel .user-item:last-of-type {
    padding-bottom: 0px;
    border-bottom: 0;
    margin-bottom: 0px;
  }
  .admin-panel .form-add-new {
    padding: 25px 20px;
  }
}

/* PÁGINA COMPROBANTE */
.comprobante {
  text-align: center;
}
.comprobante .header-top-bar {
  position: relative;
  background-color: var(--color-primary);
}
.comprobante .section-header {
  text-align: center;
}
.comprobante .section-text {
  display: block;
  padding-bottom: 20px;
}
.comprobante main img {
  width: 150px;
  margin-bottom: 20px;
}
.comprobante main h1 {
  color: black;
  text-align: center;
  margin-bottom: 20px;
}
.comprobante main p {
  color: black;
  font-size: 20px;
  text-align: center;
}
.comprobante main a {
  color: var(--color-link);
  text-decoration: none;
}

/* PÁGINA POLÍTICA DE PRIVACIDAD */
.page.politica-privacidad section,
.page.politica-privacidad section .section-header {
  text-align: left;
}

/* MODALES */
.modal {
  z-index: 999;
}
.modal-backdrop {
  z-index: 998;
}

/* MODALES TEXTOS LEGALES */
#informacion,
#PoliticaCookies {
  z-index: 999;
}
#informacion .modal-body *,
#PoliticaCookies .modal-body * {
  font-family: Arial, Helvetica, sans-serif!important;
  font-size: 16px!important;
  line-height: 1.4!important;
  color: #000000!important;
  text-align: left!important;
  border-bottom: 0!important;
}
#informacion .modal-body a,
#PoliticaCookies .modal-body a {
  color: #3185c9;
}
#informacion .modal-title,
#PoliticaCookies .modal-title {
  font-size: 20px;
  font-weight: bold;
  color: #000000;
}
#informacion .modal-body table,
#PoliticaCookies .modal-body table {
  border-collapse: collapse;
  width: 100%;
}
#informacion .modal-body table th,
#informacion .modal-body table td,
#PoliticaCookies .modal-body table th,
#PoliticaCookies .modal-body table td {
  border: 1px solid #000!important;
  padding: 12px;
}
#informacion .modal-body table th,
#PoliticaCookies .modal-body table th {
  background-color: #f0f0f0;
}

/* MODAL CONFIGURACIÓN COOKIES */
#PopCookies * {
  font-family: var(--font-primary);
  font-size: 14px;
  color: black;
}
#PopCookies .modal-content {
  background-color: white;
  padding: 30px;
}
#PopCookies .modal-header {
  border-bottom: none;
  padding: 0;
  margin-bottom: 20px;
}
#PopCookies .modal-title {
  color: #000000;
  font-size: 20px;
}
#PopCookies .modal-body {
  padding: 0;
}
#PopCookies .modal-body span {
  color: var(--color-primary);
  font-family: var(--font-primary);
  cursor: pointer;
}
#PopCookies #textoPopCookiesShow h5 {
  display: none;
}
#PopCookies #textoPopCookiesShow label {
  display: flex;
  align-items: center;
}
#PopCookies #textoPopCookiesShow label strong {
  font-size: 16px;
}
#PopCookies #textoPopCookiesShow label input {
  accent-color: var(--color-primary);
  cursor: pointer;
  height: 16px;
  width: 16px;
  margin-right: 8px;
}
#PopCookies #textoPopCookiesShow small {
  color: #666666;
  display: block;
  font-family: var(--font-primary);
  font-size: 14px;
  margin-left: 26px;
  margin-bottom: 10px;
}
#PopCookies #textoPopCookiesShow .modal-footer {
  margin-top: 30px;
}
#PopCookies .modal-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  border-top: none;
  padding: 0;
}
#PopCookies .modal-footer .btn {
  width: 100%;
  background-color: #F0F0F0;
  border: 0;
  margin: 0;
  border-radius: 4px;
  font-size: 16px;
  padding: 10px;
}
#PopCookies .modal-dialog .modal-content .modal-footer .btn:last-of-type {
  background-color: var(--color-primary);
  color: white
}

/* 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;
}