/* FONTS */
@font-face {
  font-family: "sans-superlight";
  src: url("./../fonts/sans-light.woff") format("woff");
  font-weight: 200;
}

@font-face {
  font-family: "sans-light";
  src: url("./../fonts/sans-light.woff") format("woff");
  font-weight: 300;
}

@font-face {
  font-family: "sans-light";
  src: url("./../fonts/sans-light.woff") format("woff");
  font-weight: 700;
}

@font-face {
  font-family: "sans-bolder";
  src: url("./../fonts/sans-bold.otf") format("woff");
  font-weight: 700;
}

@font-face {
  font-family: "Montserrat Regular";
  src: url("./../fonts/Montserrat-VariableFont_wght.ttf") format("truetype");
  font-weight: 400;
}

@font-face {
  font-family: "Montserrat Medium";
  src: url("./../fonts/Montserrat-VariableFont_wght.ttf") format("truetype");
  font-weight: 500;
}

@font-face {
  font-family: "Montserrat SemiBold";
  src: url("./../fonts/Montserrat-VariableFont_wght.ttf") format("truetype");
  font-weight: 600;
}

@font-face {
  font-family: "Cormorant Garamond";
  src: url("./../fonts/CormorantGaramond-VariableFont_wght.ttf") format("truetype");
  font-weight: 500;
}

@font-face {
  font-family: "Cormorant Garamond Italic";
  src: url("./../fonts/CormorantGaramond-Italic-VariableFont_wght.ttf") format("truetype");
  font-weight: 500;
}

/* COMMON */
:root {
  --font-primary-superlight: "sans-superlight", Arial, Helvetica, sans-serif;
  --font-primary-light: "sans-light", Arial, Helvetica, sans-serif;
  --font-primary: "sans-light", Arial, Helvetica, sans-serif;
  --font-primary-regular: "sans-regular", Arial, Helvetica, sans-serif;
  --font-primary-bold: "sans-bold", Arial, Helvetica, sans-serif;
  --font-primary-bolder: "sans-bolder", Arial, Helvetica, sans-serif;
  --font-secondary: "Montserrat Medium", Arial, Helvetica, sans-serif;
  --font-secondary-regular: "Montserrat Regular", Arial, Helvetica, sans-serif;
  --font-secondary-semibold: "Montserrat SemiBold", Arial, Helvetica, sans-serif;
  --font-tertiary: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-tertiary-italic: "Cormorant Garamond Italic", Georgia, "Times New Roman", serif;

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

  --color-light-text-nav: #dfdede;

  --form-input-color: #000000;
  --form-label-color: #000000;
  --form-label-active-color: #000000;
  --form-placeholder-color: #000000;
  --form-preguntas-question-color: #000000;
  --form-input-backgroud-color: white;
  --form-text-size: 18px;

  --color-primary: #14343b;
  --color-primary-dark: #0a1b1f;
  --color-primary-light: #d0d6d8;

  --color-secondary: #373737;
  --color-secondary-dark: #242424;
  --color-secondary-light: #4a4a4a;

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

  --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: 2250px;
  /* ¡Ojo! Cambiar también en los márgenes de los elementos de la cabecera y contacto */
  --max-width-container-semi-narrow: 1600px;
  --max-width-container-narrow: 1350px;
  --max-width-container-super-narrow: 900px;
  --max-width-container-ultra-narrow: 600px;

  --height-header-top-bar: 120px;
}


@media (max-width: 1440px) {
  :root {
    --padding-container-x: 60px;
    --padding-container-y: 80px;
  }
}
@media (max-width: 1200px) {
  :root {
    --padding-container-x: 40px;
    --padding-container-y: 80px;

    --height-header-top-bar: 90px;
  }
}

@media (max-width: 768px) {
  :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;
  line-height: 1.4;
}

h1 {
  font-size: 48px;
}

h2 {
  font-size: 56px;
}

h3 {
  font-size: 28px;
}

@media (max-width: 1920px) {
  h2 {
    font-size: 52px;
  }
}

@media (max-width: 1440px) {
  h2 {
    font-size: 48px;
  }
}

@media (max-width: 1360px) {
  h2 {
    font-size: 40px;
  }
}

@media (max-width: 992px) {
  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 36px;
  }

  h3 {
    font-size: 22px;
  }
}

p,
span,
a,
ul,
li,
summary,
details,
.button {
  font-size: 20px;
}

@media (max-width: 1920px) {

  p,
  span,
  a,
  ul,
  li,
  summary,
  details,
  .button {
    font-size: 18px;
  }
}

@media (max-width: 1360px) {

  p,
  span,
  a,
  ul,
  li,
  summary,
  details,
  .button {
    font-size: 16px;
  }
}

p,
span,
ul,
li {
  color: var(--color-text);
}

i,
div span,
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;
  color: 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;
}

.section {
  display: flex;
  justify-content: center;
}

.section .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: var(--max-width-container);
  padding: var(--padding-container-y) var(--padding-container-x);
  margin: 0;
}

.section .container>* {
  width: 100%;
}

.section.vertical .container .section-header {
  padding-inline: var(--padding-container-x);
}

@media (max-width: 992px) {
  .section.vertical .container .section-header {
    padding-top: var(--padding-container-y);
  }
}

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

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

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

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

.button {
  display: inline-block;
  padding: 12px 40px;
  cursor: pointer;
  text-align: center;
  border-radius: 30px;
  transition: all 250ms ease-in-out;
  font-family: var(--font-primary-regular);
}

.button:hover {
  transition: all 250ms ease-in-out;
}

.section .section-header {
  text-align: center;
}

.section .section-header:has(+ div) {
  margin-bottom: calc(var(--padding-container-y) / 2);
}

.section .section-title {
  font-family: var(--font-secondary);
}

.section .section-title span.serif {
  text-transform: capitalize;
  font-family: var(--font-tertiary-italic);
}

.section .section-title:has(+ p) {
  margin-bottom: 20px;
}

.section p.section-text {
  margin-bottom: 0;
}

.section .section-text {
  font-size: 18px;
}
@media (max-width: 1360px) {
  .section .section-text {
    font-size: 16px;
  }
}

.section .section-text:has(+ .button) {
  margin-bottom: 40px;
}

.section.dark {
  background-color: var(--color-primary);
}

.section.dark-black {
  background-color: #000000;
}

.section.light {
  background-color: white;
}

.section.dark .section-title {
  color: white;
}

.section.dark .section-text {
  color: white;
}

.section.dark-black .section-title {
  color: white;
}

.section.dark-black .section-text {
  color: white;
}

.section.light .section-title {
  color: var(--color-text);
}

.section.light .section-text {
  color: var(--color-text);
}

.sponsorships.page .section-header.title-has-two-parts .section-title span:first-of-type {
  transform: translateX(-10%);
}

.sponsorships .section .section-header .section-text {
  text-align: left;
  max-width: 100%;
}

.section.light .button {
  color: var(--color-text);
  background-color: white;
  border: 1px solid var(--color-primary);
}

.section.light .button:hover {
  color: white;
  background-color: var(--color-primary);
  border: 1px solid var(--color-primary);
}

.section.dark .button {
  color: white;
  background-color: rgba(255, 255, 255, 0.2);
  border: 1px solid white;
}

.section.dark .button:hover {
  color: var(--color-primary);
  background-color: white;
  border: 1px solid white;
}

.section.vertical .section-header {
  text-align: left;
  margin-bottom: 0;
}

.section.vertical .container {
  flex-direction: row;
  align-items: stretch;
  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);
  }

  .section.vertical.forty-sixty .container>*:first-child {
    width: 40%;
  }

  .section.vertical.forty-sixty .container>*:nth-child(2) {
    width: 60%;
  }

  .section.vertical.sixty-forty .container>*:first-child {
    width: 60%;
  }

  .section.vertical.sixty-forty .container>*:nth-child(2) {
    width: 40%;
  }
}

@media (max-width: 992px) {

  .section.vertical .container,
  .section.vertical.flip .container {
    flex-direction: column;
  }

  .section.vertical .container .section-image {
    aspect-ratio: 3 / 4;
  }
}

/* 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: fixed;
  display: flex;
  align-items: center;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--height-header-top-bar);
  z-index: 10;
  background-color: rgba(20, 52, 59, 0);
  transition: background-color 300ms ease-in-out;
}

.scrolled .header-top-bar {
  background-color: rgba(20, 52, 59, 1);
  transition: background-color 300ms ease-in-out;
}

.header-top-bar .header-nav {
  margin-left: auto;
  display: flex;
  justify-content: center;
}

.header-top-bar .header-nav>ul li {
  position: relative;
  display: flex;
  justify-content: center;
  text-align: center;
}

/* SUB MENU DESPLEGABLE */
@media (min-width: 1200px) {
  .header-top-bar .header-nav ul li ul {
    position: absolute;
    top: 30px;
    max-height: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    padding: 10px 0 0;
    transition: max-height 300ms ease-in-out;
  }

  .header-top-bar .header-nav ul li:hover ul {
    max-height: 300px;
    transition: max-height 300ms ease-in-out;
  }

  .header-top-bar .header-nav ul li ul li {
    padding: 10px;
    white-space: nowrap;
  }
}

/* FIN SUB MENU DESPLEGABLE */

.header-top-bar .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  /* justify-content: space-between; */
  max-width: var(--max-width-container);
  padding-inline: calc(var(--padding-container-x) / 2);
}

.header-top-bar .logo img {
  width: 100%;
  height: auto;
  max-width: 90px;
}

@media (max-width: 1360px) {
  .header-top-bar .logo img {
    max-width: 60px;
  }
}

.header-top-bar .header-nav>ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 30px;
}

.header-top-bar .header-nav>ul li a {
  position: relative;
  color: var(--color-light-text-nav);
  font-size: 20px;
  transition: all 300ms ease-in-out;
}

.header-top-bar .header-nav>ul li a.active {
  font-family: var(--font-primary-bold);
}

.header-top-bar .header-nav>ul li a:hover {
  color: white;
}

@media (min-width: 1200px) {

  /*
  .header-top-bar .header-nav > ul li a::after {
    position: absolute;
    right: -15px;
    bottom: 0;
    content: '';
    display: inline-block;
    width: 10px;
    height: 16px;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url('./../images/svg/nav-arrow-down.svg');
  }
  */
  .header-top-bar .header-nav>ul li a.nav-item-contact {
    color: white;
    padding: 8px 25px;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid white;
    font-size: 18px;
    z-index: 1;
  }

  .header-top-bar .header-nav>ul li a.nav-item-contact::after {
    display: none;
  }
}

@media (max-width: 1200px) {
  .header-top-bar .logo img {
    max-width: 200px;
  }

  .header-top-bar .header-nav ul li a {
    font-size: 18px;
  }
}

/* IFRAME DE FONDO */
.iframe-bg {
  position: relative;
  overflow: hidden;
}

.iframe-bg .iframe-container {
  /*
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 1;
  */
  position: absolute;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  z-index: 1;
}

.iframe-bg .iframe-container iframe {
  /*
  position: absolute;
  top: 50%;
  left: 50%;
  height: 100vh;
  min-width: 100%;
  transform: translate(-50%, -50%);
  border: 0;
  pointer-events: none;
  */
  position: absolute;
  top: 50%;
  left: 50%;

  width: 100vw;
  height: 56.25vw;
  /* 16:9 */

  min-width: 177.778vh;
  min-height: 100vh;

  transform: translate(-50%, -50%);
  pointer-events: none;
  /* para que no se pueda clicar */
}

/*
@media (min-aspect-ratio: 1 / 1) {
  .iframe-bg .iframe-container iframe {
    width: 177.78vw;
    min-height: 56.25vw;
  }
}
@media (max-aspect-ratio: 1 / 1) {
  .iframe-bg .iframe-container iframe {
    width: 550vw;
    min-height: 56.25vw;
  }
}
*/

/* NAV MOBILE */
.nav-toggler-btn,
.nav-close-btn,
.nav-contact-whatsapp {
  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 (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;
    width: 100%;
    height: 100vh;
    right: -100%;
    top: 0;
    display: block;
    background-color: rgba(20, 52, 59, 0.9);
    padding: var(--height-header-top-bar) 0 0 0;
    transition: right 300ms ease-in-out;
    z-index: 9999999;
  }

  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: 60px;
  }

  .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: 16px 30px 16px 30px;
    font-size: 20px;
    background-image: none;
    font-weight: 100;
  }

  .nav-toggler-btn {
    order: 4;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    height: 100%;
    aspect-ratio: 1/1;
    margin-left: 10px;
  }

  .nav-toggler-btn img {
    width: 26px;
  }

  .nav-close-btn {
    display: flex;
    justify-content: right;
    align-items: center;
    width: 100%;
    height: 80px;
    position: absolute;
    padding: 0 var(--padding-container-x);
    top: 0;
    right: 0;
    aspect-ratio: 1/1;
  }

  .nav-close-btn img {
    width: 40px;
  }

  .nav-contact-whatsapp {
    order: 4;
    align-items: center;
    display: flex;
    max-width: 32px;
    margin-left: 10px;
  }

  .header-lang {
    margin-left: auto;
  }
}

/* CAROUSEL BASE */
.owl-carousel {
  position: relative;
}

.owl-carousel .owl-item,
.owl-carousel .owl-item img {
  aspect-ratio: 16 / 9;
}

@media (max-width: 768px) {

  .owl-carousel .owl-item,
  .owl-carousel .owl-item img {
    aspect-ratio: 1 / 1;
  }
}

.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: 0.5;
  transition: opacity 300ms ease-in-out;
}

.owl-carousel .owl-nav .owl-prev:hover,
.owl-carousel .owl-nav .owl-next:hover {
  opacity: 0.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, 0.5);
  transition: background 300ms ease-in-out;
}

