/*  
	Theme Name: Artsurfcamp 
	Version: 1.0 2025
	Author: hctr
*/

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

* {
  box-sizing: border-box;
  position: relative;
  margin: 0;
  padding: 0;
}

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

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

p {
  text-wrap: pretty;
}

figure {
  margin: 0;
}

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

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

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

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

:root {
  --color--principal: rgb(35, 31, 32);
  --color--secundario: rgb(234, 95, 52);
  --color--terciario: rgb(255, 255, 255);
  --color--cuaternario: rgb(247, 245, 245);
  --fuente--principal: "PP Mori", sans-serif;
  --fuente--secundario: "VolumeFour", sans-serif;
  --size--11: clamp(10px, 1.1vw, 1.1rem);
  --size--13: clamp(12px, 2vw, 1.3rem);
  --size--15: clamp(14px, 2vw, 1.5rem);
  --size--16: clamp(14px, 2vw, 1.6rem);
  --size--18: clamp(15px, 2vw, 1.8rem);
  --size--20: clamp(16px, 2vw, 2rem);
  --size--22: clamp(16px, 2vw, 2.2rem);
  --size--30: clamp(18px, 3vw, 3rem);
  --size--40: clamp(19px, 4vw, 4rem);
  --size--43: clamp(20px, 4vw, 4.3rem);
  --size--45: clamp(24px, 4.5vw, 4.5rem);
  --size--70: clamp(30px, 7vw, 7rem);
  --size--109: clamp(36px, 10vw, 10.9rem);
}

* {
  font-family: var(--fuente--principal);
  color: var(--color--principal);
  /* Removed global 'transition: all' to avoid jank on mobile during scroll/reflow */
  /* Apply transitions only to specific interactive elements below */
}

/* Smooth transitions for interactive elements only (not global) */
a,
button,
input[type="submit"],
input[type="button"] {
  -webkit-transition:
    color 0.2s ease-out,
    background-color 0.2s ease-out,
    border-color 0.2s ease-out;
  -o-transition:
    color 0.2s ease-out,
    background-color 0.2s ease-out,
    border-color 0.2s ease-out;
  -moz-transition:
    color 0.2s ease-out,
    background-color 0.2s ease-out,
    border-color 0.2s ease-out;
  -ms-transition:
    color 0.2s ease-out,
    background-color 0.2s ease-out,
    border-color 0.2s ease-out;
  transition:
    color 0.2s ease-out,
    background-color 0.2s ease-out,
    border-color 0.2s ease-out;
}

html {
  font-size: 10px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-feature-settings: "kern", "liga";
}

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

/* Máscara */

.mask {
  display: block;
  overflow: hidden;
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.mask > * {
  display: block;
  opacity: 0;
  transform: translateY(100%);
}

.mask--active > * {
  animation: maskClip 1s;
  animation-fill-mode: forwards;
}

.mask-1 > * {
  animation-delay: 0.25s;
}

.mask-2 > * {
  animation-delay: 0.5s;
}

.mask-3 > * {
  animation-delay: 0.75s;
}

.mask-4 > * {
  animation-delay: 1s;
}

.mask-5 > * {
  animation-delay: 1.25s;
}

@keyframes maskClip {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0%);
    opacity: 1;
  }
}

.opacity {
  opacity: 0;
}

