@charset "UTF-8";

@font-face {
  font-family: "Guthen";
  src: url("/wp-content/themes/woko/fonts/guthen-bloots-basic.otf") format("opentype");
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}


/* ----------------------------------------------------- */

/* Básico */

/* ----------------------------------------------------- */

/* Predefinidos */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-style: normal;
  text-decoration: none;
}

input,
textarea,
button,
a,
select {
  outline: none !important;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

input[type="submit"],
input[type="reset"],
button,
a {
  cursor: pointer;
}

br {
  line-height: 0;
}

a {
  color: inherit;
}

body {
  overflow-x: hidden;
}

table {
  border-collapse: collapse;
}

body,
input,
button,
select,
textarea {
  color: #1A171C;
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 115%;
}

::-webkit-input-placeholder {
  color: inherit;
  opacity: 0.5;
}

::-moz-placeholder {
  color: inherit;
  opacity: 0.5;
}

:-ms-input-placeholder {
  color: inherit;
  opacity: 0.5;
}

::-ms-input-placeholder {
  color: inherit;
  opacity: 0.5;
}

::placeholder {
  color: inherit;
  opacity: 0.5;
}

#wpadminbar {
  bottom: 0;
  top: auto;
  position: fixed;
  opacity: 0.3;
  -webkit-transition: 0.15s;
  transition: 0.15s;
}

#wpadminbar:hover {
  opacity: 1;
}

/* Contenedores */

.contenedor {
  width: 100%;
  max-width: 1070px;
  margin: auto;
}

.margen {
  width: 95%;
  max-width: 1000px;
  margin: auto;
}

section {
  margin: 100px 0;
}

/* ----------------------------------------------------- */

/* Estilos */

/* ----------------------------------------------------- */

u,
.subrayado {
  text-decoration: underline !important;
}

strong,
b,
.negrita {
  font-weight: 700 !important;
}

em,
.cursiva {
  font-style: italic !important;
}

/* Texto */

/*
h1 {
  color: ;
  font-weight: ;
  line-height: ;
  font-size: ;
}
h2 {
  color: ;
  font-weight: ;
  line-height: ;
  font-size: ;
}
h3 {
  color: ;
  font-weight: ;
  line-height: ;
  font-size: ;
}
h4 {
  color: ;
  font-weight: ;
  line-height: ;
  font-size: ;
}
*/

.texto h1,
.texto .h1 {
  font-size: 40px;
  font-weight: 700;
  line-height: 100%;
  margin-bottom: 40px;
}

.texto h2,
.texto .h2 {
  font-size: 28px;
  font-weight: 700;
  line-height: 100%;
  margin-bottom: 30px;
  margin-top: 70px;
}

.texto h3,
.texto .h3 {
  font-size: 22px;
  font-weight: 700;
  line-height: 100%;
  margin-bottom: 25px;
}

.texto .titulo {
  background-color: #44772F;
  display: inline-block;
  padding: 18px 20px;
  color: white;
  width: 100%;
  max-width: 260px;
  -webkit-clip-path: polygon(0 0, 100% 0, calc(100% - 15px) 100%, 0 100%);
  clip-path: polygon(0 0, 100% 0, calc(100% - 15px) 100%, 0 100%);
  font-size: 22px;
  margin-top: 20px;
  margin-bottom: 30px;
  line-height: 130%;
  padding-bottom: 20px;
}

.texto .subtitulo {
  margin-top: -17px;
  margin-bottom: 30px;
  font-weight: 400;
  font-size: 20px;
  line-height: 110%;
}

.texto p,
.texto li {
  line-height: 160%;
  font-size: 19px;
}

.texto p,
.texto ul,
.texto ol {
  margin-bottom: 20px;
}

.texto li {
  margin-bottom: 7px;
  margin-left: 30px;
}

.texto .boton {
  margin: 10px 0;
}

.texto a:not(.boton):not(.enlace) {
  border-bottom: 2px solid #44772F;
  color: inherit;
}

.texto .wp-block-image {
  margin: 40px 0;
}

.texto .cta {
  margin: 40px 0;
}

.texto iframe {
  margin: 35px 0;
  display: block;
  max-width: 100%;
}

.texto>*:first-child {
  margin-top: 0 !important;
}

.texto>*:last-child {
  margin-bottom: 0 !important;
}

/* Post */

.entradilla {
  border-left: 6px solid #44772F;
  padding-left: 15px;
  font-size: 22px !important;
  margin-bottom: 30px !important;
}

/* Enlaces */

.boton,
input[type="button"] {
  border: none;
  background: none;
  cursor: pointer;
  display: inline-block;
  background-color: #44772F;
  color: white;
  padding: 14px 30px;
  line-height: 100%;
  font-size: 15px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.3px;
  border-radius: 1000px;
  border: 1px solid #44772F;
  -webkit-transition: 0.15s;
  transition: 0.15s;
}

.boton::after,
input[type="button"]::after {
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  border: solid white;
  border-width: 0 2px 2px 0 !important;
  padding: 4px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  margin-left: 7px;
  position: relative;
  top: -0.5px;
  -webkit-transition: 0.15s;
  transition: 0.15s;
}

.boton:hover,
input[type="button"]:hover {
  background: none;
  color: #44772F;
}

.boton:hover::after,
input[type="button"]:hover::after {
  border-color: #44772F;
}