.owl-carousel .owl-dots .owl-dot.active {
  background-color: rgba(255, 255, 255, 0.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;
}

/* MAIN HEADER */
.main-header {
  height: 100dvh;
  min-height: 600px;
  position: relative;
}

@media (max-width: 992px) {
  .main-header {
    height: auto;
    min-height: unset;
  }
}

.main-header .video-container {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  z-index: 1;
}

.main-header .video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.main-header .bg {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  background-size: cover;
  background-position: center center;
  height: 100%;
  width: 100%;
}

.main-header .bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.35);
  z-index: 1;
}

.main-header .header-info {
  height: 100%;
  max-width: 1200px;
  justify-content: center;
  align-items: center;
  text-align: center;
  z-index: 1;
}

.main-header .header-social-container {
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: 1;
  padding: 0 var(--padding-container-x);
}

@media (max-width: 768px) {
  .main-header .header-social-container {
    display: none;
  }
}

.main-header .header-social-container .header-social {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: 100%;
  width: 80px;
  padding-bottom: var(--padding-container-y);
  border-right: 1px solid white;
}

@media (max-width: 1360px) {
  .main-header .header-social-container .header-social {
    width: 80px;
  }
}

@media (max-width: 1200px) {
  .main-header .header-social-container .header-social {
    border-right: 0;
    justify-content: flex-start;
  }
}

.main-header .header-social-container .header-social .social-icons {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.main-header .header-social-container .header-social .social-icons a img {
  width: 28px;
}

.main-header .title {
  color: white;
  margin-bottom: 35px;
  line-height: 1;
}

.main-header .title .pt1 {
  font-family: var(--font-secondary);
  font-size: 66px;
}

.main-header .title .pt2 {
  font-family: var(--font-tertiary-italic);
  font-size: 92px;
}

.main-header .subtitle {
  font-family: var(--font-secondary-regular);
  font-size: 32px;
  color: white;
}

@media (max-width: 1360px) {
  .main-header .header-info {
    max-width: 840px;
  }

  .main-header .title {
    margin-bottom: 30px;
  }

  .main-header .title .pt1 {
    font-size: 42px;
  }

  .main-header .title .pt2 {
    font-size: 58px;
  }

  .main-header .subtitle {
    font-size: 23px;
  }
}

@media (max-width: 1200px) {
  .main-header .header-info {
    max-width: 640px;
  }

  .main-header .title {
    margin-bottom: 30px;
  }

  .main-header .title .pt1 {
    font-size: 38px;
  }

  .main-header .title .pt2 {
    font-size: 53px;
  }

  .main-header .subtitle {
    font-size: 21px;
  }
}

@media (max-width: 768px) {
  .main-header .header-info {
    max-width: 340px;
  }

  .main-header .title {
    margin-bottom: 20px;
  }

  .main-header .title .pt1 {
    line-height: 1.4;
    font-size: 20px;
  }

  .main-header .title .pt2 {
    font-size: 28px;
  }

  .main-header .subtitle {
    font-size: 16px;
  }
}

.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;
}

.header-lang {
  order: 3;
  position: relative;
  display: flex;
  align-items: center;
  color: var(--color-light-text-nav);
}

.header-lang .lang-toggle {
  margin-left: 20px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  color: inherit;
}

.header-lang.active .lang-toggle {
  color: white;
}

.header-lang .arrow {
  font-size: 10px;
  transition: transform 0.2s;
}

.header-lang.active .arrow {
  transform: rotate(180deg);
}

.header-lang .lang-dropdown {
  background-color: rgb(223, 223, 223);
  display: none;
  position: absolute;
  top: 120%;
  right: 0;
  list-style: none;
  margin: 0;
  padding: 0;
  min-width: 100px;
  z-index: 1000;
  /*   background: #fff;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  list-style: none;
  margin: 4px 0 0 0;
  padding: 0;
  min-width: 120px; */
}

.header-lang.active .lang-dropdown {
  display: block;
}

.header-lang .lang-dropdown li {
  margin: 0;
}

.header-lang .lang-dropdown a {
  display: block;
  padding: 8px 15px;
  text-decoration: none;
  /* color: #333;
  transition: background 0.2s; */
}

.header-lang .lang-dropdown a:hover {
  background: var(--color-primary-light);
}

.header-lang .lang-dropdown a.selected {
  color: white;
  background: var(--color-primary-dark);
}

@media (max-width: 1200px) {
  .main-header .lang {
    top: 7%;
    right: 7%;
  }
}

.main-header .header-logo-mobile img {
  width: 100%;
  max-width: 180px;
}

@media (max-width: 1200px) {
  .main-header {
    height: auto;
  }

  .main-header .header-bg {
    height: 100vh;
    position: relative;
  }
}

.main-header.noticia-ampliada-main-header .header-info {
  height: auto;
  max-width: 600px;
  padding: 110px 30px 30px 30px;
  margin-left: 20px;
  margin-right: 20px;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  background-image: url("./../images/svg/fantasia-esquinera.svg");
  background-repeat: no-repeat;
  background-position: left 30px top 30px;
  background-size: 42px;
}

.main-header.noticia-ampliada-main-header .header-info .title {
  position: relative;
  padding-left: 20px;
  text-align: left;
}

.main-header.noticia-ampliada-main-header .header-info .title * {
  font-size: 38px;
}

.main-header.noticia-ampliada-main-header .header-info .title::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 0;
  width: 4px;
  height: 100%;
  background-color: white;
}

.main-header.noticia-ampliada-main-header .header-info .subtitle {
  font-family: var(--font-primary-light);
  font-size: 20px;
  text-align: left;
}

@media (max-width: 768px) {
  .main-header.noticia-ampliada-main-header .header-info .title * {
    font-size: 28px;
  }

  .main-header.noticia-ampliada-main-header .header-info .subtitle {
    font-size: 18px;
  }
}

/* SECTION HEADER */

.section-header {
  display: flex;
  flex-direction: column;
  /* align-items: flex-start; */
}

.experiences .section-header {
  align-items: center;
  text-align: center;
}

@media (max-width: 768px) {
  .experiences .section-header {
    align-items: flex-start;
  }
}

.section-header .section-title {
  margin-bottom: 40px;
}

.section-header .section-title span {
  display: inline-block;
  text-transform: uppercase;
  font-size: 68px;
}

.section-header.title-has-two-parts .section-title {
  line-height: 1;
}

.section-header.title-has-two-parts span:first-of-type {
  font-family: var(--font-tertiary-italic);
  text-transform: unset;
}

@media (min-width: 768px) {
  .section-header.title-has-two-parts span:first-of-type {
    transform: translateX(-50%);
  }

  .section-header.title-has-two-parts span:last-of-type {
    transform: translateX(10%);
  }
}

@media (max-width: 768px) {
  .section-header.title-has-two-parts {
    text-align: left;
  }
}

.section-header .section-text {
  font-family: var(--font-primary-light);
  max-width: 600px;
}

@media (max-width: 1920px) {
  .section-header .section-title span {
    font-size: 60px;
  }

  .section-header .section-title {
    margin-bottom: 10px;
  }
}

@media (max-width: 1360px) {
  .section-header .section-title span {
    font-size: 50px;
  }
}

@media (max-width: 1200px) {
  .section-header .section-title span {
    font-size: 38px;
  }
}

@media (max-width: 768px) {
  .section-header .section-title span {
    font-size: 28px;
  }
  .section-header .section-title span:first-of-type {
    margin-bottom: 10px;
  }
}

/* FORM COMMON */
.form-container {
  position: absolute;
  top: 0;
  right: var(--padding-container-x);
  display: flex;
  align-items: center;
  height: 100%;
}

@media (max-width: 2250px) {
  .form-container {
    right: var(--padding-container-x);
  }
}

@media (min-width: 2250px) {
  .form-container {
    right: calc(((100vw - var(--max-width-container)) / 2) + var(--padding-container-x));
  }
}

.form-container.form-sticky {
  right: 0;
  background-color: var(--color-primary);
}

.form-container .form-content {
  background-color: var(--color-primary);
  padding: 50px;
  width: 450px;
}

.form-container.form-sticky .form-content {
  background-color: transparent;
  width: 550px;
}

.form-container .form-content .form-header {
  text-align: center;
  margin-bottom: 40px;
}

.form-container .form-content .form-logo {
  max-width: 300px;
  margin-bottom: 40px;
}

.form-container .form-content .form-title {
  display: block;
  text-align: left;
  color: #ffffff;
  font-weight: 500;
  font-size: 24px;
}

.form-container .form-content .form-text {
  display: block;
  text-align: left;
  color: #ffffff;
  font-size: 16px;
}

@media (max-width: 1200px) {
  .form-container {
    position: relative;
    right: unset;
  }

  .form-container .form-content,
  .form-container.form-sticky .form-content {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .form-container .form-content {
    padding: 50px var(--padding-container-x);
  }
}

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

.form .form-inputs {
  display: grid;
  grid-template-areas: "nombre apellido" "telefono email" "mensaje mensaje";
  gap: 20px 80px;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .form .form-inputs {
    grid-template-areas: "nombre" "apellido" "telefono" "email" "mensaje";
  }
}

.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,
.form .input-box select {
  background-color: var(--form-input-backgroud-color);
  color: var(--form-input-color);
  font-size: var(--form-text-size);
  border: 0;
  border-radius: 0;

  border-bottom: 1px solid black;
  padding: 10px 18px;
  width: 100%;
}

.form .input-box textarea {
  resize: none;
}

.form .input-box select {
  padding-left: 0px;
  background-color: transparent;
}

.form .input-box select option {
  color: black;
}

.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: flex-start;
  margin-bottom: 8px;
}

.form .checkbox input[type="checkbox"] {
  appearance: none;
  background-color: transparent;
  border: 1px solid #000000;
  height: 1em;
  width: 1em;
  cursor: pointer;
  place-content: center;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 8px;
  margin-top: 6px;
  aspect-ratio: 1/1;
}

.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-secondary-light);
}

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

.form .checkbox * {
  color: #000000;
  font-size: 14px;
}

.form-container .submit-btn {
  margin-top: 24px;
  border: 0;
  background-color: var(--color-secondary);
  color: black;
  font-weight: 600;
  font-size: 18px;
  padding: 12px 40px;
  transition: all 250ms ease-in-out;
}

.form-container .submit-btn:hover {
  background-color: var(--color-secondary-light);
  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%;
  }
}

@media (max-width: 768px) {
  .form .submits fieldset {
    margin-bottom: 20px;
  }
}

@media (min-width: 768px) {
  .form .submits {
    display: flex;
    justify-content: space-between;
    gap: 20px;
  }
}

.form .submits .button {
  border-radius: 0;
  background-color: var(--color-secondary);
  color: white;
}

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

/* ESTILOS PARA LABEL FLOTANTES */
.floating-labels .form .input-box {
  flex-direction: column;
  position: relative;
  padding-top: 10px;
  margin-bottom: 18px;
}

.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;
}

.floating-labels .form .input-box:focus-within label,
.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;
}

.floating-labels .form .input-box input:not(:placeholder-shown)+label,
.floating-labels .form .input-box textarea:not(:placeholder-shown)+label {
  top: -14px;
  font-size: 12px;
  color: var(--form-label-active-color);
}

/* TIPOLOGÍAS */
.tipologias .section-tipologias ul {
  list-style: none;
  padding: 0;
}

.tipologias .section-tipologias ul li>span {
  display: block;
}

.tipologias .section-tipologias ul li,
.tipologias .section-tipologias .tipologias-titles {
  padding: 10px 20px;
}

.tipologias .section-tipologias ul li:nth-child(odd) {
  background-color: var(--color-list-bg-light);
}

@media (min-width: 768px) {

  .tipologias .section-tipologias ul li,
  .tipologias .section-tipologias .tipologias-titles {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    text-align: center;
    width: 100%;
  }

  .tipologias .section-tipologias ul li .tipologias-title-mobile {
    display: none;
  }
}

@media (max-width: 768px) {
  .tipologias .section-tipologias .tipologias-titles {
    display: none;
  }

  .tipologias .section-tipologias ul li h4 {
    font-size: 16px;
    display: inline-block;
  }
}

/* HOME */
.home .main-header .header-social-container {
  display: none;
}

/* NEWEST PROJECTS */
.newest-projects .section-header {
  text-align: left;
}

.newest-projects .section-header .section-title {
  position: relative;
}

.newest-projects .section-header .section-title::after {
  content: "";
  position: absolute;
  background-image: url("./../images/svg/pointer-horizontal.svg");
  background-size: cover;
  background-position: center right;
  overflow: hidden;
  width: calc(100% - 750px);
  top: 50%;
  right: 0px;
  height: 10px;
}

@media (max-width: 1920px) {
  .newest-projects .section-header .section-title::after {
    width: calc(100% - 700px);
  }
}

@media (max-width: 1360px) {
  .newest-projects .section-header .section-title::after {
    width: calc(100% - 500px);
  }
}

@media (max-width: 768px) {
  .newest-projects .section-header .section-title::after {
    width: calc(100% - 300px);
  }
}

.newest-projects .section-header.title-has-two-parts span:first-of-type {
  transform: unset;
}

.newest-projects .section-header .section-text {
  max-width: 100%;
}

/* HOME DEVELOPMENT */
.home .development.section h2 {
  font-family: var(--font-tertiary);
}

@media (max-width: 992px) {
  .home .development.section h2 {
    position: relative;
    padding-top: 30px;
    margin-bottom: 10px;
  }

  .home .development.section h2::before {
    content: "";
    position: absolute;
    width: 90px;
    height: 10px;
    background-image: url('./../images/svg/block-title-bullet.svg');
    background-size: contain;
    background-repeat: no-repeat;
    left: 0;
    top: 0;
  }
}


