@charset "UTF-8";
/*

  VARIABLES

*/
/*
	Theme Name: Hojas Josue 2025 V1
	Theme URI: https://www.loygorri.com
	Description: Tailored WordPress Theme
	Version: 1.0
	Author: Gabriel García Loygorri
	Author URI: https://www.loygorri.com
	Tags: TAILORED, HTML5, CSS3, SASS

	License: MIT
	License URI: http://opensource.org/licenses/mit-license.php
*/
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

html {
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  scroll-behavior: smooth;
  height: 100vh;
  overflow-y: scroll;
  -ms-scroll-snap-type: y mandatory;
  scroll-snap-type: y mandatory;
  -webkit-overflow-scrolling: touch; /* Para desplazamiento suave en dispositivos móviles */
}

a[x-apple-data-detectors] {
  color: inherit !important;
  text-decoration: none !important;
  font-size: inherit !important;
  font-family: inherit !important;
  font-weight: inherit !important;
  line-height: inherit !important;
}

:root, :root.light {
  --crema: rgba(249,246,239,1);
  --crema_siempre: rgba(249,246,239,1);
  --crema_75: rgba(249,246,239,0.75);
  --verde: rgba(0,147,159,1);
  --morado: rgba(34,35,65,1);
  --oscuro: #252524;
  --casi_negro:rgba(0,0,0,0.75);
  --blanco: rgba(255,255,255,1);
  --color_principal: var(--verde);
  --color_secundario: var(--morado);
  --color_oscuro: var(--casi_negro);
  --color_claro: var(--blanco);
  --post_it_1: #029bff;
  --post_it_2: #58e44f;
  --post_it_3: #effa49;
  --post_it_4: #fe9537;
  --post_it_5: #ff66b0;
  --fondo: var(--crema);
  --fondo_menu: var(--verde);
  --color_logo_principal: var(--verde);
  --color_logo_secundario: var(--morado);
  --color_logo_oscuro: var(--oscuro);
  --color_logo_blanco: var(--blanco);
  --ancho_maximo: 1200px;
  --ancho_bloque_texto: 600px;
  --familia: "john-doe", sans-serif;
  --color_texto: var(--casi_negro);
  --color_negritas: var(--verde);
  --color_titular_h1: var(--morado);
  --color_titular_h2: var(--verde);
  --color_titular_h3: var(--morado);
  --color_titular_h4: var(--verde);
  --color_enlace: var(--verde);
  --size_texto_boton_clean: 25px;
}

@media (prefers-color-scheme: dark) {
  :root {
    --crema: rgba(0,0,0,1);
    --color_texto: white;
    --verde: #232441;
    --morado: #4287c7;
    --oscuro: rgba(255,255,255,1);
  }
  .kit {
    -webkit-filter: invert(100%);
            filter: invert(100%);
  }
}
:root.dark {
  --crema: rgba(0,0,0,1);
  --color_texto: white;
  --verde: #232441;
  --morado: #4287c7;
  --oscuro: rgba(255,255,255,1);
}
:root.dark .kit {
  -webkit-filter: invert(100%);
          filter: invert(100%);
}

body {
  font-family: var(--familia);
  font-size: 100%;
  background-color: var(--fondo);
  width: 100vw;
  /*min-height: 100dvh;*/
  margin: 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  color: var(--color_texto);
}

.wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
}

.default {
  min-height: 100vh;
}

.centrado {
  width: 100%;
  max-width: var(--ancho_maximo);
  max-width: auto;
}
@media only screen and (max-width: 1200px) {
  .centrado {
    padding-left: 20px;
    padding-right: 20px;
  }
}

strong {
  font-weight: 600;
  color: var(--color_negritas);
}

a {
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

.sellos {
  position: fixed;
  bottom: 10px;
  left: 10px;
  width: 200px;
}

.clean {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
  min-height: 100svh;
}
.clean svg#logo {
  position: absolute;
  top: 20px;
  right: 20px;
  height: 30px;
  fill: var(--oscuro);
}
.clean svg#clean {
  max-width: 500px;
  margin: 5%;
}
.clean svg#clean #arco {
  fill: var(--naranja);
}
.clean svg#clean #texto {
  fill: var(--oscuro);
}
.clean a.boton {
  background-color: var(--oscuro);
  color: var(--texto_boton_clean);
  text-decoration: none;
  border-radius: 20px;
  padding: 10px 20px;
  font-size: var(--size_texto_boton_clean);
  font-weight: 300;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  margin: 5%;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
@media only screen and (max-width: 550px) {
  .clean a.boton {
    font-size: var(--size_texto_boton_clean_movil);
  }
}

.cls-1, .cls-2, .cls-3, .cls-5 {
  stroke-width: 0px;
}

.cls-1 {
  fill: var(--color_logo_principal);
}

.cls-2 {
  fill: var(--color_logo_principal);
}

.cls-3 {
  fill: var(--color_logo_secundario);
}

.cls-5 {
  fill: var(--color_logo_blanco);
}

#posicion_1 .cls-2, .logo_y_nombre .cls-2 {
  opacity: 0;
}
#posicion_1 .cls-3, .logo_y_nombre .cls-3 {
  opacity: 0;
}
#posicion_1 .cls-5, .logo_y_nombre .cls-5 {
  opacity: 0;
}
#posicion_1 .cls-6, .logo_y_nombre .cls-6 {
  opacity: 0;
}
#posicion_1 .cls-7, .logo_y_nombre .cls-7 {
  opacity: 0;
}
#posicion_1 .cls-9, .logo_y_nombre .cls-9 {
  opacity: 0;
}
#posicion_1 .cls-8, .logo_y_nombre .cls-8 {
  opacity: 0;
}