.boton.little,
input[type="button"].little {
  padding: 10px 18px;
  font-size: 14px;
}

.boton.little::after,
input[type="button"].little::after {
  padding: 3px;
  top: -1px;
}

.enlace {
  font-weight: 400;
  font-size: 19px;
  border-bottom: 1px solid black;
  padding: 6px 4px;
  -webkit-transition: 0.15s;
  transition: 0.15s;
}

.enlace::after {
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  border: solid black;
  border-width: 0 2px 2px 0 !important;
  padding: 5px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  margin-left: 10px;
  position: relative;
  top: -0.5px;
  -webkit-transition: 0.15s;
  transition: 0.15s;
}

.enlace:hover {
  padding: 6px 10px;
  color: #44772F;
  border-color: #44772F;
}

.enlace:hover::after {
  margin-left: 15px;
  border: solid #44772F;
}

/* Botón de subir al principio de la página. */

#go-up {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border-radius: 1000px;
  background-color: black;
  color: white;
  font-size: 28px;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  cursor: pointer;
  -webkit-transform: translateY(80px);
  transform: translateY(80px);
  -webkit-transition: all 0.15s, -webkit-transform 0.4s;
  transition: all 0.15s, -webkit-transform 0.4s;
  transition: all 0.15s, transform 0.4s;
  transition: all 0.15s, transform 0.4s, -webkit-transform 0.4s;
  z-index: 100;
}

#go-up i {
  margin-top: -2px;
}

/* Logo */

.logo {
  display: block;
}

.logo img {
  display: block;
  width: 100%;
}

/* CTA */

.cta {
  display: block;
}

.cta a {
  display: block;
}

.cta img {
  display: block;
  width: 100%;
}

.cta img:last-of-type {
  display: none;
}

/* Ancla */

.anchor {
  visibility: hidden;
  position: relative;
  top: -50px;
}

.anchor+br {
  display: none;
}

/* ----------------------------------------------------- */

/* Formularios */

/* ----------------------------------------------------- */

.nf-form-title {
  display: none;
}

.nf-before-form-content {
  display: none;
}

.nf-field-label {
  display: none;
}

.checkbox-wrap {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  flex-direction: row-reverse;
  -webkit-box-pack: end;
  justify-content: flex-end;
}

.checkbox-wrap .nf-field-label {
  display: inline-block;
}

.nf-after-form-content {
  display: none;
}

.ninja-forms-req-symbol {
  display: none;
}

.g-recaptcha {
  -webkit-transform: scale(0.8);
  transform: scale(0.8);
  -webkit-transform-origin: left;
  transform-origin: left;
  margin: 15px 0;
}

/* Texto */

input[type="text"],
input[type="email"],
input[type="tel"],
textarea,
select {
  background: none;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.07);
  padding: 10px 12px;
  margin-bottom: 8px;
  border-radius: 5px;
  font-size: 17px;
  border: 1px solid white;
  font-weight: 400;
  -webkit-transition: 0.15s;
  transition: 0.15s;
  box-shadow: none !important;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
textarea:focus,
select:focus {
  border-color: #44772F;
}

textarea {
  width: 100%;
  max-width: 100%;
  min-width: 100%;
  height: 80px;
  min-height: 80px;
  max-height: 350px;
}

.list-select-wrap,
.list-checkbox-wrap,
.list-radio-wrap,
.html-container {
  margin-bottom: 8px;
}

.list-select-wrap .nf-field-label,
.list-checkbox-wrap .nf-field-label,
.list-radio-wrap .nf-field-label,
.html-container .nf-field-label {
  display: block;
  font-size: 15px;
  margin-bottom: 5px;
  margin-top: 8px;
  font-weight: 400;
}

.list-select-wrap .nf-field-element {
  position: relative;
}

.list-select-wrap .nf-field-element::after {
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  border: solid black;
  border-width: 0 2px 2px 0 !important;
  padding: 3px;
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
  position: absolute;
  right: 15px;
  top: calc(50% - 6px);
}

.list-select-wrap select {
  cursor: pointer;
  padding-right: 34px;
}

.list-select-wrap select option {
  all: initial;
  font-family: Arial;
}

.checkbox-wrap,
.list-checkbox-wrap li,
.list-radio-wrap li {
  cursor: pointer;
  display: -webkit-box;
  display: flex;
  margin: 8px 0;
}

.checkbox-wrap:hover input,
.list-checkbox-wrap li:hover input,
.list-radio-wrap li:hover input {
  border-color: #44772F;
}

.checkbox-wrap input,
.list-checkbox-wrap li input,
.list-radio-wrap li input {
  display: block;
  width: 18px;
  min-width: 18px;
  max-width: 18px;
  height: 18px;
  cursor: pointer;
  border: 1px solid rgba(0, 0, 0, 0.3);
  border-radius: 5px;
  position: relative;
  -webkit-transition: 0.15s;
  transition: 0.15s;
  box-shadow: none !important;
}

.checkbox-wrap input::after,
.list-checkbox-wrap li input::after,
.list-radio-wrap li input::after {
  position: absolute;
  background-color: white;
  -webkit-transition: 0.15s;
  transition: 0.15s;
  display: block;
  left: 50%;
  top: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%);
  transform: translateY(-50%) translateX(-50%);
  width: 13px;
  height: 13px;
  border-radius: 3px;
  content: '';
}