.opacity--active {
  animation: fadeIn 1s;
  animation-fill-mode: forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Main */

body.no-scroll {
  overflow: hidden;
}

/********************************************************************************/
/*************************************************** CLASSES PRIMER RENDERIZADO */
/********************************************************************************/

/* Main Header */

.mainHeader {
  position: fixed;
  z-index: 10;
  inset: 0;
  width: 100%;
  max-height: 9rem;
}

.mainHeader--scroll {
  position: fixed;
  max-height: 10rem;
  background-color: var(--color--terciario);
}

.mainHeader--submenu {
  max-height: 20rem;
  background-color: var(--color--terciario);
}

.mainHeader__container {
  width: 100%;
  padding: 2.8rem 2.2rem 2.8rem 2.2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mainHeader__logo {
  z-index: 1;
  width: 9.5rem;
  aspect-ratio: 94 / 35;
  background: url("./img/logotipo-blanco.svg");
  background-size: contain;
  background-repeat: no-repeat;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  opacity: 0;
  animation: logoFade 0.8s ease-out 0.3s forwards;
}

@keyframes logoFade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.mainHeader--submenu .mainHeader__logo {
  background: url("./img/logotipo-rojo.svg");
  background-size: contain;
  background-repeat: no-repeat;
}

.mainHeader--scroll .mainHeader__logo,
.mainHeader--rojo .mainHeader__logo {
  background: url("./img/logotipo-rojo.svg");
  background-size: contain;
  background-repeat: no-repeat;
}

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

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

/* Menu principal */

.mainHeader__menu {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.mainHeader__menu > li {
  opacity: 0;
  transform: translateY(-0.6rem);
  animation: mainHeaderNavItemIn 0.45s ease-out forwards;
  padding-right: 3rem;
}

.mainHeader__menu > li:nth-child(1) {
  animation-delay: 0.1s;
}
.mainHeader__menu > li:nth-child(2) {
  animation-delay: 0.2s;
}
.mainHeader__menu > li:nth-child(3) {
  animation-delay: 0.3s;
}
.mainHeader__menu > li:nth-child(4) {
  animation-delay: 0.4s;
}
.mainHeader__menu > li:nth-child(5) {
  animation-delay: 0.5s;
}
.mainHeader__menu > li:nth-child(6) {
  animation-delay: 0.6s;
}
.mainHeader__menu > li:nth-child(7) {
  animation-delay: 0.7s;
}
.mainHeader__menu > li:nth-child(8) {
  animation-delay: 0.8s;
}
.mainHeader__menu > li:nth-child(9) {
  animation-delay: 0.9s;
}
.mainHeader__menu > li:nth-child(10) {
  animation-delay: 1s;
}

@keyframes mainHeaderNavItemIn {
  from {
    opacity: 0;
    transform: translateY(-0.6rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .mainHeader__menu > li {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

.mainHeader__menu > li a {
  color: var(--color--terciario);
  text-decoration: none;
  font-size: var(--size--13);
  text-transform: uppercase;
}

.mainHeader--submenu .mainHeader__menu > li a {
  color: var(--color--secundario);
}

.mainHeader--scroll .mainHeader__menu > li a,
.mainHeader--rojo .mainHeader__menu > li a {
  color: var(--color--secundario);
}

.mainHeader__menu > li > a:hover {
  border-bottom: 0.5px solid var(--color--terciario);
}

.mainHeader--submenu .mainHeader__menu > li > a:hover {
  border-bottom: 0.5px solid var(--color--secundario);
}

.mainHeader--scroll .mainHeader__menu > li > a:hover,
.mainHeader--rojo .mainHeader__menu > li > a:hover {
  border-bottom: 0.5px solid var(--color--secundario);
}

.mainHeader__menu > li > ul {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  list-style: none;
  padding-top: 4rem;
}

.mainHeader__menu > li.columns > ul {
  grid-template-rows: repeat(2, auto);
  grid-auto-flow: column;
  grid-auto-columns: max-content;
  column-gap: 3rem;
  row-gap: 0;
  width: max-content;
}

.mainHeader__menu > li.columns-3 > ul {
  grid-template-rows: repeat(3, auto);
  grid-auto-flow: column;
  grid-auto-columns: max-content;
  column-gap: 3rem;
  row-gap: 0;
  width: max-content;
}

@media (min-width: 960px) {
  .mainHeader__menu > li:hover > ul {
    display: grid;
  }
}

.mainHeader__menu > li > ul > li {
  margin-bottom: 1.7rem;
}

.mainHeader__menu > li > ul a {
  color: var(--color--secundario);
  text-decoration: none;
  font-size: var(--size--13);
  text-transform: uppercase;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.mainHeader__menu > li > ul a::before {
  content: "";
  display: block;
  width: 0.8rem;
  aspect-ratio: 1 / 1;
  border: 0.1rem solid var(--color--secundario);
  border-radius: 100%;
}

.mainHeader__menu > li > ul a:hover::before {
  background-color: var(--color--secundario);
}

/* Menu reservar */

.mainHeader__reservar {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.mainHeader__reservar li:first-child {
  padding-right: 3rem;
}

@media (max-width: 439px) {
  .mainHeader__reservar li:first-child {
    padding-right: 2rem;
  }
}

.mainHeader__reservar li:last-child {
  margin-left: 2px;
}

.mainHeader__reservar li:first-child a {
  opacity: 0;
  transform: translateY(-0.6rem);
  animation: mainHeaderNavB 0.45s ease-out forwards;
  animation-delay: 0.9s;
}

@keyframes mainHeaderNavB {
  from {
    opacity: 0;
    transform: translateY(-0.6rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mainHeader__reservar li:last-child {
  padding-right: 0;
}

.mainHeader__reservar li a {
  color: var(--color--terciario);
  text-decoration: none;
  font-size: var(--size--13);
  text-transform: uppercase;
  white-space: nowrap;
}

@media (max-width: 439px) {
  .mainHeader__reservar li a {
    font-size: 10px;
  }
}

.mainHeader__reservarButton a {
  padding: 7px 7px 5px 7px !important;
  background-color: var(--color--secundario);
  border: 0.1rem solid var(--color--secundario);
  color: var(--color--terciario);
  text-decoration: none;
  font-size: var(--size--13);
  text-transform: uppercase;
  white-space: nowrap;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  opacity: 0;
  transform: translateY(-0.6rem);
  animation: mainHeaderNavA 0.45s ease-out forwards;
  animation-delay: 1s;
}

@keyframes mainHeaderNavA {
  from {
    opacity: 0;
    transform: translateY(-0.6rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mainHeader__reservarButton a:hover {
  background-color: var(--color--terciario);
  color: var(--color--secundario);
}

.c-netelip {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  white-space: nowrap;
  border: 0;
}

.mainHeader__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.8rem;
}

.mainHeader__netelipButton {
  position: absolute;
  right: 2rem;
  bottom: 0;
  width: var(--mainHeader-netelip-width, auto);
  padding: 7px 7px 5px 7px;
  background-color: var(--color--secundario);
  border: 0.1rem solid var(--color--secundario);
  color: var(--color--terciario);
  text-decoration: none;
  font-size: var(--size--13);
  text-transform: uppercase;
  white-space: nowrap;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  opacity: 0;
  transform: translateY(-0.6rem);
  animation: mainHeaderNavA 0.45s ease-out forwards;
  animation-delay: 1.05s;
  cursor: pointer;
}

@media (max-width: 959px) {
  .mainHeader__netelipButton {
    bottom: -7rem;
  }
}

.mainHeader__netelipButton::before {
  content: "";
  width: 1.4rem;
  height: 1.4rem;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M6.62 10.79a15.053 15.053 0 0 0 6.59 6.59l2.2-2.2a1 1 0 0 1 1-.24 11.36 11.36 0 0 0 3.56.57 1 1 0 0 1 1 1V21a1 1 0 0 1-1 1A17 17 0 0 1 2 5a1 1 0 0 1 1-1h3.49a1 1 0 0 1 1 1 11.36 11.36 0 0 0 .57 3.56 1 1 0 0 1-.24 1z'/%3E%3C/svg%3E")
    center / contain no-repeat;
}

.mainHeader__netelipButton:hover {
  background-color: var(--color--terciario);
  color: var(--color--secundario);
}

.mainHeader__netelipButton:hover::before {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23E30613'%3E%3Cpath d='M6.62 10.79a15.053 15.053 0 0 0 6.59 6.59l2.2-2.2a1 1 0 0 1 1-.24 11.36 11.36 0 0 0 3.56.57 1 1 0 0 1 1 1V21a1 1 0 0 1-1 1A17 17 0 0 1 2 5a1 1 0 0 1 1-1h3.49a1 1 0 0 1 1 1 11.36 11.36 0 0 0 .57 3.56 1 1 0 0 1-.24 1z'/%3E%3C/svg%3E")
    center / contain no-repeat;
}

/* Widget Netelip: ajustes visuales para integrar con el tema */
[id^="netelip_form_c2c"] {
  border: 1px solid var(--color--secundario) !important;
  border-radius: 0 !important;
  background: var(--color--terciario) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18) !important;
}

[id^="netelip_c2c_form"] {
  font-family: var(--fuente--principal) !important;
}

[class*="netelip_c2c_containerCSS"] {
  z-index: 10001 !important;
}

[class*="netelip_c2c_barraCss"] {
  background: var(--color--secundario) !important;
  border-bottom: 1px solid var(--color--secundario) !important;
}

[class*="netelip_c2c_botonCerrarCss"] {
  opacity: 1 !important;
  display: flex;
  justify-content: center;
  align-items: center;
}

[id^="netelip_c2c_"][id$="body"] p,
[id^="netelip_c2c_"][id$="body"] label,
[id^="netelip_c2c_"][id$="body"] a,
[id^="netelip_c2c_"][id$="body"] span {
  font-family: var(--fuente--principal) !important;
  color: var(--color--principal) !important;
  font-size: var(--size--15) !important;
  margin-bottom: 1.5rem !important;
}

[id^="netelip_c2c_"][id$="body"] input,
[id^="netelip_c2c_"][id$="body"] select {
  border: 1px solid rgba(35, 31, 32, 0.25) !important;
  border-radius: 0 !important;
  background: var(--color--terciario) !important;
  color: var(--color--principal) !important;
  font-family: var(--fuente--principal) !important;
  font-size: var(--size--15) !important;
  padding: 0.8rem 1rem !important;
  margin-right: 2rem !important;
}

[class*="netelip_c2c_btnCall"] {
  padding: 0.7rem 1rem 0.5rem !important;
  border: 0.1rem solid var(--color--secundario) !important;
  border-radius: 0 !important;
  background: var(--color--secundario) !important;
  color: var(--color--terciario) !important;
  text-transform: uppercase !important;
  font-size: var(--size--13) !important;
  font-family: var(--fuente--principal) !important;
}

[class*="netelip_c2c_btnCall"]:hover {
  background: var(--color--terciario) !important;
  color: var(--color--secundario) !important;
}

[id^="netelip_c2c_"][id$="body"] a {
  color: var(--color--secundario) !important;
}

.mainHeader__reservarButton a:after {
  content: "";
  width: 2.5rem;
  aspect-ratio: 19 / 11;
  background: url("./img/flecha-blanco.svg");
  background-size: contain;
  background-repeat: no-repeat;
  overflow: hidden;
}

.mainHeader__reservarButton--carrito a:after {
  display: none;
}

.mainHeader__reservarButton a:hover:after {
  background: url("./img/flecha-rojo.svg");
  background-size: contain;
  background-repeat: no-repeat;
}

.mainHeader--scroll .mainHeader__reservar li:first-child a,
.mainHeader--rojo .mainHeader__reservar li:first-child a,
.mainHeader--submenu .mainHeader__reservar li:first-child a {
  color: var(--color--secundario);
}

.mainHeader--scroll .mainHeader__reservar li:first-child a:hover,
.mainHeader--rojo .mainHeader__reservar li:first-child a:hover,
.mainHeader--submenu .mainHeader__reservar li:first-child a:hover {
  border-bottom: 0.5px solid var(--color--secundario);
}

.mainHeader__reservar li.mainHeader__reservarCarrito,
li.mainHeader__reservarCarrito {
  display: none;
  max-width: clamp(23.5px, 2vw, 2.62rem);
  height: clamp(23.5px, 2vw, 2.62rem);
  aspect-ratio: 1 / 1;
  background-image: url("./assets/cart.svg");
  background-color: white;
  background-size: clamp(14px, 1vw, 1.2rem);
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  opacity: 0;
  transform: translateY(-0.6rem);
  animation: mainHeaderCarrito 0.45s ease-out forwards;
  animation-delay: 1.1s;
}

.mainHeader__reservar li.mainHeader__reservarCarrito > a,
li.mainHeader__reservarCarrito > a {
  display: block;
  width: 100%;
  height: 100%;
  text-indent: 100%;
  white-space: nowrap;
  color: transparent;
}

@keyframes mainHeaderCarrito {
  from {
    opacity: 0;
    transform: translateY(-0.6rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

body.artsu--cart-has-items .mainHeader__reservar li.mainHeader__reservarCarrito,
body.artsu--cart-has-items li.mainHeader__reservarCarrito {
  display: block;
}

.mainHeader__reservarCarritoCount {
  position: absolute;
  top: -0.5rem;
  right: -0.5rem;
  min-width: clamp(12px, 1vw, 1.65rem);
  height: clamp(12px, 1vw, 1.65rem);
  padding: 0 0.35rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background-color: var(--color--secundario);
  color: var(--color--terciario);
  font-size: clamp(10px, 1vw, 1.1rem);
  line-height: 1;
  font-weight: 600;
  text-indent: 0;
  white-space: nowrap;
  z-index: 1;
  pointer-events: none;
}

.mainHeader__reservarCarritoCount[hidden] {
  display: none;
}

/* Burger */

.mainHeader__burger {
  display: none;
}

@media (max-width: 1023px) {
  .mainHeader__menu > li > ul a {
    gap: 1rem;
  }
}
@media (max-width: 959px) {
  .mainHeader__container {
    padding: 2.8rem 3rem;
  }
  .mainHeader--scroll .mainHeader__container,
  .mainHeader--rojo .mainHeader__container {
    padding: 1.8rem 2.2rem 1.8rem 2.2rem;
  }
  .mainHeader__nav {
    position: initial;
    gap: 3rem;
  }
  .mainHeader__actions {
    gap: 0.6rem;
  }
  .mainHeader__logo {
    width: 95px;
  }
  .mainHeader--movil .mainHeader__logo {
    background: url("./img/logotipo-blanco.svg");
    background-size: contain;
    background-repeat: no-repeat;
  }
  /*
  .mainHeader--movil .mainHeader__reservar a.submenu {
    border: 0.1rem solid var(--color--terciario);
  }
    */
  .mainHeader__menu {
    position: fixed;
    z-index: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: var(--color--secundario);
    flex-direction: column;
    justify-content: start;
    align-items: start;
    overflow-x: hidden;
    overflow-y: auto;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* Internet Explorer 10+ */
    transition: all 0.3s ease-in-out;
    gap: 4rem;
  }
  .mainHeader__menu::-webkit-scrollbar {
    display: none; /* Safari y Chrome */
  }
  .mainHeader__menu.activo {
    height: 100dvh;
    padding: 20rem 0;
  }
  .mainHeader__menu > li:first-child {
    padding-top: 4rem;
    border-top: 1px solid var(--color--terciario);
  }
  .mainHeader__menu > li {
    padding-right: 0;
    border-bottom: 1px solid var(--color--terciario);
    width: 100%;
    padding: 0 4rem 3rem 4rem;
  }
  .mainHeader__menu > li a,
  .mainHeader--movil .mainHeader__menu > li a {
    font-size: var(--size--20);
    color: var(--color--terciario);
  }
  .mainHeader__menu > li.submenu > a,
  .mainHeader--movil .mainHeader__menu > li.submenu > a {
    display: flex;
    justify-content: start;
    align-items: start;
    gap: 1rem;
    color: var(--color--terciario);
  }
  .mainHeader__menu > li.submenu > a::after {
    content: "+";
  }
  .mainHeader__menu > li.submenu.active ul {
    display: block;
  }
  .mainHeader__menu > li.submenu.active > a::after {
    content: "-";
  }
  .mainHeader__menu > li > a:hover {
    border: 0;
  }
  .mainHeader__menu > li > ul {
    position: relative;
    top: 3rem;
    padding-top: 0;
  }
  .mainHeader__menu > li.columns > ul,
  .mainHeader__menu > li.columns-3 > ul {
    column-count: 1;
  }
  .mainHeader__menu > li > ul a,
  .mainHeader--movil .mainHeader__menu > li > ul a {
    color: var(--color--terciario);
    justify-content: start;
    font-size: var(--size--18);
    padding-left: 2rem;
  }
  .mainHeader__menu > li > ul a::before {
    border: 0.1rem solid var(--color--terciario);
  }
  .mainHeader__menu > li > ul > li {
    margin-bottom: 3rem;
  }
  .mainHeader__burger {
    display: block;
    width: 3rem;
    height: 1.5rem;
    border: none;
    background: transparent;
    cursor: pointer;
  }
  .mainHeader__burger::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 3rem;
    height: 1px;
    background-color: var(--color--terciario);
  }
  .mainHeader__burger::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 3rem;
    height: 1px;
    background-color: var(--color--terciario);
  }
  .mainHeader__burger.activo::after {
    transform: rotate(45deg);
    top: 0.7rem;
  }
  .mainHeader__burger.activo::before {
    transform: rotate(-45deg);
    bottom: 0.7rem;
  }
  .mainHeader--scroll .mainHeader__burger::after,
  .mainHeader--scroll .mainHeader__burger::before,
  .mainHeader--rojo .mainHeader__burger::after,
  .mainHeader--rojo .mainHeader__burger::before {
    background-color: var(--color--secundario);
  }
  .mainHeader--movil .mainHeader__burger:after,
  .mainHeader--movil .mainHeader__burger:before {
    background-color: var(--color--terciario);
  }
  .mainHeader__menu > a.activo {
    background-color: var(--color--terciario);
    color: var(--color--secundario);
  }
  .mainHeader__menu > a.activo:after {
    background: url("./img/flecha-rojo.svg");
    background-size: contain;
    background-repeat: no-repeat;
  }
}
@media (max-width: 479px) {
  .mainHeader--scroll .mainHeader__container,
  .mainHeader--rojo .mainHeader__container {
    padding: 1.8rem 2.2rem 1.8rem 2.2rem;
  }
  .mainHeader__netelipButton {
    font-size: 10px;
    gap: 0.8rem;
  }
  .mainHeader__netelipButton::before {
    width: 2rem;
    height: 2rem;
  }
}

/* Main Footer */

.mainFooter {
  width: 100%;
  background-color: var(--color--secundario);
}

.mainFooter__container {
  width: 100%;
  padding: 9.8rem 9.2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8%;
}

.mainFooter__container span {
  width: 15.5rem;
  aspect-ratio: 1 / 1;
  background: url("./img/logo-blanco.svg");
  background-size: contain;
  background-repeat: no-repeat;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}

.mainFooter__contenido {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  row-gap: 4.8rem;
}

.mainFooter__top {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 8%;
}

.mainFooter__top ul {
  flex: 1;
  list-style: none;
}

.mainFooter__top li {
  font-size: var(--size--18);
  color: var(--color--terciario);
}

.mainFooter__top li:first-child {
  margin-bottom: 2.2rem;
  font-size: var(--size--16);
  text-transform: uppercase;
}

.mainFooter__top a {
  color: var(--color--terciario);
  text-decoration: none;
}

.mainFooter__bottom {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 8%;
}

.mainFooter__enlaces {
  flex: 1 0.3 30%;
  font-size: var(--size--16);
  color: var(--color--terciario);
}

.mainFooter__enlaces p {
  font-size: var(--size--16);
  text-transform: uppercase;
  color: var(--color--terciario);
  line-height: 1.2;
}

.mainFooter__enlaces a {
  font-size: var(--size--16);
  text-transform: uppercase;
  text-decoration: none;
  color: var(--color--terciario);
}

.mainFooter__menu {
  flex: 1 0.7 70%;
  max-width: 70%;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.mainFooter__menu li {
  font-size: var(--size--16);
  text-transform: uppercase;
  color: var(--color--terciario);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.mainFooter__menu li::after {
  content: "/";
}

.mainFooter__menu li:last-child::after {
  content: "";
}

.mainFooter__menu li a {
  color: var(--color--terciario);
  text-decoration: none;
}

@media (max-width: 959px) {
  .mainFooter__container {
    flex-direction: column;
    row-gap: 10rem;
  }
  .mainFooter__top {
    text-align: center;
    flex-direction: column;
    align-items: center;
    row-gap: 4rem;
  }
  .mainFooter__bottom {
    text-align: center;
    flex-direction: column;
    align-items: center;
    row-gap: 4rem;
  }
  .mainFooter__menu {
    justify-content: center;
  }
}

/* Home - Cabecera */

.homeHero {
  width: 100%;
  height: 100dvh;
}

.homeHero::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 100%;
  height: 0%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.4) 0%,
    rgba(0, 0, 0, 0) 85%,
    rgba(0, 0, 0, 0) 100%
  );
  opacity: 0;
  animation: homeHeroGradient 1s ease-out forwards;
}

@keyframes homeHeroGradient {
  from {
    height: 0%;
    opacity: 0;
  }
  to {
    height: 30%;
    opacity: 1;
  }
}

.homeHero__container {
  width: 100%;
  height: 100%;
  padding: 0 6.2rem 5.9rem 6.2rem;
  display: flex;
  align-items: flex-end;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.4) 0%,
    rgba(0, 0, 0, 0) 30%
  );
}

.homeHero__contenido {
  z-index: 1;
  width: 100%;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2.5%;
}

.homeHero__titulo {
  margin-bottom: -2.5rem;
}

.homeHero__titulo span {
  font-family: var(--fuente--secundario);
  font-size: var(--size--109);
  font-weight: normal;
  line-height: 1;
  letter-spacing: 0.5rem;
  color: var(--color--terciario);
}

.homeHero__cta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1.9rem;
}

.homeHero__cta h1 span {
  font-size: var(--size--22);
  color: var(--color--terciario);
  white-space: nowrap;
}

.homeHero__cta span {
  display: block;
  width: 100%;
}

.homeHero__cta a {
  width: 100%;
  padding: 0.7rem 0.7rem 0.5rem 0.7rem;
  background-color: var(--color--secundario);
  color: var(--color--terciario);
  text-decoration: none;
  font-size: var(--size--13);
  text-transform: uppercase;
  white-space: nowrap;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.homeHero__cta a::after {
  content: "";
  width: 2.5rem;
  aspect-ratio: 19 / 11;
  background: url("./img/flecha-blanco.svg");
  background-size: contain;
  background-repeat: no-repeat;
  display: inline-block;
  margin-left: 2rem;
}

.homeHero__container video {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.homeHero__container video[poster] {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 799px) {
  .homeHero__contenido {
    padding-bottom: 12rem;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    row-gap: 10rem;
  }
  .homeHero__contenido h1 span {
    text-align: center;
  }
  .homeHero__titulo span {
    text-align: center;
  }
}

/* SURFCAMPS MENORES - Hero */

.menoresHero {
  width: 100%;
  height: calc(100dvh - 12.7rem);
  display: flex;
  flex-direction: column;
}

/* que .menoresHero::before tenga una única animación de 0% height a 30% */

.menoresHero::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 100%;
  height: 0%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.4) 0%,
    rgba(0, 0, 0, 0) 85%,
    rgba(0, 0, 0, 0) 100%
  );
  opacity: 0;
  animation: menoresHeroGradient 1s ease-out forwards;
}

@keyframes menoresHeroGradient {
  from {
    height: 0%;
    opacity: 0;
  }
  to {
    height: 30%;
    opacity: 1;
  }
}

.menoresHero__container {
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}

.menoresHero h1 {
  position: absolute;
  z-index: 1;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}

.menoresHero h1 span {
  font-family: var(--fuente--secundario);
  font-weight: normal;
  font-size: var(--size--70);
  line-height: 1;
  letter-spacing: 0.5rem;
  color: var(--color--terciario);
}

.menoresHero__video {
  flex: 1;
  height: 100%;
}

.menoresHero__video::after {
  content: "";
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.4) 0%,
    rgba(0, 0, 0, 0) 30%
  );
}

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

.menoresHero__video video[poster] {
  object-fit: cover;
}

.menoresHero__video span {
  position: absolute;
  z-index: 1;
  bottom: 3.2rem;
  left: 3.2rem;
  font-size: var(--size--45);
  color: var(--color--terciario);
}

.menoresHero__video--der span {
  left: auto;
  right: 3.2rem;
}

@media (max-width: 639px) {
  .menoresHero h1 {
    width: 100%;
  }
  .menoresHero__container {
    flex-direction: column;
  }
  .menoresHero__video {
    position: initial;
    height: 50%;
  }
  .menoresHero__video span {
    bottom: 51%;
  }
  .menoresHero__video--der span {
    bottom: 44%;
  }
}

/* Tabs */

.menoresTabs {
  width: 100%;
}

.menoresTabs__botones {
  position: sticky;
  top: 8rem;
  left: 0;
  z-index: 9;
  width: 100%;
  max-height: 12.7rem;
  min-height: 12.7rem;
  padding: 3.4rem 3.2rem;
  background-color: var(--color--cuaternario);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3.2rem;
  transition: none;
}

.menoresTabs__botones--small {
  max-height: 6rem;
  min-height: 6rem;
}

.menoresTabs__botones button {
  flex: 1;
  max-height: 5.9rem;
  appearance: none;
  border: 0.2rem solid var(--color--secundario);
  background: transparent;
  color: var(--color--secundario);
  padding: 1.5rem 1.2rem 1rem 1.2rem;
  font-size: var(--size--40);
  text-transform: uppercase;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: none;
}

.menoresTabs__botones button::after {
  content: "";
  width: 3rem;
  aspect-ratio: 30 / 17;
  background: url("./img/flecha-rojo.svg");
  background-size: contain;
  background-repeat: no-repeat;
  display: inline-block;
}

.menoresTabs__botones button.activo,
.menoresTabs__botones button:hover {
  background-color: var(--color--secundario);
  color: var(--color--terciario);
}

.menoresTabs__botones button.activo::after,
.menoresTabs__botones button:hover::after {
  background: url("./img/flecha-blanco.svg");
  background-size: contain;
  background-repeat: no-repeat;
}

.menoresTabs__botones--small button {
  font-size: var(--size--30);
  max-height: 4.2rem;
}

/* GENERAL - Cabecera */

.pageHero {
  width: 100%;
  height: 70dvh;
  max-height: 70vh;
}

.pageHero::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 100%;
  height: 0%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.4) 0%,
    rgba(0, 0, 0, 0) 85%,
    rgba(0, 0, 0, 0) 100%
  );
  opacity: 0;
  animation: pageHeroGradient 1s ease-out forwards;
}

@keyframes pageHeroGradient {
  from {
    height: 0%;
    opacity: 0;
  }
  to {
    height: 30%;
    opacity: 1;
  }
}

.pageHero__container {
  width: 100%;
  height: 100%;
}

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

.pageHero__container video[poster] {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pageHero__container picture {
  width: 100%;
  height: 100%;
  display: block;
}

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

/* GENERAL - Presentación */

.pagePrese {
  width: 100%;
  border-top: 0.5px solid var(--color--secundario);
  border-bottom: 0.5px solid var(--color--secundario);
}

.pagePrese--reserva {
  margin-top: 9rem;
}

.pagePrese__container {
  width: 100%;
}

.pagePrese__titulos {
  width: 100%;
  padding: 2.8rem 3.2rem 2rem 3.2rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.pagePrese__titulos h2,
.pagePrese__titulos h1 {
  width: auto;
  padding: 0;
}

.pagePrese__container h2 span,
.pagePrese__container h1 span {
  font-size: var(--size--70);
  font-weight: normal;
  line-height: 1;
  text-transform: uppercase;
  color: var(--color--secundario);
}

.pagePrese__container h2 span:last-child,
.pagePrese__container h1 span:last-child {
  font-size: var(--size--22);
  text-align: right;
}

.pagePrese__titulos h1 span {
  font-size: var(--size--70) !important;
  text-align: left !important;
}

.pagePrese--page h1 span {
  font-size: var(--size--70) !important;
  text-align: left !important;
}

.pagePrese--reserva h1 span {
  font-size: var(--size--70) !important;
  text-align: left !important;
}

.pagePrese__contenido {
  width: 100%;
  border-top: 0.5px solid var(--color--secundario);
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}

.pagePrese__contenido > div:first-child {
  flex: 1 0.5 50%;
  padding: 4.7rem 8% 4.7rem 3.2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 1.6rem;
}

.pagePrese__slide {
  flex: 1 0.5 50%;
  max-width: 50%;
  aspect-ratio: 742 / 455;
  overflow: hidden;
}

.pagePrese__slide picture {
  display: block;
}

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

.pagePrese__slide .swiper-button-next {
  top: inherit;
  bottom: 1rem;
  width: 2.5rem !important;
  height: auto !important;
  aspect-ratio: 19 / 11;
  margin: 0 !important;
}

.pagePrese__slide .swiper-button-next::after {
  content: "";
  width: 2.5rem;
  aspect-ratio: 19 / 11;
  background: url(./img/flecha-blanco.svg);
  background-size: contain;
  background-repeat: no-repeat;
  overflow: hidden;
}

.pagePrese__slide .swiper-button-prev {
  top: inherit;
  bottom: 1rem;
  width: 2.5rem !important;
  height: auto !important;
  aspect-ratio: 19 / 11;
  margin: 0 !important;
}

.pagePrese__slide .swiper-button-prev::after {
  content: "";
  width: 2.5rem;
  aspect-ratio: 19 / 11;
  background: url(./img/flecha-blanco.svg);
  background-size: contain;
  background-repeat: no-repeat;
  overflow: hidden;
  transform: rotate(-180deg);
}

.pagePrese__contacto {
  padding: 4.7rem;
  aspect-ratio: inherit;
}

.pagePrese__contacto > p {
  font-size: var(--size--15);
  line-height: 1.3;
  color: var(--color--principal);
  text-align: justify;
  margin-bottom: 2.5rem;
}

.pagePrese__contacto form > p {
  margin-bottom: 1.5rem;
}

.pagePrese__contacto form > p label {
  display: block;
  width: 100%;
  font-size: var(--size--15);
  color: var(--color--principal);
  border-bottom: 0.5px solid var(--color--principal);
  padding-bottom: 0.5rem;
  display: flex;
  justify-content: flex-start;
  align-items: baseline;
  gap: 1rem;
}

.pagePrese__contacto form > p label.mensaje {
  align-items: flex-start;
}

.pagePrese__contacto form > p label > span {
  flex: 1;
}

.pagePrese__contacto form > p label > span input {
  width: 100%;
  border: none;
  background: transparent;
  font-size: var(--size--15);
  color: var(--color--principal);
  outline: none;
}

.pagePrese__contacto form > p label > span textarea {
  width: 100%;
  max-height: 10rem;
  border: none;
  background: transparent;
  font-size: var(--size--15);
  color: var(--color--principal);
  resize: none;
  outline: none;
}

.pagePrese__contacto form > p small {
  font-size: 10px;
  color: var(--color--principal);
}

.pagePrese__contacto form .aceptar span {
  margin: 0;
}

.pagePrese__contacto form .enviar p {
  display: flex;
  align-items: flex-end;
}

.pagePrese__contacto form input[type="submit"] {
  padding: 0.7rem 0.7rem 0.5rem 0.7rem;
  background-color: var(--color--secundario);
  color: var(--color--terciario);
  text-decoration: none;
  font-size: var(--size--13);
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 3rem;
}

@media (max-width: 799px) {
  .pagePrese__contenido {
    flex-direction: column;
  }
  .pagePrese__contenido > div:first-child {
    flex: none;
    width: 100%;
    padding: 4.7rem 3.2rem 2rem 3.2rem;
  }
  .pagePrese__slide {
    flex: none;
    width: 100%;
    max-width: 100%;
    aspect-ratio: 4 / 3;
  }
  .pagePrese__titulos {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .pagePrese__titulos h2,
  .pagePrese__titulos h1 {
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  .pagePrese__titulos h1 span,
  .pagePrese__titulos h2 span {
    text-align: center !important;
  }
  .pagePrese__contacto {
    padding: 4.7rem 3.2rem;
    aspect-ratio: initial;
  }
}
@media (max-width: 639px) {
  .pagePrese__container h2,
  .pagePrese__container h1 {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .pagePrese__container h1 span:last-child {
    text-align: center !important;
  }
  .pagePrese--page h1 span {
    align-items: flex-start !important;
    text-align: left !important;
  }
}

/* GENERAL - Vídeo Banner */

.pageVideoBanner {
  width: 100%;
  aspect-ratio: 1440 / 623;
  overflow: hidden;
}

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

.pageVideoBanner video[poster] {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* BLOG */

.blogHero {
  width: 100%;
  display: flex;
  flex-direction: column-reverse;
}

.blogHero::after {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 30%;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.4) 100%
  );
}

.blogHero .swiper {
  width: 100%;
  height: 70dvh;
  max-height: 70vh;
}

.blogHero .swiper-slide a {
  display: block;
  width: 100%;
  height: 100%;
}

.blogHero .swiper-slide a::after {
  content: "";
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.4) 0%,
    rgba(0, 0, 0, 0) 30%
  );
}

.blogHero .swiper-slide picture,
.blogHero .swiper-slide picture a {
  display: block;
  width: 100%;
  height: 100%;
}

.blogHero .swiper-slide picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blogHero .swiper-slide h2 {
  position: absolute;
  z-index: 1;
  bottom: 3.2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 100rem;
  padding: 0 3.2rem;
  text-align: center;
  font-size: var(--size--30);
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  color: var(--color--terciario);
}

.blogHero .swiper-slide h2 a {
  color: var(--color--terciario);
  text-decoration: none;
}

.blogHero .swiper-pagination .swiper-pagination-bullet {
  background-color: var(--color--terciario) !important;
}

.blogHero__prese {
  width: 100%;
  border-top: 0.5px solid var(--color--secundario);
  border-bottom: 0.5px solid var(--color--secundario);
  padding: 2.8rem 3.2rem 2rem 3.2rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 5%;
}

.blogHero__prese h1 {
  flex: auto;
  min-width: 15%;
  text-align: left;
  font-weight: normal;
  line-height: 1;
}

.blogHero__prese h1 span {
  width: fit-content;
  font-size: var(--size--22);
  text-transform: uppercase;
  color: var(--color--secundario);
}

.blogHero__prese p {
  flex: auto;
  font-size: var(--size--16);
}

.blogHero__prese p span {
  color: var(--color--secundario);
  font-size: var(--size--16);
}

@media (max-width: 959px) {
  .blogHero .swiper-slide h2 {
    bottom: 4rem;
  }
}
@media (max-width: 639px) {
  .blogHero__prese {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
  }
  .blogHero__prese h1 {
    width: 100%;
    min-width: auto;
  }
  .blogHero__prese h1 span {
    width: 100%;
    text-align: center;
  }
  .blogHero__prese h1 span br {
    display: none;
  }
}
@media (max-width: 479px) {
  .blogHero .swiper-slide h2 {
    bottom: 5rem;
  }
}

/* BLOG - Grid */

.blogGrid {
  width: 100%;
  padding: 5rem 3.2rem;
}

.blogGrid__container {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
  gap: 3.2rem;
}

.blogGrid__item {
  flex: 1 0 calc(33.3333% - 2.1333rem);
  max-width: calc(33.3333% - 2.1333rem);
  display: flex;
  flex-direction: column;
}

.blogGrid__item a {
  text-decoration: none;
}

.blogGrid__item picture {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  margin-bottom: 2rem;
}

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

.blogGrid__item h2 span {
  margin-bottom: 2rem;
  font-size: var(--size--20);
  text-transform: uppercase;
  color: var(--color--secundario);
}

.blogGrid__item time span {
  display: block;
  margin-bottom: 1rem;
  font-size: var(--size--13);
  color: var(--color--principal);
}

.blogGrid__item p span {
  margin-bottom: 2rem;
  font-size: var(--size--16);
  line-height: 1.3;
  color: var(--color--principal);
  text-align: justify;
  hyphens: auto;
}

.blogGrid .pagination {
  width: 100%;
}

.blogGrid .pagination ul {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.6rem;
  margin-top: 4rem;
  list-style: none;
}

.blogGrid .pagination ul li {
  font-size: var(--size--15);
}

.blogGrid .pagination ul li a {
  color: var(--color--secundario);
  text-decoration: none;
}

.blogGrid .pagination ul li a.next {
  display: block;
  width: 2.5rem;
  aspect-ratio: 19 / 11;
  background: url(./img/flecha-rojo.svg);
  background-size: contain;
  background-repeat: no-repeat;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}

@media (max-width: 799px) {
  .blogGrid__item {
    flex: 1 0 calc(50% - 1.6rem);
    max-width: calc(50% - 1.6rem);
  }
}
@media (max-width: 479px) {
  .blogGrid__container {
    row-gap: 6rem;
  }
  .blogGrid__item {
    flex: 1 0 100%;
    max-width: 100%;
  }
}

/* BLOG - Filtro */

.blogFiltro {
  width: 100%;
  padding: 4.5rem 3.2rem 0 3.2rem;
}

.blogFiltro__container {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 2.2rem;
  overflow-x: auto;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* Internet Explorer 10+ */
}

.blogFiltro__container::-webkit-scrollbar {
  display: none; /* Safari and Chrome */
}

.blogFiltro__searchForm {
  flex: 1;
  max-width: 30rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2%;
  border: 0.1rem solid var(--color--principal);
  border-radius: 5rem;
  padding: 0.7rem 1.5rem 0.5rem 1.5rem;
}

.blogFiltro__searchForm input[type="search"] {
  border: none;
  outline: none;
  background: transparent;
  font-size: var(--size--13);
  color: var(--color--principal);
}

.blogFiltro__searchForm button {
  appearance: none;
  border: none;
  background: transparent;
  cursor: pointer;
  font-size: var(--size--13);
  color: var(--color--principal);
  text-transform: uppercase;
}

.blogCategorias {
  flex: 1;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 1.6rem;
  list-style: none;
}

.blogCategorias li {
  border: 0.1rem solid var(--color--principal);
  border-radius: 5rem;
  padding: 0.7rem 1.5rem 0.5rem 1.5rem;
}

.blogCategorias li:hover {
  background-color: var(--color--principal);
}

.blogCategorias li a {
  font-size: var(--size--13);
  color: var(--color--principal);
  text-decoration: none;
  white-space: nowrap;
}

.blogCategorias li:hover a {
  color: var(--color--terciario);
}

@media (max-width: 959px) {
  .blogFiltro__searchForm {
    max-width: 40rem;
  }
}

/* POST - Hero */

.postHero {
  width: 100%;
  height: 70dvh;
  max-height: 70vh;
}

.postHero::after {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 30%;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.4) 100%
  );
}

.postHero__container {
  width: 100%;
  height: 100%;
}

.postHero__container::after {
  content: "";
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.4) 0%,
    rgba(0, 0, 0, 0) 30%
  );
}

.postHero__container h1 {
  position: absolute;
  z-index: 1;
  bottom: 3.2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 100rem;
  padding: 0 3.2rem;
  text-align: center;
}

.postHero__container h1 span {
  font-size: var(--size--30);
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  line-height: 1.4;
  color: var(--color--terciario);
}

.postHero__container picture {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

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

/* POST - Content */

.postContent {
  width: 100%;
  padding: 5rem 0 9.8rem 0;
}

.postContent__container {
  width: 100%;
}

.postContent p {
  width: 100%;
  max-width: 100rem;
  padding: 0 3.2rem;
  margin: auto auto 3rem auto;
  font-size: var(--size--18);
  line-height: 1.6;
  color: var(--color--principal);
  text-align: justify;
  hyphens: auto;
}

.postContent p strong {
  font-weight: bold;
}

.postContent figure {
  width: 100%;
  max-width: 100rem;
  padding: 0 3.2rem;
  margin: auto auto 3rem auto;
}

.postContent figure.full-width {
  max-width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  padding: 0;
}

.postContent figure img {
  width: 100%;
  height: auto;
  display: block;
  margin: auto;
}

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

.postContent .wp-block-embed iframe {
  width: 100%;
  max-width: 100rem;
  height: 56.25vw;
  max-height: calc((100rem / 16) * 9);
  display: block;
  margin: auto;
}

.postContent h2 {
  width: 100%;
  max-width: 100rem;
  padding: 0 3.2rem;
  margin: auto auto 2rem auto;
  font-size: var(--size--22);
  text-transform: uppercase;
  color: var(--color--secundario);
}

.postContent .wp-block-button__link {
  padding: 0.7rem 1rem 0.5rem 1rem;
  background-color: var(--color--secundario);
  color: var(--color--terciario);
  text-decoration: none;
  font-size: var(--size--18);
  text-transform: uppercase;
  white-space: nowrap;
  border-radius: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 3rem;
  gap: 1rem;
}

.postContent .wp-block-button__link::after {
  content: "";
  width: 2.5rem;
  aspect-ratio: 19 / 11;
  background: url("./img/flecha-blanco.svg");
  background-size: contain;
  background-repeat: no-repeat;
  display: inline-block;
  margin-left: 1rem;
}

.postContent .wp-block-list {
  width: 100%;
  max-width: 100rem;
  padding: 0 3.2rem;
  margin: auto auto 3rem auto;
  list-style: disc inside;
}

.postContent .wp-block-list li {
  padding-left: 3rem;
  font-size: var(--size--18);
  line-height: 1.6;
  color: var(--color--principal);
}

/* COMO - Hero */

.comoHero {
  width: 100%;
  height: 70dvh;
  max-height: 70vh;
}

.comoHero__container {
  width: 100%;
  height: 100%;
  filter: grayscale(100%);
}

.comoHero__container::after {
  content: "";
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 30%;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.4) 100%
  );
}

.comoHero__container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* PAGE - Contenido */

.contenidoPage {
  width: 100%;
  padding: 5rem 0 9.8rem 0;
}

.contenidoPage__container {
  width: 100%;
  padding: 0 3.2rem;
  overflow: hidden;
}

.contenidoPage h2 {
  font-size: var(--size--22);
  text-transform: uppercase;
  color: var(--color--secundario);
  margin-bottom: 2rem;
}

.contenidoPage h3 {
  font-size: var(--size--18);
  color: var(--color--secundario);
  margin-bottom: 1.5rem;
}

.contenidoPage h4 {
  font-size: var(--size--16);
  color: var(--color--secundario);
  margin-bottom: 1.5rem;
}

.contenidoPage p {
  font-size: var(--size--16);
  line-height: 1.6;
  color: var(--color--principal);
  hyphens: auto;
  margin-bottom: 2rem;
}

.contenidoPage ul {
  list-style: disc inside;
  margin-bottom: 2rem;
}

.contenidoPage ol {
  list-style: decimal inside;
  margin-bottom: 2rem;
}

.contenidoPage ul li,
.contenidoPage ol li {
  padding-left: 3rem;
  font-size: var(--size--16);
  line-height: 1.6;
  color: var(--color--principal);
  margin-bottom: 1rem;
  hyphens: auto;
}

.contenidoPage table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 2rem;
}