.posicion_1-visible #posicion_1 {
  opacity: 1;
}
.posicion_1-visible #posicion_1 .cls-3 {
  opacity: 1;
  -webkit-transition: all 1.5s ease-in-out 0.5s;
  transition: all 1.5s ease-in-out 0.5s;
}
.posicion_1-visible #posicion_1 .cls-5 {
  opacity: 1;
  -webkit-transition: all 1.5s ease-in-out 0.7s;
  transition: all 1.5s ease-in-out 0.7s;
}
.posicion_1-visible #posicion_1 .cls-2 {
  opacity: 1;
  -webkit-transition: all 1.3s ease-in-out;
  transition: all 1.3s ease-in-out;
}
.posicion_1-visible #posicion_1 .cls-6 {
  opacity: 0.2;
  -webkit-transition: all 1.1s ease-in-out;
  transition: all 1.1s ease-in-out;
}
.posicion_1-visible #posicion_1 .cls-7 {
  opacity: 0.4;
  -webkit-transition: all 0.9s ease-in-out;
  transition: all 0.9s ease-in-out;
}
.posicion_1-visible #posicion_1 .cls-9 {
  opacity: 0.6;
  -webkit-transition: all 0.7s ease-in-out;
  transition: all 0.7s ease-in-out;
}
.posicion_1-visible #posicion_1 .cls-8 {
  opacity: 0.8;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.logo_y_nombre .cls-3, .contacta .cls-3, header div.logo .logo .cls-3 {
  opacity: 1;
  -webkit-transition: all 1.5s ease-in-out 0.5s;
  transition: all 1.5s ease-in-out 0.5s;
}
.logo_y_nombre .cls-5, .contacta .cls-5, header div.logo .logo .cls-5 {
  opacity: 1;
  -webkit-transition: all 1.5s ease-in-out 0.7s;
  transition: all 1.5s ease-in-out 0.7s;
}
.logo_y_nombre .cls-2, .contacta .cls-2, header div.logo .logo .cls-2 {
  opacity: 1;
  -webkit-transition: all 1.3s ease-in-out;
  transition: all 1.3s ease-in-out;
}
.logo_y_nombre .cls-6, .contacta .cls-6, header div.logo .logo .cls-6 {
  opacity: 0.2;
  -webkit-transition: all 1.1s ease-in-out;
  transition: all 1.1s ease-in-out;
}
.logo_y_nombre .cls-7, .contacta .cls-7, header div.logo .logo .cls-7 {
  opacity: 0.4;
  -webkit-transition: all 0.9s ease-in-out;
  transition: all 0.9s ease-in-out;
}
.logo_y_nombre .cls-9, .contacta .cls-9, header div.logo .logo .cls-9 {
  opacity: 0.6;
  -webkit-transition: all 0.7s ease-in-out;
  transition: all 0.7s ease-in-out;
}
.logo_y_nombre .cls-8, .contacta .cls-8, header div.logo .logo .cls-8 {
  opacity: 0.8;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: absolute;
  z-index: 3;
  width: 100%;
  height: 100px;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color_principal);
}
@media only screen and (max-width: 550px) {
  header {
    height: 50px;
    display: none;
  }
}
header.completo .centrado {
  max-width: 100%;
  padding-left: 20px;
  padding-right: 20px;
}
header.fijo {
  position: fixed;
}
header.blanco {
  background-color: white;
}
header.negro {
  background-color: black;
}
header.claro {
  background-color: white;
}
header.principal {
  background-color: var(--color_principal);
}
header.secundario {
  background-color: var(--color_secundario);
}
header div.logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  width: initial;
  z-index: 1;
  padding: 10px;
}
@media only screen and (max-width: 550px) {
  header div.logo {
    padding-top: 0px;
  }
}
header div.logo svg {
  height: 100%;
  width: initial;
  max-width: 100%;
  fill: var(--principal);
}
@media only screen and (max-width: 550px) {
  header div.logo svg {
    width: 100%;
  }
}
header div.logo h1 {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
header div.logo a {
  text-decoration: none;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
header div.logo span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 80px;
  font-family: var(--titular);
  font-weight: 400;
  text-transform: uppercase;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
@media only screen and (max-width: 550px) {
  header div.logo span {
    font-size: 40px;
  }
}
header div.logo span:first-of-type {
  height: 100px;
  padding-top: 30px;
  opacity: 0;
  cursor: pointer;
}
@media only screen and (max-width: 550px) {
  header div.logo span:first-of-type {
    height: 50px;
  }
}
header div.logo span:first-of-type.boom {
  opacity: 1;
}
header div.logo span:last-of-type {
  height: 100px;
  padding-top: 30px;
  opacity: 0;
  cursor: pointer;
}
@media only screen and (max-width: 550px) {
  header div.logo span:last-of-type {
    height: 50px;
  }
}
header div.logo span:last-of-type.boom {
  opacity: 1;
}
header div.logo span.uno {
  position: absolute;
  left: 10px;
  text-transform: uppercase;
  opacity: 1;
  padding-top: 30px;
}
header div.logo span.uno.boom {
  opacity: 0 !important;
}
header div.logo span.dos {
  position: absolute;
  right: 10px;
  text-transform: uppercase;
  opacity: 1;
  padding-top: 30px;
}
header div.logo span.dos.boom {
  opacity: 0 !important;
}
header .nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 2;
  position: relative;
  width: calc(100% - 200px);
  margin: auto;
  height: 100%;
}
@media only screen and (max-width: 550px) {
  header .nav {
    height: initial;
    position: absolute;
    width: calc(100% - 40vw);
    left: 20vw;
    right: 20vw;
  }
}
header .nav svg {
  display: none;
}
@media only screen and (max-width: 550px) {
  header .nav svg {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 30px;
    margin-top: 20px;
    fill: var(--principal);
  }
}
header .nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  max-width: 100%;
  gap: 35px;
}
@media only screen and (max-width: 550px) {
  header .nav ul {
    display: none;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 10px;
    background-color: var(--crema);
    padding-bottom: 4vh;
  }
}
header .nav ul.activo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
header .nav ul.activo li {
  opacity: 1;
}
header .nav ul li {
  list-style: circle;
  font-size: 22px;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
@media only screen and (max-width: 550px) {
  header .nav ul li {
    list-style: none;
    opacity: 0;
  }
}
header .nav ul li.solo {
  display: none;
}
@media only screen and (max-width: 550px) {
  header .nav ul li.solo {
    display: block;
  }
}
header .nav ul li::marker {
  padding-left: 0px;
}
header .nav ul li:hover, header .nav ul li.current-menu-item, header .nav ul li.current-page-ancestor {
  list-style: disc;
}
@media only screen and (max-width: 550px) {
  header .nav ul li:hover, header .nav ul li.current-menu-item, header .nav ul li.current-page-ancestor {
    list-style: none;
    font-weight: bold;
  }
}
header .nav ul li .sub-menu {
  display: none;
}
header .nav ul li:hover > ul.sub-menu {
  position: absolute;
  display: block;
  top: 60px;
  background-color: var(--color_secundario);
  border-radius: 5px;
  width: 100%;
  max-width: 300px;
  padding: 0px;
}
header .nav ul li:hover > ul.sub-menu li {
  padding: 0px;
  border-bottom: 1px solid white;
}
header .nav ul li:hover > ul.sub-menu li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 10px 15px;
  color: white;
  border-bottom: 0px;
  border-left: 0px;
  line-height: 1.5em;
}
header .nav ul li:hover > ul.sub-menu li a:after {
  background-color: initial;
}
header .nav ul li:hover > ul.sub-menu li:last-child {
  border-bottom: 0px;
}
header .nav ul li:hover > ul.sub-menu li:hover {
  background-color: var(--color_principal);
}
header .nav ul li:hover > ul.sub-menu li:hover > ul.sub-menu {
  top: 0px;
  left: 199px;
  background-color: var(--color_principal);
}
header .nav ul a {
  font-size: 20px;
  text-decoration: none;
  margin-left: 0px;
}
header hr {
  display: none;
}
header .centrado {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  justify-items: center;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
header .centrado .bars {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 30px;
  cursor: pointer;
  -webkit-box-ordinal-group: 5;
      -ms-flex-order: 4;
          order: 4;
}
header .centrado .bars svg {
  width: 30px;
  fill: var(--oscuro);
}
header .centrado .nav {
  -webkit-box-flex: 2;
      -ms-flex-positive: 2;
          flex-grow: 2;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  padding-left: 20px;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
}
header .centrado .nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  margin: 0px;
  list-style: none;
  gap: 10px 30px;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
}
header .centrado .nav ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-bottom: 0px;
}
header .centrado .nav ul li.current-menu-item a {
  color: var(--naranja);
}
header .centrado .nav ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  text-align: center;
  font-size: 22px;
  color: var(--oscuro);
  font-family: var(--gosha);
  line-height: 0.8em;
  text-decoration: none;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
header .centrado .nav ul li a:hover {
  color: var(--naranja);
}
header .centrado .nav.claro ul li a {
  color: var(--blanco);
}
header .centrado .nav.principal ul li a {
  color: var(--color_principal);
}
header .centrado .nav.secundario ul li a {
  color: var(--color_secundario);
}

body.abajo header.oculto {
  top: -100px;
  opacity: 1;
}

body.arriba header.oculto {
  top: 0px;
  opacity: 1;
}

@media only screen and (max-width: 550px) {
  .stop .wrapper header {
    -webkit-backdrop-filter: blur(0px);
            backdrop-filter: blur(0px);
    background-color: var(--oscuro_siempre);
  }
  .stop .wrapper header .logo svg path,
  .stop .wrapper header .logo svg rect {
    fill: var(--crema_siempre);
  }
  .stop .wrapper header .centrado .bars svg {
    fill: var(--crema_siempre);
  }
  .stop .wrapper header .centrado .nav .sociales a {
    border: 1px solid var(--crema_siempre);
  }
  .stop .wrapper header .centrado .nav .sociales a svg {
    fill: var(--crema_siempre);
  }
}
/*

VARIABLES
--color_fondo_footer

*/
svg {
  width: 200px;
}

h1 {
  font-weight: 400;
  letter-spacing: -0.05em;
  text-align: center;
  margin: 0px;
  margin-top: 0px;
  color: var(--color_titular_h1);
  font-size: 30px;
}
h1 span {
  display: block;
}