.checkbox-wrap input:checked,
.list-checkbox-wrap li input:checked,
.list-radio-wrap li input:checked {
  border-color: #44772F;
}

.checkbox-wrap input:checked::after,
.list-checkbox-wrap li input:checked::after,
.list-radio-wrap li input:checked::after {
  background-color: #44772F;
}

.checkbox-wrap label,
.list-checkbox-wrap li label,
.list-radio-wrap li label {
  font-size: 15px;
  cursor: pointer;
  line-height: 120%;
  display: block;
  margin-left: 8px;
  margin-top: 1px;
  color: #7b7b7b;
}

.checkbox-wrap label a,
.list-checkbox-wrap li label a,
.list-radio-wrap li label a {
  text-decoration: underline;
  border: none !important;
}

.list-checkbox-wrap .nf-field-element,
.list-radio-wrap .nf-field-element {
  margin-left: 18px;
  margin-bottom: 20px;
}

.list-checkbox-wrap li label,
.list-radio-wrap li label {
  font-size: 17px;
  margin-top: 0;
  color: black;
}

/* Ajustes */

.formulario .boton,
.formulario input[type="button"] {
  margin-top: 15px;
}

.formulario .nf-error-msg {
  font-size: 14px;
  line-height: 110%;
  color: #44772F;
  font-weight: 400;
  margin-bottom: 14px;
  margin-top: -2px;
  padding: 0 12px;
}

.formulario .checkbox-container .nf-error-msg {
  padding-left: 26px;
}

.formulario hr {
  width: 100%;
  border: none;
  height: 1px;
  display: block;
  background-color: #b5b5b5;
  margin: 18px 0;
}

/* ----------------------------------------------------- */

/* Secciones */

/* ----------------------------------------------------- */