.contenidoPage table th,
.contenidoPage table td {
  padding: 1rem;
  text-align: left;
  font-size: var(--size--15);
  color: var(--color--principal);
}

.contenidoPage .wp-block-details {
  width: 100%;
  margin-bottom: 2rem;
}

.contenidoPage .wp-block-details summary {
  font-size: var(--size--16);
  font-weight: bold;
  color: var(--color--secundario);
  cursor: pointer;
}

/* BANNER COOKIES */

.bannerCookies {
  display: none;
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  width: 520px;
  max-width: calc(100vw - 3rem);
  background-color: var(--color--terciario);
  border-radius: 1.2rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  z-index: 9999;
  padding: 2rem 2rem 1.7rem 2rem;
  display: none;
  flex-direction: column;
  gap: 1rem;
}

.bannerCookies--visible {
  display: flex;
}

/* Contenido principal del banner */
.bannerCookies__content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.bannerCookies__text {
  font-size: var(--size--13);
  line-height: 1.6;
  color: var(--color--principal);
  margin: 0;
  line-height: justify;
  hyphens: auto;
}

/* Grupo de acciones */
.bannerCookies__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
}

.btnCookies {
  flex: 1;
  min-width: 120px;
  padding: 1.4rem 1.2rem 1.3rem 1.2rem;
  font-size: var(--size--13);
  font-weight: 400;
  text-transform: uppercase;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  font-family: var(--fuente--principal);
}