h2 {
  text-align: center;
  color: var(--color_titular_h3);
  max-width: calc(var(--ancho_bloque_texto) + 10%);
}
h2 a {
  color: var(--color_titular_h2);
}
h2 a span {
  display: block;
}

h3 {
  text-align: center;
  color: var(--color_titular_h4);
}
h3 a {
  color: var(--color_titular_h4);
}

h4 {
  text-align: center;
  color: var(--color_titular_h2);
}
h4 a {
  color: var(--color_titular_h2);
}

p {
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.5em;
  text-align: center;
  margin: 0px;
  font-family: monospace;
  font-size: 18px;
  max-width: var(--ancho_bloque_texto);
}
@media only screen and (max-width: 550px) {
  p {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
}

ul, ol {
  /*list-style: none;*/
  margin: 0px;
  padding: 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-weight: 400;
  letter-spacing: -0.05em;
  max-width: var(--ancho_bloque_texto);
  padding-left: 20px;
}
ul li, ol li {
  line-height: 1.5em;
  padding-bottom: 10px;
}
ul li:after, ol li:after {
  /*content: "|";*/
  padding-left: 10px;
  padding-right: 10px;
}
ul li:last-child:after, ol li:last-child:after {
  /*content: "";*/
  padding-left: 0px;
  padding-right: 0px;
}

ol li {
  counter-increment: list;
  list-style-type: none;
  position: relative;
}

ol li:before {
  color: var(--morado);
  content: counter(list) ".";
  left: -32px;
  top: -5px;
  position: absolute;
  text-align: right;
  width: 26px;
  font-size: 200%;
}

@media only screen and (min-width: 550px) {
  .x2 h2 {
    font-size: 30px;
  }
  .x2 p {
    font-size: 20px;
    max-width: 800px;
  }
  .x3 h2 {
    font-size: 35px;
  }
  .x3 p {
    font-size: 25px;
    max-width: 800px;
  }
  .x4 h2 {
    font-size: 40px;
  }
  .x4 p {
    font-size: 30px;
    max-width: 800px;
  }
}
@media only screen and (max-width: 550px) {
  ul:not(.menu),
  ol:not(.menu) {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
}
hr {
  /*border: 1px solid black;*/
  width: 100%;
  border: 0;
  height: 1px;
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0)), color-stop(rgba(0, 0, 0, 0.75)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0));
}

.sin_borde hr {
  display: none;
}

section.bloque {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  padding: 8vh 5vw;
  min-width: 60vw;
  margin-left: auto;
  margin-right: auto;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 2;
  position: relative;
  background-color: white;
  -webkit-box-shadow: 2px 1px 4px rgba(0, 0, 0, 0.2);
          box-shadow: 2px 1px 4px rgba(0, 0, 0, 0.2);
  border: 1px solid #ccc;
  position: relative;
}
section.bloque .polaroid {
  display: inline-block;
  background: white;
  padding: 10px 10px 30px; /* más espacio abajo */
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  border: 1px solid #ccc;
  border-radius: 4px;
  text-align: center;
  max-width: 300px;
  font-family: "Courier New", Courier, monospace;
  -webkit-transform: rotate(-1.5deg);
          transform: rotate(-1.5deg); /* opcional, para el efecto "tirado" */
  position: absolute;
  top: 0px;
  right: -50px;
}
section.bloque .polaroid img {
  width: 100%;
  aspect-ratio: 4/4;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  height: auto;
  display: block;
}
section.bloque .polaroid .caption {
  margin: 10px 0 0;
  font-size: 0.9rem;
  color: #333;
}
section.bloque ul li {
  font-family: monospace;
  font-size: 18px;
}
section.bloque p a {
  background-color: var(--oscuro);
  color: var(--blanco);
  padding: 5px 10px;
  -webkit-transform: rotate(-0.539859deg);
          transform: rotate(-0.539859deg);
  text-decoration: none;
}
section.bloque p a:hover {
  -webkit-transform: rotate(2deg);
          transform: rotate(2deg);
}
section.bloque::before {
  content: attr(data-numero);
  position: absolute;
  bottom: 20px;
}
section.bloque .imagen_de_fondo {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  z-index: 1;
}
section.bloque video {
  width: 100%;
  height: 100%;
  z-index: 1;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  position: absolute;
  top: 0px;
  left: 0px;
}
section.bloque.forzado {
  min-height: 80vh;
  margin-top: 10vh;
  margin-bottom: 10vh;
}
section.bloque.tres_cuartos {
  min-height: 75vh;
}
section.bloque.medio {
  min-height: 50vh;
}
@media only screen and (max-width: 550px) {
  section.bloque {
    padding: 5vh 5vw 10vh;
    width: 80vw;
  }
}
@media only screen and (max-width: 550px) {
  section.bloque:not(.intro) h2 {
    top: 0px;
    padding: 20px 20px;
    width: 100%;
    z-index: 2;
  }
  section.bloque:not(.intro) h2.highlighted {
    /*
    padding: 10px 20px;
    background-color: var(--verde);
    color: var(--blanco);
    background-color: var(--crema_75);
    color: var(--verde);

    min-height: 70px;
    padding-left: 80px;
    font-size: 18px;
    display: flex;
        justify-content: flex-start;
        align-items: center;

        */
  }
}

