body {
  margin: 0;
  background-color: #18200A;
}

/* ========================= */
/* HEADER SOBRE EL HERO      */
/* ========================= */

.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  padding: 15px 0;
  background: rgba(0, 0, 0, 0.25); /* transparente elegante */
  backdrop-filter: blur(6px);       /* efecto vidrio */

  top: 40px; /* espacio para el banner */
}


.nav-container {
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
/* LINKS DESKTOP */
.nav-links {
  display: flex;
  gap: 24px;
  align-items: center;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-family: 'Roboto', sans-serif;
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 400;
  transition: opacity 0.2s ease;
}

.nav-links a:hover {
  opacity: 0.7;
}

.nav-links a.active {
  color: #98D623
}

.buttonMenu {
  background-color: #40541B;
  color: white;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease;
  padding: 8px 15px;
  border: 1px solid;
}

.buttonMenu.active {
  background-color: #333;
}

/* SWITCH DE IDIOMA */
.lang-switch {
  margin-left: 16px;
}

/* HAMBURGUESA (oculta en desktop) */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 21px;
  height: 2px;
  background: white;
  border-radius: 3px;
}

.language-switcher {
  position: absolute;
  right: 25px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 10;
}

.language-switcher .world-icon img {
  vertical-align: middle;
  margin-right: 6px;
  width: 20px;
}

.language-switcher .lang {
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  color: white;
  text-decoration: none;
  font-weight: 400;
  transition: opacity 0.2s ease;
}

.language-switcher .lang:hover {
  opacity: 0.7;
}

.language-switcher .lang.active {
  opacity: 0.7;
  pointer-events: none;
}


/* ========================= */
/* RESPONSIVE                */
/* ========================= */

@media (max-width: 1100px) {

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 70%;
    background: rgba(0,0,0,0.9);
    flex-direction: column;
    padding-top: 100px;
    gap: 30px;
    transition: right 0.3s ease;
    padding-top: 80px;
  }

  .nav-links.open {
    right: 0;
  }

  .hamburger {
    display: flex;
  }

  .language-switcher {
    position: relative;
    right: 0;
  }
}

@media (max-width: 790px) {
  .site-header {
    top: 70px; /* espacio para el banner */
  }
}

@media (max-width: 400px) {
  .site-header {
    top: 80px; /* espacio para el banner */
  }
}


.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.hamburger span {
  transition: all 0.3s ease;
}


.Logo img {
  width: 100%;
  max-width: 300px;
  margin: auto;
}

.Logo-small img {
  width: 100%;
  max-width: 140px;
  margin: 20px auto 10px auto;
}


