/*  
	Theme Name: Ma Ná 
	Version: 1.0 2024
	Author: hctr
*/

/*************************************************************************************/
/***************************************************************************** RESET */
/*************************************************************************************/

* {
  box-sizing: border-box;
  position: relative;
  margin: 0;
  padding: 0;
  -webkit-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -ms-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

body {
  min-height: 100dvh;
  background-color: rgb(255, 255, 255);
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5 {
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

figure {
  margin: 0;
}

/*************************************************************************************/
/***************************************************************************** FONTS */
/*************************************************************************************/

@font-face {
  font-family: "Zodiak";
  src: url("fonts/Zodiak-Light.eot");
  src: url("fonts/Zodiak-Light.eot?#iefix") format("embedded-opentype"),
    url("fonts/Zodiak-Light.woff2") format("woff2"),
    url("fonts/Zodiak-Light.woff") format("woff"),
    url("fonts/Zodiak-Light.ttf") format("truetype"),
    url("fonts/Zodiak-Light.svg#Zodiak-Light") format("svg");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Zodiak";
  src: url("fonts/Zodiak-LightItalic.eot");
  src: url("fonts/Zodiak-LightItalic.eot?#iefix") format("embedded-opentype"),
    url("fonts/Zodiak-LightItalic.woff2") format("woff2"),
    url("fonts/Zodiak-LightItalic.woff") format("woff"),
    url("fonts/Zodiak-LightItalic.ttf") format("truetype"),
    url("fonts/Zodiak-LightItalic.svg#Zodiak-LightItalic") format("svg");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Work Sans";
  src: url("fonts/WorkSans-Regular.eot");
  src: url("fonts/WorkSans-Regular.eot?#iefix") format("embedded-opentype"),
    url("fonts/WorkSans-Regular.woff2") format("woff2"),
    url("fonts/WorkSans-Regular.woff") format("woff"),
    url("fonts/WorkSans-Regular.ttf") format("truetype"),
    url("fonts/WorkSans-Regular.svg#WorkSans-Regular") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/******************************************************************************/
/******************************************************************** GENERAL */
/******************************************************************************/

html {
  font-size: 10px;
}

@media only screen and (min-width: 2559px) and (max-width: 3000px) {
  html {
    font-size: 13.2px;
  }
}
@media only screen and (min-width: 0) and (max-width: 1919px) {
  html {
    font-size: 7.5px;
  }
}
@media only screen and (min-width: 0) and (max-width: 1279px) {
  html {
    font-size: 7.25px;
  }
}
@media only screen and (min-width: 0) and (max-width: 959px) {
  html {
    font-size: 6.5px;
  }
}
@media only screen and (min-width: 0) and (max-width: 799px) {
  html {
    font-size: 6px;
  }
}
@media only screen and (min-width: 0) and (max-width: 639px) {
  html {
    font-size: 5.5px;
  }
}
@media only screen and (min-width: 0) and (max-width: 479px) {
  html {
    font-size: 5px;
  }
}

body {
  width: 100%;
  overflow-x: hidden;
}

.body--overflow {
  overflow: hidden;
}

* {
  font-family: "Zodiak";
  -webkit-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -ms-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

:root {
  --color-blanco: white;
  --color-black: black;
  --color-beige: rgb(231, 230, 220);
  --color-marron: rgb(35, 31, 32);
  --color-gris: rgb(141, 139, 140);
  --font-zodiak: "Zodiak";
  --font-work: "Work Sans";
}

/******************************************************************************/
/******************************************************************** BLOQUES */
/******************************************************************************/

/* HEADER */

.header {
  position: absolute;
  z-index: 11;
  top: 0;
  left: 0;
  width: 100%;
}

.header--scroll {
  position: fixed;
  padding-bottom: 5rem;
  background-color: var(--color-beige);
}

.header__container {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 4.5rem 5.5rem 0 5.5rem;
}

.header__logo {
  order: 2;
  width: 15rem;
  height: 3.8rem;
  background: url("img/sprite.svg") 0 0;
  background-size: 90rem 64rem;
  background-repeat: no-repeat;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  transition: none;
}

.header__logo--negro {
  background: url("img/sprite.svg") -17.6rem 0;
  background-size: 90rem 64rem;
  background-repeat: no-repeat;
}

.header--scroll .header__logo {
  background: url("img/sprite.svg") 0 0;
  background-size: 90rem 64rem;
  background-repeat: no-repeat;
}

.header__logo > a {
  display: block;
  width: 100%;
  height: 100%;
}

.header__ig > a {
  order: 1;
  font-family: var(--font-work);
  font-size: 2rem;
  text-transform: uppercase;
  color: var(--color-blanco);
  text-decoration: none;
  transition: none;
}

.header__ig > a:hover {
  color: var(--color-blanco);
  text-decoration: none;
}

.header__ig--negro > a,
.header__ig--negro > a:hover {
  color: var(--color-black);
}

.header--scroll .header__ig > a,
.header--scroll .header__ig > a:hover {
  color: var(--color-blanco);
}

.header__button {
  order: 3;
  width: 1.2rem;
  height: 1.6rem;
  background: url("img/sprite.svg") 0 -34.5rem;
  background-size: 90rem 64rem;
  background-repeat: no-repeat;
  background-color: transparent;
  border: 0;
  cursor: pointer;
  transition: none;
}

.header__button--negro {
  background: url("img/sprite.svg") -2.8rem -34.5rem;
  background-size: 90rem 64rem;
  background-repeat: no-repeat;
}

.header--scroll .header__button {
  background: url("img/sprite.svg") 0 -34.5rem;
  background-size: 90rem 64rem;
  background-repeat: no-repeat;
}

.header__search {
  position: absolute;
  top: 7.5rem;
  right: 8rem;
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  align-items: center;
  gap: 1rem;
}

.header__search--activo {
  top: 7.2rem;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 0.8rem;
}

.header__search label {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  width: 1.6rem;
  height: 1.6rem;
  background: url("./img/sprite.svg") -1.8rem -44.7rem;
  background-size: 90rem 64rem;
  background-repeat: no-repeat;
  margin: 0;
  cursor: pointer;
  transition: none;
}

.header__search label.negro {
  background: url("./img/sprite.svg") 0 -44.7rem;
  background-size: 90rem 64rem;
  background-repeat: no-repeat;
}

.header__search--activo label,
.header__search--activo label.negro {
  top: 0.3rem;
  right: 0.5rem;
  background: url("./img/sprite.svg") -2.5rem -36.3rem;
  background-size: 90rem 64rem;
  background-repeat: no-repeat;
  transform: scale(75%);
}

.header__search > div {
  z-index: 0;
  width: 0;
  height: 2rem;
  overflow: hidden;
}

.header__search--activo > div {
  width: 30rem;
}

.header__search--activo > div {
  height: auto;
  overflow: visible;
}

.header__search input {
  appearance: none;
  width: 100%;
  border: 0;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.2rem 1rem;
  border-radius: 2rem;
  outline: none !important;
  opacity: 0;
  font-size: clamp(12px, 5vw, 1.4rem);
  font-family: var(--font-work);
  text-transform: uppercase;
  color: var(--color-blanco);
}

.header__search--activo input {
  opacity: 1;
}

.header__search input::placeholder {
  color: var(--color-blanco);
}
.header__search input::-webkit-input-placeholder {
  color: var(--color-blanco);
}
.header__search input::-moz-placeholder {
  color: var(--color-blanco);
}
.header__search input:-ms-input-placeholder {
  color: var(--color-blanco);
}
.header__search input::-ms-input-placeholder {
  color: var(--color-blanco);
}

.search-field::-webkit-search-cancel-button {
  -webkit-appearance: none;
  appearance: none;
}

.search-field::-ms-clear {
  display: none;
  width: 0;
  height: 0;
}

.search-field::-webkit-search-decoration,
.search-field::-webkit-search-results-button,
.search-field::-webkit-search-results-decoration {
  -webkit-appearance: none;
  appearance: none;
}

.header__search input:active,
.header__search input:hover {
  outline: none;
}

.header__search #search-results {
  overflow-y: auto;
  width: 100%;
  font-family: var(--font-work);
  font-size: clamp(12px, 5vw, 1.4rem);
  text-transform: uppercase;
  color: var(--color-blanco);
}

.header__search--negro #search-results {
  color: var(--color-black);
}

.header__search #search-results ul {
  list-style-type: none;
  padding: 0;
}

.header__search #search-results li {
  padding: 0.5rem 0.5rem 0.5rem 1rem;
}

.header__search #search-results li:first-child {
  padding-top: 1rem;
}

.header__search #search-results a {
  text-decoration: none;
  color: var(--color-blanco);
  font-family: var(--font-work);
  font-size: clamp(12px, 5vw, 1.4rem);
  text-transform: uppercase;
}

/* Negro */

.header__search--negro {
  background-color: rgba(0, 0, 0, 0.1) !important;
}
.header__search--negro.header__search--activo label.negro {
  background: url("./img/sprite.svg") 0rem -36.3rem;
  background-size: 90rem 64rem;
  background-repeat: no-repeat;
  transform: scale(75%);
}
.header__search--negro input {
  color: var(--color-black);
}
.header__search--negro input::placeholder {
  color: var(--color-black);
}
.header__search--negro input::-webkit-input-placeholder {
  color: var(--color-black);
}
.header__search--negro input::-moz-placeholder {
  color: var(--color-black);
}
.header__search--negro input:-ms-input-placeholder {
  color: var(--color-black);
}
.header__search--negro input::-ms-input-placeholder {
  color: var(--color-black);
}
.header__search--negro #search-results a {
  color: var(--color-black);
}