.array {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5vw;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media only screen and (max-width: 1024px) {
  .array {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
@media only screen and (max-width: 550px) {
  .array {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.array > article {
  text-align: center;
  background-color: var(--crema_75);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  border-radius: 10px;
  padding: 10px 10px 20px;
  border: 1px solid var(--crema);
  max-width: 15%;
}
@media only screen and (max-width: 1024px) {
  .array > article {
    max-width: 47%;
  }
}
@media only screen and (max-width: 550px) {
  .array > article {
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid var(--verde);
  }
}
.array > article a.imagen {
  width: 100%;
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 5px;
  overflow: hidden;
  aspect-ratio: 1/1;
}
@media only screen and (max-width: 550px) {
  .array > article a.imagen {
    aspect-ratio: initial;
  }
}
.array > article a.imagen img {
  width: 100%;
  display: block;
}

.boton {
  background-color: var(--morado);
  color: var(--blanco);
  text-transform: uppercase;
  border-radius: 10px;
  padding: 10px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media only screen and (max-width: 550px) {
  .boton {
    text-align: center;
    width: 100%;
  }
}
.boton:hover {
  text-decoration: none;
  background-color: var(--verde);
}

#barra-de-carga {
  position: fixed;
  bottom: 0px;
  width: 100%;
  height: 10px;
  background-color: var(--morado);
  overflow: hidden; /* Para ocultar el desbordamiento */
}

#barra-de-progreso {
  height: 100%;
  background-color: var(--verde);
  -webkit-transition: width 0.5s ease 0.1s;
  transition: width 0.5s ease 0.1s;
}

#capa-flotante {
  position: absolute;
  background-color: var(--morado);
  color: white;
  padding: 5px 10px;
  border-radius: 5px;
  display: none;
  z-index: 3;
  opacity: 0; /* Empieza con opacidad 0 */
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease; /* Transición suave de opacidad */
}

.enlace-siguiente {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 30px;
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  bottom: 20px;
  opacity: 1;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.enlace-siguiente svg {
  width: 30px;
}

.arriba .enlace-siguiente {
  opacity: 0;
}

.abajo .enlace-siguiente {
  opacity: 0;
}

.bloque.izquierda .enlace-siguiente {
  left: calc(25% - 15px);
}
@media only screen and (max-width: 550px) {
  .bloque.izquierda .enlace-siguiente {
    left: calc(50% - 15px);
  }
}

.bloque.derecha .enlace-siguiente {
  right: calc(25% - 15px);
}
@media only screen and (max-width: 550px) {
  .bloque.derecha .enlace-siguiente {
    right: calc(50% - 15px);
  }
}

.bloque.secundario .enlace-siguiente {
  fill: var(--blanco);
}

.abajo #menu {
  right: -200px;
  right: 0px;
  opacity: 0;
  opacity: 1;
}

.arriba #menu {
  right: 0px;
  padding: 0px;
  opacity: 1;
  -webkit-transform: rotate(-1deg);
          transform: rotate(-1deg);
}

#menu {
  right: -200px;
  z-index: 3;
  position: fixed;
  bottom: 20px;
  border-radius: 10px;
  padding: 10px;
  max-width: 200px;
}
@media only screen and (max-width: 550px) {
  #menu {
    background-color: white;
    padding: 0px;
    width: 50px;
    height: 50px;
    border-radius: 5px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    overflow: hidden;
    max-width: 100%;
    bottom: -5px;
    -webkit-transform: rotate(-5deg);
            transform: rotate(-5deg);
  }
}
#menu svg, #menu img {
  width: 65px;
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 3;
  padding: 10px;
  fill: black;
}
@media only screen and (min-width: 550px) {
  #menu svg, #menu img {
    display: none;
  }
}
#menu ul {
  list-style: none;
  padding-left: 0px;
  z-index: 2;
  border-radius: 5px;
  width: 300px;
}
@media only screen and (max-width: 550px) {
  #menu ul {
    opacity: 0;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: relative;
    right: -50px;
  }
}
@media only screen and (max-width: 550px) {
  #menu ul li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    text-align: right;
  }
}
@media only screen and (min-width: 550px) {
  #menu ul li {
    width: 250px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    background-color: white;
    position: relative;
    z-index: 2;
    padding-bottom: 0px;
    font-size: 20px;
    text-transform: uppercase;
    text-align: left;
    position: relative;
  }
  #menu ul li:nth-child(1) {
    z-index: 3;
  }
  #menu ul li:nth-child(1):after {
    content: "";
    position: absolute;
    width: 100px;
    height: 30px;
    background-color: black;
    z-index: 3;
    bottom: -17px;
    right: 0px;
    border-radius: 3px;
  }
  #menu ul li:nth-child(2) {
    z-index: 2;
  }
  #menu ul li:nth-child(3) {
    z-index: 8;
  }
  #menu ul li:nth-child(3):after {
    content: "";
    position: absolute;
    width: 100px;
    height: 30px;
    background-color: black;
    z-index: 2;
    bottom: -17px;
    right: 0px;
    border-radius: 3px;
  }
  #menu ul li:nth-child(4) {
    z-index: 7;
  }
  #menu ul li:nth-child(4):after {
    content: "";
    position: absolute;
    width: 100px;
    height: 30px;
    background-color: black;
    z-index: 5;
    bottom: -17px;
    right: 0px;
    border-radius: 3px;
  }
  #menu ul li:nth-child(5) {
    z-index: 6;
  }
  #menu ul li:nth-child(6) {
    z-index: 8;
  }
  #menu ul li:nth-child(6):after {
    content: "";
    position: absolute;
    width: 100px;
    height: 30px;
    background-color: black;
    z-index: 7;
    bottom: -17px;
    right: 0px;
    border-radius: 3px;
  }
  #menu ul li:nth-child(7) {
    z-index: 7;
  }
  #menu ul li:nth-child(7):after {
    content: "";
    position: absolute;
    width: 100px;
    height: 30px;
    background-color: black;
    z-index: 8;
    bottom: -17px;
    right: 0px;
    border-radius: 3px;
  }
  #menu ul li:hover {
    width: 249px;
    -webkit-box-shadow: inset 0 -1px 1px 1px rgba(0, 0, 0, 0.1);
            box-shadow: inset 0 -1px 1px 1px rgba(0, 0, 0, 0.1);
  }
}
#menu ul li a {
  color: var(--negro);
}
@media only screen and (min-width: 550px) {
  #menu ul li a {
    padding: 8px 15px;
    border-radius: 5px;
    display: block;
    width: 100%;
  }
}
@media only screen and (max-width: 550px) {
  #menu ul li a {
    font-size: 5vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
    align-items: center;
    text-align: center;
    line-height: 9vw;
  }
}
#menu ul li a span {
  text-transform: initial;
}
#menu ul li a:hover {
  text-decoration: none;
}
@media only screen and (max-width: 550px) {
  #menu.desplegado {
    aspect-ratio: initial;
    padding: 20px;
    width: calc(100% - 40px);
    height: calc(100dvh - 100px);
    border-radius: 10px;
  }
  #menu.desplegado ul {
    right: 0px;
    opacity: 1;
  }
  #menu.desplegado ul li {
    display: block;
    opacity: 1;
  }
}

#logo-fijo {
  position: fixed;
  width: 100px;
  top: 20px;
  opacity: 0;
  cursor: pointer;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  font-size: 30px;
  color: var(--oscuro);
}
#logo-fijo .cls-3 {
  opacity: 1;
  -webkit-transition: all 1.5s ease-in-out 0.5s;
  transition: all 1.5s ease-in-out 0.5s;
}
#logo-fijo .cls-5 {
  opacity: 1;
  -webkit-transition: all 1.5s ease-in-out 0.7s;
  transition: all 1.5s ease-in-out 0.7s;
}
#logo-fijo .cls-2 {
  opacity: 1;
  -webkit-transition: all 1.3s ease-in-out;
  transition: all 1.3s ease-in-out;
}
#logo-fijo .cls-6 {
  opacity: 0.2;
  -webkit-transition: all 1.1s ease-in-out;
  transition: all 1.1s ease-in-out;
}
#logo-fijo .cls-7 {
  opacity: 0.4;
  -webkit-transition: all 0.9s ease-in-out;
  transition: all 0.9s ease-in-out;
}
#logo-fijo .cls-9 {
  opacity: 0.6;
  -webkit-transition: all 0.7s ease-in-out;
  transition: all 0.7s ease-in-out;
}
#logo-fijo .cls-8 {
  opacity: 0.8;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
@media only screen and (max-width: 550px) {
  #logo-fijo {
    width: 50px;
    top: 10px;
  }
}

.arriba #logo-fijo {
  left: -200px;
  left: 20px;
  opacity: 0;
  opacity: 1;
}

.abajo #logo-fijo {
  left: 20px;
  opacity: 1;
}
@media only screen and (max-width: 550px) {
  .abajo #logo-fijo {
    left: 10px;
  }
}

.uno-visible #logo-fijo, .once-visible #logo-fijo {
  left: -200px;
}

section.principal {
  background-color: var(--color_principal);
}
section.principal > :not(.panel) {
  color: white;
}
section.secundario {
  background-color: var(--color_secundario);
}
section.secundario > :not(.panel) {
  color: white;
}
section.claro {
  background-color: var(--color_claro);
}
section.oscuro {
  background-color: var(--color_oscuro);
}
section.oscuro > :not(.panel) {
  color: white;
}