.seccion-cookies {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: black;
  color: white;
  font-size: 14px;
  line-height: 130%;
  padding: 10px 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  opacity: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.seccion-cookies .margen {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  justify-content: space-between;
}

.seccion-cookies span a {
  text-decoration: underline;
}

.seccion-cookies button {
  border: none;
  background: none;
  color: white;
  font-weight: 400;
  margin-left: 70px;
  border-bottom: 2px solid white;
  padding: 4px;
  font-size: 16px;
  -webkit-transition: 0.15s;
  transition: 0.15s;
}

.seccion-cookies button:hover {
  border-color: #44772F;
  color: #44772F;
}

.seccion-paralelo .margen {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
}

.seccion-paralelo .margen aside {
  width: 320px;
  max-width: 320px;
  min-width: 320px;
  margin-left: 70px;
  padding: 20px 0;
  padding-left: 30px;
  border-left: 1px solid #ececec;
}

.seccion-paralelo .margen aside>div {
  position: -webkit-sticky;
  position: sticky;
  top: 100px;
  bottom: 0;
}

.seccion-paralelo .margen aside .titulo {
  margin-bottom: 25px;
  font-weight: 400;
  font-size: 28px;
  line-height: 120%;
}

.seccion-paralelo .margen article {
  width: 100%;
}

.seccion-header {
  padding: 12px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: white;
}

.seccion-header .logo {
  width: 250px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.seccion-header .margen {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  justify-content: space-between;
}

.seccion-header .popup {
  cursor: pointer;
}

.seccion-header .hamburguesa {
  display: none;
}

.seccion-header .menu {
  list-style: none;
  display: -webkit-box;
  display: flex;
}

.seccion-header .menu>li>a {
  -webkit-transition: 0.15s;
  transition: 0.15s;
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 400;
  display: block;
  padding: 6px 0;
  margin: 0 8px;
  border-bottom: 1px solid white;
}

.seccion-header .menu>li>a:hover {
  border-bottom: 1px solid #44772F;
}

.seccion-header.compacto {
  padding: 9px 0;
}

.seccion-header.compacto .logo {
  width: 170px;
}

.seccion-footer {
  text-align: center;
}

.seccion-footer .contacto {
  font-size: 15px;
  color: #7f7f7f
;
}
.seccion-footer .contacto__title {
  font-weight: 500;
  margin-bottom: 5px;
}
.seccion-footer .contacto a {
  text-decoration: underline;
}

.seccion-footer .contenedor {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding: 20px 0;
}

.seccion-footer .logo {
  width: 200px;
  display: inline-block;
}

.seccion-footer .claim {
  font-weight: 400;
  font-size: 16px;
}

.seccion-footer .legal {
  font-size: 12px;
  margin-top: 20px;
  color: #aaa;
}

.seccion-footer .legal ul {
  display: -webkit-inline-box;
  display: inline-flex;
  -webkit-box-align: center;
  align-items: center;
  list-style: none;
}

.seccion-footer .legal ul li:not(:last-of-type)::after {
  content: '|';
  margin: 0 6px;
  position: relative;
  top: -1px;
  font-size: 10px;
}

.seccion-footer .legal ul a:hover {
  text-decoration: underline;
}

.seccion-cabecera {
  position: relative;
  color: white;
  margin-top: 0;
  padding-bottom: 40px;
  overflow-x: hidden;
  max-width: 100vw;
}

.seccion-cabecera p {
  margin: 30px 0 15px;
  line-height: 24px !important;
  max-width: 500px;
}

.seccion-cabecera .contenedor {
  padding: 150px 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  opacity: 0;
  -webkit-transform: translateY(30px);
  transform: translateY(30px);
}

.seccion-cabecera .contenedor h1 {
  font-size: 40px;
  font-weight: 700;
  line-height: 120%;
  max-width: 430px;
}

.seccion-cabecera .imagen {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  height: calc(100% - 40px);
  z-index: -3;
}

.seccion-cabecera .fondo {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 40px);
  z-index: -2;
  background-color: black;
  opacity: 0.2;
}

.seccion-cabecera .verde,
.seccion-cabecera .blanco {
  display: block;
  background-color: #44772F;
  width: 25%;
  position: absolute;
  height: 100%;
  z-index: -1;
  top: 0;
  left: 0;
  -webkit-clip-path: polygon(0 0, 100% 0, calc(100% - 50px) 100%, 0 100%);
  clip-path: polygon(0 0, 100% 0, calc(100% - 50px) 100%, 0 100%);
  -webkit-transition: 0.5s;
  transition: 0.5s;
  opacity: 0;
}

.seccion-cabecera .blanco {
  /*
    background-color: #acacac;
    opacity: 0.2;
    width: calc(60% + 25px);
    height: calc(100% - 15px);
    z-index: -2;
    */
  background-color: #acacac;
  opacity: 0;
  width: 66.66%;
  height: calc(100% - 20px);
  z-index: -2;
  -webkit-clip-path: polygon(50px 0, 100% 0, calc(100% - 50px) 100%, 0 100%);
  clip-path: polygon(50px 0, 100% 0, calc(100% - 50px) 100%, 0 100%);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  left: 100vw;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.seccion-cabecera.desplegado .contenedor {
  opacity: 1;
  -webkit-transform: none;
  transform: none;
}

.seccion-cabecera.desplegado .blanco {
  left: 50%;
  opacity: 0.2;
}

.seccion-cabecera.desplegado .verde {
  width: calc(50% + 25px);
  opacity: 0.85;
}

.seccion-cabecera.estatico .imagen {
  width: 50%;
  left: auto;
  right: 0;
}

.seccion-cabecera.estatico::before {
  content: '';
  left: 50%;
  top: 0;
  position: absolute;
  height: 100%;
  background-image: -webkit-gradient(linear, left top, right top, from(white), to(rgba(255, 255, 255, 0)));
  background-image: linear-gradient(to right, white, rgba(255, 255, 255, 0));
  width: 100px;
  z-index: -2;
}

.seccion-cabecera .boton {
  background-color: white;
  color: #44772F;
  margin-top: 30px;
  border-color: white;
}

.seccion-cabecera .boton::after {
  border: solid #44772F;
}

.seccion-cabecera .boton:hover {
  background: none;
  color: white;
}

.seccion-cabecera .boton:hover::after {
  border: solid white;
}

.seccion-cabecera .enlace {
  margin-top: 12px;
  display: inline-block;
  border-bottom: 1px solid white;
  font-size: 16px;
  color: white;
}

.seccion-cabecera .enlace::after {
  padding: 3px;
  border: solid white;
}

.seccion-margen .contenedor {
  padding: 80px 0;
}

.seccion-margen h1 {
  margin-bottom: 15px;
}

.seccion-margen p {
  font-size: 26px;
  line-height: 120%;
  font-weight: 300;
  margin-bottom: 30px;
}

.seccion-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  display: none;
}

.seccion-popup .fondo {
  width: 100%;
  height: 100%;
  background-color: black;
  opacity: 0.7;
  display: block;
}

.seccion-popup dialog {
  background: none;
  border: none;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  -webkit-transform: translateY(-50%) translateX(-50%);
  transform: translateY(-50%) translateX(-50%);
  max-width: 500px;
  display: block;
  box-shadow: 0px 0px 4px 2px rgba(0, 0, 0, 0.2);
}

.seccion-popup dialog>div {
  background-color: white;
  padding: 40px;
}

.seccion-popup dialog .cerrar {
  position: absolute;
  left: 100%;
  top: 0;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  font-size: 19px;
  width: 35px;
  height: 35px;
  border-radius: 1000px;
  background-color: #44772F;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  color: white;
  cursor: pointer;
  border: 1px solid #44772F;
  -webkit-transition: 0.15s;
  transition: 0.15s;
}

.seccion-popup dialog .cerrar:hover {
  color: #44772F;
  background-color: white;
}

.seccion-popup dialog::before {
  content: '';
  display: block;
  width: calc(100% + 20px);
  height: calc(100% + 20px);
  background-color: #44772F;
  position: absolute;
  top: -10px;
  left: -10px;
  z-index: -2;
  opacity: 0.5;
}

.seccion-popup.desplegado {
  display: block;
}

.seccion-offset {
  background-color: #44772F;
  text-align: center;
  border-bottom: 1px solid white;
  display: none;
}

.seccion-offset .boton {
  border-radius: 0;
  padding: 10px 15px;
  width: 100%;
  color: white;
}

.seccion-offset .boton::after {
  border-color: white;
}

.seccion-videos {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: start;
  align-items: flex-start;
  flex-wrap: wrap;
}

.seccion-videos .video {
  width: calc(50% - 20px);
  margin: 0 10px;
}

.seccion-videos .video iframe {
  width: 100%;
  display: block;
  height: 180px;
}

.seccion-videos br {
  display: none;
}

/* ----------------------------------------------------- */

/* Páginas */

/* ----------------------------------------------------- */

.cookies-true .seccion-cookies {
  opacity: 1;
  -webkit-transform: none;
  transform: none;
  z-index: 99;
}

/* ----------------------------------------------------- */

/* Responsive */

/* ----------------------------------------------------- */

@media only screen and (max-width: 1320px) {
  /* Contenedores */

  section {
    margin: 80px 0;
  }

  .seccion-cabecera .contenedor {
    padding: 120px 0;
  }

  .seccion-popup dialog {
    max-height: 95%;
    overflow-y: auto;
    overflow-x: hidden;
  }

  .seccion-popup dialog::before {
    content: none;
  }

  .seccion-popup dialog .cerrar {
    left: calc(100% - 17px);
    top: 17px;
    border-radius: 0;
  }
}

@media only screen and (max-width: 1070px) {
  /* Contenedores */

  section {
    margin: 60px 0;
  }

  .seccion-header .logo {
    position: relative;
    z-index: 2;
    max-width: 200px;
  }

  .seccion-header .hamburguesa {
    display: block;
    width: 35px;
    height: 35px;
    position: relative;
    cursor: pointer;
    z-index: 2;
  }

  .seccion-header .hamburguesa>div {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 100%;
    height: 3px;
    background-color: black;
    border-radius: 1000px;
    -webkit-transition: 0.15s;
    transition: 0.15s;
  }

  .seccion-header .hamburguesa>div:nth-child(1) {
    top: calc(50% - 10px);
  }

  .seccion-header .hamburguesa>div:nth-child(3) {
    top: calc(50% + 10px);
  }

  .seccion-header .hamburguesa:hover div {
    background-color: #44772F;
  }

  .seccion-header nav {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: white;
    top: 0;
    left: 0;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    opacity: 0;
    pointer-events: none;
    z-index: 1;
    padding-top: 100px;
  }

  .page-template-page-landing-nueva .seccion-header nav {
    position: inherit;
    padding: 0;
    margin: 0;
    opacity: 1;
    height: 40px;
    align-items: center;
    align-self: center;
    pointer-events: auto;
    /* justify-content: space-between; */
  }

  .page-template-page-landing-nueva .seccion-header .hamburguesa {
    display: none;
  }


  .seccion-header nav .menu {
    display: block;
  }

  .page-template-page-landing-nueva .seccion-header nav .menu {
    display: flex !important;
    justify-content: flex-end;
  }

  .page-template-page-landing-nueva .seccion-header nav .menu>li>a {
    text-transform: initial;
    font-size: 20px;
    padding: 5px 10px;
    margin: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  }

  .seccion-header nav .menu>li>a {
    text-transform: initial;
    font-size: 20px;
    padding: 20px 10px;
    margin: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  }

  .seccion-header.desplegado .hamburguesa>div {
    top: 50%;
    width: calc(100% - 8px);
  }

  .seccion-header.desplegado .hamburguesa>div:nth-child(1) {
    -webkit-transform: translateY(-50%) translateX(-50%) rotate(45deg);
    transform: translateY(-50%) translateX(-50%) rotate(45deg);
  }

  .seccion-header.desplegado .hamburguesa>div:nth-child(2) {
    opacity: 0;
  }

  .seccion-header.desplegado .hamburguesa>div:nth-child(3) {
    -webkit-transform: translateY(-50%) translateX(-50%) rotate(-45deg);
    transform: translateY(-50%) translateX(-50%) rotate(-45deg);
  }

  .seccion-header.desplegado nav {
    opacity: 1;
    pointer-events: auto;
  }

  .seccion-paralelo .margen {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
  }

  .seccion-paralelo .margen aside {
    width: 100%;
    max-width: 400px;
    min-width: initial;
    padding: 0;
    border: none;
    margin: auto;
    margin-top: 60px;
  }

  .seccion-paralelo .margen aside>div {
    position: static;
  }

  .seccion-cabecera .contenedor {
    padding: 100px 0;
  }

  .seccion-cabecera .contenedor h1 {
    font-size: 34px;
  }

  .seccion-videos .video {
    width: calc(33.33% - 20px);
  }
}

@media only screen and (max-width: 820px) {
  .seccion-footer .legal {
    font-size: 15px;
  }

  .seccion-footer .legal ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
  }

  .seccion-footer .legal ul li {
    margin-bottom: 4px;
  }

  .seccion-footer .legal ul li::after {
    content: none !important;
  }

  .seccion-cabecera {
    margin-bottom: -30px;
  }

  .seccion-cabecera .verde {
    height: calc(100% - 40px);
  }

  .seccion-cabecera.desplegado .verde {
    width: calc(100% + 50px);
  }

  .seccion-cabecera .contenedor {
    padding: 80px 0;
  }

  .seccion-cabecera .contenedor h1 {
    font-size: 32px;
    max-width: none;
  }

  .seccion-cabecera.estatico {
    border: none;
  }

  .seccion-cabecera.estatico .imagen {
    width: 100%;
  }

  .seccion-cabecera.estatico::before {
    left: 0;
    background-image: none;
    width: 100%;
    background-color: white;
    opacity: 0.7;
    z-index: -1;
  }

  .seccion-offset {
    display: block;
  }

  .seccion-header .margen>.boton {
    display: none;
  }

  .seccion-popup .fondo {
    display: none;
  }

  .seccion-popup dialog {
    height: 100%;
    max-width: none;
    max-height: 100%;
  }

  .seccion-popup dialog>div {
    padding: 20px;
    min-height: 100%;
  }

  .seccion-cookies .margen {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-align: start;
    align-items: flex-start;
  }

  .seccion-cookies button {
    margin-top: 7px;
    margin-bottom: 10px;
    margin-left: 0;
  }

  .seccion-videos .video {
    width: calc(50% - 20px);
    margin: 0 10px;
  }

  .seccion-videos .video iframe {
    height: 180px;
  }
}