.btnCookies:focus-visible {
  outline: 2px solid var(--color--secundario);
  outline-offset: 2px;
}

.btnCookies__aceptar {
  background-color: var(--color--secundario);
  color: var(--color--terciario);
}

.btnCookies__aceptar:hover {
  background-color: rgb(220, 80, 40);
}

.btnCookies__rechazar,
.btnCookies__preferencias {
  background-color: rgba(0, 0, 0, 0.1);
  color: var(--color--principal);
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.btnCookies__rechazar:hover,
.btnCookies__preferencias:hover {
  background-color: rgba(35, 31, 32, 0.08);
}

/* Panel de preferencias */
.bannerCookies__preferencias {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition:
    max-height 0.4s ease,
    opacity 0.3s ease;
}

.bannerCookies__preferencias.active {
  max-height: 800px;
  opacity: 1;
}

/* Categoría de cookies */
.bannerCookies__category {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  padding-bottom: 1rem;
  padding-top: 1rem;
}

.bannerCookies__category:last-child {
  border-bottom: none;
}

.bannerCookies__categoryHeader {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
}

.bannerCookies__categoryLabel {
  font-size: var(--size--15);
  font-weight: 600;
  color: var(--color--principal);
  cursor: pointer;
  flex: 1;
}

.bannerCookies__badge {
  display: inline-block;
  background-color: rgba(234, 95, 52, 0.1);
  color: var(--color--secundario);
  font-size: var(--size--11);
  font-weight: 600;
  padding: 0.3rem 0.8rem;
  border-radius: 2rem;
  white-space: nowrap;
}

/* Controles (switches + toggle) */
.bannerCookies__controls {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

/* Toggle Switch moderno */
.bannerCookies__switch {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 44px;
  height: 24px;
  background-color: #e0e0e0;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  position: relative;
  transition: background-color 0.3s ease;
  padding: 2px;
}

.bannerCookies__switch:focus-visible {
  outline: 2px solid var(--color--secundario);
  outline-offset: 2px;
}

.bannerCookies__switch:checked {
  background-color: var(--color--secundario);
}

.bannerCookies__switchLabel {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 20px;
  height: 20px;
  background-color: white;
  border-radius: 50%;
  transition: left 0.3s ease;
  pointer-events: none;
}

.bannerCookies__switch:checked ~ .bannerCookies__switchLabel {
  left: 22px;
}

/* Toggle para expandir detalles */
.bannerCookies__toggleDetail {
  width: 24px;
  height: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color--principal);
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}

.bannerCookies__toggleDetail[aria-expanded="true"] {
  transform: rotate(180deg);
}

.bannerCookies__toggleDetail:focus-visible {
  outline: 2px solid var(--color--secundario);
  border-radius: 0.2rem;
}

/* Body de categoría (detalles) */
.bannerCookies__categoryBody {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition:
    max-height 0.3s ease,
    opacity 0.2s ease;
  padding-top: 0;
}

.bannerCookies__categoryBody.active {
  max-height: 200px;
  opacity: 1;
  padding-top: 0.8rem;
}

.bannerCookies__categoryDesc {
  font-size: var(--size--13);
  line-height: 1.5;
  color: rgba(35, 31, 32, 0.7);
  margin: 0;
}

/* Footer legal */
.bannerCookies__footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.8rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  font-size: var(--size--11);
}