@media only screen and (min-width: 550px) {
  #degradado {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    z-index: 1;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none; /* Para que no afecte la interacción del usuario con otros elementos */
    overflow: hidden;
    /*
    .slide{
    	height: 100vh;
    	width: 50vw;
    	padding: 1vw;
    	transition: all 1s ease-in-out;
    	//opacity: 0.1;


    	&#slide_1{
    		//background-color: black;
    		width: 100vw;
    	}

    	&#slide_2{
    		//background-color: white;
    		width: 0vw;
    	}
    }

    */
  }
  #degradado .slide {
    position: absolute;
    height: 80dvh;
    width: 60vw;
    margin-top: 10vh;
    margin-bottom: 10vh;
    margin-left: 20vw;
    margin-right: 20vw;
    background-color: white;
    -webkit-box-shadow: 2px 1px 4px rgba(0, 0, 0, 0.2);
            box-shadow: 2px 1px 4px rgba(0, 0, 0, 0.2);
    border: 1px solid #ccc;
    top: 0px;
    left: 0px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    padding-top: 5vw;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 20px;
    overflow: hidden;
  }
  #degradado .slide h1, #degradado .slide h2, #degradado .slide h3, #degradado .slide h4, #degradado .slide h5, #degradado .slide h6, #degradado .slide p, #degradado .slide li {
    opacity: 0.5;
  }
  #degradado .slide.marca {
    opacity: 0;
    -webkit-transform: translate(12.69544px, -16.90581px) rotate(0.557558deg);
            transform: translate(12.69544px, -16.90581px) rotate(0.557558deg);
  }
  #degradado .slide span {
    position: absolute;
    bottom: 20px;
  }
}
@media only screen and (max-width: 550px) {
  #degradado {
    display: none;
  }
}
footer {
  background-color: var(--oscuro);
  position: relative;
  z-index: 2;
}
footer:has(div.tipico) {
  background-color: var(--color_principal);
}
footer .centrado {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  max-width: var(--ancho_maximo);
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-top: 20px;
  padding-bottom: 20px;
}
@media only screen and (max-width: 1200px) {
  footer .centrado {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media only screen and (max-width: 550px) {
  footer .centrado {
    padding-left: 10px;
    padding-right: 10px;
  }
}
footer .centrado ul {
  width: 100%;
  max-width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  list-style: none;
  margin: 0px;
}
@media only screen and (max-width: 550px) {
  footer .centrado ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
  }
}
footer .centrado ul li {
  padding-left: 10px;
  padding-right: 10px;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 14px;
}
footer .centrado ul li.again {
  cursor: pointer;
}
footer .centrado ul li.interruptor a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}
footer .centrado ul li.interruptor a:hover {
  text-decoration: none;
}
footer .centrado ul li.interruptor a::after {
  content: "off";
  text-transform: uppercase;
  width: 40px;
  height: 20px;
  border-radius: 10px;
  margin-left: 10px;
  font-size: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  letter-spacing: 0em;
  padding-left: 0px;
  padding-right: 0px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 1px solid var(--oscuro);
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
@media only screen and (max-width: 550px) {
  footer .centrado ul li.interruptor a::after {
    border: 1px solid var(--crema);
  }
}
footer .centrado ul li.interruptor.dark a::after {
  content: "on";
  border: 1px solid var(--oscuro);
  background-color: var(--claro);
  color: var(--oscuro_siempre);
}
footer .centrado ul li a {
  text-transform: uppercase;
  text-decoration: none;
  color: var(--blanco);
}
footer .centrado ul li a:hover {
  text-decoration: underline;
}
footer .centrado.tipico {
  max-width: var(--ancho_maximo);
  background-color: var(--color_principal);
  padding-top: 50px;
  padding-bottom: 50px;
}
@media only screen and (max-width: 550px) {
  footer .centrado.tipico {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
footer .centrado.tipico svg .cls-2 {
  fill: var(--blanco);
  opacity: 0.9;
}
footer .centrado.tipico svg .cls-6 {
  opacity: 0.4;
}
footer .centrado.tipico svg .cls-7 {
  opacity: 0.5;
}
footer .centrado.tipico svg .cls-8 {
  opacity: 0.8;
}
footer .centrado.tipico svg .cls-9 {
  opacity: 0.6;
}
footer .centrado.tipico svg .cls-3 {
  opacity: 0.8;
}
footer .centrado.tipico ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: auto;
  max-width: initial;
}
@media only screen and (max-width: 550px) {
  footer .centrado.tipico ul {
    padding-left: 0px;
    text-align: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding-top: 10px;
  }
}
footer .centrado.tipico ul li {
  padding-bottom: 0px;
}
footer .centrado.tipico ul li a {
  color: var(--blanco);
  width: 100%;
  text-align: center;
}
footer .centrado.primario {
  background-color: var(--color_principal);
}
footer .centrado.primario ul li {
  padding-bottom: 0px;
}
footer .centrado.primario ul li a {
  color: var(--blanco);
}
footer .centrado.secundario {
  background-color: var(--color_secundario);
}
footer .centrado.secundario ul li {
  padding-bottom: 0px;
}
footer .centrado.secundario ul li a {
  color: var(--blanco);
}

.wpcf7 .screen-reader-response {
  position: absolute;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  word-wrap: normal !important;
}

.wpcf7 form .wpcf7-response-output {
  margin: 2em 0.5em 1em;
  padding: 0.2em 1em;
  border: 2px solid #00a0d2;
}

.wpcf7 form.init .wpcf7-response-output, .wpcf7 form.resetting .wpcf7-response-output, .wpcf7 form.submitting .wpcf7-response-output {
  display: none;
}

.wpcf7 form.sent .wpcf7-response-output {
  border-color: #46b450;
}

.wpcf7 form.failed .wpcf7-response-output, .wpcf7 form.aborted .wpcf7-response-output {
  border-color: #dc3232;
}

.wpcf7 form.spam .wpcf7-response-output {
  border-color: #f56e28;
}

.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output {
  border-color: #ffb900;
}

.wpcf7-form-control-wrap {
  position: relative;
}

.wpcf7-not-valid-tip {
  color: #dc3232;
  font-size: 1em;
  font-weight: 400;
  display: block;
}

.use-floating-validation-tip .wpcf7-not-valid-tip {
  position: relative;
  top: -2ex;
  left: 1em;
  z-index: 100;
  border: 1px solid #dc3232;
  background: #fff;
  padding: 0.2em 0.8em;
  width: 24em;
}

.wpcf7-list-item {
  display: inline-block;
  margin: 0 0 0 1em;
}

.wpcf7-list-item-label::before, .wpcf7-list-item-label::after {
  content: " ";
}

.wpcf7-spinner {
  visibility: hidden;
  display: inline-block;
  background-color: #23282d;
  opacity: 0.75;
  width: 24px;
  height: 24px;
  border: none;
  border-radius: 100%;
  padding: 0;
  margin: 0 24px;
  position: relative;
}

form.submitting .wpcf7-spinner {
  visibility: visible;
}

.wpcf7-spinner::before {
  content: "";
  position: absolute;
  background-color: #fbfbfc;
  top: 4px;
  left: 4px;
  width: 6px;
  height: 6px;
  border: none;
  border-radius: 100%;
  -webkit-transform-origin: 8px 8px;
          transform-origin: 8px 8px;
  -webkit-animation-name: spin;
          animation-name: spin;
  -webkit-animation-duration: 1000ms;
          animation-duration: 1000ms;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}

@media (prefers-reduced-motion: reduce) {
  .wpcf7-spinner::before {
    -webkit-animation-name: blink;
            animation-name: blink;
    -webkit-animation-duration: 2000ms;
            animation-duration: 2000ms;
  }
}
@-webkit-keyframes spin {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes spin {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@-webkit-keyframes blink {
  from {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes blink {
  from {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.wpcf7 input[type=file] {
  cursor: pointer;
}

.wpcf7 input[type=file]:disabled {
  cursor: default;
}

.wpcf7 .wpcf7-submit:disabled {
  cursor: not-allowed;
}

.wpcf7 input[type=url], .wpcf7 input[type=email], .wpcf7 input[type=tel] {
  direction: ltr;
}

.wpcf7-reflection > output {
  display: list-item;
  list-style: none;
}

.wpcf7 {
  width: 100%;
  max-width: 500px;
  margin: auto;
}
.wpcf7 form {
  position: relative;
}
.wpcf7 form p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  width: 100%;
  max-width: 500px;
  margin: auto;
}
.wpcf7 form p label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: left;
}
.wpcf7 form p label > span:first-child {
  padding-bottom: 5px;
}
.wpcf7 form p label .wpcf7-form-control-wrap .wpcf7-list-item {
  margin-left: 0px;
}
.wpcf7 form p label .wpcf7-form-control-wrap .wpcf7-list-item label {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 10px;
}
.wpcf7 form p label .wpcf7-form-control-wrap input {
  width: 100%;
  font-family: monospace;
  background-color: var(--blanco);
}
.wpcf7 form p label .wpcf7-form-control-wrap input[type=text], .wpcf7 form p label .wpcf7-form-control-wrap input[type=tel], .wpcf7 form p label .wpcf7-form-control-wrap input[type=email] {
  line-height: 25px;
  font-size: 16px;
  padding: 5px 10px;
  border: 0px;
  border-radius: 5px;
}
.wpcf7 form p label .wpcf7-form-control-wrap input[type=checkbox] {
  width: 16px;
  height: 16px;
  background-color: var(--color_negro_siempre);
  border-radius: 50%;
  vertical-align: middle;
  border: 1px solid var(--crema_siempre);
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  outline: none;
  cursor: pointer;
  position: relative;
}
@media only screen and (max-width: 550px) {
  .wpcf7 form p label .wpcf7-form-control-wrap input[type=checkbox] {
    width: 24px;
  }
}
.wpcf7 form p label .wpcf7-form-control-wrap input[type=checkbox]:checked {
  background-color: var(--color_secundario);
}
.wpcf7 form p label .wpcf7-form-control-wrap textarea {
  width: 100%;
  font-size: 16px;
  padding: 5px 10px;
  background-color: var(--blanco);
  border: 0px;
  border-radius: 5px;
}
.wpcf7 form p input[type=submit] {
  -webkit-appearance: none;
  -webkit-border-radius: none;
  margin-top: 10px;
  background-color: var(--color_secundario);
  font-size: 18px;
  color: var(--blanco);
  text-transform: uppercase;
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px 15px;
  border-radius: 5px;
  white-space: nowrap;
  border: 0px;
  width: 100%;
  cursor: pointer;
}
@media only screen and (max-width: 1024px) {
  .wpcf7 form p input[type=submit] {
    white-space: normal;
    text-align: center;
  }
}
.wpcf7 form .wpcf7-spinner {
  position: absolute;
  top: calc(50% - 12px);
  left: calc(50% - 12px);
  display: block;
  margin: 0px;
}
.wpcf7 form .wpcf7-response-output {
  position: absolute;
  bottom: -75px;
  left: 0px;
  border: 0px;
  margin: 0px;
  padding: 10px;
  width: 100%;
  border-radius: 5px;
}
.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output {
  background-color: #ffb900;
  color: black;
}
.wpcf7 form.sent .wpcf7-response-output {
  background-color: #46b450;
  color: black;
}

.bloque .panel {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  z-index: 2;
  padding: 60px 40px;
  border-radius: 20px;
  background-color: white;
}
.bloque.intro_colores .panel {
  background-color: var(--verde);
  color: var(--crema_siempre);
}
.bloque.izquierda {
  padding: 0px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media only screen and (max-width: 550px) {
  .bloque.izquierda {
    padding: 20px;
    padding-bottom: 60px;
  }
}
.bloque.izquierda .panel {
  -webkit-box-flex: 2;
      -ms-flex-positive: 2;
          flex-grow: 2;
  width: 50%;
  border-radius: 0px;
}
@media only screen and (max-width: 550px) {
  .bloque.izquierda .panel {
    width: 100%;
    height: initial;
    border-radius: 20px;
  }
}
.bloque.izquierda.principal .panel {
  background-color: var(--color_principal);
}
.bloque.izquierda.principal .panel h2 {
  color: var(--color_secundario);
}
.bloque.izquierda.secundario .panel {
  background-color: var(--color_secundario);
}
.bloque.izquierda.secundario .panel h2 {
  color: var(--color_principal);
}
.bloque.derecha {
  padding: 0px;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media only screen and (max-width: 550px) {
  .bloque.derecha {
    padding: 20px;
    padding-bottom: 60px;
  }
}
.bloque.derecha .panel {
  -webkit-box-flex: 2;
      -ms-flex-positive: 2;
          flex-grow: 2;
  width: 50%;
  border-radius: 0px;
}
@media only screen and (max-width: 550px) {
  .bloque.derecha .panel {
    width: 100%;
    height: initial;
    border-radius: 20px;
  }
}
.bloque.derecha.principal .panel {
  background-color: var(--color_principal);
}
.bloque.derecha.principal .panel h2 {
  color: var(--color_secundario);
}
.bloque.derecha.secundario .panel {
  background-color: var(--color_secundario);
}
.bloque.derecha.secundario .panel h2 {
  color: var(--color_principal);
}

.logo_y_nombre svg {
  z-index: 2;
}
.logo_y_nombre .logo_alternativo {
  z-index: 2;
  max-width: 200px;
}
.logo_y_nombre h1 {
  z-index: 2;
  font-size: 30px;
}
.logo_y_nombre h1 a {
  color: var(--negro);
  text-decoration: none;
}
.logo_y_nombre > a:not(.enlace-siguiente) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 200px;
  text-decoration: none;
  color: var(--negro);
}
.logo_y_nombre > a:not(.enlace-siguiente) span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  font-size: 50px;
  line-height: 50px;
}
.logo_y_nombre h2 {
  max-width: 600px;
  color: var(--color_titular_h2);
  z-index: 2;
}
.logo_y_nombre h3 {
  z-index: 2;
}
.logo_y_nombre.blanco h1 {
  color: white;
}
.logo_y_nombre.blanco h2 {
  color: white;
}
.logo_y_nombre.blanco h3 {
  color: white;
}
.logo_y_nombre.blanco .enlace-siguiente svg {
  fill: white;
}
.logo_y_nombre.blanco svg .cls-2 {
  fill: var(--blanco);
  opacity: 0.9;
}
.logo_y_nombre.blanco svg .cls-6 {
  opacity: 0.4;
}
.logo_y_nombre.blanco svg .cls-7 {
  opacity: 0.5;
}
.logo_y_nombre.blanco svg .cls-8 {
  opacity: 0.8;
}
.logo_y_nombre.blanco svg .cls-9 {
  opacity: 0.6;
}
.logo_y_nombre.blanco svg .cls-3 {
  opacity: 0.8;
}
.logo_y_nombre.negro h1 {
  color: black;
}
.logo_y_nombre.negro h2 {
  color: black;
}
.logo_y_nombre.negro h3 {
  color: black;
}
.logo_y_nombre.negro svg .cls-1 {
  fill: rgb(0, 0, 0);
}
.logo_y_nombre.negro svg .cls-3 {
  fill: rgba(0, 0, 0, 0.5);
}

.intro {
  position: relative;
}
.intro svg {
  z-index: 2;
}
.intro h2 {
  z-index: 2;
}
.intro h3 {
  z-index: 2;
}
.intro p {
  z-index: 2;
}
.intro .imagen_de_detalle {
  position: absolute;
  bottom: 5%;
  left: 5%;
}

.intro_colores {
  position: relative;
}
@media only screen and (max-width: 550px) {
  .intro_colores {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.intro_colores svg {
  z-index: 2;
}
.intro_colores h2 {
  z-index: 2;
}
.intro_colores h3 {
  z-index: 2;
}
.intro_colores p {
  z-index: 2;
}

.columna-basica .articles-array {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 5vh;
}
@media only screen and (max-width: 550px) {
  .columna-basica .articles-array {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.columna-basica .articles-array.wrap {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.columna-basica .articles-array article {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  width: 100%;
  border-radius: 20px;
}
.columna-basica .articles-array article.principal {
  background-color: var(--color_principal);
  padding: 40px 20px;
}
.columna-basica .articles-array article.principal h2, .columna-basica .articles-array article.principal h3, .columna-basica .articles-array article.principal h4 {
  color: var(--color_secundario);
}
.columna-basica .articles-array article.principal p {
  color: var(--blanco);
}
.columna-basica .articles-array article.secundario {
  background-color: var(--color_secundario);
  padding: 40px 20px;
}
.columna-basica .articles-array article.secundario h2, .columna-basica .articles-array article.secundario h3, .columna-basica .articles-array article.secundario h4 {
  color: var(--color_principal);
}
.columna-basica .articles-array article.secundario p {
  color: var(--blanco);
}
.columna-basica .articles-array article.claro {
  background-color: var(--claro);
  padding: 40px 20px;
}
.columna-basica .articles-array article.claro svg {
  fill: var(--color_secundario);
  max-width: 100px;
}
.columna-basica .articles-array article.oscuro {
  background-color: var(--oscuro);
  padding: 40px 20px;
}
.columna-basica .articles-array article svg {
  fill: var(--blanco);
  max-width: 100px;
}
.columna-basica .articles-array article img {
  max-width: 100px;
}

.bloque_fijo .articles-array {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5vh;
}
@media only screen and (max-width: 550px) {
  .bloque_fijo .articles-array {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.bloque_fijo .articles-array article {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
.bloque_fijo .articles-array article.fijo {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.bloque_fijo .articles-array article.fijo > div {
  position: sticky;
  top: 5vh;
  border-radius: 5px;
  border: 1px solid var(--color_principal);
  padding: 40px 20px;
  background-color: var(--color_principal);
}
.bloque_fijo .articles-array article.fijo > div h3 {
  color: var(--color_claro);
}
.bloque_fijo .articles-array article.fijo > div ul li {
  color: var(--color_claro);
}
.bloque_fijo .articles-array article.fijo > div a {
  color: var(--color_claro);
  text-decoration: underline;
}
.imagen_texto {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  position: relative;
  overflow: hidden;
}
.imagen_texto .el_fondo {
  position: absolute;
  width: 100%;
  max-width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  opacity: 0.5;
  z-index: 1;
}
@media only screen and (max-width: 550px) {
  .imagen_texto {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.imagen_texto.ligero {
  background-color: rgba(255, 255, 255, 0.25);
}
.imagen_texto.blanco {
  background-color: white;
}
.imagen_texto.principal {
  background-color: var(--verde);
}
.imagen_texto.secundario {
  background-color: var(--morado);
}
.imagen_texto.secundario > div {
  position: relative;
  z-index: 2;
}
.imagen_texto.secundario > div .el_texto h2, .imagen_texto.secundario > div .el_texto p {
  color: white;
}
.imagen_texto.secundario > div .el_texto h2 a, .imagen_texto.secundario > div .el_texto p a {
  background-color: var(--verde);
}
.imagen_texto .izquierda {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media only screen and (max-width: 550px) {
  .imagen_texto .izquierda {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 90%;
  }
}
@media only screen and (max-width: 550px) {
  .imagen_texto .derecha {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 90%;
  }
}
.imagen_texto > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10vh;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.imagen_texto > div .el_texto {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media only screen and (max-width: 550px) {
  .imagen_texto > div .el_texto {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.imagen_texto > div .el_texto h2 {
  padding-bottom: 20px;
  text-align: left;
}
@media only screen and (max-width: 550px) {
  .imagen_texto > div .el_texto h2 {
    text-align: center;
  }
}
.imagen_texto > div .el_texto p {
  padding-bottom: 20px;
  text-align: left;
}
@media only screen and (max-width: 550px) {
  .imagen_texto > div .el_texto p {
    text-align: center;
  }
}
.imagen_texto > div .el_texto p:last-child {
  padding-bottom: 0px;
}
.imagen_texto > div .el_texto p a {
  background-color: var(--morado);
  color: var(--blanco);
  text-transform: uppercase;
  border-radius: 10px;
  padding: 10px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.imagen_texto > div .el_texto p a:hover {
  text-decoration: none;
  background-color: var(--color_principal);
}
@media only screen and (max-width: 550px) {
  .imagen_texto > div .el_texto p a {
    margin: auto;
  }
}
.imagen_texto img {
  max-width: 400px;
}
@media only screen and (max-width: 550px) {
  .imagen_texto img {
    width: 100%;
  }
}

section.bloque.banner {
  padding: 0px;
  margin: 0px;
  height: 50vh;
  min-height: 50vh;
}
section.bloque .owl-galeria {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  height: 50vh;
}
section.bloque .owl-galeria .owl-dots {
  position: absolute;
  bottom: 20px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
section.bloque .owl-galeria .owl-dots button {
  width: 15px;
  height: 15px;
  border-radius: 10px;
  border: 0px solid var(--verde);
  cursor: pointer;
}
section.bloque .owl-galeria .owl-dots button.active {
  background-color: var(--verde);
}
section.bloque .owl-galeria .owl-nav.disabled {
  display: none;
}
section.bloque .owl-galeria .owl-nav .owl-prev {
  position: absolute;
  left: 0px;
  top: 50%;
  width: 30px;
  height: 30px;
  background-color: transparent;
  border: 0;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  cursor: pointer;
}
section.bloque .owl-galeria .owl-nav .owl-prev svg {
  width: 30px;
  height: 30px;
}
section.bloque .owl-galeria .owl-nav .owl-next {
  position: absolute;
  right: 0px;
  top: 50%;
  width: 30px;
  height: 30px;
  background-color: transparent;
  border: 0;
  cursor: pointer;
}
section.bloque .owl-galeria .owl-nav .owl-next svg {
  width: 30px;
  height: 30px;
}
section.bloque .owl-galeria .owl-stage-outer {
  display: block;
  width: 100%;
  height: 50vh;
  overflow: hidden;
}
section.bloque .owl-galeria .owl-stage-outer .owl-stage {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 50vh;
}
section.bloque .owl-galeria .owl-stage-outer .owl-stage .owl-item .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  width: 100vw;
}
section.bloque .owl-galeria .owl-stage-outer .owl-stage .owl-item .item img {
  width: 100%;
  height: 50vh;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  position: relative;
  z-index: 1;
}
section.bloque .owl-galeria .owl-stage-outer .owl-stage .owl-item .item p {
  position: absolute;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 2;
  font-size: 50px;
  line-height: 70px;
  color: white;
  max-width: 100%;
  padding-left: 10%;
  padding-right: 10%;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.75);
}
@media only screen and (max-width: 550px) {
  section.bloque .owl-galeria .owl-stage-outer .owl-stage .owl-item .item p {
    font-size: 35px;
  }
}
section.bloque.tres_cuartos {
  min-height: 75vh;
}
section.bloque.tres_cuartos .owl-galeria {
  height: 75vh;
}
section.bloque.tres_cuartos .owl-galeria .owl-stage-outer {
  height: 75vh;
}
section.bloque.tres_cuartos .owl-galeria .owl-stage-outer .owl-stage {
  height: 75vh;
}
section.bloque.tres_cuartos .owl-galeria .owl-stage-outer .owl-stage .owl-item .item img {
  height: 75vh;
}

@media only screen and (min-width: 550px) {
  .bloque_valores .fijo {
    width: 20px;
    height: 20px;
    border-radius: 20px;
    background-color: var(--verde);
    top: 20px;
    left: 20px;
  }
}
/*

	VARIABLES
	--color_fondo_banner
	--color_texto_banner
	--color_relleno_logo
	--color_texto_logo
	--color_negrita_banner

	--ancho_centrado
	--hueco_doble

	--treitayseis
	--veinticuatro

*/
.eventos .articles-array {
  width: 100%;
  max-width: 100%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 0px 1fr;
  grid-template-columns: 1fr 1fr;
  -ms-grid-rows: auto 0px auto;
  grid-template-rows: auto auto;
  gap: 0px 0px;
}
.eventos .articles-array > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}
.eventos .articles-array > *:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
}
.eventos .articles-array > *:nth-child(3) {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
}
.eventos .articles-array > *:nth-child(4) {
  -ms-grid-row: 3;
  -ms-grid-column: 3;
}
@media only screen and (max-width: 550px) {
  .eventos .articles-array {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.eventos .articles-array article {
  max-width: 100%;
  text-align: center;
  margin: auto;
}
.eventos .articles-array article:first-child {
  -ms-grid-row: 1;
      grid-row-start: 1;
  -ms-grid-column: 1;
      grid-column-start: 1;
  -ms-grid-row-span: 2;
  grid-row-end: 3;
  -ms-grid-column-span: 1;
  grid-column-end: 2;
}
.eventos .articles-array article h3 {
  padding-bottom: 10px;
  padding-top: 20px;
}
.eventos .articles-array article ul {
  list-style-type: none;
}
.eventos .articles-array article ul li {
  list-style-type: none;
}
@media only screen and (max-width: 550px) {
  #once {
    padding-bottom: 20vh;
    padding-bottom: 10vh;
  }
}
section.default {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding-top: 150px;
  max-width: var(--ancho_maximo);
  margin-left: auto;
  margin-right: auto;
  padding-left: 0px;
  padding-right: 0px;
}
section.default > p, section.default ul, section.default ol, section.default li {
  max-width: 100%;
  text-align: left;
}
section.default ol li {
  list-style-type: initial;
}
section.default ol li:before {
  color: var(--morado);
  content: initial;
  left: -32px;
  top: 0px;
  font-size: 130%;
}

.kit {
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-bottom: 20px;
  background-color: var(--oscuro);
  width: 100%;
  z-index: 2;
}
.kit .kit_1 {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.kit .kit_1 img {
  display: block;
  width: auto;
  height: 100%;
  max-height: 50px;
  -webkit-filter: invert(100%);
          filter: invert(100%);
}
.kit .kit_2 {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.kit .kit_2 img {
  display: block;
  width: auto;
  height: 100%;
  max-height: 50px;
  -webkit-filter: invert(100%);
          filter: invert(100%);
}
@media only screen and (max-width: 550px) {
  .kit .kit_2 img {
    height: 50px;
  }
}

/*

	VARIABLES

	--color_fondo_alert
	--color_borde_alert

	--grosor_uno

*/
.alert {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: fixed;
  z-index: 3;
  bottom: -75px;
  left: 0px;
  width: 100%;
  background-color: white;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-top: 1px solid white;
}
.alert p {
  width: 100%;
  padding: 10px;
  margin: 0px;
  color: black;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  max-width: 100%;
}
@media only screen and (max-width: 550px) {
  .alert p {
    padding: 15px 10px;
  }
}
.alert p a {
  font-weight: 700;
  color: black;
  margin-left: 20px;
  text-decoration: underline;
}
.alert span {
  width: 20px;
  height: 20px;
  margin-right: 10px;
}
.alert span svg {
  fill: white;
  cursor: pointer;
}
.alert span svg path {
  fill: white;
}
.alert.dark {
  bottom: 0px;
  text-transform: uppercase;
}

/*

  VARIABLES

  --grosor_uno

*/
.again {
  cursor: pointer;
}

#gdpr-cookie-message {
  position: fixed;
  bottom: 0px;
  z-index: 20;
  background-color: rgba(0, 0, 0, 0.8);
  border-top: 1px solid rgb(255, 255, 255);
  color: rgb(255, 255, 255);
  padding: 20px;
  width: 100%;
}

#gdpr-cookie-message h4 {
  text-transform: uppercase;
  padding-bottom: 10px;
  font-size: 15px;
}

#gdpr-cookie-message p {
  line-height: 1.3em;
  font-size: 14px;
  width: 100%;
  max-width: 100%;
  text-align: left;
}

#gdpr-cookie-message a {
  color: rgb(255, 255, 255);
}

#gdpr-cookie-types {
  padding: 20px 0px;
}

#gdpr-cookie-types h5 {
  text-transform: uppercase;
  padding-bottom: 10px;
}

#gdpr-cookie-types ul {
  list-style-type: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#gdpr-cookie-types ul li {
  padding: 0px 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 7px;
}
#gdpr-cookie-types ul li input[type=checkbox] {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  vertical-align: middle;
  border: 1px solid var(--crema_siempre);
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  outline: none;
  cursor: pointer;
  position: relative;
}
@media only screen and (max-width: 550px) {
  #gdpr-cookie-types ul li input[type=checkbox] {
    width: 24px;
  }
}
#gdpr-cookie-types ul li input[type=checkbox]:checked {
  background-color: var(--crema_siempre);
}

#gdpr-cookie-message p:last-of-type {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-top: 20px;
}

#gdpr-cookie-message button {
  padding: 10px 20px;
  border-radius: 4px;
  border: 0px;
  text-transform: uppercase;
  font-size: 14px;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  cursor: pointer;
  border: 1px solid rgb(255, 255, 255);
  color: rgb(255, 255, 255);
  background-color: rgba(0, 0, 0, 0);
  -webkit-appearance: none;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

#gdpr-cookie-message button:first-of-type:hover {
  background-color: rgba(0, 0, 0, 0);
}

#gdpr-cookie-message button:last-of-type {
  margin-left: 20px;
  padding: 0px;
  border: 0px;
  text-decoration: underline;
  font-size: 12px;
}

#gdpr-cookie-message label {
  cursor: pointer;
}

@media (max-width: 414px) {
  #gdpr-cookie-types {
    padding-bottom: 0px;
  }
  #gdpr-cookie-types h5 {
    margin: 0px;
  }
  #gdpr-cookie-types ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 0px;
    padding: 0px;
  }
}
#gdpr-cookie-message label {
  cursor: pointer;
}

@media (max-width: 414px) {
  #gdpr-cookie-types {
    padding-bottom: 0px;
  }
  #gdpr-cookie-types h5 {
    margin: 0px;
  }
  #gdpr-cookie-types ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 0px;
    padding: 0px;
  }
}
@media only screen and (min-width: 550px) {
  .con_transicion .bloque {
    opacity: 0;
  }
  .con_transicion .posicion_1-visible #posicion_1 {
    opacity: 1;
  }
  .con_transicion .posicion_2-visible #posicion_2 {
    opacity: 1;
  }
  .con_transicion .posicion_3-visible #posicion_3 {
    opacity: 1;
  }
  .con_transicion .posicion_4-visible #posicion_4 {
    opacity: 1;
  }
  .con_transicion .posicion_5-visible #posicion_5 {
    opacity: 1;
  }
  .con_transicion .posicion_6-visible #posicion_6 {
    opacity: 1;
  }
  .con_transicion .posicion_7-visible #posicion_7 {
    opacity: 1;
  }
  .con_transicion .posicion_8-visible #posicion_8 {
    opacity: 1;
  }
  .con_transicion .posicion_9-visible #posicion_9 {
    opacity: 1;
  }
  .con_transicion .posicion_10-visible #posicion_10 {
    opacity: 1;
  }
  .con_transicion .posicion_11-visible #posicion_11 {
    opacity: 1;
  }
  .con_transicion .posicion_12-visible #posicion_12 {
    opacity: 1;
  }
  .con_transicion .posicion_13-visible #posicion_13 {
    opacity: 1;
  }
  .con_transicion .posicion_14-visible #posicion_14 {
    opacity: 1;
  }
  .con_transicion .posicion_15-visible #posicion_15 {
    opacity: 1;
  }
  .con_transicion .posicion_16-visible #posicion_16 {
    opacity: 1;
  }
  .con_transicion .posicion_17-visible #posicion_17 {
    opacity: 1;
  }
  .con_transicion .posicion_18-visible #posicion_18 {
    opacity: 1;
  }
}
.modo_1 header {
  -webkit-backdrop-filter: none;
          backdrop-filter: none;
  -webkit-filter: none;
          filter: none;
  border-bottom: 0px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.25)), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0) 100%);
  border-top: 5px solid var(--color_principal);
}
.modo_1 header .centrado svg .cls-2 {
  fill: var(--blanco);
  opacity: 0.9;
}
.modo_1 header .centrado svg .cls-6 {
  opacity: 0.4;
}
.modo_1 header .centrado svg .cls-7 {
  opacity: 0.5;
}
.modo_1 header .centrado svg .cls-8 {
  opacity: 0.8;
}
.modo_1 header .centrado svg .cls-9 {
  opacity: 0.6;
}
.modo_1 header .centrado svg .cls-3 {
  opacity: 0.8;
}
.modo_1 header .centrado .nav ul {
  gap: 0px;
  -webkit-column-gap: 0px;
     -moz-column-gap: 0px;
          column-gap: 0px;
}
.modo_1 header .centrado .nav ul li {
  border-bottom: 2px solid var(--color_principal);
  padding-bottom: 10px;
  padding-left: 30px;
}
.modo_1 header .centrado .nav ul li a {
  padding-right: 0px;
}
.modo_1 header .centrado .nav ul li a {
  color: var(--blanco);
}