@media only screen and (min-width: 571px) {
  .movil {
    display: none !important;
  }
}

@media only screen and (max-width: 570px) {
  /* Contenedores */

  section {
    margin: 50px 0;
  }

  .seccion-header {
    padding: 8px 0;
  }

  .seccion-header .logo {
    max-width: 170px;
  }

  .seccion-header nav {
    overflow-y: auto;
    padding-top: 70px;
  }

  .seccion-header nav .menu>li>a {
    font-size: 17px;
    padding: 15px 10px;
  }

  .seccion-paralelo .margen aside {
    margin-top: 50px;
  }

  .seccion-cabecera .contenedor {
    padding: 70px 0;
  }

  .seccion-cabecera .contenedor h1 {
    font-size: 27px;
  }

  .cta img:first-of-type {
    display: none;
  }

  .cta img:last-of-type {
    display: block !important;
  }

  .seccion-videos .video {
    width: 100%;
    margin: 0;
  }

  .seccion-videos .video iframe {
    height: 180px;
  }

  .texto iframe {
    height: 200px;
  }
}



.page-template-page-landing-nueva .seccion-header {
  padding: 6px 0;
}

/*.page-template-page-landing-nueva .seccion-paralelo .margen aside {
  width: 340px;
  max-width: 340px;
  min-width: 340px;
  margin-left: 70px;
  padding: 20px 15px;
  background-color: #fff;
  margin-top: -350px;
}*/