.bannerCookies__legalLink {
  color: var(--color--secundario);
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.bannerCookies__legalLink:hover {
  opacity: 0.8;
  text-decoration: underline;
}

.bannerCookies__legalLink:focus-visible {
  outline: 2px solid var(--color--secundario);
  border-radius: 0.2rem;
}

.bannerCookies__separator {
  color: rgba(0, 0, 0, 0.2);
}

/* Responsive */
@media (max-width: 640px) {
  .bannerCookies {
    width: calc(100vw - 2rem);
    right: 1rem;
    bottom: 1rem;
    padding: 2rem;
  }

  .bannerCookies__text {
    font-size: var(--size--13);
  }

  .bannerCookies__actions {
    flex-direction: column;
  }

  .btnCookies {
    width: 100%;
  }

  .bannerCookies__footer {
    font-size: var(--size--11);
    gap: 0.4rem;
  }

  .bannerCookies__separator {
    display: none;
  }
}

/* POPUP CONTACTO */

.popupContacto {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  width: calc(100% - 2rem);
  max-width: 54rem;
  background: var(--color--terciario);
  border-radius: 2rem;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2);
  z-index: 99999;
  padding: 3.5rem;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  visibility: hidden;
  transition:
    opacity 0.25s ease,
    transform 0.25s ease,
    visibility 0.25s ease;
  overflow: auto;
}