/* HOME HOSPITALITY */
.home .hospitality.section h2 {
  font-family: var(--font-tertiary);
}

@media (max-width: 992px) {
  .home .hospitality.section h2 {
    position: relative;
    padding-top: 30px;
    margin-bottom: 10px;
  }

  .home .hospitality.section h2::before {
    content: "";
    position: absolute;
    width: 90px;
    height: 10px;
    background-image: url('./../images/svg/block-title-bullet.svg');
    background-size: contain;
    background-repeat: no-repeat;
    left: 0;
    top: 0;
  }
}



/* HOME ÚLTIMAS NOTICIAS */
.home .ultimas-noticias .container {
  position: relative;
}

.home .ultimas-noticias .container::after {
  content: "";
  display: block;
  position: absolute;
  width: 1px;
  height: calc(80% - var(--padding-container-y));
  background-color: black;
  left: 0;
  bottom: 0;
}

.home .ultimas-noticias .container::before {
  content: "";
  display: block;
  position: absolute;
  height: 1px;
  width: calc(70% - var(--padding-container-x));
  background-color: black;
  right: 0;
  top: var(--padding-container-y);
}

.home .ultimas-noticias .section-header {
  text-align: left;
  align-items: flex-start;
}

.home .ultimas-noticias .section-noticias {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
}

.home .ultimas-noticias .section-noticias .noticias-item {
  position: relative;
  aspect-ratio: 5 / 6.5;
  background-position: center center;
  background-size: cover;
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.25);
  border-radius: 20px;
  overflow: hidden;
}

.home .ultimas-noticias .section-noticias .noticias-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0);
  transition: background-color 300ms ease-in-out;
}

.home .ultimas-noticias .section-noticias .noticias-item:hover::after {
  background-color: rgba(0, 0, 0, 0.3);
  transition: background-color 300ms ease-in-out;
}

.home .ultimas-noticias .section-noticias .noticias-item .item-info {
  position: absolute;
  padding: 20px;
  inset: 0;
  display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: space-between;
  z-index: 1;
  /*
  top: calc(100% - 180px);
  bottom: calc(-100% + 180px);
  transition:
    bottom 300ms ease-in-out,
    top 300ms ease-in-out;
  */
  top: 0;
  bottom: 0;
}

/*
@media (min-width: 992px) {
  .home .ultimas-noticias .section-noticias .noticias-item:hover .item-info {
    top: 0;
    bottom: 0;
    transition:
      bottom 300ms ease-in-out,
      top 300ms ease-in-out;
  }
}
  */
.home .ultimas-noticias .section-noticias .noticias-item .item-info .info-title {
  font-size: 44px;
  line-height: 1;
  color: white;
  max-width: 300px;
  height: 100%;
  max-height: 140px;
  padding-left: 20px;
  border-left: 2px solid white;
}

.home .ultimas-noticias .section-noticias .noticias-item .item-info .info-text-container {
  display: flex;
  align-items: flex-end;
  gap: 20px;
  padding: 15px 20px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  backdrop-filter: blur(5px);
}

.home .ultimas-noticias .section-noticias .noticias-item .item-info .info-text-container .info-text {
  font-family: var(--font-primary-ultra-light);
  color: white;
  font-size: 18px;
  line-height: 1.2;
  margin-bottom: 0;
}

.home .ultimas-noticias .section-noticias .noticias-item .item-info .info-text-container img {
  max-width: 36px;
}

@media (max-width: 1360px) {
  .home .ultimas-noticias .section-noticias {
    gap: 40px;
  }

  .home .ultimas-noticias .section-noticias .noticias-item .item-info .info-title {
    font-size: 28px;
    max-width: 230px;
    max-height: 90px;
  }

  .home .ultimas-noticias .section-noticias .noticias-item .item-info .info-text-container {
    gap: 10px;
  }

  .home .ultimas-noticias .section-noticias .noticias-item .item-info .info-text-container .info-text {
    font-size: 16px;
  }
}

@media (max-width: 992px) {
  .home .ultimas-noticias .section-noticias {
    grid-template-columns: repeat(1, 1fr);
  }

  .home .ultimas-noticias .section-noticias .noticias-item {
    aspect-ratio: unset;
    min-height: 360px;
    height: 100%;
  }
}

/* HOME PROYECTOS */
.home .proyectos .section-proyectos .proyectos-showcase>div {
  display: none;
}

.home .proyectos .section-proyectos .proyectos-showcase>div.active {
  display: block;
  animation: fadeIn 300ms ease;
}

.home .proyectos .section-proyectos .proyectos-nav {
  margin-bottom: 60px;
}

.home .proyectos .section-proyectos .proyectos-nav .nav-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}

.home .proyectos .section-proyectos .proyectos-nav button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: color 300ms ease;
}

.home .proyectos .section-proyectos .proyectos-nav button:nth-child(1) {
  text-align: left;
}

.home .proyectos .section-proyectos .proyectos-nav button:nth-child(3) {
  text-align: right;
}

.home .proyectos .section-proyectos .proyectos-nav button h3 {
  color: #ffffff;
  font-family: var(--font-primary-light);
  font-size: 36px;
}

@media (max-width: 1200px) {
  .home .proyectos .section-proyectos .proyectos-nav button h3 {
    font-size: 24px;
  }
}

@media (max-width: 768px) {
  .home .proyectos .section-proyectos .proyectos-nav button h3 {
    white-space: nowrap;
    font-size: 14px;
  }
}

.home .proyectos .section-proyectos .proyectos-nav .nav-highlight {
  position: relative;
  display: flex;
  border-top: 1px solid white;
}

.home .proyectos .section-proyectos .proyectos-nav .nav-highlight .highlight-cursor {
  position: absolute;
  width: 180px;
  height: 10px;
  background-color: white;
  transform: translateY(-5px);
  border-radius: 10px;
  transition: left 300ms ease;
}

.home .proyectos .section-proyectos[data-active="construccion"] .proyectos-nav .nav-highlight .highlight-cursor {
  left: 0;
}

.home .proyectos .section-proyectos[data-active="entregados"] .proyectos-nav .nav-highlight .highlight-cursor {
  left: calc(50% - 90px);
}

.home .proyectos .section-proyectos[data-active="proximamente"] .proyectos-nav .nav-highlight .highlight-cursor {
  left: calc(100% - 180px);
}

@media (max-width: 768px) {
  .home .proyectos .section-proyectos .proyectos-nav .nav-highlight .highlight-cursor {
    width: 80px;
  }

  .home .proyectos .section-proyectos[data-active="construccion"] .proyectos-nav .nav-highlight .highlight-cursor {
    left: 0;
  }

  .home .proyectos .section-proyectos[data-active="entregados"] .proyectos-nav .nav-highlight .highlight-cursor {
    left: calc(50% - 40px);
  }

  .home .proyectos .section-proyectos[data-active="proximamente"] .proyectos-nav .nav-highlight .highlight-cursor {
    left: calc(100% - 80px);
  }
}