.page-template-page-landing-nueva .seccion-paralelo .margen aside>div {
  top: 100px;
  bottom: 0;
}


@media only screen and (max-width: 1070px) {
  .page-template-page-landing-nueva .seccion-paralelo .margen aside {
    margin-top: initial;
  }
}

@media screen and (max-width: 600px) {
  .page-template-page-landing-nueva .seccion-paralelo .margen aside {
    margin-left: 0;
  }
}




/*
##################
# DESPLEGABLES
##################
*/
.desplegable {
  border-bottom: 1px solid rgba(0, 101, 242, 0.08);
}

.desplegable .titulo {
  padding: 18px 0 5px 0;
  cursor: pointer;
  position: relative;
  width: 100%;
  max-width: 100%;
  transition: 0.3s;
  background: none;
  color: #111;
  display: block;
}

.desplegable .titulo::after {
  border: solid #0065F2;
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 3px;
  transform: rotate(45deg);
  content: "";
  pointer-events: none;
  position: absolute;
  right: 20px;
  top: 23px;
  transition: 0.3s;
  opacity: 0.4;
}

.desplegable .titulo:hover::after {
  opacity: 1;
}

.desplegable .texto {
  display: none;
  margin: 50px;
  margin-top: 10px;
  margin-left: 5px;
}

.desplegable.desplegado .titulo {
  padding: 30px 0;
}

.desplegable.desplegado .titulo::after {
  transform: rotate(45deg) scale(-1);
  top: 38px;
  opacity: 1;
}

.desplegable.desplegado .texto {
  display: block;
}

.boton-tel a {
  border: none !important;
  background: none;
  cursor: pointer;
  display: inline-block;
  background-color: #44772F;
  color: white;
  padding: 5px 15px !important;
  line-height: 100%;
  font-size: 15px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.3px;
  border-radius: 1000px;
  border: 1px solid #44772F !important;
  -webkit-transition: 0.15s;
  transition: 0.15s;
}

.boton-tel:hover a {
  color: #44772F;
  background-color: white;
}


.boton-tel a::after {
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  border: solid white;
  border-width: 0 2px 2px 0 !important;
  padding: 4px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  margin-left: 7px;
  position: relative;
  top: -0.5px;
  -webkit-transition: 0.15s;
  transition: 0.15s;
}

.boton-tel:hover a::after {
  border: solid #44772F;
}


.page-template-page-landing-nueva #formulario h4 {
  font-size: 21px;
}

.page-template-page-landing-nueva .seccion-cabecera {
  max-width: 80%;
  margin: 0 auto;
}

.cta-formulario-head {
  display: none;
}

@media screen and (max-width: 820px) {
  .page-template-page-landing-nueva .seccion-cabecera {
    max-width: 100%;
    margin: 0 auto;
  }
}


/*
* Page template videos
*/
.page-template-page-libro-videos {
  background: rgba(65, 65, 65, 1);
  color: white;
}

.page-template-page-libro-videos h1,
.page-template-page-libro-videos h2,
.page-template-page-libro-videos h3,
.informe--container h1 {
  line-height: 1.2;
}