.hero {
  height: 100vh;
  background-image: url('..//assets/Picture-TOP.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  border-bottom: 8px solid #405E09;
  /* padding-top: 120px; */
}

.hero-content {
  padding: 2rem;
  transform: translateY(-90px);
}

h1 {
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
  font-size: 20px;
  color: #485B61;
  /* margin-top: -20px; */
}

h1.sub-highlight {
  font-size: 17px;
  color: #FFF;
  font-weight: 500;
  line-height: 1.4;
}

@media (max-width: 850px) {
  /* h1 {font-size: 85px;}
  h2 {font-size: 80px;} */
  h1 {font-size: 17px;}
}

@media (max-width: 350px) {
  /* h1 {font-size: 70px;}
  h2 {font-size: 60px;} */
  h1 {font-size: 15px;}
}



/* ========================= */
/* BLOQUE SECUNDARIO */
/* ========================= */

.bloque-secundario {
  min-height: 100vh;
  /* padding: 6rem 2rem; */
  background-image: url('../assets/Picture-CENTER.jpg');
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4rem;
}

/* DESCRIPCIÓN PRINCIPAL */
.bloque-contenido {
  max-width: 70%;
  margin: 0 auto;
  text-align: center;
  padding-top: 2.5rem;
}

.bloque-contenido .description h2 {
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
  font-size: 1.35rem;
  line-height: 1.6;
  color: #CFD9BB;
}

/* ========================= */
/* DOS COLUMNAS A TODO LO ANCHO */
/* ========================= */

.bloque-dos-columnas {
  width: 100%;
  display: grid;
  grid-template-columns: 38% 60%; /* imagen 35–40%, texto el resto */
  align-items: center;
}

/* IMAGEN PEGADA A LA IZQUIERDA */
.columna-imagen img {
  width: 100%;
  height: auto;
  object-fit: cover;
  vertical-align: top;
}

/* TEXTO DE LA SEGUNDA COLUMNA */
.content-column {
  max-width: 75%;
  margin: 0 auto;
  text-align: left;
}
.columna-texto {
  color: #CFD9BB;
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  font-size: 15px;
  line-height: 1.6;
}

.content-column h2 {
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
  font-size: 1.35rem;
  line-height: 1.4;
  color: #CFD9BB;
}

/* ========================= */
/* RESPONSIVE */
/* ========================= */

@media (max-width: 900px) {
  .bloque-dos-columnas {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .columna-texto {
    font-size: 1.1rem;
  }

  .columna-texto h2 {
    font-size: 2rem;
  }

  .columna-imagen.remove-image {
    display: none;
  }

  .columna-imagen.fix-image img {
    height: 350px;
  }

  .content-column h2 {
    font-size: 22px;
  }

  .remove-mobile {
    display: none;
  }
}

/* ========================= */
/* BLOQUE TERCERO            */
/* ========================= */

.bloque-tercero {
  background-image: url('..//assets/Picture-BOTTOM_Home.jpg');
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  padding: 8rem 2rem 12rem; /* más espacio abajo */ 
  position: relative;
  color: white;
  text-align: center;
}


/* TÍTULO */
.titulo-bloque {
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
  font-size: 31px;
  margin-bottom: 20px;
  color: #FFF;
}

.description-bloque {
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
  font-size: 14px;
  color: #FFF;
  line-height: 1.4;
  width: 80%;
  margin: 0 auto 4rem auto;
}

/* CONTENEDOR DE 4 COLUMNAS */
.cuatro-columnas {
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: stretch;
}

/* CADA COLUMNA */
.columna {
  padding: 0 1.5rem;
  border-right: 1px dashed rgba(255,255,255,0.4);
}

/* QUITAR BORDE DE LA ÚLTIMA */
.columna:last-child {
  border-right: none;
}

/* TÍTULOS DE COLUMNA */
.columna h3 {
  font-family: 'Canela', serif;
  font-size: 1.6rem;
  margin-bottom: 1rem;
  color: #FFF;
}

/* TEXTO */
.datasheet {
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
  font-size: 0.9rem;
  line-height: 1.4;
  color: #FFF;
  text-align: left;
  margin-bottom: 20px;
}

.datasheet p {
  margin: 0;
}

h3.datasheet--title {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 0;
  text-transform: uppercase;
  font-size: 12px;
}

.datasheet--value_small {
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
  font-size: 12px;
  margin-top: 15px;
}

/* ========================= */
/* RESPONSIVE                */
/* ========================= */

@media (max-width: 900px) {
  .cuatro-columnas {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .columna {
    border-right: none;
    border-bottom: 1px dashed rgba(255,255,255,0.4);
    padding-bottom: 2rem;
  }

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

  .bloque-tercero.paddingT-mobile,
  .bloque-utility-small.paddingT-mobile {
    padding-top: 1.5rem;
  }
}

.footer-legal {
  width: 100%;
  border: 1px solid #405E09;
  background: rgba(24, 33, 7, 0.80);
  padding: 1.2rem 0;
  text-align: center;
  position: absolute;
  bottom: 0;
  left: 0; /* <-- este es el fix */
}

.footer-legal p {
  font-family: 'Roboto', sans-serif;
  font-size: 0.875rem;
  color: white;
  line-height: 1.5;
  margin: 0.3rem 0;
}

@media (max-width: 850px) {
  .footer {
    width: 90%;
    margin: auto;
  }
}


.footer-w-references {
  border-top: 1px solid #405E09;
  background: rgba(24, 33, 7, 1);
  padding: 1.2rem;

  margin-bottom: 30px; /* espacio para el footer legal - BORRAR */
}

.footer-legal p {
  font-family: 'Roboto', sans-serif;
  font-size: 0.875rem;
  color: white;
  line-height: 1.5;
  margin: 0.3rem 0;
}

.footer-title {
  font-family: 'Roboto', sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: #A4A4A4;
  margin-bottom: 1rem;
}

.footer-references {
  list-style: none;
  padding: 0;
  margin: 0 auto 1.5rem;
  column-count: 2;        /* ← convierte en dos columnas */
  column-gap: 2rem;       /* espacio entre columnas */
  padding-bottom: 20px;
  border-bottom: 1px solid #405E09;
}

.footer-references li {
  break-inside: avoid;    /* evita que un ítem se parta entre columnas */
  margin-bottom: 1rem;
  font-family: 'Roboto', sans-serif;
  font-size: 12px;
  color: #A4A4A4;
  line-height: 1.4;
}


.footer-copy {
  font-family: 'Roboto', sans-serif;
  font-size: 0.8rem;
  color: #FFF;
  margin-top: 1rem;
  text-align: center;
}

@media (max-width: 700px) {
  .footer-references {
    column-count: 1;
  }
}



/* ========================= */
/* BLOQUES IMAGES */
/* ========================= */

.bloque-utility {
  min-height: 100vh;
  padding: 8rem 0;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4rem;
  position: relative;
}

.bloque-utility-small {
  padding: 8rem 2rem;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4rem;
  position: relative;
}

.bloque-utility-fullwith {
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.Bloque {
  background-image: url('../assets/Picture-CENTER.jpg');
}

.Origen-del-nombre-1 {
  background-image: url('..//assets/picture-OrigenNombre.jpg');
  border-bottom: 8px solid #405E09;
  background-position: left bottom;
}

.Origen-del-nombre-2 {
  background-image: url('..//assets/picture-OrigenNombre-II.jpg');
}

.geografiaClima {
  background-image: url('..//assets/picture-GeografiaClima.jpg');
  background-position: center bottom;
  border-bottom: 8px solid #405E09;
}

.proyectoPinar {
  background-image: url('..//assets/picture-pinar.jpg');
  background-position: center bottom;
  border-bottom: 8px solid #405E09;
}

.CoquiDorado {
  background-image: url('..//assets/picture-CoquiDorado.jpg');
  background-position: center bottom;
  border-bottom: 8px solid #405E09;
}

.geografiaClima-background {
  background-image: url('..//assets/background-GeografiaClima.jpg');
  background-position: center top;
}

.formacioGeologica {
  background-image: url('..//assets/picture-Geologia.jpg');
  border-bottom: 8px solid #405E09;
}

.bosquePinos {
  background-image: url('..//assets/picture-BosquePinos.jpg');
  border-bottom: 8px solid #405E09;
}

.experience {
  background-image: url('..//assets/picture-intro-experience.jpg');
  border-bottom: 8px solid #405E09;
}

.pinarVision {
  background-image: url('..//assets/bg-vision.jpg');
}

.BosquePinos-background {  
  background-image: url(../assets/background-BosquePinos.jpg);
  background-position: center top;
}

.planificaVisita {
  background-image: url('..//assets/picture-PlanificaVisita-bottom.jpg');
  background-position: center top;
}

.space-top {
  margin-top: 9rem;
}

.bg-wood {
  background-image: url('..//assets/bg-products.jpg');
}

h1.section-title {
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
  font-size: 35px;
  margin-bottom: 1.5rem;
  color: #FFF;
  letter-spacing: 2px;
  line-height: 1.1em;
}

h1.section-title span {
  font-size: 25px;
}

h3.subtitle {    
  font-size: 25px;
  line-height: 1.2;
  letter-spacing: 1px;
}

.section-description {
  color: #FFF;
}

h2.section-subtitle {
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
  font-size: 30px;
  margin-bottom: 1.5rem;
  color: #FFF;
  letter-spacing: 2px;
  line-height: 1.1em;
}


/* ========================= */
/* DOS COLUMNAS Utility */
/* ========================= */

.bloque-TwoColumns_contentLeft {
  width: 100%;
  display: grid;
  grid-template-columns: 40% 60%; /* imagen 35–40%, texto el resto */
  align-items: center;
}

.bloque-TwoColumns_contentRight {
  width: 100%;
  display: grid;
  grid-template-columns: 60% 40%; /* imagen 35–40%, texto el resto */
  align-items: center;
}

.wrapper-special {
  background-color: rgba(0, 0, 0, 0.6);
  padding: 4rem 0;
  width: 100%;
}

.wrapper-special-nopaddingT {
  background-color: rgba(0, 0, 0, 0.6);
  padding: 0 0 4rem 0;
}

.wrapper-special-nopaddingall {
  background-color: rgba(0, 0, 0, 0.6);
  padding: 0;
}

.margin-leftText {
  margin-left: 2em;
}

.margin-leftImage {
  margin-left: 4rem;
}

.bloque-TwoColumns_contentSpecial {
  width: 100%;
  display: grid;
  grid-template-columns: 38% 60%; /* imagen 35–40%, texto el resto */
  align-items: center;
}

.fontTransform {
  text-transform: none !important;
}

.bloque-TwoColumns_contentTiny {
  width: 100%;
  display: grid;
  grid-template-columns: 20% 70%; /* imagen 35–40%, texto el resto */
  align-items: center;
}

.bloque-TwoColumns_contentperfect {
  width: 100%;
  display: grid;
  grid-template-columns: 50% 50%; /* imagen 35–40%, texto el resto */
}

@media (max-width: 900px) {
  .bloque-TwoColumns_contentSpecial,
  .bloque-TwoColumns_contentRight,
  .bloque-TwoColumns_contentLeft,
  .bloque-TwoColumns_contentperfect,
  .bloque-TwoColumns_contentTiny {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .margin-leftText {
    margin-left: 0;
  }

  .margin-leftText.center {
    text-align: center;
  }

  .margin-leftImage {
    margin-left: 0;
  }

  .bloque-utility-small.remove-padding-mobile {
    padding: 8rem 0;
  }
}


.columFullwith {
  grid-column: 1 / -1; /* ocupa ambas columnas */
  width: 100%;
  border-top: 4px solid #405E09;
  border-bottom: 4px solid #405E09;
}

.columFullwith img {
  width: 100%;
  height: auto;
  display: block;
}

.content-column-backgound {
  background-color: rgba(65, 79, 69, 0.25);
}

.marginTB-80 {
  margin-top: 80px;
  margin-bottom: 80px;
}

.marginT-70 {
  margin-top: 70px;
}

.paddingLR {
  padding-left: 70px;
  padding-right: 70px;  
}

.textCenter {
  text-align: center;
}

.region-Destacada {
  padding: 6rem 8rem;
  text-align: center;
  background-image: url('..//assets/bg-destacada.jpg');
  background-size: cover;
  background-repeat: no-repeat;
}

.list-hightlight {
  border-top: #405E09 1px solid;
  border-bottom: #405E09 1px solid;
  padding-bottom: 10px;
}

.border-highlight {
  border-top: #405E09 2px solid;
  border-bottom: #405E09 2px solid;
}

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

.list-hightlight li {
  position: relative;
  padding-left: 28px;
  line-height: 1.3;
  margin-bottom: 8px;
}

.list-hightlight li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 18px;
  height: 18px;
  background-image: url('..//assets/icon-circle-check.svg');
  background-size: contain;
  background-repeat: no-repeat;
}

.region-destacada {
  padding: 2rem;
  border: 1px solid #405E09;
  background-color:rgba(24, 33, 7, 0.7);
  border-radius: 6px;
  font-family: 'Roboto', sans-serif;
  color: #FFF;
  font-size: 15px;
  line-height: 1.4;
  margin-bottom: 20px;
}


.bloque-planificaTuVisita {
  padding: 8rem 2rem;
  background-image: url('..//assets/bg-planifica.jpg');
  border-bottom: 8px solid #405E09;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4rem;
}


/* CONTENEDOR DE 4 COLUMNAS */
.three-columnas-planifica {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
}

.two-columnas-planifica {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: stretch;
}
/* ========================= */
/* RESPONSIVE                */
/* ========================= */

@media (max-width: 900px) {
  .two-columnas-planifica,
  .three-columnas-planifica {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .bloque-utility {
    padding: 2rem 0 8rem 0;
  }
}


.region-info {
  width: 80%;
  margin: 0 auto;
  text-align: left;
  padding: 2rem;
  border: 1px solid #405E09;
  background-color: rgba(24, 33, 7, 0.7);
  border-radius: 6px;
  font-family: 'Roboto', sans-serif;
  color: #FFF;
  font-size: 15px;
  line-height: 1.4;
}


@media (max-width: 1100px) {
  .bg-responsive {
    background-color: rgba(34, 52, 38, 0.8);
    border-radius: 6px;
  }
}




.bloque-tercero::before,
.bloque-utility::before,
.bloque-utility-small::before,
.bloque-utility-fullwith::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0); /* transparente por defecto */
  transition: background 0.3s ease;
  z-index: 0;
}

/* Asegura que el contenido quede por encima del overlay */
.bloque-tercero > *,
.bloque-utility > *,
.bloque-utility-small > *,
.bloque-utility-fullwith > * {
  position: relative;
  z-index: 1;
}

@media (max-width: 900px) {
  .bloque-tercero::before,
  .bloque-utility::before,
  .bloque-utility-small::before,
  .bloque-utility-fullwith::before {
    background: rgba(0, 0, 0, 0.8); /* overlay suave */
  }
}


.contacto-contenido {
  border-radius: 10px;
  width: 85%;
  max-width: 900px;
  text-align: center;
  margin: auto;
  padding: 8rem 2rem;
  font-family: 'Roboto', sans-serif;
  color: #FFF;
  font-size: 15px;
  line-height: 1.4;
}

.contacto-contenido h2 {
  margin-bottom: 50px;
  font-family: 'Roboto', sans-serif;
  font-size: 30px;
  color: #FFF;
  letter-spacing: 1.8px;
  font-weight: 500;
  font-style: normal;
}

.contacto-contenido a {
  color: #FFF;
  text-decoration: underline;
}

.contenido-contacto a:hover {text-decoration: none;}

form {
  margin-top: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-group {text-align: left;}

input,
textarea {
  width: 95%;
  padding: 1rem 0.7rem;
  border-radius: 5px;
  border: none;
  font-size: .9rem;
  border-radius: 5px;
  border: 1px solid #FFF;
  background: #e1e1e1;
  color: #000;
}

input[name="email"]::placeholder,
input[name="name"]::placeholder,
textarea::placeholder {
  color: #000;
  font-weight: 500;
}

.btn-send {
  padding: 0.8rem;
  background-color: #40541B;
  color: white;
  text-transform: uppercase;
  border: none;
  border-radius: 5px;
  font-size: .9rem;
  cursor: pointer;
  transition: background 0.3s ease;
  margin: 10px auto;
  width: 200px;
  border: 1px solid #FFF;
}

.btn-send:hover {background-color: #000;}



@media (max-width: 850px) {
  .bloque-secundario,
  .bloque-contacto,
  .hero {
    height: auto;
    min-height: 100vh;
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}

.site-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #333;
  color: #FFF;
  text-align: center;
  z-index: 99;
}

.site-banner p {
  padding: 0 12px;
  font-size: 13px;
  font-family: 'Roboto', sans-serif;
}

.message-banner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #405E09;
  color: #FFF;
  text-align: center;
  z-index: 9999;
  border-bottom: 1px solid #FFF;
}

.message-banner p {
  padding: 0 12px;
  font-size: 14px;
  font-family: 'Roboto', sans-serif;
}

.text-highlight {
  font-weight: 400;
  color: #fff;
  font-size: 17px;
  letter-spacing: 1px;
  padding-bottom: 10px;
  font-family: 'Roboto', sans-serif;
  line-height: 1.4;
}

@media (max-width: 500px) {
  .text-highlight {
    font-size: 15px;
    padding-bottom: 8px;
  }
}

.image-only-mobile {
  display: none;
  width: 100%;
  border: 2px solid #659210;
}

@media (max-width: 900px) {
  .image-only-mobile { display: block;}
}

.image-fullwidth { width: 100%;}

/**/
.bloque-superpuesto {
  width: 100%;
  margin: 0 auto;
}

/* Imagen normal */
.contenedor-imagen img {
  width: 100%;
  height: auto;
  display: block;
}

/* Bloque superpuesto */
.contenedor-texto {
  max-width: 60%;
  background: rgba(24, 33, 7, 0.80);
  border: 1px solid #405E09;
  padding: 2.5rem;
  margin: -120px 0 50px 30px; /* superposición */
  border-radius: 12px;
  position: relative;
  z-index: 10;
  color: #FFF;
  font-family: 'Roboto', sans-serif;
  line-height: 1.4;
  font-size: 15px;
}

/* Responsive */
@media (max-width: 768px) {
  .contenedor-texto {
    max-width: 100%;
    margin: 0; /* sin superposición */
    border-radius: 0;
    box-shadow: none;
    padding: 1.8rem;
  }
}

.bloque-TwoColumns_contentRight.order .columna-imagen,
.bloque-TwoColumns_contentLeft.order .columna-imagen {
  order: 2;
}

.bloque-TwoColumns_contentRight.order .columna-texto,
.bloque-TwoColumns_contentLeft.order .columna-texto {
  order: 1;
}

@media (max-width: 900px) {
  .bloque-TwoColumns_contentRight.order .columna-imagen,
  .bloque-TwoColumns_contentLeft.order .columna-imagen {
    order: 1;
  }

  .bloque-TwoColumns_contentRight.order .columna-texto,
  .bloque-TwoColumns_contentLeft.order .columna-texto {
    order: 2;
  }
}

.no-space .section-subtitle { margin-bottom: 10px;}
.no-space .description-bloque { margin-bottom: 10px;}

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

ul.list-large li {
  position: relative;
  padding-left: 28px;
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  color: #FFF;
  line-height: 1.4;
  font-weight: 300;
  margin-bottom: 8px;
}

ul.list-large li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 18px;
  height: 18px;
  background-image: url('..//assets/icon-circle-check.svg');
  background-size: contain;
  background-repeat: no-repeat;
}


.title-big {
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
  font-size: 47px;
  margin-bottom: 0;
  color: #FFF;
  letter-spacing: 2px;
  line-height: 1.1em;
  hyphens: auto;
}

.subtitle-big {
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
  font-size: 30px;
  margin-bottom: 1.5rem;
  color: #FFF;
  letter-spacing: 2px;
  line-height: 1.1em;
  margin-top: 0;
}

.text-italic-title {
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  font-size: 18px;
  color: #FFF;
  line-height: 1.4;
  font-style: italic;
  margin-top: -20px;
}

a.button-site {
  background-color: #40541B;
  color: white;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease;
  padding: 8px 15px;
  border: 1px solid;
  text-decoration: none;
  margin-top: 20px;
  margin-bottom: 20px;
  display: inline-block;
}

.button-site.active { background-color: #333;}

@media (max-width: 500px) {
  .title-big { font-size: 30px;} .subtitle-big { font-size: 20px;}
}

@media (max-width: 900px) {
  .remove-padding-mobile.bloque-planificaTuVisita {padding: 4rem 0 0 0;}
}

.remove-space-mobile.bloque-utility-small {padding: 4rem 0 0 0;}

.remove-space-mobile .bloque-contenido {max-width: 95%;}

.bloque-contenido.fix-width { max-width: 100%; padding-top: 0;}
.bloque-contenido.fix-width .description { max-width: 85%; margin: auto;}