.home .proyectos .section-proyectos .proyectos-showcase {
  position: relative;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.home .proyectos .section-proyectos .proyectos-showcase .showcase-item {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 20px;
  background-size: cover;
  background-position: center center;
  margin-bottom: 40px;
}

@media (max-width: 992px) {
  .home .proyectos .section-proyectos .proyectos-showcase .showcase-item {
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 768px) {
  .home .proyectos .section-proyectos .proyectos-showcase .showcase-item {
    aspect-ratio: 1 / 1;
  }
}

.home .proyectos .section-proyectos .proyectos-showcase .showcase-item .item-info {
  position: absolute;
  left: 40px;
  bottom: 40px;
  max-width: 600px;
  margin-right: 40px;
  gap: 20px;
  padding: 30px 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  backdrop-filter: blur(5px);
}

@media (max-width: 1200px) {
  .home .proyectos .section-proyectos .proyectos-showcase .showcase-item .item-info {
    left: 20px;
    bottom: 20px;
    margin-right: 20px;
    padding: 10px 20px 20px;
  }
}

@media (max-width: 768px) {
  .home .proyectos .section-proyectos .proyectos-showcase .showcase-item {
    display: flex;
    align-items: flex-end;
  }

  .home .proyectos .section-proyectos .proyectos-showcase .showcase-item .item-info {
    position: relative;
    margin-top: 250px;
    left: 0;
    bottom: 0;
    margin-right: 0;
  }
}

.home .proyectos .section-proyectos .proyectos-showcase .showcase-item .item-info .info-title {
  font-family: var(--font-tertiary-italic);
  color: white;
  font-size: 40px;
  margin-bottom: 10px;
}

@media (max-width: 1200px) {
  .home .proyectos .section-proyectos .proyectos-showcase .showcase-item .item-info .info-title {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .home .proyectos .section-proyectos .proyectos-showcase .showcase-item .item-info .info-title {
    font-size: 24px;
  }
}

.home .proyectos .section-proyectos .proyectos-showcase .showcase-item .item-info .info-text-container {
  display: flex;
  align-items: flex-end;
  gap: 20px;
}

.home .proyectos .section-proyectos .proyectos-showcase .showcase-item .item-info .info-text-container .info-text,
.home .proyectos .section-proyectos .proyectos-showcase .showcase-item .item-info .info-text-container .info-data {
  color: white;
  font-family: var(--font-primary-light);
  font-size: 18px;
  line-height: 1.2;
}

@media (max-width: 1200px) {

  .home .proyectos .section-proyectos .proyectos-showcase .showcase-item .item-info .info-text-container .info-text,
  .home .proyectos .section-proyectos .proyectos-showcase .showcase-item .item-info .info-text-container .info-data {
    color: white;
    font-family: var(--font-primary-light);
    font-size: 16px;
  }
}

.home .proyectos .section-proyectos .proyectos-showcase .showcase-item .item-info .info-text-container .info-data {
  margin-bottom: 0;
}

.home .proyectos .section-proyectos .proyectos-showcase .showcase-item .item-info img {
  width: 36px;
}

/* PRENSA */
:root {
  --prensa-height: 800px;
}

@media (max-width: 768px) {
  :root {
    --prensa-height: 300px;
  }
}

.prensa .section-prensa {
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 40px;
  height: var(--prensa-height);
  overflow: hidden;
}

@media (max-width: 992px) {
  .prensa .section-prensa {
    grid-template-columns: 280px 1fr;
  }
}

@media (max-width: 768px) {
  .prensa .section-prensa {
    grid-template-columns: 1fr;
    height: auto;
  }
}

.prensa .section-prensa .prensa-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: var(--prensa-height);
  overflow: hidden;
  overflow-y: scroll;
}

.prensa .section-prensa .prensa-items .prensa-item {
  display: none;
  grid-template-rows: 1fr auto;
  height: var(--prensa-height);
  background-color: var(--color-primary-light);
}

@media (max-width: 768px) {
  .prensa .section-prensa .prensa-items .prensa-item {
    height: auto;
  }
}

.prensa .section-prensa .prensa-items .prensa-item .item-bg {
  position: relative;
  background-position: center center;
  background-size: cover;
}

@media (max-width: 768px) {
  .prensa .section-prensa .prensa-items .prensa-item .item-bg {
    aspect-ratio: 3 / 4;
  }
}

.prensa .section-prensa .prensa-items .prensa-item .item-bg .item-info {
  position: absolute;
  display: flex;
  gap: 10px;
  flex-direction: row;
  align-items: flex-end;
  max-width: 500px;
  bottom: 20px;
  left: 20px;
  padding: 20px;
  padding: 30px 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  backdrop-filter: blur(5px);
}

@media (max-width: 768px) {
  .prensa .section-prensa .prensa-items .prensa-item .item-bg .item-info {
    padding: 20px;
  }
}

.prensa .section-prensa .prensa-items .prensa-item .item-bg .item-info .info-title {
  font-family: var(--font-tertiary-italic);
  border-bottom: 1px solid white;
  padding-bottom: 10px;
  margin-bottom: 10px;
  color: white;
}

.prensa .section-prensa .prensa-items .prensa-item .item-bg .item-info .info-date {
  font-family: var(--font-primary-light);
  font-size: 18px;
  color: white;
  margin-bottom: 0;
}

.prensa .section-prensa .prensa-items .prensa-item .item-text {
  padding: 40px;
  border: 0px solid black;
  font-family: var(--font-primary-light);
  font-size: 16px;
  margin-bottom: 0;
}

.prensa .section-prensa .prensa-items .prensa-item.active {
  display: grid;
  animation: prensaFadeIn 300ms ease;
}

.prensa .prensa-nav-item {
  background-color: transparent;
  text-align: left;
  padding: 20px 25px;
  border: 0px solid black;
  transition:
    background 300ms ease,
    color 300ms ease;
}

.prensa .prensa-nav-item .nav-item-title {
  font-family: var(--font-tertiary-italic);
  font-size: 32px;
  line-height: 1.2;
}

@media (max-width: 992px) {
  .prensa .prensa-nav-item .nav-item-title {
    font-size: 26px;
  }
}

@media (max-width: 768px) {
  .prensa .prensa-nav-item .nav-item-title {
    font-size: 22px;
  }
}

.prensa .prensa-nav-item .nav-item-text {
  font-family: var(--font-primary-light);
  font-size: 16px;
}

@media (max-width: 768px) {
  .prensa .prensa-nav-item .nav-item-text {
    display: none;
  }
}

.prensa .prensa-nav-item .nav-item-date {
  font-family: var(--font-primary-light);
  font-size: 16px;
  margin-bottom: 0;
}

.prensa .prensa-nav-item.active {
  background-color: var(--color-primary-light);
}

@keyframes prensaFadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* PRENSA SCROLL PERSONALIZADO */
.prensa .prensa-nav-wrapper {
  position: relative;
  height: 100%;
  width: 100%;
  overflow: hidden;
}

.prensa .prensa-nav {
  height: 100%;
  overflow-y: scroll;
  padding-left: 20px;
  scrollbar-width: none;
}

.prensa .prensa-nav::-webkit-scrollbar {
  display: none;
}

.prensa .scrollbar {
  position: absolute;
  top: 4px;
  bottom: 4px;
  left: 4px;
  width: 1px;
  background: black;
}

.prensa .scrollbar-thumb {
  position: absolute;
  width: 10px;
  left: -5px;
  top: 0;
  background: black;
  border-radius: 10px;
  cursor: grab;
}

.prensa .scrollbar-thumb:active {
  cursor: grabbing;
}

/* ABOUT SOBRE NOSOTROS */
@media (min-width: 992px) {
  .about .overview {
    min-height: 1000px;
  }
}
@media (min-width: 992px) {
  .about .overview .container {
    padding-top: var(--padding-container-y);
  }

  .about .overview .section-header {
    padding-top: 0;
  }
}

.about .overview .section-header .section-title > * {
  transform: translateX(-30px);
  width: 520px;
}
.about .overview .section-header .section-title > *:last-child {
  transform: translateX(0px);
  width: 850px;
}

@media (max-width: 1920px) {
  .about .overview .section-header .section-title > * {
    transform: translateX(-50px);
    width: 520px;
  }
  .about .overview .section-header .section-title > *:last-child {
    transform: translateX(0px);
    width: 720px;
  }
}

@media (max-width: 1360px) {
  .about .overview .section-header .section-title > * {
    transform: translateX(-50px);
    width: 430px;
  }
  .about .overview .section-header .section-title > *:last-child {
    transform: translateX(0px);
    width: 600px;
  }
}

@media (max-width: 1200px) {
  .about .overview .section-header .section-title > * {
    transform: translateX(-50px);
    width: 340px;
  }
  .about .overview .section-header .section-title > *:last-child {
    transform: translateX(0px);
    width: 450px;
  }
}

@media (max-width: 992px) {
  .about .overview .section-header .section-title > * {
    transform: translateX(0px);
    width: 100%;
  }
  .about .overview .section-header .section-title > *:last-child {
    transform: translateX(30px);
    width: 100%;
  }
}

@media (min-width: 992px) {
  .about .overview.vertical .section-header {
    display: flex;
    justify-content: center;
    padding-right: 0;
  }

  .about .overview .section-header .section-title {
    text-align: right;
    margin-bottom: 60px;
  }

  .about .overview .section-header .section-text {
    padding-right: 10px;
    border-right: 1px solid white;
  }
}

@media (max-width: 992px) {
  .about .overview .section-header .section-text {
    max-width: 100%;
    padding-bottom: 20px;
    border-bottom: 1px solid white;
  }
}

.about .overview.vertical .section-image {
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center top;
}

.about .trayectoria {
  position: relative;
  background-position: center center;
  background-size: cover;
}

.about .trayectoria .container {
  z-index: 1;
}

.about .trayectoria .section-header {
  align-items: flex-start;
  justify-content: center;
}

.about .trayectoria .container-image {
  display: flex;
  align-items: center;
}

.about .container-content-filosofia {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

@media (max-width: 992px) {
  .about .container-content-filosofia {
    grid-template-columns: repeat(1, 1fr);
  }
}

/* LEGACY */
.about .legacy .container {
  padding-bottom: 0;
}

@media (min-width: 768px) {
  .about .legacy .section-header.title-has-two-parts span:first-of-type {
    transform: translateX(-130%);
  }
}

/* FILOSOFÍA */
.about .filosofia .section-header .section-title span {
  font-size: 48px;
}

@media (max-width: 1920px) {
  .about .filosofia .section-header .section-title span {
    font-size: 32px;
  }
}

.about .filosofia .section-filosofia .filosofia-block h3 {
  position: relative;
  font-size: 20px;
  padding-top: 30px;
  margin-bottom: 10px;
}

.about .filosofia .section-filosofia .filosofia-block h3::before {
  content: "";
  position: absolute;
  width: 90px;
  height: 10px;
  background-image: url("./../images/svg/block-title-bullet.svg");
  background-size: contain;
  background-repeat: no-repeat;
  left: 0;
  top: 0;
}

.about .filosofia .section-filosofia {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 40px 80px;
}

@media (max-width: 992px) {
  .about .filosofia .section-filosofia {
    grid-template-columns: repeat(1, 1fr);
  }
}

/* RECORRIDO */
.about .recorrido .container {
  padding-bottom: 0;
}

.about .recorrido .section-title span {
  font-family: var(--font-tertiary-italic);
  text-transform: unset;
}

.about .recorrido .section-recorrido .recorrido-row {
  display: grid;
}

.about .recorrido .section-recorrido .recorrido-row.row-one {
  grid-template-columns: 1fr 1fr 1fr 0.5fr;
}

.about .recorrido .section-recorrido .recorrido-row.row-two {
  direction: rtl;
  grid-template-columns: 1fr 1fr 1fr 0.5fr;
}

.about .recorrido .section-recorrido .recorrido-row.row-two>.row-item {
  direction: ltr;
}

.about .recorrido .section-recorrido .recorrido-row.row-three {
  grid-template-columns: 0.5fr 1fr 1fr 1fr 0.5fr;
}

.about .recorrido .section-recorrido .recorrido-row .row-item {
  position: relative;
  border-top: 2px solid var(--color-secondary);
  padding: 140px 60px 40px 0;
}

.about .recorrido .section-recorrido.js-ready .recorrido-row .row-item {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.about .recorrido .section-recorrido.js-ready .recorrido-row .row-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.about .recorrido .section-recorrido .recorrido-row .row-item .item-date {
  position: absolute;
  height: 50px;
  display: flex;
  align-items: center;
  top: -25px;
  left: 0;
  background-color: var(--color-secondary);
  font-size: 20px;
  padding: 0px 20px;
  border-radius: 30px;
  color: white;
}

.about .recorrido .section-recorrido .recorrido-row .row-item .item-date::after {
  content: "";
  position: absolute;
  bottom: -90px;
  width: 10px;
  height: 90px;
  left: 50%;
  transform: translateX(-50%);
  background-image: url("./../images/svg/recorrido-date-pointer.svg");
  background-repeat: no-repeat;
  background-size: contain;
}

.about .recorrido .section-recorrido .recorrido-row .row-item h3 {
  font-family: var(--font-primary-bold);
  font-size: 20px;
  padding-left: 35px;
}

.about .recorrido .section-recorrido .recorrido-row .row-item p {
  display: inline-block;
  padding-left: 35px;
}

.about .recorrido .section-recorrido .recorrido-row.row-one .row-item:last-child {
  border-right: 2px solid var(--color-secondary);
  border-bottom: 2px solid var(--color-secondary);
  border-radius: 0 50% 50% 0;
  height: calc(100% + 2px);
}

.about .recorrido .section-recorrido .recorrido-row.row-three .row-item:last-child {
  border-right: 2px solid var(--color-secondary);
  border-bottom: 2px solid var(--color-secondary);
  border-radius: 0 50% 50% 0;
  height: calc(100% + 2px);
}

@media (max-width: 768px) {
  .about .recorrido .section-recorrido .recorrido-row.row-three .row-item:last-child {
    border-right: none;
    border-bottom: none;
    border-radius: 0;
  }
}

@media (min-width: 768px) {
  .about .recorrido .section-recorrido .recorrido-row.row-two>.row-item:nth-child(1) {
    border-top: 2px solid transparent;
    border-image: linear-gradient(to right,
        black 0%,
        black 50%,
        transparent 50%,
        transparent 100%) 1 0 0 0;
  }

  .about .recorrido .section-recorrido .recorrido-row.row-three>.row-item:nth-child(1) {
    border-top: 2px solid transparent;
    /*
    border-image: linear-gradient(
        to left,
        black 0%,
        black 50%,
        transparent 50%,
        transparent 100%
      )
      1 0 0 0;
    */
  }

  .about .recorrido .section-recorrido .recorrido-row.row-two.row-four>.row-item:nth-child(1) {
    border-top: 2px solid transparent;
    border-image: linear-gradient(to right,
        black 0%,
        black 60%,
        transparent 60%,
        transparent 100%) 1 0 0 0;
  }
}

.about .recorrido .section-recorrido .recorrido-row.row-two>.row-item:nth-child(4) {
  border-left: 2px solid var(--color-secondary);
  border-bottom: 2px solid var(--color-secondary);
  border-radius: 50% 0 0 50%;
  height: calc(100% + 2px);
}
@media (max-width: 1440px) {
  .about .recorrido .section-recorrido .recorrido-row .row-item {
    padding: 120px 20px 20px 0;
  }
}

@media (max-width: 768px) {
  .about .recorrido .section-recorrido .recorrido-row {
    display: block;
  }

  .about .recorrido .section-recorrido .recorrido-row .row-item {
    padding: 60px 0 30px 0;
  }

  .about .recorrido .section-recorrido .recorrido-row .row-item.item-blank {
    display: none;
  }

  .about .recorrido .section-recorrido .recorrido-row .row-item .item-date::after {
    height: 30px;
    bottom: -30px;
    background-size: cover;
    background-position: center bottom;
  }
}

/* PEDRO JAEN */
.about .pedrojaen {
  transform: translateY(-1px);
  background-position: center center;
  background-size: cover;
}

@media (max-width: 992px) {
  .about .pedrojaen {
    aspect-ratio: 3 / 4;
  }
}

/* EQUIPO */
.about .equipo .section-header .section-text {
  max-width: 100%;
}

.about .equipo .section-equipo {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.about .equipo .section-equipo .equipo-item {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 40px;
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  border-radius: 20px;
}

.about .equipo .section-equipo .equipo-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(0, 0, 0, 0.5) 0%,
      rgba(0, 0, 0, 0) 50%);
  z-index: 0;
  border-radius: 20px;
}

.about .equipo .section-equipo .equipo-item .item-info {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border-radius: 10px;
  padding: 16px 30px;
  z-index: 1;
}

.about .equipo .section-equipo .equipo-item .item-info h3 {
  font-family: var(--font-primary-regular);
  color: white;
  margin-bottom: 5px;
}

.about .equipo .section-equipo .equipo-item .item-info p {
  opacity: 0;
  max-height: 0;
  margin-bottom: 0;
  color: white;
  transition: all 300ms ease-in-out;
}

.about .equipo .section-equipo .equipo-item .item-info p::first-letter {
  text-transform: uppercase;
}

.about .equipo .section-equipo .equipo-item:hover .item-info p {
  opacity: 1;
  max-height: 200px;
  transition: all 300ms ease-in-out;
}

@media (max-width: 1350px) {
  .about .equipo .section-equipo .equipo-item {
    padding: 20px;
  }

  .about .equipo .section-equipo .equipo-item .item-info h3 {
    font-size: 18px;
  }

  .about .equipo .section-equipo .equipo-item .item-info p {
    line-height: 1.2;
  }
}

@media (max-width: 1200px) {
  .about .equipo .section-equipo {
    grid-template-columns: repeat(1, 1fr);
  }
}

/* PROJECTS */
.projects .proyectos .section-header {
  text-align: left;
  align-items: flex-start;
}

.projects .proyectos .section-header .section-text {
  max-width: 100%;
}

.projects .proyectos .section-proyectos .proyectos-nav {
  margin-bottom: 80px;
}

.projects .proyectos .section-proyectos .proyectos-nav .nav-items {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
}

.projects .proyectos .section-proyectos .proyectos-nav .nav-items button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: color 300ms ease;
}

.projects .proyectos .section-proyectos .proyectos-nav .nav-items button h3 {
  font-family: var(--font-primary-light);
  font-size: 36px;
}

@media (max-width: 1200px) {
  .projects .proyectos .section-proyectos .proyectos-nav .nav-items button h3 {
    font-size: 24px;
  }
}

@media (max-width: 768px) {
  .projects .proyectos .section-proyectos .proyectos-nav .nav-items button h3 {
    font-size: 14px;
    white-space: nowrap;
  }
}

.projects .proyectos .section-proyectos .proyectos-nav .nav-highlight {
  position: relative;
  display: flex;
  border-top: 1px solid black;
}

.projects .proyectos .section-proyectos .proyectos-nav .nav-highlight .highlight-cursor {
  position: absolute;
  width: 180px;
  height: 10px;
  background-color: black;
  transform: translateY(-5px);
  border-radius: 10px;
  transition: left 300ms ease;
}

.projects .proyectos .section-proyectos[data-active="branded"] .proyectos-nav .nav-highlight .highlight-cursor {
  left: 0;
}

.projects .proyectos .section-proyectos[data-active="sb"] .proyectos-nav .nav-highlight .highlight-cursor {
  left: calc(100% - 180px);
}

.projects .proyectos .section-proyectos .proyectos-showcase .showcase {
  display: none;
}

.projects .proyectos .section-proyectos .proyectos-showcase .showcase.active {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 40px;
  animation: projectListFadeIn 300ms ease;
}

@keyframes projectListFadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.projects .proyectos .section-proyectos .proyectos-showcase .showcase .showcase-item {
  position: relative;
  width: 100%;
  max-width: 900px;
  background-position: center center;
  background-size: cover;
  border-radius: 20px;
  padding: 25px 30px;
  overflow: hidden;
  transition: max-width 300ms ease;
}

.projects .proyectos .section-proyectos .proyectos-showcase .showcase .showcase-item.active {
  max-width: 100%;
}

.projects .proyectos .section-proyectos .proyectos-showcase .showcase .showcase-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.2);
  transition: background-color 300ms ease-in-out;
  z-index: 0;
}

.projects .proyectos .section-proyectos .proyectos-showcase .showcase .showcase-item .item-info {
  position: relative;
  width: min(600px, calc(100% - 240px));
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 40px;
  z-index: 1;
}