.page-template-page-libro-videos h1 {
  margin: 15px 0 25px;
}

.page-template-page-libro-videos h2 {
  margin: 15px 0;
}

.videos--container {
  max-width: 1110px;
  width: 100%;
  margin: 0 auto;
  padding: 100px 10px 50px;
}

.videos--container iframe,
.videos--container video {
  width: 100%;
  height: 60vh;
}

.videos--container .wp-block-embed {
  margin: 40px 0;
}

.informe--container {
  max-width: 600px;
  margin: 50px auto;
}

.informe--container>* {
  margin: 20px 0;
  text-align: center;
}

.informe--container .wpforms-container {
  text-align: left;
}

.informe--container iframe {
  margin: 30px 0;
}


.wpforms-form .wpforms-selected input[type=checkbox],
.wpforms-selected .wpforms-form input[type=radio] {
  background-color: #44772F !important;
}



/* --------------------------------- */
/* Errores fatales */

.erroresfatales {
  color: #3B3B3B;
  line-height: 1.4;
}
.erroresfatales::before {
  content: '';
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 750px;
  background: radial-gradient(circle at 20% 20%, rgba(173, 216, 230, 0.4), transparent 50%),
  radial-gradient(circle at 40% 10%, rgba(255, 182, 193, 0.3), transparent 60%),
  radial-gradient(circle at 80% 20%, rgba(230, 230, 250, 0.4), transparent 50%),
  #fdfefe;
}

.erroresfatales__section {
  display: flex;
  flex-direction: column;
  gap: 50px;
  width: 85%;
  max-width: 1320px;
  margin: 120px auto;
}

.erroresfatales__h1 {
  font-family: "Guthen";
  color: #43782e;
  font-size: 70px;
  line-height: 1;
  font-weight: 300;
}
.erroresfatales__h2 {
  font-family: "Guthen";
  color: #43782e;
  font-size: 60px;
  line-height: 1;
  font-weight: 300;
}

.erroresfatales__title {
  text-align: center;
  position: relative;
  margin: auto;
  max-width: 740px;
  font-weight: 500;
}
.erroresfatales__title__img {
  display: inline-block;
  width: 180px;
  margin-bottom: -32px;
}
.erroresfatales__title__bg {
  display: block;
  position: absolute;
}
.erroresfatales__title .erroresfatales__h1 {
  margin: auto;
  max-width: 400px;
  margin-bottom: 35px;
}
.erroresfatales__title .erroresfatales__h2 {
  margin-bottom: 25px;
}
.erroresfatales__title p {
  margin-top: 25px;
}

.erroresfatales__errores__item {
  display: none;
}
.erroresfatales__errores__item--active {
  display: block;
}
.erroresfatales__errores__item video {
  display: block;
  width: 100%;
  border-radius: 16px;
}
.erroresfatales__errores__item__contenido {
  display: flex;
  gap: 70px;
  margin-top: 60px;
  align-items: center;
}
.erroresfatales__errores__item__contenido > * {
  width: 100%;
}
.erroresfatales__errores__item__contenido__izquierda {
  display: flex;
  align-items: center;
  gap: 30px;
}
.erroresfatales__errores__item__contenido__derecha {
  text-align: center;
}
.erroresfatales__errores__item__imagen {
  display: block;
  width: 100%;
  max-width: 200px;
}
.erroresfatales__errores__item__cont {
  font-size: 26px;
  text-transform: uppercase;
  color: #43782e;
  font-weight: 700;
}
.erroresfatales__errores__item__texto {
  margin-top: 15px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.erroresfatales__errores__item__titulo {
  color: #43782e;
  font-weight: 700;
  text-transform: uppercase;
}
.erroresfatales__errores__item__cta, .erroresfatales__errores__item__formulario button[type="submit"], .erroresfatales__errores__item__formulario .wpforms-confirmation-container a {
  background: #D6A126;
  color: white;
  display: inline-flex;
  align-items: center;
  gap: 15px;
  padding: 18px 36px;
  border-radius: 5px;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 1px;
  transition: 0.15s;
  border: none;
  margin-top: 25px;
}
.erroresfatales__errores__item__cta:hover, .erroresfatales__errores__item__formulario button[type="submit"]:hover, .erroresfatales__errores__item__formulario .wpforms-confirmation-container a:hover {
  background: #ca9724;
  box-shadow: 0 0 8px 3px rgba(0, 0, 0, 0.1);
}
.erroresfatales__errores__item__cta img {
  display: block;
  width: 25px;
}

.erroresfatales__popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  pointer-events: none;
  transition: 0.5s;
  opacity: 0;
}
.erroresfatales__popup--displayed {
  opacity: 1;
  pointer-events: unset;
}
.erroresfatales__popup__bg {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  background: black;
  opacity: 0.7;
  z-index: -1;
  width: 100%;
  height: 100%;
}
.erroresfatales__popup__close {
  position: absolute;
  right: 8px;
  top: 8px;
  width: 25px;
  cursor: pointer;
}
.erroresfatales__popup__wrapper {
  width: 100%;
  max-width: 580px;
  background: white;
  padding: 50px;
  position: relative;
  max-height: 100%;
  overflow-y: auto;
}
.erroresfatales__popup__wrapper--l {
  max-width: 1080px;
}
.erroresfatales__popup__wrapper video {
  width: 100%;
  display: block;
}