.popupContacto--visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  visibility: visible;
}

.popupContacto__close {
  position: absolute;
  z-index: 99;
  top: 0.8rem;
  right: 0.8rem;
  width: 32px;
  height: 32px;
  border: none;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.popupContacto__close span {
  font-size: 1.4rem;
  line-height: 1;
  color: var(--color--secundario);
}

.popupContacto__title {
  font-size: var(--size--22);
  text-transform: uppercase;
  color: var(--color--secundario);
  margin-bottom: 1rem;
}

.popupContacto__text {
  font-size: var(--size--15);
  line-height: 1.4;
  color: var(--color--principal);
  margin-bottom: 2rem;
  text-align: center;
}

.popupContacto__form form {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  gap: 1.5rem;
}

.popupContacto__form form > p {
  grid-column: 1 / 2;
  grid-row: 1 / 2;
  margin-bottom: 0;
}

.popupContacto__form form > .aceptar {
  grid-column: 1 / 2;
  grid-row: 2 / 3;
  font-size: var(--size--11);
}

.popupContacto__form form > .enviar {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
}

.popupContacto__form form .enviar p {
  flex-direction: row-reverse;
  justify-content: flex-end;
}

.popupContacto__form form .enviar .wpcf7-spinner {
  margin: 0 10px 0 0;
}

.popupContacto .pagePrese__contacto {
  padding: 0;
  aspect-ratio: auto;
}

.popupContacto form input[type="submit"] {
  margin-top: 0;
}

.popupContacto .wpcf7-response-output {
  grid-column: 1 / 2;
  grid-row: 3 / 4;
}

.popupContacto [data-locked="true"] {
  pointer-events: none;
  opacity: 0.8;
}

body.popup-lista-open::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 99998;
}