@media only screen and (min-width: 0) and (max-width: 799px) {
  .header__container {
    align-items: flex-start;
  }
  .header__logo {
    order: 1;
    width: 31rem;
    height: 7.9rem;
    background: url(img/sprite.svg) 0 0;
    background-size: 182rem 130rem;
    background-repeat: no-repeat;
  }
  .header__logo--negro {
    background: url(img/sprite.svg) -35rem 0;
    background-size: 182rem 130rem;
    background-repeat: no-repeat;
  }
  .header--scroll .header__logo {
    background: url(img/sprite.svg) 0 0;
    background-size: 182rem 130rem;
    background-repeat: no-repeat;
  }
  .header__ig {
    order: 2;
    margin-left: auto;
    line-height: 2.5rem;
  }
  .header__ig > a {
    font-size: 3.6rem;
  }
  .header__button {
    order: 3;
    width: 3.7rem;
    height: 2.7rem;
    margin-left: 3.8rem;
    background: url(img/sprite.svg) 0 -70.9rem;
    background-size: 182rem 130rem;
    background-repeat: no-repeat;
  }
  .header__button--negro {
    background: url(img/sprite.svg) -4.6rem -70.9rem;
    background-size: 182rem 130rem;
    background-repeat: no-repeat;
  }
  .header--scroll .header__button {
    background: url(img/sprite.svg) 0 -70.9rem;
    background-size: 182rem 130rem;
    background-repeat: no-repeat;
  }
  .header__search {
    top: 4.5rem;
    right: 20rem;
  }
  .header__search--activo > div {
    width: 40rem;
  }
  .header__search label {
    width: 3.5rem;
    height: 3rem;
    background: url(./img/sprite.svg) -7rem -84.9rem;
    background-size: 180rem 122rem;
    background-repeat: no-repeat;
  }
  .header__search label.negro {
    background: url("./img/sprite.svg") 0 -90.7rem;
    background-size: 182rem 130rem;
    background-repeat: no-repeat;
  }
  .header__search--activo label,
  .header__search--activo label.negro {
    top: 0.5rem;
    right: 0.5rem;
    background: url(./img/sprite.svg) -4.7rem -74.3rem;
    background-size: 182rem 130rem;
    background-repeat: no-repeat;
  }
  .header__search--negro.header__search--activo label.negro {
    background: url(./img/sprite.svg) 0 -74.3rem !important;
    background-size: 182rem 130rem !important;
    background-repeat: no-repeat !important;
  }
}
@media only screen and (min-width: 0) and (max-width: 639px) {
  .header__search {
    top: 8.5rem;
    right: 6rem;
  }
}
@media only screen and (min-width: 0) and (max-width: 479px) {
  .header__container {
    padding: 4.5rem 5.5rem 0 5.5rem;
  }
  .header__search--activo > div {
    width: 35rem;
  }
}
@media only screen and (min-width: 0) and (max-width: 389px) {
  .header__container {
    padding: 4.5rem 2.5rem 0 2.5rem;
  }
  .header__search {
    right: 3rem;
  }
}

/* NAV */

.nav {
  position: fixed;
  z-index: 11;
  top: 0;
  right: -60rem;
  width: 60rem;
  height: 100vh;
  background-color: var(--color-beige);
  padding: 20rem 5.8rem 5rem 5.8rem !important;
  display: flex;
  flex-direction: column;
  overflow-y: scroll;
}

.nav--opem {
  right: 0;
}

.nav__button {
  position: absolute;
  top: 6.1rem;
  right: 5.8rem;
  width: 1.41rem;
  height: 1.63rem;
  background: url("img/sprite.svg") 0 -36.5rem;
  background-size: 90rem 64rem;
  background-repeat: no-repeat;
  background-color: transparent;
  border: 0;
  cursor: pointer;
}

.nav__list li {
  list-style-type: none;
  margin-bottom: 5px;
}

.nav__list--first {
  margin-bottom: 5.4rem;
}

.nav__list--first li a {
  font-family: var(--font-zodiak);
  font-size: 2.3rem;
  color: var(--color-marron);
  text-decoration: none;
}

.nav__list--second li a {
  font-family: var(--font-zodiak);
  font-size: 2.3rem;
  color: var(--color-marron);
  text-decoration: none;
}

.nav__list--second span {
  display: block;
  margin-bottom: 2rem;
  font-family: var(--font-work);
  font-size: 1.7rem;
  text-transform: uppercase;
  color: var(--color-marron);
  letter-spacing: 1px;
}

.nav__pedir {
  position: absolute;
  bottom: 6.8rem;
  right: 6rem;
}

.nav__pedir > a,
.nav__pedir > a:hover {
  font-family: var(--font-work);
  font-size: 2rem;
  color: var(--color-marron);
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 0.1rem solid black;
}

@media only screen and (min-width: 0) and (max-width: 959px) {
  .nav {
    width: 100vw;
    right: -100%;
    padding: 10rem 5.8rem 5rem 5.8rem;
  }
  .nav--opem {
    right: 0;
  }
}

@media only screen and (min-width: 0) and (max-width: 479px) {
  .nav {
    padding: 9rem 2.8rem 3rem 2.8rem;
  }
  .nav__button {
    top: 6rem;
    right: 2.5rem;
  }
  .nav__list--first {
    margin-bottom: 3.4rem;
  }
  .nav__pedir {
    bottom: 2.5rem;
    right: 2.5rem;
  }
}

/* FOOTER */

.footer {
  width: 100%;
  padding: 11.9rem 9.6rem 8rem 9.6rem;
  border-top: 1px solid var(--color-black);
  background-color: var(--color-blanco);
}

.footer__container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 9.6rem;
}

.footer__logo {
  flex: 1.05;
  width: 85rem;
  aspect-ratio: 11 / 3;
  background: url("img/mana-logo.svg") 0 0;
  background-size: 100%;
  background-repeat: no-repeat;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
}

.footer__list {
  flex: 0.95;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 6rem;
}

.footer__options li {
  display: block;
  margin-bottom: 0.7rem;
}

.footer__options li + li,
.footer__options:last-child li {
  margin-left: 7rem;
}

.footer__options:first-child li:first-child {
  display: flex;
  align-items: center;
}

.footer__options:first-child li:first-child:before {
  content: "";
  display: block;
  width: 1rem;
  height: 1rem;
  border: 1px solid var(--color-black);
  margin-right: 5.9rem;
}

.footer__options li a {
  font-family: var(--font-work);
  font-size: 1.9rem;
  color: var(--color-marron);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
}

.footer__options li:nth-last-child(2) {
  margin-top: 6.8rem;
}

.footer__options--unidades li:nth-last-child(2) {
  margin-top: 0;
}

.footer__item--first {
  display: flex;
  align-items: center;
  margin-bottom: 0.7rem;
}

.footer__item--first:before {
  content: "";
  display: block;
  width: 1rem;
  height: 1rem;
  border: 1px solid var(--color-black);
  margin-right: 5.9rem;
}

.footer__item--first span {
  display: block;
  border-bottom: 1px solid var(--color-black);
  font-family: var(--font-work);
  font-size: 2rem;
  color: var(--color-marron);
  text-transform: uppercase;
  letter-spacing: 0.1rem;
}

@media only screen and (min-width: 0) and (max-width: 959px) {
  .footer__container {
    flex-direction: column;
  }
  .footer__logo {
    width: 100%;
  }
  .footer__list {
    width: 100%;
  }
}

@media only screen and (min-width: 0) and (max-width: 799px) {
  .footer__list {
    gap: 2rem;
  }
  .footer__options li:first-child:before {
    margin-right: 2rem;
  }
  .footer__options:first-child li:first-child:before,
  .footer__item--first:before {
    margin-right: 2rem;
  }
  .footer__options li + li,
  .footer__options:last-child li {
    margin-left: 3rem;
  }
}

@media only screen and (min-width: 0) and (max-width: 639px) {
  .footer__list {
    flex-direction: column;
  }
  .footer__options li:first-child:before {
    display: none;
  }
  .footer__options:first-child li:first-child:before,
  .footer__item--first:before {
    display: none;
  }
  .footer__options {
    width: 100%;
    text-align: center;
  }
  .footer__options li + li,
  .footer__options:last-child li {
    margin-left: 0;
  }
  .footer__options li:first-child {
    display: block;
  }
  .footer__options:first-child li:first-child {
    justify-content: center;
  }
  .footer__item--first {
    justify-content: center;
  }
}

/* DOS COLUMNAS */

.dosColumnas {
  width: 100%;
}

.dosColumnas__container {
  width: 100%;
  height: 100vh;
  min-height: 40rem;
  display: flex;
  justify-content: space-between;
  overflow: hidden;
}

.dosColumnas__columna {
  flex: 1;
  line-height: 0;
  margin: 0;
}

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

.dosColumnas__titulo {
  color: var(--color-black);
  font-family: var(--font-work);
  font-size: 2.8rem;
  font-weight: normal;
  line-height: normal;
  text-transform: uppercase;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4.6rem;
  text-align: center;
}

.dosColumnas__titulo > span {
  font-family: var(--font-work);
  font-size: 2.1rem;
}

.dosColumnas__texto {
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  line-height: normal;
  padding: 0 4.4rem 5.2rem 4.4rem;
  font-family: var(--font-zodiak);
  font-size: 2.2rem;
  text-align: justify;
  hyphens: auto;
  color: var(--color-blanco);
}

.dosColumnas__texto--negro {
  color: var(--color-black);
}
/*
.dosColumnas__texto--video {
  max-width: 50%;
}
*/
.dosColumnas__enlace {
  z-index: 2;
  display: block;
  position: absolute;
  bottom: 0;
  right: 0;
  margin: 0 4.4rem 5.2rem 4.4rem;
  font-family: var(--font-work);
  font-size: 2rem;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 0.1rem;
  line-height: normal;
  color: var(--color-blanco);
  border-bottom: 1px solid var(--color-blanco);
}

.dosColumnas__enlace:hover {
  color: var(--color-blanco);
  text-decoration: none;
}

.dosColumnas__circulosContainer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.dosColumnas__circulos {
  display: block;
  position: absolute;
  width: 8.5rem;
  height: 8.5rem;
  opacity: 0;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
  transition: width 0.5s ease, height 0.5s ease, opacity 0.5s ease;
}

.dosColumnas__circulos--expand {
  opacity: 1;
}

.dosColumnas__circulos::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 8.4rem;
  height: 8.4rem;
  border-radius: 100%;
  background: url("img/line-circle.svg") 0 0;
  background-size: 8.4rem 8.4rem;
  background-repeat: no-repeat;
  animation: rotate 10s linear infinite;
}