.erroresfatales__errores__item__formulario {
  text-align: left;
}
.erroresfatales__errores__item__formulario .wpforms-container {
  margin: 0;
}
.erroresfatales__errores__item__formulario .wpforms-field-label {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 5px;
}
.erroresfatales__errores__item__formulario input {
  width: 100%;
  max-width: none !important;
  margin: 0;
}
.erroresfatales__errores__item__formulario input[type="checkbox"], .erroresfatales__errores__item__formulario input[type="radio"] {
  border: 1px solid #b5b5b5;
  border-radius: 2px;
  transition: 0.15s;
  width: 18px !important;
  height: 18px !important;
  margin: 0 !important;
  margin-right: 7px !important;
}
.erroresfatales__errores__item__formulario input[type="checkbox"] + label, .erroresfatales__errores__item__formulario input[type="radio"] + label {
  font-size: 17px;
  position: relative;
  top: -2px;
}
.erroresfatales__errores__item__formulario input[type="checkbox"] + label a, .erroresfatales__errores__item__formulario input[type="radio"] + label a {
  text-decoration: underline;
}
.erroresfatales__errores__item__formulario input[type="checkbox"]:checked, .erroresfatales__errores__item__formulario input[type="radio"]:checked {
  background: #626262 !important;
  border-color: #626262 !important;
}
.erroresfatales__errores__item__formulario input[type="radio"] {
  border-radius: 1000px;
}
.erroresfatales__errores__item__formulario .wpforms-required-label {
  display: none;
}
.erroresfatales__errores__item__formulario .wpforms-container label.wpforms-error {
  margin-top: 5px;
  font-size: 15px;
}
.erroresfatales__errores__item__formulario .wpforms-field-checkbox.legal .wpforms-field-label-inline {
  font-size: 15px;
  top: -3px;
  color: #636363;
}

.erroresfatales__compromisos {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 40px 20px;
  list-style: none;
}
.erroresfatales__compromisos__item {
  width: 100%;
  text-align: center;
  font-weight: 500;
}
.erroresfatales__compromisos__item img {
  width: 100%;
  display: block;
  margin-bottom: 20px;
  height: 300px;
  object-fit: cover;
  object-position: center;
  border-radius: 16px;
}

.erroresfatales__nav {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 40px 20px;
}
.erroresfatales__nav__item {
  width: 100%;
  position: relative;
  padding-left: 60px;
  padding-top: 60px;
}
.erroresfatales__nav__item__cont {
  font-size: 180px;
  line-height: 1;
  position: absolute;
  left: 0;
  top: -30px;
  color: #86B340;
  font-weight: 800;
}
.erroresfatales__nav__item__portada {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  width: 100%;
  height: 160px;
  max-width: 280px;
}
.erroresfatales__nav__item__portada img:first-child {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.erroresfatales__nav__item__portada img:last-child {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.erroresfatales__nav__item--inactive {
  pointer-events: none;
}
.erroresfatales__nav__item--inactive .erroresfatales__nav__item__portada::after {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background: black;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.5;
}


@media (max-width: 1440px) {

  .erroresfatales__compromisos__item img {
    height: 250px;
  }

}
@media (max-width: 1110px) {

  .erroresfatales__errores__item__contenido {
    flex-direction: column;
    gap: 30px;
  }
  .erroresfatales__errores__item__contenido__izquierda {
    justify-content: center;
  }

  .erroresfatales__popup__wrapper {
    padding: 50px 20px;
  }

  .erroresfatales__compromisos {
    grid-template-columns: repeat(3, 1fr);
  }

  .erroresfatales__nav {
    grid-template-columns: repeat(3, 1fr);
  }

}
@media (max-width: 980px) {

  .erroresfatales__section {
    margin: 100px auto;
  }

  .erroresfatales__errores__item__contenido__izquierda {
    flex-direction: column;
    text-align: center;
  }

  .erroresfatales__nav__item {
    padding-left: 50px;
    padding-top: 40px;
  }
  .erroresfatales__nav__item__cont {
    font-size: 140px;
  }
  .erroresfatales__nav__item__portada {
    height: 150px;
  }

}
@media (max-width: 570px) {

  .erroresfatales__section {
    margin: 80px auto;
    gap: 30px;
  }

  .erroresfatales__h1 {
    font-size: 55px;
  }
  .erroresfatales__h2 {
    font-size: 50px;
  }

  .erroresfatales__errores__item__imagen {
    max-width: 150px;
  }

  .erroresfatales__title .erroresfatales__h1 {
    max-width: 320px;
    margin-bottom: 25px;
  }

  .erroresfatales__errores__item__cta {
    padding: 16px;
    gap: 10px;
  }
  .erroresfatales__errores__item__cta img {
    width: 20px;
  }


  .erroresfatales__compromisos {
    grid-template-columns: repeat(2, 1fr);
  }
  .erroresfatales__compromisos__item img {
    height: 200px;
  }

  .erroresfatales__nav {
    grid-template-columns: repeat(2, 1fr);
  }
  .erroresfatales__nav__item__portada {
    height: 130px;
  }

}
@media (max-width: 320px) {

  .erroresfatales__compromisos {
    grid-template-columns: repeat(1, 1fr);
  }
  .erroresfatales__nav {
    grid-template-columns: repeat(1, 1fr);
  }

}