.projects .proyectos .section-proyectos .proyectos-showcase .showcase .showcase-item .item-info .item-info-text .info-header {
  padding: 20px 25px;
  background-color: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 10px;
  margin-bottom: 20px;
}

.projects .proyectos .section-proyectos .proyectos-showcase .showcase .showcase-item .item-info .item-info-text .info-header .info-title {
  position: relative;
  font-family: var(--font-primary-regular);
  font-size: 42px;
  text-transform: uppercase;
  color: white;
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.projects .proyectos .section-proyectos .proyectos-showcase .showcase .showcase-item .item-info .item-info-text .info-header .info-title::after {
  content: "";
  position: absolute;
  display: block;
  width: 120px;
  height: 2px;
  background-color: white;
  left: 0;
  bottom: 0;
}

.projects .proyectos .section-proyectos .proyectos-showcase .showcase .showcase-item .item-info .item-info-text .info-header .info-text {
  font-size: 18px;
  color: white;
}

.projects .proyectos .section-proyectos .proyectos-showcase .showcase .showcase-item .item-info .item-info-text .info-ficha-tecnica {
  padding: 20px 25px;
  font-size: 18px;
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  backdrop-filter: blur(10px);
  color: white;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition:
    opacity 300ms ease-in-out,
    max-height 300ms ease-in-out;
}

.projects .proyectos .section-proyectos .proyectos-showcase .showcase .showcase-item.active .item-info .item-info-text .info-ficha-tecnica {
  opacity: 1;
  max-height: 500px;
  transition:
    opacity 300ms ease-in-out,
    max-height 300ms ease-in-out;
}

.projects .proyectos .section-proyectos .proyectos-showcase .showcase .showcase-item .item-info .item-info-text .info-ficha-tecnica .ficha-tecnica {
  font-size: 18px;
  color: white;
}

.projects .proyectos .section-proyectos .proyectos-showcase .showcase .showcase-item .item-info .info-logo {
  aspect-ratio: 8 / 3;
  max-width: 200px;
}

.projects .proyectos .section-proyectos .proyectos-showcase .showcase .showcase-item .item-info .info-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left bottom;
}

.projects .proyectos .section-proyectos .proyectos-showcase .showcase .showcase-item .item-brochure,
.projects .proyectos .section-proyectos .proyectos-showcase .showcase .showcase-item .item-visit {
  position: absolute;
  color: white;
  padding: 12px 30px;
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 30px;
  backdrop-filter: blur(10px);
  border: 1px solid white;
  font-size: 18px;
  z-index: 1;
}

.projects .proyectos .section-proyectos .proyectos-showcase .showcase .showcase-item .item-brochure {
  top: 20px;
  right: 20px;
}

.projects .proyectos .section-proyectos .proyectos-showcase .showcase .showcase-item .item-visit {
  bottom: 20px;
  right: 20px;
}

@media (max-width: 768px) {
  .projects .proyectos .section-proyectos .proyectos-showcase .showcase .showcase-item {
    padding: 15px 15px;
  }

  .projects .proyectos .section-proyectos .proyectos-showcase .showcase .showcase-item .item-info {
    width: 100%;
    gap: 20px;
  }

  .projects .proyectos .section-proyectos .proyectos-showcase .showcase .showcase-item .item-info .item-info-text .info-header {
    padding: 15px 20px;
    margin-bottom: 15px;
  }

  .projects .proyectos .section-proyectos .proyectos-showcase .showcase .showcase-item .item-info .item-info-text .info-header .info-title {
    font-size: 28px;
    padding-bottom: 15px;
    margin-bottom: 15px;
  }

  .projects .proyectos .section-proyectos .proyectos-showcase .showcase .showcase-item .item-info .item-info-text .info-header .info-text {
    font-size: 16px;
  }

  .projects .proyectos .section-proyectos .proyectos-showcase .showcase .showcase-item .item-info .item-info-text .info-ficha-tecnica {
    font-size: 16px;
  }

  .projects .proyectos .section-proyectos .proyectos-showcase .showcase .showcase-item .item-info .item-info-text .info-ficha-tecnica .ficha-tecnica {
    font-size: 16px;
  }

  .projects .proyectos .section-proyectos .proyectos-showcase .showcase .showcase-item .item-info .info-logo {
    max-width: 100px;
  }

  .projects .proyectos .section-proyectos .proyectos-showcase .showcase .showcase-item .item-brochure {
    top: unset;
    bottom: 70px;
    padding: 10px 14px;
    font-size: 14px;
  }

  .projects .proyectos .section-proyectos .proyectos-showcase .showcase .showcase-item .item-visit {
    right: 20px;
    bottom: 20px;
    padding: 10px 14px;
    font-size: 14px;
  }
}

/* MODAL FORM PROJECTS */
.projects #formModal .modal-content {
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
}

.projects #formModal .modal-header {
  padding: 40px 40px 0 40px;
  border-bottom: 0;
}

.projects #formModal .modal-header .modal-title {
  font-family: var(--font-primary-bold);
  text-transform: uppercase;
  font-size: 30px;
}

.projects #formModal .modal-body {
  padding: 40px;
}

.projects #formModal .modal-dialog {
  display: flex;
  align-items: center;
}

.projects #formModal .form .input-box input,
.projects #formModal .form .input-box textarea {
  background-color: transparent;
}

.projects #formModal .form .input-box label,
.projects #formModal .form .input-box input,
.projects #formModal .form .input-box textarea {
  color: black;
  border-bottom-color: black;
}

/* PROJECT TOP NAV COMPONENT */
.project-top-nav {
  border-bottom: 1px solid #dddddd;
}

.project-top-nav.section .container {
  padding-bottom: calc(var(--padding-container-y) / 2);
}

.project-top-nav .top-nav {
  text-align: center;
}

.project-top-nav .section-text {
  max-width: 100%;
}

.project-top-nav .top-nav .top-nav-button {
  background-color: white;
  border: 0;
  background-image: url('./../images/svg/top-nav-button-ico.svg');
  background-repeat: no-repeat;
  background-position: right center;
  padding: 10px 60px 10px 20px;
  font-size: 16px;
}

.project-top-nav .top-nav .top-nav-filter,
.project-top-nav .top-nav .top-nav-project {
  font-size: 16px;
  color: var(--color-primary);
  border: 0;
  border-bottom: 1px solid transparent;
  background: transparent;
  padding: 0;
  font-family: inherit;
  cursor: pointer;
  transition: border 300ms ease-in-out, opacity 250ms ease-in-out;
}

.project-top-nav.simple .top-nav .top-nav-filter,
.project-top-nav.simple .top-nav .top-nav-project {
  font-size: 14px;
}

@media (min-width: 1200px) and (max-width: 1360px) {

  .project-top-nav .top-nav .top-nav-filter,
  .project-top-nav .top-nav .top-nav-project {
    font-size: 14px;
  }
}

.project-top-nav .top-nav .top-nav-filter:hover,
.project-top-nav .top-nav .top-nav-project:hover {
  border-bottom: 1px solid var(--color-primary);
}

.project-top-nav .top-nav .top-nav-filter.active,
.project-top-nav .top-nav .top-nav-project.active {
  font-family: var(--font-primary-bolder);
  border-bottom: 1px solid var(--color-primary);
}

.project-top-nav .top-nav .top-nav-project[data-type]:not(.type-match) {
  display: none;
}

.project-top-nav .top-nav .top-nav-project.type-match {
  animation: top-nav-trigger-fade 280ms ease-in-out;
}

@keyframes top-nav-trigger-fade {
  from {
    opacity: 0;
    transform: translateY(-2px);
  }

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

@media (prefers-reduced-motion: reduce) {
  .project-top-nav .top-nav .top-nav-project.type-match {
    animation: none;
  }
}

.project-top-nav .top-nav .spacer {
  background-color: var(--color-primary);
}

.project-top-nav .top-nav .top-nav-list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

@media (min-width: 1200px) {
  .project-top-nav .top-nav .top-nav-button {
    display: none;
  }

  .project-top-nav .top-nav .spacer {
    width: 1px;
    height: 40px;
  }
}

@media (max-width: 1200px) {
  .project-top-nav .top-nav .top-nav-list {
    margin-top: 20px;
    padding: 0 20px;
    flex-direction: column;
    max-height: 0;
    overflow: hidden;
    transition: max-height 300ms ease-in-out;
  }

  .project-top-nav .top-nav .top-nav-list.active {
    max-height: 1000px;
  }

  .project-top-nav .top-nav .spacer {
    width: 100%;
    height: 1px;
  }
}

/* PROJECT TOP NAV SIMPLE VARIANT */
@media (min-width: 1600px) {
  .project-top-nav.simple .top-nav .top-nav-button {
    display: none;
  }

  .project-top-nav.simple .top-nav .spacer {
    width: 1px;
    height: 40px;
  }
}

@media (max-width: 1600px) {
  .project-top-nav.simple .top-nav .top-nav-button {
    display: inline-block;
  }

  .project-top-nav.simple .top-nav .top-nav-list {
    margin-top: 20px;
    padding: 0 20px;
    flex-direction: column;
    max-height: 0;
    overflow: hidden;
    transition: max-height 300ms ease-in-out;
  }

  .project-top-nav.simple .top-nav .top-nav-list.active {
    max-height: 1000px;
  }

  .project-top-nav.simple .top-nav .spacer {
    width: 100%;
    height: 1px;
  }
}

/* PROJECT */
/* PROJECT CONTENT TRANSITION */
.project-content[data-project] {
  display: none;
}

.project-content[data-project].active,
.project-content[data-project].leaving {
  display: block;
}

.project-content[data-project].active {
  animation: patrocinio-enter 400ms ease-out both;
}

.project-content[data-project].leaving {
  animation: patrocinio-leave 250ms ease-in both;
}

@media (prefers-reduced-motion: reduce) {

  .project-content[data-project].active,
  .project-content[data-project].leaving {
    animation: none;
  }
}

/* PROJECT LOGO */
.project .section.logo img {
  width: 100%;
  max-width: 420px;
}

@media (max-width: 1200px) {
  .project .section.logo img {
    max-width: 280px;
    padding: 0 20px;
  }
}

/* PROJECT OPENING */
.project .opening .container {
  padding-top: 0;
  padding-bottom: 0;
}

.project .opening .opening-image {}

@media (max-width: 1200px) {
  .project .opening .opening-image {
    aspect-ratio: 9 / 16;
  }

  .project .opening .opening-image img {
    object-fit: cover;
    height: 100%;
  }
}

.project .opening .opening-text {
  margin-top: 40px;
  position: relative;
  columns: 1;
  column-gap: 80px;
  text-align: center;
}

@media (min-width: 768px) and (max-width: 1440px) {
  .project .opening .opening-text {
    columns: 2;
    text-align: left;
  }

  .project .opening .opening-text::before {
    position: absolute;
    content: "";
    width: 1px;
    height: 100%;
    background-color: var(--color-text);
    left: 50%;
    top: 0;
  }
}

@media (max-width: 768px) {
  .project .opening .opening-text {
    text-align: left;
  }
}

/* PROJECT THE-PROJECT */
.project .the-project .section-header {
  align-items: flex-start;
}

.project .the-project .section-header .section-title {
  position: relative;
}

.project .the-project .section-header .section-title::before {
  content: '';
  position: relative;
  display: block;
  width: 90px;
  height: 10px;
  background-image: url("./../images/svg/block-title-bullet.svg");
  background-size: contain;
  background-repeat: no-repeat;
  margin-bottom: 50px;
}

.project .the-project .section-description {
  margin-bottom: 40px;
}

.project .the-project .section-features {
  margin-bottom: 40px;
}

.project .the-project .section-features h3 {
  font-size: 20px;
  margin-bottom: 16px;
}

.project .the-project .section-features ul {
  line-height: 2.2;
  padding-left: 16px;
  margin-bottom: 0;
}

.project .the-project .section-features ul li {
  font-size: 16px;
}

.project .the-project .section-data {
  position: relative;
  display: flex;
  font-size: 20px;
  margin-bottom: 40px;
}

.project .the-project .section-data .spacer {
  width: 1px;
  height: 100%;
  background-color: var(--color-text);
  left: 50%;
  top: 0;
  margin: 0 20px;
}

@media (max-width: 992px) {
  .project .the-project .container {
    flex-direction: column-reverse;
  }

  .project .the-project .section-media {
    aspect-ratio: 9 / 16;
    padding-top: 26px;
    padding-bottom: 0;
  }

  .project .the-project .section-media>* {
    object-fit: cover;
    width: 100%;
    height: 100%;
  }
}

.button.section-button.black-project-button {
  position: relative;
  display: block;
  text-align: left;
  width: 100%;
  background-color: black;
  color: white;
  padding: 12px 90px 12px 30px;
  overflow: hidden;
  transition: background 300ms ease-in-out;
}

@media (max-width: 1200px) {
  .button.section-button.black-project-button {
    padding: 12px 60px 12px 20px;
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .button.section-button.black-project-button {
    padding: 12px 60px 12px 20px;
    font-size: 14px;
  }
}

.button.section-button.black-project-button:hover {
  background-color: black;
}

.button.section-button.black-project-button::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('./../images/svg/top-nav-button-ico-k.svg');
  background-position: right 0px center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 300ms ease-in-out;
}

.button.section-button.black-project-button:hover::after {
  opacity: 1;
}

@media (min-width: 992px) {
  .project .the-project .section-media {
    padding-left: 0;
    padding-right: 0;
  }
}

.project .the-project .section-media video {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.project .the-project .section-media .section-media-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* PROJECT GALLERY CAROUSEL */
.project .project-carousel {
  margin-bottom: var(--padding-container-y);
}

.project .project-carousel .owl-carousel .owl-item,
.project .project-carousel .owl-carousel .owl-item img {
  aspect-ratio: 888 / 1342;
}

/* PROJECT CLAIM */
.project .claim-image {
  position: relative;
  aspect-ratio: 16 / 9;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
}

.project .claim-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.4);
  background: linear-gradient(to top, rgba(0, 0, 0, .4), rgba(0, 0, 0, 0));
}