.popupContacto--lista {
  left: 50%;
  top: 50%;
  right: auto;
  bottom: auto;
  transform: translate(-50%, -46%);
}

.popupContacto--lista.popupContacto--visible {
  transform: translate(-50%, -50%);
}

.popupContacto--lista .popupContacto__title {
  text-align: center;
}

.popupContacto--lista .popupContacto__form form {
  grid-template-columns: 1fr;
  row-gap: 2rem;
}

.popupContacto--lista .popupContacto__form form > .aceptar {
  grid-column: 1 / 2;
  grid-row: 2 / 3;
  text-align: center;
}

.popupContacto--lista .popupContacto__form form > .enviar {
  grid-column: 1 / 2;
  grid-row: 3 / 4;
  margin: 0 auto;
}

.popupContacto--lista .popupContacto__form form .enviar p {
  justify-content: center;
}

/* POPUP IMAGEN */

.popupContacto.popupContacto--imagen {
  max-width: 72rem;
  padding: 0;
  overflow: hidden;
}

.popupContacto--imagen .popupImagen__content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: stretch;
}

.popupContacto--imagen .popupImagen__media {
  margin: 0;
}

.popupContacto--imagen .popupImagen__mediaLink {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

.popupContacto--imagen .popupImagen__mediaLink:focus-visible {
  outline: 2px solid var(--color--secundario);
  outline-offset: 2px;
}

.popupContacto--imagen .popupImagen__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.popupContacto--imagen .popupImagen__body {
  padding: 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.2rem;
}

.popupContacto--imagen .popupContacto__title,
.popupContacto--imagen .popupContacto__text {
  margin-bottom: 0;
}

.popupImagen__button {
  align-self: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.2rem 2rem 0.9rem 2rem;
  border-radius: 999px;
  background: var(--color--secundario);
  color: var(--color--terciario);
  text-decoration: none;
  text-transform: uppercase;
  font-size: var(--size--13);
  font-weight: 600;
  transition: opacity 0.25s ease;
}

.popupImagen__button:hover {
  opacity: 0.9;
}

.popupImagen__button:focus-visible {
  outline: 2px solid var(--color--secundario);
  outline-offset: 2px;
}

@media (max-width: 639px) {
  .popupContacto {
    width: 100%;
    max-width: none;
    padding: 10rem 4rem;
  }
  .popupContacto__title {
    font-size: 20px;
  }
  .popupContacto__title,
  .popupContacto__text {
    margin-bottom: 30px;
    text-align: center;
  }
  .popupContacto__form form {
    grid-template-columns: 1fr;
    row-gap: 30px;
  }
  .popupContacto__form form > .aceptar {
    text-align: center;
  }
  .popupContacto__form form > .enviar {
    margin: auto;
    grid-column: 1 / 2;
    grid-row: 3 / 4;
  }
  .popupContacto__close span {
    font-size: 2.5rem;
  }

  .popupContacto--lista {
    left: 50%;
    top: 50%;
    right: auto;
    bottom: auto;
    width: calc(100% - 4rem);
    border-radius: 2rem;
    padding: 6rem 3rem;
    transform: translate(-50%, -46%);
  }

  .popupContacto--lista.popupContacto--visible {
    transform: translate(-50%, -50%);
  }

  .popupContacto.popupContacto--imagen {
    padding: 0;
    border-radius: 2rem 2rem 0 0;
    max-width: 60rem;
  }

  .popupContacto--imagen .popupImagen__content {
    grid-template-columns: 1fr;
  }

  .popupContacto--imagen .popupImagen__body {
    padding: 3.5rem 3.5rem 14rem 3.5rem;
    text-align: center;
    align-items: center;
    display: none;
  }

  .popupImagen__button {
    align-self: center;
  }
}

/* WHATSAPP BUBBLE */

#whatsapp-bubble {
  position: fixed;
  width: 54px;
  height: 54px;
  left: 1rem;
  bottom: 1rem;
  z-index: 1000;
}

#whatsapp-bubble a {
  display: block;
  /*margin-left: -2px;
  margin-top: -2px;*/
  width: 54px;
  height: 54px;
  font-size: 0;
  box-shadow: 1px 1px 6px rgba(0, 0, 0, 0.25);
  border-radius: 50%;
  background: #25d366 url("./img/logo.png") center center no-repeat;
}

#whatsapp-bubble-label {
  background: #f7f3ee;
  position: fixed;
  width: 350px;
  max-width: calc(100% - 20px);
  left: 10px;
  bottom: 72px;
  box-shadow: 1px 3px 6px rgba(0, 0, 0, 0.25);
  border-radius: 1.8rem;
  z-index: 1000;
  overflow: hidden;
  text-align: right;
  display: none;
}