.dosColumnas__circulos:hover::before {
  background: url("img/line-circle-2.svg") 0 0;
  background-size: 8.4rem 8.4rem;
  background-repeat: no-repeat;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.dosColumnas__circulosEnlace {
  width: 100%;
  height: 100%;
  font-family: var(--font-work);
  font-size: 2rem;
  letter-spacing: 0.1rem;
  color: var(--color-blanco);
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
}

.dosColumnas__circulosEnlace:hover {
  color: var(--color-blanco);
  text-decoration: none;
}

.dosColumnas__circulosTextos {
  position: absolute;
  bottom: 5.2rem;
  left: 4.4rem;
  width: 70%;
}

.dosColumnas__circulosTexto {
  position: absolute;
  bottom: 0;
  left: 0;
  font-family: var(--font-work);
  font-size: 2rem;
  font-weight: normal;
  color: var(--color-blanco);
  letter-spacing: 0.1rem;
  opacity: 0;
}

.dosColumnas__circulosTexto--show {
  opacity: 1;
}

.dosColumnas__textoVideo {
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  width: 100%;
}

.dosColumnas__video {
  z-index: 0;
  width: 100%;
  height: 100%;
}

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

@media only screen and (min-width: 0) and (max-width: 799px) {
  .dosColumnas__container {
    flex-direction: column;
    height: auto;
  }
  .dosColumnas__columna {
    aspect-ratio: 1 / 1;
    overflow: hidden;
  }
  .dosColumnas__texto--video {
    max-width: 80%;
  }
  .dosColumnas__video {
    width: 100%;
    height: 100vh;
  }
}
@media only screen and (min-width: 0) and (max-width: 639px) {
  .dosColumnas__container {
    height: 100vh;
  }
  .dosColumnas__texto {
    text-align-last: center;
  }
  .dosColumnas__texto--video {
    bottom: 7rem;
    max-width: 100%;
    text-align-last: center;
  }
  .dosColumnas__enlace {
    right: calc(50% - 31px);
    margin: 0 0 5.2rem 0;
  }
}

/* LISTA UNIDADES */

.listaUnidades {
  width: 100%;
  padding: 16.7rem 10rem;
}

.listaUnidades__container {
  width: 100%;
  max-width: 56rem;
  margin: auto;
  display: flex;
  justify-content: space-between;
  gap: 6.7rem;
}

.listaUnidades__titulo {
  font-family: var(--font-work);
  font-size: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  color: var(--color-marron);
  padding-top: 1rem;
}

.listaUnidades__lista {
  flex: 1.1;
}

.listaUnidades__item {
  font-family: var(--font-zodiak);
  font-size: 2.7rem;
  font-weight: normal;
  margin-bottom: 0.5rem;
}

.listaUnidades__item > a {
  color: var(--color-marron);
  text-decoration: none;
}

.listaUnidades__item > a:hover {
  font-style: italic;
  color: var(--color-marron);
  text-decoration: none;
}

/* IMAGEN CAMBIA */

.imagenCambia {
  width: 100%;
  border-top: 1px solid var(--color-marron);
}

.imagenCambia__container {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}

.imagenCambia__imagenes {
  flex: 1;
  aspect-ratio: 108 / 119;
  overflow: hidden;
}

.imagenCambia__imagenes > img:first-child {
  z-index: 3;
}

.imagenCambia__imagenes > img:nth-child(2) {
  z-index: 2;
}

.imagenCambia__imagenes > img:last-child {
  z-index: 1;
}

.imagenCambia__imagen {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.imagenCambia__imagen--active {
  z-index: 4 !important;
}

.imagenCambia__info {
  flex: 1;
  padding: 8.7rem 10.9rem;
  display: flex;
  justify-content: space-between;
  gap: 13rem;
}

.imagenCambia__titulo {
  font-family: var(--font-work);
  font-size: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  color: var(--color-marron);
}

.imagenCambia__datos {
  display: flex;
  gap: 3rem;
  margin-bottom: 7.2rem;
  cursor: default;
}

.imagenCambia__datos:hover .imagenCambia__numero,
.imagenCambia__datos:hover .imagenCambia__texto,
.imagenCambia__datos:hover .imagenCambia__mas {
  color: var(--color-marron);
}

.imagenCambia__numero {
  font-family: var(--font-work);
  font-size: 2rem;
  letter-spacing: 0.1rem;
  color: var(--color-gris);
}

.imagenCambia__texto {
  font-family: var(--font-zodiak);
  font-size: 2.2rem;
  text-align: justify;
  hyphens: auto;
  color: var(--color-gris);
  margin-bottom: 1.8rem;
}

.imagenCambia__mas {
  font-family: var(--font-work);
  font-size: 1.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  text-decoration: none;
  color: var(--color-gris);
  display: flex;
}

.imagenCambia__mas::after {
  content: "";
  margin-left: 0.3rem;
  display: block;
  width: 10px;
  height: 11px;
  background: url(img/ver-mas.svg) 1px 3px;
  background-size: 10px 10px;
  background-repeat: no-repeat;
}

@media only screen and (min-width: 0) and (max-width: 799px) {
  .imagenCambia__container {
    flex-direction: column;
  }
  .imagenCambia__imagenes {
    aspect-ratio: 1 / 1;
  }
}
@media only screen and (min-width: 0) and (max-width: 479px) {
  .imagenCambia__info {
    gap: 10rem;
  }
}

/* SLIDE TEXTOS */

.slideTextos {
  width: 100%;
  border-top: 1px solid var(--color-marron);
}

.slideTextos__container {
  width: 100%;
  aspect-ratio: 640 / 307;
}

.slideTextos__imagen {
  position: absolute;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.slideTextos__titulo {
  width: 100%;
  padding: 4.4rem 6.2rem 0 6.2rem;
  display: flex;
  justify-content: space-between;
  font-family: var(--font-work);
  font-size: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  color: var(--color-blanco);
}

.slideTextos__titulo::before {
  content: "";
  display: block;
  width: 1.2rem;
  height: 1.2rem;
  background-color: var(--color-blanco);
}

.slideTextos__slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.slideTextos__slide .swiper {
  width: 100%;
  height: 100%;
}

.slideTextos__slide .swiper-wrapper {
  width: 100%;
  height: 100%;
}

.slideTextos__slide .swiper-slide {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.slideTextos__testimonio {
  width: 100%;
  padding: 0 8rem;
  display: flex;
  justify-content: space-between;
  gap: 20rem;
}

.slideTextos__nombre {
  flex: 0.2;
  font-family: var(--font-work);
  font-size: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  color: var(--color-blanco);
}

.slideTextos__texto {
  flex: 1;
  font-family: var(--font-zodiak);
  font-size: 2.3rem;
  color: var(--color-blanco);
  text-align: justify;
  hyphens: auto;
}

.slideTextos__slide .swiper-button-next {
  top: inherit;
  bottom: 6rem;
  left: inherit;
  right: 7.5rem;
  width: 82px;
  height: 8px;
  background: url("img/arrow.svg") 0 0;
  background-size: 82px 8px;
  background-repeat: no-repeat;
}

.slideTextos__slide .swiper-button-next::after {
  content: "";
}

.slideTextos__slide .swiper-button-prev {
  top: inherit;
  bottom: 6rem;
  left: 7.5rem;
  right: inherit;
  width: 82px;
  height: 8px;
  background: url("img/arrow.svg") 0 0;
  background-size: 82px 8px;
  background-repeat: no-repeat;
  transform: rotate(180deg);
}

.slideTextos__slide .swiper-button-prev::after {
  content: "";
}

@media only screen and (min-width: 0) and (max-width: 1279px) {
  .slideTextos__testimonio {
    gap: 10rem;
  }
  .slideTextos__nombre {
    flex: 0.3;
  }
  .slideTextos__texto {
    flex: 1;
  }
}
@media only screen and (min-width: 0) and (max-width: 799px) {
  .slideTextos__container {
    aspect-ratio: 1 / 1;
  }
  .slideTextos__testimonio {
    flex-direction: column;
    align-items: center;
    gap: 5rem;
  }
  .slideTextos__texto {
    text-align-last: center;
  }
}

/* CONTACTO FOOTER */

.contactoFooter {
  width: 100%;
  border-top: 1px solid var(--color-marron);
}

.contactoFooter__container {
  width: 100%;
  padding: 16.5rem 10rem 12rem 10rem;
}

.contactoFooter__texto {
  width: 100%;
  max-width: 92.5rem;
  font-family: var(--font-zodiak);
  font-size: 2.2rem;
  color: var(--color-marron);
  margin: auto auto 9.8rem auto;
  text-align: justify;
  text-align-last: center;
  hyphens: auto;
}

.contactoFooter__enlace {
  display: block;
  margin: auto;
  text-align: center;
}

.contactoFooter__enlace > a {
  font-family: var(--font-work);
  font-size: 2rem;
  color: var(--color-marron);
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  text-decoration: none;
  border-bottom: 1px solid var(--color-black);
}

.contactoFooter__enlace > a:hover {
  color: var(--color-marron);
  text-decoration: none;
}

/* INFO DOS COLUMNAS */

.infoDosColumnas {
  width: 100%;
  border-top: 1px solid var(--color-black);
}

.infoDosColumnas__container {
  width: 100%;
  padding: 10rem 5.9rem;
  display: flex;
  gap: 4rem;
}

.infoDosColumnas__columna {
  flex: 1;
}

.infoDosColumnas__titulo {
  font-family: var(--font-work);
  font-size: 2rem;
  font-weight: normal;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
}

.infoDosColumnas__texto {
  font-family: var(--font-zodiak);
  font-size: 2.2rem;
  color: var(--color-marron);
  text-align: justify;
  hyphens: auto;
  margin-bottom: 2.8rem;
}

.infoDosColumnas__listaContainer {
  display: flex;
  justify-content: space-between;
  gap: 5rem;
  margin-bottom: 9.8rem;
}

.infoDosColumnas__listaTitulo {
  flex: 0.3;
  font-family: var(--font-zodiak);
  font-size: 2.2rem;
  color: var(--color-marron);
}

.infoDosColumnas__lista {
  flex: 0.7;
}

.infoDosColumnas__listaItem {
  display: flex;
  gap: 4.2rem;
  font-family: var(--font-zodiak);
  font-size: 2.2rem;
  color: var(--color-marron);
  margin-bottom: 3rem;
}

.infoDosColumnas__listaItem > span {
  font-family: var(--font-work);
  font-size: 2rem;
  color: var(--color-black);
  padding-top: 0.4rem;
}

.infoDosColumna__datos {
  display: flex;
  justify-content: space-between;
}

.infoDosColumna__datosItem {
  font-family: var(--font-work);
  font-size: 2rem;
  color: var(--color-black);
  display: flex;
  gap: 2.2rem;
}

.infoDosColumna__datosItem > span {
  font-family: var(--font-work);
  font-size: 2rem;
  color: var(--color-black);
  text-transform: uppercase;
}

.infoDosColumna__pide {
  display: block;
  font-family: var(--font-work);
  font-size: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  color: var(--color-black);
  text-decoration: none;
  border-bottom: 1px solid var(--color-black);
}

.infoDosColumna__pide:hover {
  color: var(--color-black);
  text-decoration: none;
}

@media only screen and (min-width: 0) and (max-width: 799px) {
  .infoDosColumnas__container {
    flex-direction: column;
  }
}

/* SERVICIOS */

.servicios {
  width: 100%;
  border-top: 1px solid var(--color-black);
}

.servicios__container {
  width: 100%;
  display: flex;
}

.servicios__columna--izquierda {
  flex: 0.6;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 6rem 8rem;
}

.servicios__columna--derecha {
  flex: 0.4;
  aspect-ratio: 701 / 842;
  overflow: hidden;
}

.servicios__titulos {
  display: flex;
  justify-content: space-between;
  gap: 10rem;
}

.servicios__titulo {
  flex: 0.15;
  font-family: var(--font-work);
  font-size: 2rem;
  font-weight: normal;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  color: var(--color-marron);
}

.servicios__lista {
  flex: 0.85;
  display: flex;
  flex-wrap: wrap;
  gap: 1%;
  row-gap: 2rem;
}

.servicios__listaItem {
  flex: 1 1 49.5%;
  font-family: var(--font-zodiak);
  font-size: 2.2rem;
  color: var(--color-gris);
  list-style-type: none;
  display: flex;
  cursor: pointer;
}

.servicios__listaItem:hover {
  color: var(--color-marron);
}

.servicios__listaItem--activo {
  color: var(--color-marron);
}

.servicios__listaItem > span {
  font-family: var(--font-work);
  font-size: 2rem;
  color: var(--color-gris);
  margin-right: 5.9rem;
  letter-spacing: 0.1rem;
}

.servicios__listaItem:hover > span {
  color: var(--color-marron);
}

.servicios__tratamientos {
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 2%;
  row-gap: 2rem;
  opacity: 0;
}

.servicios__tratamientos + .servicios__tratamientos {
  z-index: 0;
}

.servicios__tratamientos--show {
  opacity: 1;
  z-index: 3 !important;
}

.servicios__tratamiento {
  flex: 1 1 49%;
  font-family: var(--font-zodiak);
  font-size: 2.2rem;
  color: var(--color-gris);
  list-style-type: none;
  display: flex;
  cursor: pointer;
}

.servicios__tratamientos--movil {
  display: none;
}

.servicios__tratamiento:hover {
  color: var(--color-marron);
}

.servicios__tratamiento > span {
  font-family: var(--font-work);
  font-size: 2rem;
  letter-spacing: 0.1rem;
  margin-right: 5rem;
}

.servicios__tratamiento:hover > span {
  color: var(--color-marron);
}

.servicios__tratamientoDatosWrap {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
}

.servicios__tratamientoDatosWrap + .servicios__tratamientoDatosWrap {
  z-index: 0;
}

.servicios__tratamientoDatosWrap--show {
  opacity: 1;
  z-index: 2 !important;
}

.servicios__tratamientoDatos {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
}

.servicios__tratamientoDatos::after{
  content: "";
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}

.servicios__tratamientoDatos + .servicios__tratamientoDatos {
  z-index: 0;
}

.servicios__tratamientoDatos--show {
  opacity: 1;
  z-index: 2 !important;
}

.servicios__tratamientoDatosContainer {
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 4.6rem;
  width: 37rem;
}

.servicios__tratamientoDatosImagen {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.servicios__tratamientoDatosItem {
  font-family: var(--font-zodiak);
  font-size: 2.2rem;
  font-weight: normal;
  color: var(--color-blanco);
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.servicios__tratamientoDatosItem--primero {
  margin-bottom: 4rem;
}

.servicios__tratamientoDatosItem > span {
  flex: 0.3;
  min-width: 30%;
  font-family: var(--font-work);
  font-size: 2rem;
  letter-spacing: 0.1rem;
  color: var(--color-blanco);
}

.servicios__tratamientoDatosItem--precio > p {
  font-family: var(--font-work);
  font-size: 2rem;
  letter-spacing: 0.1rem;
  color: var(--color-blanco);
}

.servicios__tratamientoDatosItem > p {
  flex: 0.7;
}

.servicios__tratamientoDatosItem--enlace > a {
  flex: 0.7;
  display: block;
  text-decoration: none;
  color: var(--color-blanco);
  display: flex;
}

.servicios__tratamientoDatosItem--enlace > a:hover {
  color: var(--color-blanco);
  text-decoration: none;
}

.servicios__tratamientoDatosItem--enlace > a > span {
  border-bottom: 1px solid var(--color-blanco);
  font-family: var(--font-work);
  font-size: 2rem;
  font-weight: normal;
  letter-spacing: 0.1rem;
  text-transform: uppercase;
}

@media only screen and (min-width: 0) and (max-width: 1279px) {
  .servicios__columna--izquierda > div:last-child {
    aspect-ratio: 4 / 3;
  }
  .servicios__lista {
    flex-direction: column;
    flex-wrap: nowrap;
  }
}
@media only screen and (min-width: 0) and (max-width: 799px) {
  .servicios__container {
    flex-direction: column;
  }
  .servicios__titulos {
    gap: 4rem;
  }
  .servicios__columna--derecha {
    aspect-ratio: 1 / 1;
  }
  .servicios__columna--izquierda > div:last-child {
    display: none;
  }
  .servicios__listaItem {
    flex-wrap: wrap;
  }
  .servicios__listaItem--activo .servicios__tratamientos--movil {
    display: block;
  }
  .servicios__tratamientos--movil {
    width: 100%;
    border-top: 0.1rem solid var(--color-gris);
    border-bottom: 0.1rem solid var(--color-gris);
    padding: 4rem 0 1rem 0;
    margin-top: 3rem;
  }
  .servicios__tratamiento--movil {
    list-style-type: none;
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    color: var(--color-gris);
  }
  .servicios__tratamiento--movil--activo {
    color: var(--color-black);
  }
  .servicios__tratamientos--movil li span {
    margin-right: 5.3rem;
  }
}
@media only screen and (min-width: 0) and (max-width: 639px) {
  .servicios__columna--izquierda {
    padding: 6rem 6rem;
  }
}

/* SLIDE ANTES */

.slideAntes {
  width: 100%;
  border-top: 1px solid var(--color-marron);
  overflow: hidden;
}

.slideAntes__container {
  width: 100%;
  padding: 13rem 6rem 8.9rem 6rem;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 4.5rem;
}

.slideAntes__columnaIzquierda {
  flex: 0.25;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.slideAntes__titulo {
  font-family: var(--font-work);
  font-size: 2rem;
  font-weight: normal;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  color: var(--color-marron);
}

.slideAntes__infoTexto {
  font-family: var(--font-zodiak);
  font-size: 2rem;
  color: var(--color-marron);
  text-align: justify;
  hyphens: auto;
}

.slideAntes__infoTexto > span {
  display: block;
  font-family: var(--font-work);
  font-size: 2rem;
  color: var(--color-marron);
  margin-bottom: 2rem;
}

.slideAntes__columnaDerecha {
  flex: 0.75;
  max-width: 75%;
}

.slideAntes .swiper {
  padding-top: 8rem;
}

.slideAntes .swiper-slide {
  border: 1px solid var(--color-marron);
  aspect-ratio: 1 / 1;
  cursor: pointer;
}

.slideAntes__info {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  padding: 2.8rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.slideAntes__infoNumero {
  font-family: var(--font-work);
  font-size: 2rem;
  color: var(--color-blanco);
}

.slideAntes__infoTitulo {
  font-family: var(--font-work);
  font-size: 2rem;
  font-weight: normal;
  color: var(--color-blanco);
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  text-align: center;
}

.slideAntes__imagen {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slideAntes .swiper-button-next {
  top: 0;
  left: inherit;
  right: 0;
  width: 82px;
  height: 8px;
  background: url("img/arrow-black.svg") 0 0;
  background-size: 82px 8px;
  background-repeat: no-repeat;
  margin-top: 0;
}

.slideAntes .swiper-button-next::after {
  content: "";
}

.slideAntes .swiper-button-prev {
  top: 0;
  left: 0;
  right: inherit;
  width: 82px;
  height: 8px;
  background: url("img/arrow-black.svg") 0 0;
  background-size: 82px 8px;
  background-repeat: no-repeat;
  transform: rotate(180deg);
  margin-top: 0;
}

.slideAntes .swiper-button-prev::after {
  content: "";
}

@media only screen and (min-width: 0) and (max-width: 639px) {
  .slideAntes__columnaIzquierda {
    flex: 0.4;
  }
  .slideAntes__columnaDerecha {
    flex: 0.6;
    max-width: 60%;
  }
}

/* HEADER INFO */

.headerInfo {
  width: 100%;
  height: 100vh;
  min-height: 500px;
}

.headerInfo__container {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.headerInfo__superior {
  flex: 0.85;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.headerInfo__datos {
  width: 100%;
  max-width: 126rem;
  margin: auto;
  z-index: 1;
  flex: 0.9;
  display: flex;
  justify-content: center;
  align-items: center;
}

.headerInfo__datosContainer {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-top: 10rem;
}

.headerInfo__h1 {
  flex: 0.33;
  max-width: 33%;
  order: 3;
  color: var(--color-blanco);
  font-family: var(--font-zodiak);
  font-size: 2.2rem;
  font-weight: normal;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
}

.headerInfo__h1 > span:first-child {
  flex: 0.33;
  max-width: 33%;
  order: 2;
  font-family: var(--font-work);
  font-size: 2rem;
  letter-spacing: 0.1rem;
  margin-right: 2.8rem;
}

.headerInfo__h2 {
  flex: 0.33;
  max-width: 33%;
  order: 1;
  color: var(--color-blanco);
  font-family: var(--font-zodiak);
  font-size: 2.8rem;
  font-weight: normal;
  text-align: center;
}

.headerInfo__h3 {
  display: flex;
  justify-content: space-between;
}

.headerInfo__h3 > span:first-child {
  color: var(--color-blanco);
  font-family: var(--font-work);
  font-size: 2.1rem;
  letter-spacing: 0.1rem;
  margin-right: 2.8rem;
}

.headerInfo__h3 > span:last-child {
  color: var(--color-blanco);
  font-family: var(--font-work);
  font-size: 2.1rem;
  font-weight: normal;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
}

.headerInfo__pide {
  z-index: 1;
  flex: 0.1;
  text-align: center;
}

.headerInfo__enlace {
  color: var(--color-blanco);
  font-family: var(--font-work);
  font-size: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  text-decoration: none;
  border-bottom: 1px solid var(--color-blanco);
}

.headerInfo__enlace:hover {
  text-decoration: none;
  color: var(--color-blanco);
}

.headerInfo__inferior {
  flex: 0.15;
  padding: 8rem 7rem;
  display: flex;
}

.headerInfo__cuadrado {
  flex: 0.5;
}

.headerInfo__cuadrado > span {
  display: block;
  width: 0.9rem;
  height: 0.9rem;
  background-color: var(--color-marron);
}

.headerInfo__texto {
  flex: 0.5;
  font-family: var(--font-zodiak);
  font-size: 2.2rem;
  color: var(--color-marron);
  text-align: justify;
  hyphens: auto;
}

.headerInfo__imagen {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media only screen and (min-width: 0) and (max-width: 959px) {
  .headerInfo__datosContainer {
    padding: 10rem 5.5rem 0 5.5rem;
  }
}
@media only screen and (min-width: 0) and (max-width: 639px) {
  .headerInfo__datosContainer {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 5rem;
  }
  .headerInfo__cuadrado {
    flex: 0.1;
  }
  .headerInfo__texto {
    flex: 0.9;
  }
  .headerInfo__h1 > span:last-child {
    text-align: justify;
    hyphens: auto;
  }
}

/* INFORMACIÓN */

.informacion {
  width: 100%;
  border-top: 1px solid var(--color-marron);
}

.informacion__container {
  width: 100%;
  padding: 8.4rem 6rem 13rem 6rem;
  display: flex;
}

.informacion__columna {
  flex: 0.5;
}

.informacion__titulo {
  color: var(--color-marron);
  font-family: var(--font-work);
  font-size: 2rem;
  font-weight: normal;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
}

.informacion__texto {
  font-family: var(--font-zodiak);
  font-size: 2.2rem;
  color: var(--color-marron);
  text-align: justify;
  hyphens: auto;
  margin-bottom: 6rem;
}

.informacion__lista {
  list-style-type: none;
  display: flex;
  justify-content: space-between;
  margin-bottom: 3rem;
}

.informacion__lista > span {
  flex: 0.15;
  font-family: var(--font-work);
  font-size: 2rem;
  letter-spacing: 0.1rem;
  color: var(--color-marron);
}

.informacion__lista > h4 {
  flex: 0.65;
  font-family: var(--font-zodiak);
  font-size: 2.2rem;
  font-weight: normal;
  color: var(--color-marron);
}

.informacion__lista > span:last-child {
  flex: 0.2;
  text-align: right;
}

@media only screen and (min-width: 0) and (max-width: 799px) {
  .informacion__container {
    flex-direction: column;
    row-gap: 6rem;
  }
}

/* BENEFICIOS */

.beneficios {
  width: 100%;
  border-top: 1px solid var(--color-marron);
}

.beneficios__container {
  width: 100%;
  padding: 8.4rem 3.4rem 3rem 6rem;
  display: flex;
  gap: 7.5rem;
}

.beneficios__columna {
  flex: 0.38;
}

.beneficios__columna--izquierda {
  flex: 0.62;
  display: flex;
  justify-content: space-between;
  gap: 10rem;
}

.beneficios__titulo {
  color: var(--color-marron);
  font-family: var(--font-work);
  font-size: 2rem;
  font-weight: normal;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
}

.beneficios__texto {
  font-family: var(--font-zodiak);
  font-size: 2.2rem;
  color: var(--color-marron);
  text-align: justify;
  hyphens: auto;
}

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

@media only screen and (min-width: 0) and (max-width: 639px) {
  .beneficios__container {
    flex-direction: column;
    row-gap: 6rem;
    padding: 8.4rem 6rem 8rem 6rem;
  }
  .beneficios__columna--izquierda {
    flex-direction: column;
    row-gap: 6rem;
  }
}

/* FAQS */

.faqs {
  width: 100%;
  border-top: 1px solid var(--color-marron);
}

.faqs * {
  transition: none !important;
}

.faqs__container {
  width: 100%;
  padding: 12rem 3.7rem 15rem 5.9rem;
  display: flex;
}

.faqs__columna {
  flex: 0.1;
}

.faqs__columna--derecha {
  flex: 0.9;
}

.faqs__titulo {
  color: var(--color-marron);
  font-family: var(--font-work);
  font-size: 2rem;
  font-weight: normal;
  letter-spacing: 0.1rem;
}

.faqs__columna--derecha .container {
  z-index: 1;
  max-width: inherit;
}

.faqs__columna--derecha .nav {
  position: relative;
  z-index: 0;
  top: inherit;
  right: inherit;
  width: 100%;
  height: inherit;
  background-color: var(--color-white);
  padding: 0 !important;
  justify-content: space-between;
  flex-direction: row;
  overflow-y: hidden;
  gap: 1rem;
}

.faqs .nav-tabs {
  border-bottom: 0;
}

.faqs .nav-link {
  font-family: var(--font-zodiak);
  font-size: 2.2rem;
  color: var(--color-marron);
}

.faqs .nav-tabs .nav-item.show .nav-link,
.faqs .nav-tabs .nav-link.active {
  border-color: var(--color-marron) var(--color-marron) var(--color-blanco);
  color: var(--color-marron);
  position: relative;
  z-index: 2;
  padding: 1rem 2rem 1rem 2rem;
}

.faqs .nav-tabs .nav-item.show .nav-link:hover,
.faqs .nav-tabs .nav-link.active:hover {
  border-color: var(--color-marron) var(--color-marron) var(--color-blanco);
}

.faqs .nav-tabs .nav-item {
  flex: 1;
  margin-bottom: 0;
}

.faqs .nav-tabs .nav-link {
  width: 100%;
  height: calc(100% - 2px);
  padding: 1rem 2rem 1.2rem 2rem;
  color: var(--color-marron);
  border: 1px solid var(--color-marron);
  border-bottom: none;
  text-align: center;
  text-decoration: none;
  background-color: white;
  z-index: 1;
}

.faqs .nav-tabs .nav-link.active {
  height: 100%;
}

.faqs .nav-tabs .nav-link:hover {
  color: var(--color-marron);
  border: 1px solid var(--color-marron);
  border-bottom: none;
}

.faqs .tab-content {
  z-index: 0;
  border-top: 1px solid var(--color-marron);
  margin-top: -0.1rem;
  transition: 0s;
}

.faqs .tab-content > .tab-pane {
  border: 1px solid var(--color-marron);
  border-top: 1px solid var(--color-blanco);
  padding: 10rem 4.8rem;
}

.faqs .tab-content > .tab-pane div {
  display: flex;
  justify-content: space-between;
  gap: 7.8rem;
}

.faqs .tab-content > .tab-pane div span {
  flex: 0.25;
  font-family: var(--font-zodiak);
  font-size: 2.4rem;
  font-style: italic;
  color: var(--color-marron);
}

.faqs .tab-content > .tab-pane div p {
  flex: 0.75;
  font-family: var(--font-zodiak);
  font-size: 2.2rem;
  color: var(--color-marron);
  text-align: justify;
  hyphens: auto;
}

@media only screen and (min-width: 0) and (max-width: 1279px) {
  .faqs .tab-content > .tab-pane div {
    flex-direction: column;
    row-gap: 4rem;
  }
}
@media only screen and (min-width: 0) and (max-width: 799px) {
  .faqs__container {
    flex-direction: column;
    row-gap: 6rem;
  }
  .faqs .tab-content > .tab-pane div {
    flex-direction: column;
    gap: 4rem;
  }
  .faqs .nav-tabs .nav-item {
    flex: 1;
    min-width: 100%;
    margin-bottom: 0;
  }
  .faqs .nav-tabs {
    border-bottom: 0;
    gap: 0;
  }
}
@media only screen and (min-width: 0) and (max-width: 639px) {
  .faqs__container {
    padding: 12rem 5.5rem 15rem 5.5rem;
  }
}

/* EQUIPO */

.equipo {
  width: 100%;
  border-top: 1px solid var(--color-marron);
}

.equipo__container {
  width: 100%;
  display: flex;
}

.equipo__columna--izquierda {
  flex: 0.35;
  aspect-ratio: 174 / 205;
}

.equipo__columna--derecha {
  flex: 0.65;
  display: flex;
  align-items: center;
  padding: 0 10rem 0 16rem;
}

.equipo__imagen {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.equipo__imagen:first-child {
  z-index: 1;
}

.equipo__imagen--show {
  z-index: 2 !important;
}

.equipo__datos {
  display: flex;
  gap: 7rem;
}

.equipo__titulo {
  font-family: var(--font-work);
  font-size: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  color: var(--color-marron);
}

.equipo__datosContenedor {
  display: flex;
  justify-content: space-between;
  gap: 6.4rem;
  margin-bottom: 6.5rem;
  cursor: pointer;
}

.equipo__datosContenedor:hover .equipo__numero,
.equipo__datosContenedor:hover .equipo__puesto,
.equipo__datosContenedor:hover .equipo__nombre {
  color: var(--color-marron);
}

.equipo__numero {
  flex: 0.05;
  font-family: var(--font-work);
  font-size: 2rem;
  color: var(--color-gris);
}

.equipo__puestoNombre {
  flex: 0.25;
}

.equipo__puesto {
  font-family: var(--font-zodiak);
  font-size: 2.2rem;
  font-style: italic;
  color: var(--color-gris);
}

.equipo__nombre {
  font-family: var(--font-zodiak);
  font-size: 2.2rem;
  color: var(--color-gris);
}

.equipo__texto {
  opacity: 0;
  flex: 0.7;
  font-family: var(--font-zodiak);
  font-size: 2rem;
  color: var(--color-gris);
}

.equipo__texto--show {
  opacity: 1;
}

@media only screen and (min-width: 0) and (max-width: 1289px) {
  .equipo__columna--derecha {
    padding: 10rem 10rem 3rem 16rem;
  }
}
@media only screen and (min-width: 0) and (max-width: 959px) {
  .equipo__columna--derecha {
    padding: 10rem 10rem 3rem 10rem;
  }
}
@media only screen and (min-width: 0) and (max-width: 799px) {
  .equipo__container {
    flex-direction: column;
  }
  .equipo__columna--izquierda {
    aspect-ratio: 1 / 1;
  }
}
@media only screen and (min-width: 0) and (max-width: 639px) {
  .equipo__datos {
    flex-direction: column;
  }
}

/* RELACIONADO */

.relacionado {
  width: 100%;
  border-top: 1px solid var(--color-marron);
}

.relacionado__container--aparato {
  display: flex;
  justify-content: space-between;
  gap: 6.5rem;
  padding: 12.3rem 9rem 11rem 7.5rem;
}

.relacionado__imagenContainer {
  width: 100%;
  aspect-ratio: 1918 / 549;
}

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

.relacionado__datosContenedor {
  padding: 5.6rem 6.1rem;
  display: flex;
  justify-content: space-between;
}

.relacionado__titulo {
  flex: 0.5;
  font-family: var(--font-work);
  font-size: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  color: var(--color-marron);
}

.relacionado__titulo--aparato {
  flex: 0.3;
}

.relacionado__datos {
  flex: 0.5;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 9rem;
}

.relacionado__datoSuperior {
  display: block;
  font-family: var(--font-work);
  font-size: 2rem;
  letter-spacing: 0.1rem;
  color: var(--color-marron);
  margin-bottom: 2rem;
}

.relacionado__datoSuperior--precio {
  padding-top: 3px;
  margin-bottom: 0;
}

.relacionado__datoInferior {
  font-family: var(--font-zodiak);
  font-size: 2.2rem;
  color: var(--color-marron);
}

.relacionado_enlaceContenedor {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}

.relacionado_enlace {
  font-family: var(--font-work);
  font-size: 2rem;
  letter-spacing: 0.1rem;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--color-marron);
  border-bottom: 1px solid var(--color-marron);
}

.relacionado_enlace:hover {
  text-decoration: none;
  color: var(--color-marron);
}

.relacionado__feed {
  flex: 0.7;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2.7rem;
}

.relacionado__feedItem {
  flex: 0.3rem;
  max-width: 33%;
}

.relacionado__feedItem > a:hover {
  text-decoration: none;
  color: var(--color-marron);
}

.relacionado__feedItem figure {
  width: 100%;
  aspect-ratio: 200 / 251;
  overflow: hidden;
  margin-bottom: 3.4rem;
}

.relacionado__feedItem figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.relacionado__feedContainer {
  display: flex;
  justify-content: space-between;
  gap: 3.3rem;
}

.relacionado__feedNumero {
  font-family: var(--font-work);
  font-size: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  color: var(--color-marron);
}

.relacionado__feedTitulo {
  font-family: var(--font-zodiak);
  font-size: 2.2rem;
  color: var(--color-marron);
  text-align: right;
}

@media only screen and (min-width: 0) and (max-width: 1439px) {
  .relacionado__titulo {
    flex: 0.4;
  }
  .relacionado__datos {
    flex: 0.6;
  }
}
@media only screen and (min-width: 0) and (max-width: 1279px) {
  .relacionado__datos {
    gap: 4rem;
  }
  .relacionado__feedItem {
    max-width: 50%;
  }
}
@media only screen and (min-width: 0) and (max-width: 959px) {
  .relacionado__datosContenedor {
    flex-direction: column;
    gap: 2rem;
  }
}
@media only screen and (min-width: 0) and (max-width: 639px) {
  .relacionado__container--aparato {
    padding: 12.3rem 5.5rem 11rem 5.5rem;
  }
  .relacionado__feed {
    row-gap: 5rem;
  }
  .relacionado__feedItem {
    flex: 1;
    min-width: 100%;
    max-width: 100%;
  }
}
@media only screen and (min-width: 0) and (max-width: 479px) {
  .relacionado__datos {
    flex-wrap: wrap;
  }
}

/* APARATOLOGÍA */

.aparatologia__aside {
  width: 20%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  border-right: 1px solid var(--color-marron);
}

.aparatologia__container {
  width: 100%;
  height: 100%;
  padding-top: 17rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.aparatologia__menu {
  display: flex;
  flex-direction: column;
}

.aparatologia__menu li {
  order: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding: 1.8rem 5.5rem 1.8rem 5.5rem;
  text-align: right;
  counter-increment: list-counter;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.aparatologia__menu li.active {
  border-bottom: 1px solid var(--color-marron);
}

.aparatologia__menu li::before {
  content: attr(data-numero) ". ";
  font-family: var(--font-work);
  font-size: 1.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  color: var(--color-gris);
}

.aparatologia__menu li.active::before {
  color: var(--color-marron);
}

.aparatologia__menu li:last-child {
  border-bottom: 1px solid var(--color-marron);
}

.aparatologia__menu li:hover {
  border-bottom: 1px solid var(--color-marron);
}

.aparatologia__menu li:hover a {
  color: var(--color-marron);
}

.aparatologia__menu a,
.aparatologia__menu a:hover {
  font-family: var(--font-work);
  font-size: 1.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  color: var(--color-gris);
  text-decoration: none;
}

.aparatologia__menu li.active a {
  color: var(--color-marron);
}

.aparatologia__enlaceContainer {
  padding: 0 0 1.5rem 7rem;
}

.aparatologia__enlace {
  font-family: var(--font-work);
  font-size: 2rem;
  letter-spacing: 0.1rem;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--color-marron);
  border-bottom: 1px solid var(--color-marron);
}

.aparatologia__enlace:hover {
  text-decoration: none;
  color: var(--color-marron);
}

.aparatologia__div {
  width: 80%;
  padding-top: 14.8rem;
  margin-left: 20%;
}

@media only screen and (min-width: 0) and (max-width: 1279px) {
  .aparatologia__aside {
    width: 25%;
  }
  .aparatologia__div {
    width: 75%;
    margin-left: 25%;
  }
}
@media only screen and (min-width: 0) and (max-width: 799px) {
  .aparatologia__aside {
    position: relative;
    width: 100%;
    height: auto;
  }
  .aparatologia__enlaceContainer {
    display: none;
  }
  .aparatologia__div {
    width: 100%;
    margin-left: 0;
    padding-top: 5.5rem;
  }
  .aparatologia__menu ul {
    display: flex;
    flex-direction: column;
  }
  .aparatologia__menu li.active {
    display: flex !important;
    padding-right: 7.2rem !important;
  }
  .aparatologia__menu li.active a {
    margin-left: auto;
  }
  .aparatologia__menu li.active::after {
    content: "";
    display: block;
    width: 1.7rem;
    height: 1.6rem;
    background: url("./img/sprite.svg") 0 -42.1rem;
    background-size: 90rem 64rem;
    background-repeat: no-repeat;
    margin-left: 4.2rem;
  }
  .aparatologia__menu li.active.menos::after {
    background: url("./img/sprite.svg") -3rem -42.1rem;
    background-size: 90rem 64rem;
    background-repeat: no-repeat;
  }
  .aparatologia__menu li.active {
    order: -1;
  }
  .aparatologia__menu li {
    padding-right: 13.2rem;
    display: none;
  }
  .aparatologia__menu li.show {
    display: flex;
  }
}
@media only screen and (min-width: 0) and (max-width: 639px) {
  .aparatologia__menu li {
    padding: 1.8rem 5.5rem 1.8rem 5.5rem;
  }
}

/* CABECERA APARATOLOGÍA */

.cabeceraAparato {
  width: 100%;
}

.cabeceraAparato__container {
  width: 100%;
  padding: 0 5rem 0 4rem;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}

.cabeceraAparato__columna--izquierda {
  flex: 0.5;
  max-width: 50%;
  aspect-ratio: 331 / 448;
}

.cabeceraAparato__columna--derecha {
  flex: 0.5;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
}

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

.cabeceraAparato__textoContainer {
  padding-left: 42%;
}

.cabeceraAparato__texto {
  font-family: var(--font-zodiak);
  font-size: 2.2rem;
  text-align: justify;
  hyphens: auto;
  color: var(--color-marron);
  display: flex;
  justify-content: space-between;
  gap: 5.6rem;
  text-indent: 7.2rem;
}

.cabeceraAparato__texto--subtitulo {
  font-family: var(--font-zodiak);
  font-size: 2.2rem;
  text-align: justify;
  hyphens: auto;
  color: var(--color-marron);
  display: block;
  padding-left: 6.8rem;
}

.cabeceraAparato__texto::before {
  display: block;
  content: "";
  width: 1.2rem;
  min-width: 1.2rem;
  height: 1.2rem;
  background-color: var(--color-marron);
  margin-top: 0.3rem;
}

.cabeceraAparato__subtitulo {
  display: block;
  font-family: var(--font-work);
  font-size: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  color: var(--color-marron);
  padding-left: 6.8rem;
  margin-bottom: 2.2rem;
}

@media only screen and (min-width: 0) and (max-width: 1279px) {
  .cabeceraAparato__textoContainer {
    padding-left: 12%;
  }
}
@media only screen and (min-width: 0) and (max-width: 639px) {
  .cabeceraAparato__container {
    flex-direction: column;
    row-gap: 5rem;
    padding: 0 5.5rem;
  }
  .cabeceraAparato__columna--izquierda {
    flex: 1;
    max-width: 100%;
  }
  .cabeceraAparato__columna--derecha {
    flex: 1;
    max-width: 100%;
  }
  .cabeceraAparato__textoContainer {
    padding-left: 0;
    margin-bottom: 5rem;
  }
  .cabeceraAparato__texto::before {
    display: none;
  }
  .cabeceraAparato__textoContainer {
    width: 100%;
  }
  .cabeceraAparato__subtitulo {
    padding-left: 0;
  }
  .cabeceraAparato__texto--subtitulo {
    padding-left: 0;
  }
}

/* PASOS */

.pasos {
  width: 100%;
}

.pasos__container {
  width: 100%;
  padding: 12.3rem 6rem 8.2rem 7.2rem;
  display: flex;
  justify-content: space-between;
}

.pasos__columna {
  flex: 0.15;
}

.pasos__columna--derecha {
  flex: 0.85;
}

.pasos__titulo {
  font-family: var(--font-work);
  font-size: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  color: var(--color-marron);
}

.pasos__lista {
  display: flex;
  justify-content: space-between;
  list-style-type: none;
  min-height: 7.6rem;
}

.pasos__numero {
  flex: 0.15;
  font-family: var(--font-work);
  font-size: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  color: var(--color-marron);
}

.pasos__texto {
  flex: 0.85;
  font-family: var(--font-zodiak);
  font-size: 2.2rem;
  font-weight: normal;
  color: var(--color-marron);
  padding-right: 22rem;
}

.pasos__datos {
  display: flex;
  justify-content: space-between;
  gap: 9rem;
  margin-top: 11.8rem;
}

.datosContainer {
  display: flex;
  gap: 2.8rem;
}

.pasos__nombreDato {
  font-family: var(--font-work);
  font-size: 2rem;
  color: var(--color-marron);
}

.pasos__dato {
  font-family: var(--font-work);
  font-size: 2rem;
  color: var(--color-marron);
}

.pasos_enlace {
  font-family: var(--font-work);
  font-size: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  color: var(--color-marron);
  text-decoration: none;
  border-bottom: 1px solid var(--color-marron);
}

.pasos_enlace:hover {
  color: var(--color-marron);
  text-decoration: none;
}

@media only screen and (min-width: 0) and (max-width: 1279px) {
  .pasos__container {
    gap: 5rem;
  }
  .pasos__titulo {
    white-space: nowrap;
  }
  .pasos__datos {
    gap: 3rem;
    flex-wrap: wrap;
    row-gap: 1rem;
  }
}
@media only screen and (min-width: 0) and (max-width: 959px) {
  .pasos__texto {
    padding-right: 0;
  }
}
@media only screen and (min-width: 0) and (max-width: 639px) {
  .pasos__container {
    padding: 12.3rem 5.5rem 8.2rem 5.5rem;
  }
}

/* CABECERA EXPERIENCE */

.cabeceraExperience {
  width: 100%;
  overflow: hidden;
  aspect-ratio: 960 / 355;
}

.cabeceraExperience__container {
  width: 100%;
  height: 100%;
  padding: 0 6rem 5.4rem 6rem;
  display: flex;
  align-items: flex-end;
}

.cabeceraExperience__datos {
  z-index: 1;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10rem;
}

.cabeceraExperience__titulo {
  order: 2;
  flex: 0.22;
  font-family: var(--font-zodiak);
  font-size: 2.2rem;
  font-weight: normal;
  color: var(--color-blanco);
  display: flex;
  gap: 5rem;
}

.cabeceraExperience__titulo span {
  color: var(--color-blanco);
  text-decoration: none;
  cursor: pointer;
}

.cabeceraExperience__titulo::before {
  content: "01";
  font-family: var(--font-work);
  font-size: 2rem;
  letter-spacing: 0.1rem;
  margin-top: 0.2rem;
}

.cabeceraExperience__subtitulo {
  order: 3;
  flex: 0.225;
  font-family: var(--font-zodiak);
  font-size: 2.2rem;
  font-weight: normal;
  color: var(--color-blanco);
  display: flex;
  gap: 5rem;
}

.cabeceraExperience__subtitulo span {
  color: var(--color-blanco);
  text-decoration: none;
  cursor: pointer;
}

.cabeceraExperience__subtitulo::before {
  content: "02";
  font-family: var(--font-work);
  font-size: 2rem;
  letter-spacing: 0.1rem;
  margin-top: 0.2rem;
}

.cabeceraExperience__texto {
  order: 1;
  flex: 0.55;
  font-family: var(--font-zodiak);
  font-size: 2.2rem;
  color: var(--color-blanco);
  text-align: justify;
  hyphens: auto;
}

.cabeceraExperience__enlace {
  position: absolute;
  z-index: 2;
  bottom: 4.9rem;
  right: 6.1rem;
  font-family: var(--font-work);
  font-size: 2rem;
  color: var(--color-blanco);
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  text-decoration: none;
  border-bottom: 1px solid var(--color-blanco);
}

.cabeceraExperience__enlace:hover {
  color: var(--color-blanco);
  text-decoration: none;
}

.cabeceraExperience__imagen {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.cabeceraExperience__imagen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cabeceraExperience__video {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

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

@media only screen and (min-width: 0) and (max-width: 799px) {
  .cabeceraExperience {
    aspect-ratio: 1 / 1;
  }
  .cabeceraExperience__container {
    align-items: center;
  }
  .cabeceraExperience__datos {
    flex-direction: column;
    align-items: center;
  }
  .cabeceraExperience__texto {
    text-align-last: center;
  }
  .cabeceraExperience__enlace {
    right: calc(50% - 31px);
  }
}
@media only screen and (min-width: 0) and (max-width: 639px) {
  .cabeceraExperience {
    aspect-ratio: 9 / 16;
    max-height: 100vh;
  }
  .cabeceraExperience__enlace {
    right: calc(50% - 28.5px);
  }
}
@media only screen and (min-width: 0) and (max-width: 479px) {
  .cabeceraExperience__enlace {
    right: calc(50% - 26px);
  }
  .cabeceraExperience__datos {
    gap: 5rem;
  }
}

/* PRESENTACIÓN EXPERIENCE */

.presentacionExperience {
  width: 100%;
}

.presentacionExperience__container {
  width: 100%;
  padding: 10.9rem;
}

.presentacionExperience__texto {
  width: 100%;
  max-width: 104rem;
  margin: auto;
  font-family: var(--font-zodiak);
  font-size: 2.2rem;
  text-align: justify;
  hyphens: auto;
  color: var(--color-marron);
  column-count: 2;
  column-gap: 3.5rem;
}

@media only screen and (min-width: 0) and (max-width: 639px) {
  .presentacionExperience__container {
    padding: 10rem 5.5rem;
  }
  .presentacionExperience__texto {
    column-count: 1;
    text-align-last: center;
  }
}

/* TRATAMIENTOS EXPERIENCE */

.tratamientosExperience {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  transition: all 0s ease-out;
}

.tratamientosExperience__container {
  height: 100%;
  display: flex;
  flex-wrap: nowrap;
}

.tratamientoExperience__info {
  min-width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  gap: 6rem;
  padding: 15rem 20rem 15rem;
}

.tratamientoExperience__columnaIzq {
  flex: 0.25;
}

.tratamientoExperience__columnaCen {
  flex: 0.45;
  aspect-ratio: 331 / 448;
  line-height: 0;
  overflow: hidden;
}

.tratamientoExperience__columnaCen img,
.tratamientoExperience__columnaCen video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tratamientoExperience__columnaDer {
  flex: 0.3;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.tratamientoExperience__titulo {
  font-family: var(--font-zodiak);
  font-size: 2.2rem;
  font-weight: normal;
  color: var(--color-marron);
  display: flex;
  margin-bottom: 1.6rem;
}

.tratamientoExperience__titulo span {
  min-width: 9rem;
  font-family: var(--font-work);
  font-size: 2rem;
  color: var(--color-marron);
  letter-spacing: 0.1rem;
}

.tratamientoExperience__subtitulo {
  font-family: var(--font-zodiak);
  font-size: 2.2rem;
  font-weight: normal;
  font-style: italic;
  color: var(--color-marron);
  display: flex;
}

.tratamientoExperience__subtitulo span {
  min-width: 9rem;
  font-family: var(--font-work);
  font-size: 2rem;
  font-style: normal;
  color: var(--color-marron);
  letter-spacing: 0.1rem;
}

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

.tratamientoExperience__texto {
  font-family: var(--font-zodiak);
  font-size: 2.2rem;
  color: var(--color-marron);
  text-align: justify;
  hyphens: auto;
  text-indent: 7.3rem;
  margin: 0;
}

.tratamientoExperience__datos {
  display: flex;
  margin-bottom: 3rem;
}

.tratamientoExperience__datos:last-child {
  margin-bottom: 0;
}

.tratamientoExperience__datos span:first-child {
  flex: 0.35;
  font-family: var(--font-work);
  font-size: 2rem;
  color: var(--color-marron);
}

.tratamientoExperience__datos span:last-child {
  flex: 0.65;
  font-family: var(--font-work);
  font-size: 2rem;
  color: var(--color-marron);
}

.tratamientoExperience__enlace {
  width: fit-content;
  font-family: var(--font-work);
  font-size: 2rem;
  color: var(--color-marron);
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  text-decoration: none;
  border-bottom: 1px solid var(--color-marron);
}

.tratamientoExperience__enlace:hover {
  color: var(--color-marron);
  text-decoration: none;
}

@media only screen and (min-width: 0) and (max-width: 1439px) {
  .tratamientoExperience__info {
    padding: 15rem 20rem 15rem;
  }
}
@media only screen and (min-width: 0) and (max-width: 1279px) {
  .tratamientoExperience__info {
    padding: 5rem 5.5rem;
  }
}
@media only screen and (min-width: 0) and (max-width: 959px) {
  .tratamientoExperience__info {
    gap: 4rem;
  }
}
@media only screen and (min-width: 0) and (max-width: 799px) {
  .tratamientoExperience__info {
    width: auto;
    min-width: inherit;
  }
  .tratamientoExperience__columnaIzq {
    min-width: 30rem;
  }
  .tratamientoExperience__columnaCen {
    min-width: 100rem;
  }
  .tratamientoExperience__columnaDer {
    min-width: 37rem;
  }
}
@media only screen and (min-width: 0) and (max-width: 639px) {
  .tratamientosExperience {
    height: auto;
  }
  .tratamientosExperience__container {
    max-width: 100%;
    flex-direction: column;
  }
  .tratamientoExperience__info {
    flex-direction: column;
  }
  .tratamientoExperience__columnaIzq {
    width: 100%;
    min-width: inherit;
  }
  .tratamientoExperience__columnaCen {
    min-width: inherit;
    width: 100%;
  }
  .tratamientoExperience__columnaDer {
    min-width: inherit;
    width: 100%;
    gap: 5rem;
  }
  .tratamientoExperience__titulo,
  .tratamientoExperience__subtitulo {
    justify-content: space-between;
  }
  .tratamientoExperience__datos {
    justify-content: space-between;
  }
  .tratamientoExperience__datos span:last-child {
    text-align: right;
  }
  .tratamientoExperience__enlace {
    margin-left: auto;
  }
}

/* FONDO EXPERIENCE */

.fondoExperience {
  background-color: rgb(234, 234, 218);
}

/* CONTACTO */

.contacto {
  width: 100%;
  height: 100vh;
  min-height: 103rem;
  background-color: rgb(176, 183, 185);
  padding: 17.6rem 0 8.7rem 0;
  overflow: hidden;
}

.contacto__container {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
  align-items: flex-end;
  gap: 8rem;
  padding: 0 7.5rem 0 5.5rem;
}

.contacto__info {
  flex: 0.65;
  width: 100%;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
  gap: 20rem;
}

.contacto__texto {
  font-size: 2.9rem;
  color: var(--color-blanco);
  text-align: justify;
  hyphens: auto;
  text-indent: 7rem;
  margin: 0 0 0 -35rem;
}

.contacto__wrap {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 6rem;
}

.contacto__whatsapp {
  flex: 0.15;
  font-size: 2.5rem;
  line-height: 2.5rem;
  text-decoration: none;
  letter-spacing: 0.2rem;
  color: var(--color-blanco);
  display: flex;
  align-items: center;
  gap: 4rem;
}

.contacto__whatsapp:hover {
  color: var(--color-blanco);
  text-decoration: none;
}

.contacto__whatsapp::before {
  content: "";
  width: 1rem;
  height: 1rem;
  background-color: white;
}

.contacto__form {
  flex: 0.85;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 4rem;
}

.contacto__form h2 {
  flex: 0.15;
  font-size: 2.5rem;
  text-decoration: none;
  letter-spacing: 0.2rem;
  color: var(--color-blanco);
  display: flex;
  align-items: center;
  gap: 4rem;
}

.contacto__form h2::before {
  content: "";
  width: 1rem;
  height: 1rem;
  background-color: white;
}

.contacto__form > div {
  flex: 0.85;
}

.contacto__form p {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 2rem;
}

.contacto__form p > br {
  display: none;
}

.contacto__form p > label {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-self: flex-end;
  gap: 0.5rem;
}

.contacto__form p > label span:first-child {
  flex: 0.4;
  font-family: var(--font-work);
  font-size: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  text-align: left;
  color: white;
}

.contacto__form p > label span:last-child {
  flex: 0.6;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}

.contacto__form p > label input {
  appearance: none;
  width: 100%;
  background-color: transparent;
  border: none;
  border-bottom: 0.1rem solid white;
  border-radius: 0;
  color: white;
  font-size: 2rem;
  outline: none;
}

.contacto__form p > label textarea {
  appearance: none;
  width: 100%;
  max-height: 15rem;
  background-color: transparent;
  border: none;
  border-bottom: 0.1rem solid white;
  border-radius: 0;
  color: white;
  font-size: 2rem;
  resize: none;
  outline: none;
}

.contacto__form p > label input:active,
.contacto__form p > label input:hover,
.contacto__form p > label textarea:active,
.contacto__form p > label textarea:hover {
  outline: none;
}

.contacto__form p input[type="submit"] {
  align-self: flex-end;
  appearance: none;
  background-color: transparent;
  border: none;
  border-bottom: 0.1rem solid white;
  color: white;
  font-family: var(--font-work);
  font-size: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.2rem;
  cursor: pointer;
}

.wpcf7-spinner {
  display: none !important;
}

.contacto__direccion {
  position: absolute;
  z-index: 0;
  bottom: 0;
  left: 0;
  font-size: 2rem;
  color: var(--color-blanco);
  text-align: justify;
  hyphens: auto;
}

.contacto__imagen {
  flex: 0.35;
  max-width: 35%;
  height: 100%;
}

.contacto__imagen figure {
  width: 100%;
  height: 100%;
  aspect-ratio: 598 / 814;
}

.contacto__imagen figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media only screen and (min-width: 0) and (max-width: 1279px) {
  .contacto__container {
    gap: 2rem;
    padding: 0 5.5rem 0 5.5rem;
  }
  .contacto__wrap {
    flex-direction: column;
  }
  .contacto__info {
    gap: 5rem;
  }
}
@media only screen and (min-width: 0) and (max-width: 959px) {
  .contacto {
    padding: 20rem 0 8rem 0;
    height: auto;
  }
  .contacto__container {
    flex-direction: column-reverse;
    gap: 5rem;
  }
  .contacto__info {
    padding: 0;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    row-gap: 4rem;
  }
  .contacto__texto {
    margin: 0;
    text-indent: 0;
  }
  .contacto__whatsapp {
    margin-left: 2rem;
  }
  .contacto__form {
    flex: 1;
    width: 100%;
    flex-direction: column;
  }
  .contacto__form > div {
    flex: 1;
    width: 100%;
  }
  .contacto__form h2 {
    margin-left: 2rem;
  }
  .contacto__form form label {
    padding: 0 7rem;
  }
  .contacto__direccion {
    position: relative;
    bottom: inherit;
    left: inherit;
    width: 100%;
    text-align: left;
  }
  .contacto__imagen {
    flex: 1;
    max-width: 100%;
  }
  .contacto__imagen figure {
    width: 100%;
  }
  .contacto__form p > label span:first-child {
    flex: 0.6;
  }
  .contacto__form p input[type="submit"] {
    align-self: flex-end;
  }
}

/* ABOUT / HEADER */

.aboutHeader {
  width: 100%;
  height: 100vh;
  min-height: 50rem;
}

.aboutHeader__container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.aboutHeader__info {
  z-index: 1;
  max-width: 70rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5.7rem;
}

.aboutHeader__info h1 {
  order: 2;
  font-size: 2.2rem;
  color: var(--color-blanco);
  text-align: justify;
  hyphens: auto;
  text-align-last: center;
  text-wrap: auto;
}

.aboutHeader__info h2 {
  order: 3;
  font-size: 2.2rem;
  color: var(--color-blanco);
  text-align: justify;
  hyphens: auto;
  text-align-last: center;
  text-wrap: auto;
}

.aboutHeader__info span {
  order: 1;
  display: block;
  width: 100%;
  font-family: var(--font-work);
  font-size: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.2rem;
  color: var(--color-blanco);
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.aboutHeader__info span::before {
  content: "";
  display: block;
  width: 0.8rem;
  height: 0.8rem;
  background-color: var(--color-blanco);
}

.aboutHeader__figure {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.aboutHeader__figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media only screen and (min-width: 0) and (max-width: 639px) {
  .aboutHeader__info {
    max-width: 100%;
    padding: 0 5.5rem;
  }
}

/* ABOUT / LEMA */

.aboutLema {
  width: 100%;
}

.aboutLema__container {
  width: 100%;
  padding: 28rem 5.5rem 21rem 5.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.aboutLema__info {
  max-width: 119rem;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 9rem;
}

.aboutLema__info h2 {
  order: 2;
  flex: 0.2;
  font-size: 2.2rem;
}

.aboutLema__info p {
  order: 3;
  flex: 0.5;
  font-size: 2.2rem;
  text-indent: 7rem;
  text-align: justify;
  hyphens: auto;
}

.aboutLema__info span {
  order: 1;
  flex: 0.3;
  display: block;
  font-family: var(--font-work);
  font-size: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 9rem;
}

.aboutLema__info span::after {
  content: "";
  display: block;
  width: 0.8rem;
  height: 0.8rem;
  background-color: var(--color-black);
}

@media only screen and (min-width: 0) and (max-width: 779px) {
  .aboutLema__info {
    flex-direction: column;
    align-items: center;
  }
  .aboutLema__info p {
    text-indent: 0;
    text-align-last: center;
  }
  .aboutLema__info span {
    flex-direction: column;
  }
}

/* ABOUT / BLOUQES */

.aboutBloques {
  width: 100%;
  border-top: 1px solid var(--color-black);
}

.aboutBloques__container {
  width: 100%;
  padding: 5.6rem 2.7rem 6.4rem 5.9rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 6rem;
}

.aboutBloques__columna--left {
  flex: 0.6;
  display: flex;
  justify-content: space-between;
  gap: 6.9rem;
}

.aboutBloques__columna--left h3 {
  flex: 0.2;
  font-family: var(--font-work);
  font-size: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.2rem;
}

.aboutBloques__textos {
  display: flex;
  flex-direction: column;
  gap: 4.6rem;
}

.aboutBloques__info {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 6.7rem;
  cursor: default;
}

.aboutBloques__info span {
  flex: 0.1;
  display: block;
  font-family: var(--font-work);
  font-size: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.2rem;
  opacity: 0.3;
}

.aboutBloques__info p {
  flex: 1;
  font-size: 2.2rem;
  text-align: justify;
  hyphens: auto;
  opacity: 0.3;
}

.aboutBloques__info--activo h3,
.aboutBloques__info--activo span,
.aboutBloques__info--activo p {
  opacity: 1;
}

.aboutBloques__columna--right {
  flex: 0.4;
  aspect-ratio: 645 / 777;
}

.aboutBloques__img {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.aboutBloques__img--activo {
  opacity: 1;
}

@media only screen and (min-width: 0) and (max-width: 1279px) {
  .aboutBloques__info {
    gap: 1rem;
  }
  .aboutBloques__columna--left {
    gap: 4rem;
  }
}
@media only screen and (min-width: 0) and (max-width: 779px) {
  .aboutBloques__container {
    flex-direction: column-reverse;
    padding: 5.6rem 5.5rem 6.4rem 5.5rem;
  }
  .aboutBloques__columna--right {
    width: 100%;
  }
}

/* ABOUT / LOCALIZACIÓN */

.aboutLoca {
  width: 100%;
  border-top: 1px solid var(--color-black);
}

.aboutLoca__container {
  width: 100%;
  padding: 3.3rem 12.2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.aboutLoca__h3 {
  flex: 0.33;
  text-align: center;
  font-family: var(--font-work);
  font-size: 2rem;
  font-weight: normal;
  text-transform: uppercase;
  letter-spacing: 0.2rem;
}

.aboutLoca__figure {
  flex: 0.33;
  max-width: 33%;
  aspect-ratio: 558 / 755;
  overflow: hidden;
}

.aboutLoca__figure img {
  width: 100% !important;
  height: 100%;
  object-fit: cover;
}

.aboutLoca__h4 {
  flex: 0.33;
  text-align: center;
  font-size: 2.2rem;
  font-weight: normal;
}

@media only screen and (min-width: 0) and (max-width: 779px) {
  .aboutLoca__container {
    flex-direction: column;
    row-gap: 4rem;
  }
}
@media only screen and (min-width: 0) and (max-width: 639px) {
  .aboutLoca__figure {
    max-width: 100%;
  }
}

/* ABOUT / MARCAS */

.aboutMarcas {
  width: 100%;
}

.aboutMarcas__container {
  width: 100%;
  padding: 17rem 15rem 21rem 15rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10rem;
}

.aboutMarcas__h4 {
  font-family: var(--font-work);
  font-size: 2rem;
  font-weight: normal;
  text-transform: uppercase;
  letter-spacing: 0.2rem;
}

.aboutMarcas__logos {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 5rem;
}

.aboutMarcas__figure {
  flex: auto;
}

.aboutMarcas__figure img {
  width: 100%;
  height: auto;
}

@media only screen and (min-width: 0) and (max-width: 779px) {
  .aboutMarcas__logos {
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 1rem;
  }
  .aboutMarcas__figure {
    max-width: 20%;
  }
}

@media only screen and (min-width: 0) and (max-width: 639px) {
  .aboutMarcas__container {
    padding: 17rem 5.5rem 21rem 5.5rem;
  }
}

/* ABOUT / VIDEO */

.aboutVideo {
  width: 100%;
  overflow: hidden;
  aspect-ratio: 16 / 9;
}

.aboutVideo__container {
  width: 100%;
  height: 100%;
  position: relative;
}

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

/* PAGE */

.page {
  width: 100%;
}

.page__container {
  width: 100%;
  max-width: 120rem;
  margin: auto;
  padding: 12.3rem 6rem 8.2rem 7.2rem;
}

.page h1 {
  font-family: var(--font-work);
  font-size: clamp(18px, 2vw, 2rem);
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  color: var(--color-marron);
  margin-bottom: 5rem;
}

.page h2,
.cmplz-document h2 {
  font-family: var(--font-work);
  font-size: clamp(16px, 2vw, 1.8rem) !important;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  color: var(--color-marron);
  margin-bottom: 2rem;
}

.page h3,
.cmplz-document h3 {
  font-family: var(--font-work) !important;
  font-size: clamp(15px, 2vw, 1.6rem) !important;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  color: var(--color-marron);
  margin-bottom: 1.5rem;
}

.page p,
.cmplz-document p {
  font-family: var(--font-zodiak);
  font-size: clamp(14px, 2vw, 1.6rem) !important;
  color: var(--color-marron);
  text-align: justify;
  hyphens: auto;
  margin-bottom: 2.2rem;
}

.page a,
.cmplz-document a {
  color: var(--color-marron);
}

@media (max-width: 799px) {
  .page__container {
    padding: 20rem 2.5rem 8.2rem 2.5rem;
  }
}