.project .claim-image .section-header {
  z-index: 1;
}

@media (min-width: 1200px) {
  .project .claim-image .section-header .section-title {
    font-size: 70px;
  }
}

.project .claim-image .section-header .section-title {
  color: white;
  font-family: var(--font-primary);
  margin-bottom: 60px;
}

.project .claim-image .section-header .section-author {
  font-family: var(--font-primary-bold);
  color: white;
  margin-bottom: 0px;
}

.project .claim-image .section-header .section-charge {
  font-family: var(--font-primary-light);
  color: white;
}

@media (max-width: 1200px) {
  .project .claim-image {
    aspect-ratio: 3 / 4;
  }

  .project .claim-image .section-header .section-title {
    text-align: left;
    font-size: 20px;
    margin-bottom: 20px;
  }

  .project .claim-image .section-header .section-author {
    font-size: 14px;
    text-align: left;
  }
}

/* PROJECT PROJECTS CAROUSEL */
.project-projects-carousel .section-header {
  align-items: flex-start;
}

.project-projects-carousel .section-header .section-title {
  position: relative;
  text-align: left;
}

.project-projects-carousel .section-header .section-title::before {
  content: '';
  position: relative;
  display: block;
  width: 90px;
  height: 10px;
  background-image: url("./../images/svg/block-title-bullet.svg");
  background-size: contain;
  background-repeat: no-repeat;
  margin-bottom: 50px;
}

@media (max-width: 768px) {
  .page .project-projects-carousel .section-header {
    padding-left: 0;
  }
}

.project-projects-carousel .owl-carousel .owl-item,
.project-projects-carousel .owl-carousel .owl-item img,
.newest-projects .owl-carousel .owl-item,
.newest-projects .owl-carousel .owl-item img {
  aspect-ratio: 5 / 6;
}

.project-projects-carousel .showcase-item,
.newest-projects .showcase-item {
  position: relative;
  height: 100%;
  background-position: center center;
  background-size: cover;
}

.project-projects-carousel .showcase-item .item-info {
  padding: 40px 60px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 40px;
}

.newest-projects .showcase-item .item-info {
  padding: 30px 40px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 40px;
}

@media (max-width: 1920px) {
  .newest-projects .showcase-item .item-info {
    padding: 30px 40px;
  }
}

@media (max-width: 1440px) {
  .newest-projects .showcase-item .item-info {
    padding: 20px 30px;
  }
}

.project-projects-carousel .showcase-item .item-info .info-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.newest-projects .showcase-item .item-info .info-top {
  display: none;
}

.project-projects-carousel .showcase-item .item-info .info-top .top-title {
  max-width: calc(50% - 40px);
  color: white;
  padding-left: 20px;
  border-left: 1px solid white;
  font-size: 32px;
}

@media (max-width: 1920px) {
  .project-projects-carousel .showcase-item .item-info .info-top .top-title {
    font-size: 28px;
  }
}

@media (max-width: 1440px) {
  .project-projects-carousel .showcase-item .item-info .info-top .top-title {
    font-size: 24px;
    max-width: 260px;
  }
}

.project-projects-carousel .showcase-item .item-info .info-top .top-logo {
  max-width: 140px;
  width: 100%;
  height: auto;
  object-fit: unset;
  aspect-ratio: unset;
  filter: brightness(0) invert(1);
}

.project-projects-carousel .showcase-item .item-info .info-bottom,
.newest-projects .showcase-item .item-info .info-bottom {
  padding: 30px 40px;
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  backdrop-filter: blur(5px);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  border-radius: 20px;
}

@media (max-width: 1920px) {

  .project-projects-carousel .showcase-item .item-info .info-bottom,
  .newest-projects .showcase-item .item-info .info-bottom {
    padding: 20px 30px;
  }
}

@media (max-width: 1440px) {

  .project-projects-carousel .showcase-item .item-info .info-bottom,
  .newest-projects .showcase-item .item-info .info-bottom {
    gap: 10px;
  }
}

.project-projects-carousel .showcase-item .item-info .info-bottom .bottom-title {
  display: none;
}

.newest-projects .showcase-item .item-info .info-bottom .bottom-title {
  color: white;
  font-family: var(--font-tertiary);
  font-style: italic;
}

@media (max-width: 1440px) {
  .newest-projects .showcase-item .item-info .info-bottom .bottom-title {
    line-height: 1;
    margin-bottom: 5px;
    font-size: 24px;
  }
}

.project-projects-carousel .showcase-item .item-info .info-bottom .bottom-text,
.newest-projects .showcase-item .item-info .info-bottom .bottom-text {
  font-size: 16px;
  line-height: 1.4;
  color: white;
  margin-bottom: 0;
}

/* Estado base del texto: la transición vive aquí.
   El mostrar/ocultar (espejo de la lógica de anchura flex) está
   en el @media (min-width: 768px) junto a las reglas de .owl-item. */
.newest-projects .showcase-item .item-info .info-bottom .bottom-text {
  overflow: hidden;
  transition: max-height 300ms ease-in-out, opacity 300ms ease-in-out;
}

.project-projects-carousel .showcase-item .item-info .info-bottom .bottom-text:has(+ .bottom-province),
.newest-projects .showcase-item .item-info .info-bottom .bottom-text:has(+ .bottom-province) {
  margin-bottom: 10px;
}

@media (max-width: 1440px) {

  .project-projects-carousel .showcase-item .item-info .info-bottom .bottom-text,
  .newest-projects .showcase-item .item-info .info-bottom .bottom-text {
    font-size: 16px;
    line-height: 1.2;
  }
}

.project-projects-carousel .showcase-item .item-info .info-bottom .bottom-province {
  display: none;
}

.newest-projects .showcase-item .item-info .info-bottom .bottom-province {
  font-size: 18px;
  line-height: 1.4;
  color: white;
  margin-bottom: 0;
}

@media (max-width: 1440px) {
  .project-projects-carousel .showcase-item .item-info .info-bottom .bottom-province,
  .newest-projects .showcase-item .item-info .info-bottom .bottom-province {
    font-size: 18px;
    line-height: 1.2;
  }
}

.project-projects-carousel .showcase-item .item-info .info-bottom .info-arrow,
.newest-projects .showcase-item .item-info .info-bottom .info-arrow {
  width: 40px;
  aspect-ratio: 1 / 1;
  transform: rotate(0deg);
  transition: transform 300ms ease-in-out;
}

.project-projects-carousel .showcase-item .item-info .info-bottom .info-arrow:hover,
.newest-projects .showcase-item .item-info .info-bottom .info-arrow:hover {
  transform: rotate(90deg);
}

@media (max-width: 1600px) {
  .project-projects-carousel .section-header {
    padding-left: var(--padding-container-x);
    padding-right: var(--padding-container-x);
  }
}

@media (max-width: 1200px) {

  .project-projects-carousel .showcase-item .item-info .info-bottom .info-arrow,
  .newest-projects .showcase-item .item-info .info-bottom .info-arrow {
    width: 30px;
  }
}

@media (max-width: 992px) {

  .project-projects-carousel .owl-carousel .owl-item,
  .project-projects-carousel .owl-carousel .owl-item img,
  .newest-projects .owl-carousel .owl-item,
  .newest-projects .owl-carousel .owl-item img {
    aspect-ratio: 5 / 8;
  }

  .project-projects-carousel .showcase-item .item-info,
  .newest-projects .showcase-item .item-info {
    padding: 20px 20px;
  }

  .project-projects-carousel .showcase-item .item-info .info-bottom,
  .newest-projects .showcase-item .item-info .info-bottom {
    padding: 20px 20px;
  }

  .project-projects-carousel .showcase-item .item-info .info-bottom .bottom-text,
  .newest-projects .showcase-item .item-info .info-bottom .bottom-text {
    font-size: 14px;
    line-height: 1.2;
  }

  .project-projects-carousel .showcase-item .item-info .info-top .top-logo,
  .newest-projects .showcase-item .item-info .info-top .top-logo {
    display: none;
  }

  .project-projects-carousel .showcase-item .item-info .info-bottom,
  .newest-projects .showcase-item .item-info .info-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}

.newest-projects .section-proyectos {
  padding-bottom: var(--padding-container-y);
}

/* CAROUSEL FLEX */
.newest-projects .owl-stage {
  display: flex;
}

.newest-projects .owl-item {
  aspect-ratio: unset !important;
  height: 700px;
  flex: 1;
  transition: flex 0.3s ease;
}

@media (max-width: 1600px) {
  .newest-projects .owl-item {
    height: 600px;
  }
}

@media (max-width: 1200px) {
  .newest-projects .owl-item {
    height: 500px;
  }
}

@media (max-width: 992px) {
  .newest-projects .owl-item {
    height: 600px;
  }
}

@media (max-width: 768px) {
  .newest-projects .owl-item {
    height: 500px;
  }
}

@media (min-width: 768px) {

  /* Base */
  /* Activo por defecto */
  .newest-projects .owl-item.active {
    flex: 2;
  }

  /* Excepto los siguientes activos */
  .newest-projects .owl-item.active~.owl-item.active {
    flex: 1;
  }

  /* Hover global: todo se iguala */
  .newest-projects .owl-stage:hover .owl-item {
    flex: 1;
  }

  /* Hover manda siempre */
  .newest-projects .owl-item:hover {
    flex: 2 !important;
  }

  /* --- TEXTO: espejo exacto de la lógica de anchura de arriba --- */
  /* Por defecto, oculto en todos los items (solo en desktop) */
  .newest-projects .owl-item .bottom-text {
    max-height: 0;
    opacity: 0;
  }

  /* Visible en el primer activo (el ancho) */
  .newest-projects .owl-item.active .bottom-text {
    max-height: 200px;
    opacity: 1;
  }

  /* Oculto en los siguientes activos (los estrechos) */
  .newest-projects .owl-item.active~.owl-item.active .bottom-text {
    max-height: 0;
    opacity: 0;
  }

  /* Hover global: todo el texto se oculta (incluido el 1er activo) */
  .newest-projects .owl-stage:hover .owl-item .bottom-text {
    max-height: 0;
    opacity: 0;
  }

  /* Hover manda siempre: solo el item con el ratón muestra texto */
  .newest-projects .owl-item:hover .bottom-text {
    max-height: 200px !important;
    opacity: 1 !important;
  }
}

@media (max-width: 767.98px) {
  .newest-projects .owl-carousel:not(.owl-loaded) {
    display: block;
  }

  .newest-projects .owl-carousel:not(.owl-loaded)>.showcase-item {
    width: 100%;
    height: 500px;
    margin: 0 0 20px;
  }

  .newest-projects .owl-carousel:not(.owl-loaded)>.showcase-item:last-child {
    margin-bottom: 0;
  }
}

/* HOME PHILOSOPHY */
.home .philosophy {
  position: relative;
}

.home .philosophy video {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.home .philosophy .container {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}

.home .philosophy .container::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.home .philosophy .container h2 {
  max-width: 800px;
  text-align: left;
  color: white;
  z-index: 1;
  text-transform: uppercase;
  font-size: 60px;
  font-family: var(--font-primary-superlight);
}

@media (max-width: 768px) {
  .home .philosophy {
    aspect-ratio: 1 / 2;
  }

  .home .philosophy .container h2 {
    font-size: 40px;
  }
}

/* DEVELOPMENT */
.development .container {
  display: flex;
  align-items: flex-end;
}

.development .container .section-header {
  align-items: flex-start;
  justify-content: center;
}

/* SPONSORSHIPS INTRO */
@media (max-width: 992px) {
  .sponsorships .intro.section .container .section-header {
    padding-top: 0;
  }
}

.sponsorships .intro .section-header .section-text {
  position: relative;
}

.sponsorships .intro .section-header .section-text::before {
  content: '';
  position: relative;
  display: block;
  width: 90px;
  height: 10px;
  background-image: url("./../images/svg/block-title-bullet.svg");
  background-size: contain;
  background-repeat: no-repeat;
  margin-bottom: 50px;
}

/* SPONSORSHIPS NAV */
.sponsorships .nav .container {
  text-align: center;
}

.sponsorships .nav .nav-button {
  width: auto;
  background-color: white;
  border: 0;
  background-image: url('./../images/svg/top-nav-button-ico.svg');
  background-repeat: no-repeat;
  background-position: right center;
  padding: 10px 60px 10px 20px;
  font-size: 16px;
}

.sponsorships .nav .container ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 40px;
  justify-content: center;
}

.sponsorships .nav .container ul li button {
  background: none;
  border: 0;
  padding: 0;
  margin: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
}

.sponsorships .nav .container ul li:hover {
  text-decoration: underline;
}

.sponsorships .nav .container ul li.active {
  font-family: var(--font-primary-bold);
  text-decoration: underline;
}

.sponsorships .patrocinio[data-sponsorship] {
  display: none;
}

.sponsorships .patrocinio[data-sponsorship].active,
.sponsorships .patrocinio[data-sponsorship].leaving {
  display: block;
}

.sponsorships .patrocinio[data-sponsorship].active {
  animation: patrocinio-enter 400ms ease-out both;
}

.sponsorships .patrocinio[data-sponsorship].leaving {
  animation: patrocinio-leave 250ms ease-in both;
}