#whatsapp-bubble-label .header {
  background-color: #25d366;
  padding: 1rem;
}

#whatsapp-bubble-label .header div {
  background: url("./img/name.png") center left no-repeat;
  height: 30px;
}

#whatsapp-bubble-label .header div .close {
  display: inline-block;
  background: rgba(0, 0, 0, 0.4) url("./img/close.png") 50% no-repeat;
  background-size: 12px;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  border: none;
  color: white;
  font-size: 0;
  cursor: pointer;
}

#whatsapp-bubble-label .message {
  background-color: white;
  margin: 1rem;
  border-radius: 1rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 1rem;
  text-align: left;
  line-height: 1.8rem;
}

#whatsapp-bubble-label a.go-chat {
  background: url("./img/btn.png") #25d366 center center no-repeat;
  display: inline-block;
  width: 110px;
  height: 60px;
  border-radius: 3rem;
  margin: 0.5rem;
}

#whatsapp-bubble-label a.go-chat span {
  display: none;
}

@media (max-width: 639px) {
  #whatsapp-bubble a {
    width: 44px;
    height: 44px;
  }
}

/* Oferta */

.surfcampOferta {
  width: 100%;
  overflow: hidden;
  background-color: var(--color--secundario);
  padding: 1.8rem 0 1.3rem 0;
}

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

.surfcampOferta__container {
  display: inline-flex;
  gap: 4rem;
  white-space: nowrap;
  /*will-change: transform;
  animation: oferta 25s linear infinite;*/
}

.surfcampOferta__container span {
  flex-shrink: 0;
  font-size: var(--size--18);
  text-transform: uppercase;
  color: var(--color--terciario);
  white-space: nowrap;
}

@keyframes oferta {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Woo */

.wc-block-components-address-form__email,
.wc-block-components-address-form__phone {
  grid-column: span 2;
}

/* Leads reserva */

.leadsReserva {
  width: 100%;
  padding: 0 3.2rem 0 3.2rem;
  margin-bottom: 5rem;
}

.leadsReserva > div {
  width: 100%;
  padding: 3rem 3rem 1rem 3rem;
  border: 1px solid var(--color--secundario);
  font-size: var(--size--16);
  color: var(--color--principal);
}

.leadsReserva a {
  display: inline-block;
  padding: 0.7rem 1.5rem 0.5rem 1.5rem;
  background-color: var(--color--secundario);
  color: var(--color--terciario);
  text-decoration: none;
  font-size: var(--size--13);
  text-transform: uppercase;
}

.leadsReserva .wpcf7 {
  display: inline-block;
  margin: 0 0.5rem;
}

.leadsReserva form {
  display: flex;
  gap: 0.5rem;
}

.leadsReserva form .formulario {
  display: grid;
  grid-template-columns: auto auto;
  grid-template-rows: auto auto;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 1rem;
}

.leadsReserva form .formulario > p {
  grid-column: 1 / 2;
  grid-row: 1 / 2;
}

.leadsReserva form p {
  margin-bottom: 0;
  color: var(--color--principal);
}

.leadsReserva form input[type="tel"] {
  width: 100%;
  max-width: clamp(150px, 18vw, 18rem);
  padding: 0.7rem 1.5rem 0.5rem 1.5rem;
  border: 1px solid var(--color--principal);
  background-color: transparent;
  color: var(--color--principal);
}

.leadsReserva form .aceptar {
  grid-column: span 2;
  grid-row: 2 / 3;
}

.leadsReserva form .aceptar * {
  font-size: var(--size--13);
  color: var(--color--principal);
  text-decoration: none;
  background-color: transparent;
  border: none;
  padding: 0;
  text-transform: none;
}

.leadsReserva form .aceptar p {
  display: flex;
}

.leadsReserva form .wpcf7-list-item {
  margin: 0;
}

.leadsReserva form input[type="submit"] {
  padding: 0.7rem 1.5rem 0.5rem 1.5rem;
  background-color: var(--color--secundario);
  color: var(--color--terciario);
  text-decoration: none;
  font-size: var(--size--13);
  text-transform: uppercase;
  border: 0;
  cursor: pointer;
}

.leadsReserva form .wpcf7-spinner {
  display: none;
}

.leadsReserva form[data-status="sent"] > p,
.leadsReserva form[data-status="sent"] .formulario {
  display: none;
}

.wpcf7-response-output {
  border: 0 !important;
  margin: 0 !important;
  font-size: var(--size--20);
  color: var(--color--secundario);
}

@media (max-width: 639px) {
  .leadsReserva form {
    flex-direction: column;
    gap: 2rem;
    justify-content: center;
    text-align: center;
  }
  .leadsReserva > div {
    padding: 4rem;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem 1rem;
    align-items: center;
    justify-content: center;
  }
  .leadsReserva form .formulario {
    justify-content: center;
  }
}

/* Leads Pages */

.leadsPages {
  width: 100%;
  padding: 5rem;
  border-top: 1px solid var(--color--secundario);
}

.leadsPages__container {
  width: 100%;
  border: 1px solid var(--color--secundario);
  padding: 4rem;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 2rem;
}

.leadsPages__contenido {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0.5rem;
}

.leadsPages__contenido small {
  font-size: var(--size--13);
  text-transform: uppercase;
  color: var(--color--principal);
}

.leadsPages__contenido h4 {
  font-size: var(--size--70);
  font-weight: 400;
  line-height: 1.2;
  color: var(--color--secundario);
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.leadsPages__contenido p {
  font-size: var(--size--16);
  color: var(--color--principal);
}

.leadsPages form {
  display: grid;
  grid-template-columns: auto auto;
  grid-template-rows: 1fr 1fr 1fr;
  gap: 1rem;
  padding-top: 2rem;
}

.leadsPages form .name {
  grid-column: span 2;
  grid-row: 1 / 2;
}

.leadsPages form .phone {
  grid-column: 1 / 2;
  grid-row: 2 / 3;
}

.leadsPages form .email {
  grid-column: 2 / 3;
  grid-row: 2 / 3;
}

.leadsPages form .aceptar {
  grid-column: 1 / 2;
  grid-row: 3 / 4;
  align-self: end;
}

.leadsPages form .aceptar * {
  font-size: var(--size--11) !important;
}

.leadsPages form .enviar {
  grid-column: 2 / 3;
  grid-row: 3 / 4;
  align-self: center;
  justify-self: end;
}

.leadsPages form .enviar p {
  display: flex;
  flex-direction: row-reverse;
  gap: 0;
  justify-content: flex-end;
}

.leadsPages form .enviar .wpcf7-spinner {
  margin: 0 1rem 0 0;
}

.leadsPages form label {
  width: 100%;
  display: flex;
  align-items: baseline;
  gap: 1rem;
  font-size: var(--size--16);
  color: var(--color--principal);
}

.leadsPages form label span {
  flex: 1;
}

.leadsPages form input[type="text"],
.leadsPages form input[type="tel"],
.leadsPages form input[type="email"] {
  width: 100%;
  padding: 0.7rem 1rem 0.5rem;
  border: 0;
  border-bottom: 1px solid var(--color--principal);
  background-color: transparent;
  color: var(--color--principal);
  font-size: var(--size--16);
}

.leadsPages form input[type="tel"],
.leadsPages form input[type="email"] {
  max-width: 15rem;
}

.leadsPages form input[type="submit"] {
  padding: 0.7rem 1.5rem 0.5rem 1.5rem;
  background-color: var(--color--secundario);
  color: var(--color--terciario);
  text-decoration: none;
  font-size: var(--size--13);
  text-transform: uppercase;
  border: 0;
  cursor: pointer;
}

.leadsPages .wpcf7-list-item {
  margin: 0 !important;
}

.leadsPages form[data-status="sent"] {
  grid-template-columns: 1fr;
  grid-template-rows: auto;
}

.leadsPages form[data-status="sent"] .name,
.leadsPages form[data-status="sent"] .phone,
.leadsPages form[data-status="sent"] .email,
.leadsPages form[data-status="sent"] .aceptar,
.leadsPages form[data-status="sent"] .enviar {
  display: none;
}

@media (max-width: 799px) {
  .leadsPages__container {
    flex-direction: column;
    padding: 2rem;
  }

  .leadsPages form {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
    row-gap: 3rem;
  }

  .leadsPages form input[type="tel"],
  .leadsPages form input[type="email"] {
    max-width: 100%;
  }
}