@keyframes patrocinio-enter {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes patrocinio-leave {
  from {
    opacity: 1;
    transform: none;
  }

  to {
    opacity: 0;
    transform: scale(0.97);
  }
}

@media (prefers-reduced-motion: reduce) {

  .sponsorships .patrocinio[data-sponsorship].active,
  .sponsorships .patrocinio[data-sponsorship].leaving {
    animation: none;
  }
}

@media (min-width: 1200px) {
  .sponsorships .nav .nav-button {
    display: none;
  }
}

@media (max-width: 1200px) {
  .sponsorships .nav .container ul.nav-list {
    margin-top: 0px;
    margin-bottom: 0px;
    padding: 0 20px;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    max-height: 0;
    overflow: hidden;
    transition: max-height 300ms ease-in-out, margin-top 300ms ease-in-out;
  }

  .sponsorships .nav .container ul.nav-list.active {
    max-height: 1000px;
    margin-top: 20px;
  }
}

.sponsorships .patrocinio.section .container {
  padding-top: 0;
  padding-bottom: 0;
}

@media (max-width: 768px) {
  .sponsorships .patrocinio.section .container {
    padding-left: 0px;
    padding-right: 0px;
  }
}

.sponsorships .patrocinio .section-pre-image {
  display: none;
}

.sponsorships .patrocinio .section-header {
  position: relative;
  min-height: 900px;
  background-size: cover;
  background-position: center center;
  margin-bottom: var(--padding-container-y);
}

.sponsorships .patrocinio .section-header .header-content {
  position: absolute;
  background-color: white;
  left: var(--padding-container-x);
  bottom: 0;
  display: flex;
  flex-direction: column;
  max-width: 600px;
  padding: 30px 40px;
  width: 100%;
}

@media (max-width: 768px) {
  .sponsorships .patrocinio .section-header .header-content {
    left: 0;
    max-width: unset;
  }

  .sponsorships .patrocinio .section-pre-image {
    display: block;
    aspect-ratio: 3 / 4;
    background-size: cover;
    background-position: center center;
  }

  .sponsorships .patrocinio .section-header {
    min-height: unset;
  }

  .sponsorships .patrocinio .section-header .header-content {
    position: relative;
  }
}

.sponsorships .patrocinio .section-header .header-content .section-logo {
  max-width: 160px;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.sponsorships .patrocinio .section-header .header-content .section-title {
  text-align: left;
  font-size: 36px;
}

.sponsorships .patrocinio .section-header .header-content .section-text {
  text-align: justify;
  font-size: 18px;
}

@media (max-width: 768px) {
  .sponsorships .patrocinio .section-header .header-content .section-title {
    font-size: 24px;
  }

  .sponsorships .patrocinio .section-header .header-content .section-text {
    font-size: 16px;
  }
}

.section-masonry {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-bottom: var(--padding-container-y);
}

.masonry-row {
  display: grid;
  grid-template-columns: 3fr 4fr;
  gap: 40px;
  height: 600px;
}

.masonry-row.reverse {
  grid-template-columns: 4fr 3fr;
}

.masonry-row>* {
  min-width: 0;
}

.masonry-item {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

@media (max-width: 768px) {

  .masonry-row,
  .masonry-row.reverse {
    grid-template-columns: 1fr;
    height: auto;
  }

  .masonry-item {
    aspect-ratio: 4 / 3;
  }
}

.sponsorships .patrocinio .section-post-image {
  position: relative;
  min-height: 900px;
  background-size: cover;
  background-position: center center;
}

.sponsorships .patrocinio .section-video {
  width: 100%;
  height: auto;
  object-fit: cover;
}

@media (max-width: 768px) {
  .sponsorships .patrocinio .section-video {
    aspect-ratio: 3 / 4;
  }
}

.sponsorships .patrocinio .section-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* HOME PARTNERSHIP */
.partnership {
  background-size: cover;
  background-position: center center;
}

.partnership.section .container {
  aspect-ratio: 16 / 9;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.partnership.section .container .section-header {
  padding: 30px 40px;
  max-width: 1200px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  backdrop-filter: blur(5px);
  border-radius: 20px;
}

.partnership.section .container .section-header .section-title {
  color: white;
  text-align: left;
  font-family: var(--font-tertiary);
  font-style: italic;
  font-size: 36px;
  margin-bottom: 0px;
}

.partnership.section .container .section-header .section-text {
  display: grid;
  grid-template-columns: 1fr 40px;
  align-items: flex-end;
  color: white;
  max-width: 100%;
  text-align: left;
  gap: 10px;
}

.partnership.section .container .section-header .section-text img {
  width: 40px;
  aspect-ratio: 1 / 1;
  transition: transform 300ms ease-in-out;
}
.partnership.section .container .section-header .section-text img:hover {
  transform: rotate(90deg);
}

@media (max-width: 1200px) {
  .partnership.section .container .section-header .section-title {
    font-size: 28px;
    margin-bottom: 6px;
  }
}

@media (max-width: 768px) {
  .partnership.section .container {
    aspect-ratio: 3 / 4;
  }

  .partnership.section .container .section-header .section-title {
    font-size: 20px;
  }

  .partnership.section .container .section-header .section-text {
    grid-template-columns: 1fr;
    gap: 5px;
  }
}

/* HOME DECO */
.deco {
  aspect-ratio: 16 / 9;
}

.deco .video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* HOME HOSPITALITY */
.home .hospitality .section-header {
  align-items: flex-start;
  justify-content: center;
}

.home .hospitality.section .container .section-image {
  background-position: center top;
}

@media (max-width: 992px) {
  .home .hospitality.section .container .section-image {
    aspect-ratio: 3 / 4;
  }
}

/* DECO 2 */
.deco-2 {
  background-size: cover;
  background-position: center center;
}

.deco-2 .container {
  aspect-ratio: 16 / 9;
}

@media (max-width: 768px) {
  .deco-2 .container {
    aspect-ratio: 3 / 4;
  }
}

/* OLD PROJECT CSS */
.project .project-header .header-info {
  text-align: left;
  align-items: flex-start;
}

@media (min-width: 1200px) {
  .project .project-header .header-info {
    max-width: 1650px;
    margin-left: 250px;
  }
}

.project .project-header .title .pt1 {
  position: relative;
  text-transform: uppercase;
  font-size: 50px;
  max-width: 600px;
}

@media (max-width: 992px) {
  .project .project-header .title .pt1 {
    font-size: 30px;
  }
}

.project .project-header .title .pt1::after {
  position: absolute;
  content: "";
  width: 150px;
  height: 1px;
  background-color: white;
  left: 0;
  bottom: -10px;
}

.project .project-header .subtitle {
  font-family: var(--font-primary-light);
  font-size: 20px;
  margin-bottom: 0;
  max-width: 600px;
}

/* PROJECT INTRO */
.project .intro .intro-grid {
  display: grid;
  gap: 80px;
}

.project .intro .intro-grid .intro-item {
  padding: 60px;
  background-image:
    url("./../images/svg/experiencia-bg-tl.svg"),
    url("./../images/svg/experiencia-bg-br.svg");
  background-repeat: no-repeat, no-repeat;
  background-position:
    top left,
    bottom right;
}

@media (max-width: 1200px) {
  .project .intro .intro-grid {
    grid-template-columns: 1fr !important;
    gap: 40px;
  }

  .project .intro .intro-grid .intro-item {
    padding: 30px;
    background-size: 50px, 50px;
  }
}

.project .intro .intro-grid .intro-item .item-title {
  font-size: 18px;
  font-family: var(--font-primary-bold);
}

.project .intro .intro-grid .intro-item .item-text {
  font-size: 18px;
  margin-bottom: 0;
}

/* PROJECT DESCRIPTION */
.project .description .description-grid {
  display: grid;
  gap: 80px;
}

@media (max-width: 1200px) {
  .project .description .description-grid {
    grid-template-columns: 1fr !important;
    gap: 40px;
  }
}

.project .description .description-grid .item-text {
  position: relative;
  padding-top: 40px;
  margin-bottom: 0;
  font-size: 18px;
}

.project .description .description-grid .item-text::before {
  content: "";
  position: absolute;
  width: 90px;
  height: 10px;
  background-image: url("./../images/svg/block-title-bullet.svg");
  background-size: contain;
  background-repeat: no-repeat;
  left: 0;
  top: 0;
}

/* PROJECT GALLERY GRID */
.project .grid .container {
  display: block;
  column-count: 2;
  column-gap: 1rem;
}

.project .grid .container img {
  border-radius: 20px;
  break-inside: avoid;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .project .grid .container {
    column-count: 1;
  }

  .project .grid .container img {
    border-radius: 10px;
  }
}

/* EXPERIENCIAS */
.experiences .experiencias .section-header {
  padding-inline: 60px;
  text-align: left;
  align-items: flex-start;
}

.experiences .intro.section .section-header .section-title {
  margin-bottom: 60px;
}
.experiences .section-header.title-has-two-parts span:first-of-type {
  transform: unset;
}

@media (max-width: 1200px) {
  .experiences .intro.section .section-header .section-title {
    margin-bottom: 20px;
  }
}

.experiences .intro.section .section-header .section-text {
  max-width: 1200px;
}

.experiences .experiencias .section-experiencias .section-header {
  text-align: center;
  align-items: center;
  padding: 0;
}

.experiences .experiencias .section-header .section-text {
  max-width: 100%;
}

.experiences .experiencias .section-experiencias {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 100px 100px;
}

.experiences .experiencias .section-experiencias .experiencias-col {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.experiences .experiencias .section-experiencias .experiencias-col .experiencias-item {
  padding: 60px;
  background-image:
    url("./../images/svg/experiencia-bg-tl.svg"),
    url("./../images/svg/experiencia-bg-br.svg");
  background-repeat: no-repeat, no-repeat;
  background-position:
    top left,
    bottom right;
}

@media (max-width: 1360px) {
  .experiences .experiencias .section-experiencias .experiencias-col .experiencias-item {
    padding: 30px;
  }
}

.experiences .experiencias .section-experiencias .experiencias-col .experiencias-item .item-title {
  font-family: var(--font-primary-regular);
  margin-bottom: 40px;
}

.experiences .experiencias .section-experiencias .experiencias-col .experiencias-item .item-text {
  font-size: 18px;
  margin-bottom: 40px;
}

.experiences .experiencias-item .container-imgs {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.experiences .experiencias-item .container-imgs .imgs-item {
  aspect-ratio: 12 / 9;
  background-size: cover;
  background-position: center center;
  width: 100%;
}

.sponsorships .patrocinios-item .container-imgs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* EXPERIENCES GALLERY CAROUSEL */
.experiences .experiences-carousel {
  margin-bottom: var(--padding-container-y);
  padding-left: var(--padding-container-x);
}

.experiences .experiences-carousel .owl-carousel .owl-item,
.experiences .experiences-carousel .owl-carousel .owl-item img {
  aspect-ratio: 888 / 1342;
}

@media (max-width: 1200px) {
  .experiences .experiencias .section-header {
    padding-inline: 40px;
  }

  .experiences .experiencias .section-experiencias {
    gap: 50px;
  }

  .experiences .experiencias .section-experiencias .experiencias-col {
    gap: 50px;
  }

  .experiences .experiencias .section-experiencias .experiencias-col .experiencias-item {
    padding: 40px;
  }

  .experiences .experiencias .section-experiencias .experiencias-col .experiencias-item .item-text {
    font-size: 16px;
  }
}

@media (max-width: 992px) {
  .experiences .experiencias .section-experiencias {
    grid-template-columns: repeat(1, 1fr);
  }

  .experiences .experiencias-item .container-imgs {
    grid-template-columns: repeat(1, 1fr);
  }
}

/* EXPERIENCES GALLERY */
.experiences .gallery .container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.experiences .gallery .container .gallery-item {
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

@media (max-width: 992px) {
  .experiences .gallery .container {
    gap: 20px;
  }

  .experiences .gallery .container .gallery-item {
    aspect-ratio: 1 / 1;
  }
}

/* EXPREICENCES FOUNDATION */
.experiences .foundation .section-header {
  position: relative;
  align-items: flex-start;
}

.experiences .foundation .section-header::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 70%;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background-color: white;
}

.experiences .foundation .section-header .section-title {
  margin-bottom: 40px;
}

.experiences .foundation .section-header .section-title span {
  text-transform: unset;
}

.experiences .foundation .section-header .section-title span:first-of-type {
  transform: translateX(-10%);
}

@media (max-width: 1600px) {
  .experiences .foundation .section-header .section-title span {
    transform: translateX(0);
  }
}

.experiences .foundation .section-foundation {
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 30px;
  font-size: 50px;
}

.experiences .foundation .section-foundation .experiencia-data {
  position: relative;
}

.experiences .foundation .section-foundation .experiencia-data::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 10px;
  background-image: url("./../images/svg/foundation-data-pin.svg");
  background-repeat: no-repeat;
  background-size: contain;
  left: -20px;
  top: -10px;
}

@media (max-width: 1360px) {
  .experiences .foundation .section-foundation {
    font-size: 36px;
  }
}

@media (max-width: 992px) {
  .experiences .foundation .section-header {
    padding-bottom: 20px;
  }

  .experiences .foundation .section-foundation {
    padding-top: 20px;
  }

  .experiences .foundation .section-foundation {
    font-size: 28px;
  }
}

/* NEW EXPERIENCES */
.new-experiences .container {
  padding-top: 0;
  padding-left: 0;
  padding-right: 0;
}

.new-experiences-item .item-layer-intro,
.new-experiences-item .item-layer-post {
  aspect-ratio: 16 / 9;
  background-position: center center;
  background-size: cover;
}

.new-experiences-item .item-layer-article {
  padding-top: var(--padding-container-y);
  padding-bottom: var(--padding-container-y);
}

@media (max-width: 768px) {
  .new-experiences-item .item-layer {
    padding-bottom: var(--padding-container-y);
  }

  .new-experiences-item .item-layer-intro,
  .new-experiences-item .item-layer-post {
    aspect-ratio: 3 / 4;
  }
}


.new-experiences-item .item-article-content .section-header {
  padding: var(--padding-container-y) var(--padding-container-x) 0;
}

.new-experiences-item .item-article-content {
  display: grid;
  grid-template-columns: 3fr 4fr;
  gap: 60px;
}

.item-article-content > *:first-child {
  flex: 3;
}

.item-article-content > *:last-child {
  flex: 4;
}

.new-experiences-item:nth-child(even) .item-article-content {
  display: flex;
  flex-direction: row-reverse;
}

.new-experiences-item .item-article-content .section-header {
  text-align: left;
  align-items: flex-start;
  justify-content: center;
}

.new-experiences-item .item-article-content .section-header h2 {
  text-align: left;
}

.new-experiences-item .item-article-content .section-header h2 {
  position: relative;
}

.new-experiences-item .item-article-content .section-header h2::before {
  content: '';
  position: relative;
  display: block;
  width: 90px;
  height: 10px;
  background-image: url("./../images/svg/block-title-bullet.svg");
  background-size: contain;
  background-repeat: no-repeat;
  margin-bottom: 50px;
}

.new-experiences-item .item-article-content .section-header .section-text {
  max-width: 100%;
  text-align: justify;
}

.experiences .project-projects-carousel,
.experiences .project-projects-carousel .container {
  padding-top: 0;
}

.new-experiences-item .item-article-content .section-image {
  background-size: cover;
  background-position: center center;
}

@media (max-width: 992px) {
  .new-experiences-item .item-article-content,
  .new-experiences-item:nth-child(even) .item-article-content {
    display: grid;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 992px) {
  .new-experiences-item .item-article-content .section-image {
    aspect-ratio: 3 / 4;
  }
}

/* SPONSORSHIPS PAGE */
.sponsorships .patrocinios .section-header {
  padding-inline: 60px;
  margin-bottom: 80px;
}

.sponsorships .patrocinios .section-patrocinios {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 100px;
  padding: 60px;
  background-image:
    url("./../images/svg/experiencia-bg-tl.svg"),
    url("./../images/svg/experiencia-bg-br.svg");
  background-repeat: no-repeat, no-repeat;
  background-position:
    top left,
    bottom right;
}

.sponsorships .patrocinios .section-patrocinios .patrocinios-row {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 100px;
}

.sponsorships .patrocinios .section-patrocinios .patrocinios-row .patrocinios-item .item-title {
  font-family: var(--font-primary-regular);
  margin-bottom: 40px;
}

.sponsorships .patrocinios .section-patrocinios .patrocinios-row .patrocinios-item .item-text {
  margin-bottom: 40px;
}

.sponsorships .patrocinios .section-patrocinios .patrocinios-row .patrocinios-item .item-image {
  background-color: lightgrey;
  width: 100%;
  /* aspect-ratio: 4 / 3; */
  margin: auto;
}

.patrocinios-item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

@media (max-width: 1200px) {
  .sponsorships .patrocinios .section-header {
    padding-inline: 40px;
  }

  .sponsorships .patrocinios .section-patrocinios {
    gap: 40px;
    padding: 40px;
  }

  .sponsorships .patrocinios .section-patrocinios .patrocinios-row {
    grid-template-rows: unset;
    gap: 60px;
  }
}

@media (max-width: 768px) {
  .sponsorships .patrocinios .section-patrocinios .patrocinios-row {
    grid-template-columns: repeat(1, 1fr);
    gap: 40px;
  }
}

/* HOSPITALITY PAGE*/
.hospitality.page .concepto .section-header .section-title {
  position: relative;
}
.hospitality.page .section-header.title-has-two-parts .section-title span:first-of-type {
  transform: translateX(0%);
}

.hospitality.page .concepto .section-header .section-title::before {
  content: '';
  position: relative;
  display: block;
  width: 90px;
  height: 10px;
  background-image: url("./../images/svg/block-title-bullet.svg");
  background-size: contain;
  background-repeat: no-repeat;
  margin-bottom: 50px;
}

/* HOSPITALITY GALLERY CAROUSEL */
.hospitality .hospitality-carousel {
  margin-bottom: var(--padding-container-y);
  padding-left: var(--padding-container-x);
}

.hospitality .hospitality-carousel .owl-carousel .owl-item,
.hospitality .hospitality-carousel .owl-carousel .owl-item img {
  aspect-ratio: 888 / 1342;
}

@media (max-width: 992px) {
  .hospitality .hospitality-carousel {
    padding-top: var(--padding-container-y);
  }
}

.hospitality.page .deco {
  aspect-ratio: 16 / 9;
  background-size: cover;
  background-position: center center;
}

@media (max-width: 768px) {
  .hospitality.page .deco {
    aspect-ratio: 3 / 4;
  }
}

.hospitality.page .compromiso .section-header .section-title {
  position: relative;
}

.hospitality.page .compromiso .section-header .section-title::before {
  content: '';
  position: relative;
  display: block;
  width: 90px;
  height: 10px;
  background-image: url("./../images/svg/block-title-bullet.svg");
  background-size: contain;
  background-repeat: no-repeat;
  margin-bottom: 50px;
}

@media (max-width: 768px) {
  .hospitality.page .compromiso .section-image {
    aspect-ratio: 3 / 4;
  }
}

/* CONTACT */
.contact .section-mapa {
  aspect-ratio: 16 / 9;
}

@media (max-width: 768px) {
  .contact .section-mapa {
    aspect-ratio: 3 / 4;
  }
}

.contact .whatsapp {
  position: fixed;
  bottom: 40px;
  right: 0px;
  width: 120px;
  height: 80px;
  background-color: var(--color-primary);
  border-radius: 20px 0 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  background-image: url("./../images/icons/ico-whatsapp.svg");
  background-position: left 20px center;
  background-repeat: no-repeat;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

@media (max-width: 1200px) {
  .contact .whatsapp {
    display: none;
  }
}

@media (max-width: 992px) {
  .contact .mapa.section .container {
    padding-bottom: 0px;
  }
}

.contact .data .container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 80px;
  text-align: center;
  padding-top: 0;
}

.contact .data .container * {
  font-size: 18px;
}

@media (max-width: 768px) {
  .contact .data .container {
    padding-top: 20px;
    grid-template-columns: repeat(1, 1fr);
    gap: 40px;
  }
}

/* NOTCIA AMPLIADA */
.noticia-ampliada .section-noticia {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.noticia-ampliada .section-noticia .noticia-info {
  background-image: url("./../images/svg/block-title-bullet.svg");
  background-repeat: no-repeat;
  background-position: top left;
  padding-top: 40px;
}

.noticia-ampliada .section-noticia .noticia-image {
  min-height: 400px;
  background-size: cover;
  background-position: center center;
  background-color: lightgray;
}

.noticia-ampliada .proyectos {
  position: relative;
  background-color: transparent;
  aspect-ratio: 3 / 1;
  margin-bottom: var(--padding-container-y);
}

.noticia-ampliada .proyectos .container {
  background-size: 70px, cover;
  background-position:
    bottom 40px right 40px,
    center center;
  background-repeat: no-repeat, no-repeat;
}

.noticia-ampliada .proyectos .container .section-header {
  align-items: flex-start;
}

.noticia-ampliada .proyectos .container .section-header .section-title {
  text-align: left;
}

.noticia-ampliada .proyectos .container .section-header .section-title span:first-of-type {
  transform: translateX(0px);
}

@media (max-width: 768px) {
  .noticia-ampliada .section-header {
    align-items: flex-start;
  }

  .noticia-ampliada .section-header .section-title {
    text-align: left;
    margin-bottom: 0;
  }

  .noticia-ampliada .section-header .section-title span {
    transform: unset;
  }

  .noticia-ampliada .section-noticia {
    display: flex;
    flex-direction: column-reverse;
    gap: 60px;
  }

  .noticia-ampliada .section-noticia .noticia-image {
    aspect-ratio: 4 / 3;
    min-height: 0;
  }

  .noticia-ampliada .proyectos {
    aspect-ratio: 1 / 1;
  }

  .noticia-ampliada .proyectos .container {
    background-size: 40px, cover;
  }
}

/* TEAM */
.team .section-team:has(+ .section-team) .container {
  padding-bottom: 0;
}

.team .section-team .section-header {
  text-align: left;
  align-items: flex-start;
}

.team .section-team .section-header .section-title {
  background-image: url("./../images/svg/block-title-bullet.svg");
  background-position: top left;
  padding-top: 30px;
  background-size: 100px;
  background-repeat: no-repeat;
}

.team .section-team .section-header .section-title span {
  text-transform: unset;
  font-size: 58px;
}

.team .section-team .section-header .section-text {
  max-width: unset;
}

.team .section-team .team-orla {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.team .section-team .team-orla .orla-item {
  aspect-ratio: 4 / 5;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-color: lightgray;
}

@media (max-width: 992px) {
  .team .section-team .team-orla {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .team .section-team .section-header .section-title span {
    font-size: 28px;
  }
}

@media (max-width: 768px) {
  .team .section-team .team-orla {
    gap: 20px 10px;
  }

  .team .section-team .section-header .section-title span {
    font-size: 28px;
  }
}

/* CAROUSEL */
.carousel.section {
  padding-bottom: 0;
}

.carousel.section .container {
  padding: 0;
}

/* FOOTER */
.footer {
  background-color: var(--color-secondary);
}

.footer .container,
.footer .container>div {
  padding-top: 20px;
  padding-bottom: 20px;
}

.footer .footer-top img {
  max-width: 80px;
  margin-bottom: 20px;
}

.footer .footer-top h2 {
  font-family: var(--font-secondary-semibold);
}

.footer .footer-middle {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 80px;
}

.footer .footer-middle h3 {
  font-family: var(--font-primary-bold);
  color: white;
  margin-bottom: 10px;
}

.footer .footer-middle ul {
  padding-left: 0;
  list-style: none;
}

.footer .footer-middle ul li {
  margin-bottom: 5px;
}

.footer .footer-middle ul li a {
  font-family: var(--font-primary-light);
}

.footer .footer-bottom {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 80px;
}

.footer .footer-bottom .bottom-policies {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  white-space: nowrap;
}

.footer .footer-bottom .bottom-social {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}

.footer .footer-bottom .bottom-social a img {
  width: 100%;
  max-width: 32px;
}

.footer .footer-button-link {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.footer,
.footer * {
  font-size: 16px;
  color: #cccccc;
}

@media (max-width: 768px) {
  .footer .container {
    max-width: 100%;
    padding-left: var(--padding-container-x);
    padding-right: var(--padding-container-x);
  }

  .footer .footer-middle {
    grid-template-columns: repeat(1, 1fr);
    gap: 40px;
  }

  .footer .footer-bottom {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
    text-align: center;
  }

  .footer .footer-bottom .bottom-policies {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
  }

  .footer .footer-bottom .bottom-social {
    justify-content: center;
  }
}

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

/* MODIFICADORES TIPO FICHA */
@media (min-width: 1200px) {
  .tipo-ficha {
    min-height: 100vh;
  }

  .tipo-ficha .container {
    justify-content: center;
  }

  /* HOME PRENSA */
  .home .prensa.tipo-ficha .section-prensa,
  .home .prensa.tipo-ficha .section-prensa .prensa-item {
    height: 100%;
  }
}

/* ABOUT TRAYECTORIA */
.about .trayectoria.tipo-ficha .image-wrapper {
  background-position: center center;
  background-size: cover;
  width: 100%;
  height: 100%;
}

@media (min-width: 1200px) {
  .about .trayectoria.tipo-ficha .section-header {
    padding-left: 0;
  }

  .about .trayectoria.tipo-ficha .section-header .section-text {
    max-width: 100%;
  }
}

@media (max-width: 992px) {
  .about .trayectoria.tipo-ficha .image-wrapper {
    aspect-ratio: 3 / 4;
  }
}

/* ABOUT FILOSOFÍA */
.about .filosofia {
  min-height: 100vh;
}

@media (max-width: 1500px) {
  .about .filosofia .section-filosofia {
    gap: 0px;
  }
}

/* ABOUT RECORRIDO */
@media (max-width: 768px) {
  .about .recorrido {
    background-color: #d4d4d4;
  }
}

/* ABOUT EQUIPO */
@media (min-width: 1200px) {
  .about .equipo .section-equipo {
    grid-template-columns: repeat(2, 1fr);
  }

  .about .equipo .section-equipo .equipo-item .item-info h3 {
    font-size: 22px;
  }
}

@media (min-width: 1200px) and (max-width: 1500px) {
  .about .equipo .section-equipo .equipo-item .item-info h3 {
    font-size: 18px;
  }
}

/* ABOUT PRENSA */
.about .prensa.tipo-ficha .section-prensa,
.about .prensa.tipo-ficha .section-prensa .prensa-item {
  height: 100%;
}

/* PROJECTS */
.projects .proyectos .section-proyectos .proyectos-showcase .showcase .showcase-item .item-info .item-info-text .info-header .info-title {
  font-size: 32px;
}

@media (min-width: 768px) and (max-width: 1500px) {
  .projects .proyectos .section-proyectos .proyectos-showcase .showcase .showcase-item .item-info .item-info-text .info-header .info-title {
    font-size: 30px;
  }
}

/* EXPERIENCES */
@media (min-width: 1200px) {

  /* EXPERIENCES PRENSA */
  .experiences .prensa.tipo-ficha .section-prensa,
  .experiences .prensa.tipo-ficha .section-prensa .prensa-item {
    height: 100%;
  }
}

@media (min-width: 1200px) {
  .experiences .experiencias .section-experiencias .experiencias-col .experiencias-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
  }
}