html, body, div, span, object, h1, h2, h3, h4, h5, h6, p, a, address, big, blockquote, cite, code, copyright, del, dfn, em, img, ins, kbd, q, s, samp, small, strong, sub, sup, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1;
  font-weight: 400;
  -webkit-text-size-adjust: none;
  padding-top: 80px;
  background: #ffffff;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
/* Estilos de Elementos de Formulario */
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}
input, select, textarea {
  -moz-appearance: none;
  -webkit-appearance: none;
  -ms-appearance: none;
  appearance: none;
}
/* Diseño Básico y Responsividad */
@-ms-viewport {
  width: device-width;
}
body {
  -ms-overflow-style: scrollbar;
}
html {
  box-sizing: border-box;
}
*, *:before, *:after {
  box-sizing: inherit;
}
@media screen and (max-width: 480px) {
  html, body {
    min-width: 320px;
  }
}
/* Estado de Precarga */
body.is-preload *, body.is-preload *:before, body.is-preload *:after {
  -moz-animation: none !important;
  -webkit-animation: none !important;
  -ms-animation: none !important;
  animation: none !important;
  -moz-transition: none !important;
  -webkit-transition: none !important;
  -ms-transition: none !important;
  transition: none !important;
}
/* Type */
body, input, select, textarea {
  color: #134c4e;
  font-family: "obviously", sans-serif;
  font-size: 16pt;
  font-weight: 300;
  line-height: 1.75;
}
@media screen and (max-width: 1680px) {
  body, input, select, textarea {
    font-size: 14pt;
  }
}
@media screen and (max-width: 1280px) {
  body, input, select, textarea {
    font-size: 12pt;
  }
}
a {
  text-decoration: none;
  color: #585858;
}
a:hover {
  color: #05B8A9;
}
strong, b {
  font-weight: 600;
}
em, i {
  font-style: italic;
}
p {
  margin: 0 0 2em 0;
}
h1 {
  font-size: 2.6em;
  font-weight: 600;
  line-height: 1.2;
  margin: 0.5em 0 1em 0;
  letter-spacing: -0.035em;
}
h1 strong {
  font-weight: 500;
}
h1 a {
  color: inherit;
}
@media screen and (max-width: 736px) {
  h1 {
    font-size: 2em;
    margin: 0 0 1em 0;
  }
}
@media screen and (max-width: 360px) {
  h1 {
    font-size: 1.75em;
  }
}
h2, h3, h4, h5, h6 {
  font-weight: 400;
  line-height: 1.5;
  margin: 0 0 0.5em 0;
  color: #3e4456;
}
h2 a, h3 a, h4 a, h5 a, h6 a {
  color: inherit;
}
h2 {
  font-size: 1.5em;
}
h3 {
  font-size: 1.2em;
}
h3 strong {
  font-weight: 500;
}
h4 {
  font-size: 0.8em;
}
h5 {
  font-size: 0.8em;
}
h6 {
  font-size: 0.6em;
  color: #838E8C;
}
@media screen and (max-width: 980px) {
  h1 br, h2 br, h3 br, h4 br, h5 br, h6 br {
    display: none;
  }
}
@media screen and (max-width: 736px) {
  h2 {
    font-size: 1em;
  }
  h3 {
    font-size: 0.8em;
  }
}
sub {
  font-size: 0.8em;
  position: relative;
  top: 0.5em;
}
hr {
  border: 0;
  border-bottom: solid 1px #73B8AD;
  margin: 2em 0;
}
hr.major {
  margin: 3em 0;
}
/* Section/Article */
section.special, article.special {
  text-align: center;
}
header p {
  margin-top: -1em;
}
@media screen and (max-width: 736px) {
  header p {
    margin-top: 0;
  }
}
/* --- Navegación (Navbar) --- */
.navbar {
  position: fixed;
  height: 80px;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #ffffff;
  padding: 10px 0;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between; /* Distribuye el espacio entre los elementos del navbar */
  padding-left: 2em; /* Espacio general para el navbar */
  padding-right: 2em;
}
.navbar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-grow: 1;
}
.logo-fixed-left img {
  height: 30px;
  margin: 0;
}
.hamburger {
  display: none; 
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 25px;
  cursor: pointer;
  z-index: 1100;
  margin-left: 1em;
}
.hamburger .bar {
  width: 100%;
  height: 3px;
  background-color: #05b8a9;
  transition: all 0.3s ease;
}
/* Animación de la hamburguesa (opcional) */
.hamburger.active .bar:nth-child(1) {
  transform: translateY(11px) rotate(45deg);
}
.hamburger.active .bar:nth-child(2) {
  opacity: 0;
}
.hamburger.active .bar:nth-child(3) {
  transform: translateY(-11px) rotate(-45deg);
}
.navbar-container {
  display: flex; /* Asegura que el contenedor de los enlaces sea un flex container */
  justify-content: flex-end; /* Alinea los enlaces a la derecha */
  flex-grow: 1; /* Permite que el contenedor de enlaces ocupe el espacio restante */
}
.nav-links {
  display: flex;
}
.nav-links ul {
  list-style: none;
  display: flex; /* Horizontal por defecto en desktop */
  margin: 0;
  padding: 0;
}
.nav-links ul li {
  margin-left: 20px; /* Espaciado entre elementos de navegación */
}
.nav-links ul li a {
  color: #05b8a9;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  transition: color 0.3s ease;
}
.nav-links ul li a:hover {
  color: #134C4E;
  text-decoration: underline;
}
/* --- Media Queries para Navegación --- */
@media screen and (max-width: 992px) { /* Tablet y móvil */
  .navbar {
    height: 60px; /* Navbar más pequeño en móviles */
    padding: 10px 1em; /* Menos padding lateral */
  }
  .navbar-header {
    /* Para que el logo esté a la izquierda y la hamburguesa a la derecha */
    justify-content: space-between;
    width: 100%; /* Ocupa todo el ancho del navbar */
    flex-grow: 0; /* No crece para mantener el control del espacio */
  }
  .logo-fixed-left img {
    height: 25px; /* Logo más pequeño en móviles */
  }
  .hamburger {
    display: flex; /* Muestra el botón de hamburguesa */
  }
  .navbar-container {
    /* Este contenedor no debe ocultarse ni posicionarse absolutamente de inicio. */
    /* Dejamos que el `.nav-links` haga ese trabajo. */
    display: block; /* Debe ser un bloque para que el nav-links se posicione dentro */
    position: static; /* Asegura que no tenga posicionamiento conflictivo */
    width: auto;
    flex-grow: 0; /* No crece */
  }
  .nav-links {
    position: fixed; /* Menú lateral o superpuesto */
    top: 60px; /* Justo debajo del navbar */
    left: 0;
    width: 100%;
    height: calc(100vh - 60px); /* Ocupa el resto de la altura de la vista */
    background-color: #ffffff;
    flex-direction: column; /* Apila los enlaces verticalmente */
    justify-content: center; /* Centra verticalmente los enlaces */
    align-items: center; /* Centra horizontalmente los enlaces */
    transform: translateX(100%); /* Oculta el menú a la derecha */
    transition: transform 0.3s ease-in-out;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex; /* Para que flexbox funcione cuando se muestre */
    z-index: 1010; /* Importante: ocúltalo inicialmente con transform, no con display: none */
  }
  .nav-links.active {
    transform: translateX(0); /* Muestra el menú */
  }
  .nav-links ul {
    flex-direction: column; /* Links apilados */
    text-align: center;
  }
  .nav-links ul li {
    margin: 15px 0; /* Espacio vertical entre los links */
  }
  .nav-links ul li a {
    font-size: 16px; /* Links más grandes para mejor toque */
  }
}
/* Form */
form {
  margin: 0 0 2em 0;
  overflow-x: hidden;
}
form > :last-child {
  margin-bottom: 0;
}
form > .fields {
  display: -moz-flex;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -moz-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: calc(100% + 3em);
  margin: -1.5em 0 2em -1.5em;
}
form > .fields > .field {
  -moz-flex-grow: 0;
  -webkit-flex-grow: 0;
  -ms-flex-grow: 0;
  flex-grow: 0;
  -moz-flex-shrink: 0;
  -webkit-flex-shrink: 0;
  -ms-flex-shrink: 0;
  flex-shrink: 0;
  padding: 1.5em 0 0 1.5em;
  width: calc(100% - 1.5em);
}
form > .fields > .field.half {
  width: calc(50% - 0.75em);
}
form > .fields > .field.third {
  width: calc(100%/3 - 0.5em);
}
form > .fields > .field.quarter {
  width: calc(25% - 0.375em);
}
@media screen and (max-width: 480px) {
  form > .fields {
    width: calc(100% + 3em);
    margin: -1.5em 0 2em -1.5em;
  }
  form > .fields > .field {
    padding: 1.5em 0 0 1.5em;
    width: calc(100% - 1.5em);
  }
  form > .fields > .field.half {
    width: calc(100% - 1.5em);
  }
  form > .fields > .field.third {
    width: calc(100% - 1.5em);
  }
  form > .fields > .field.quarter {
    width: calc(100% - 1.5em);
  }
}
label {
  display: block;
  font-size: 0.9em;
  font-weight: 900;
  margin: 0 0 1em 0;
}
input[type="text"], input[type="password"], input[type="email"], input[type="tel"], select, textarea {
  -moz-appearance: none;
  -webkit-appearance: none;
  -ms-appearance: none;
  appearance: none;
  background-color: transparent;
  border: none;
  border-radius: 0;
  border-bottom: solid 1px #757575;
  color: inherit;
  display: block;
  outline: 0;
  padding: 0;
  text-decoration: none;
  width: 100%;
}
input[type="text"]:invalid, input[type="password"]:invalid, input[type="email"]:invalid, input[type="tel"]:invalid, select:invalid, textarea:invalid {
  box-shadow: none;
}
input[type="text"]:focus, input[type="password"]:focus, input[type="email"]:focus, input[type="tel"]:focus, select:focus, textarea:focus {
  border-bottom-color: #134c4e;
  box-shadow: inset 0 -1px 0 0 #134c4e;
}
select {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' preserveAspectRatio='none' viewBox='0 0 40 40'%3E%3Cpath d='M9.4,12.3l10.4,10.4l10.4-10.4c0.2-0.2,0.5-0.4,0.9-0.4c0.3,0,0.6,0.1,0.9,0.4l3.3,3.3c0.2,0.2,0.4,0.5,0.4,0.9 c0,0.4-0.1,0.6-0.4,0.9L20.7,31.9c-0.2,0.2-0.5,0.4-0.9,0.4c-0.3,0-0.6-0.1-0.9-0.4L4.3,17.3c-0.2-0.2-0.4-0.5-0.4-0.9 c0-0.4,0.1-0.6,0.4-0.9l3.3-3.3c0.2-0.2,0.5-0.4,0.9-0.4S9.1,12.1,9.4,12.3z' fill='%23c9c9c9' /%3E%3C/svg%3E");
  background-size: 1.25rem;
  background-repeat: no-repeat;
  background-position: calc(100% - 1rem) center;
  height: 3em;
  padding-right: 3em;
  text-overflow: ellipsis;
}
select option {
  background: #ffffff;
}
select:focus::-ms-value {
  background-color: transparent;
}
select::-ms-expand {
  display: none;
}
input[type="text"], input[type="password"], input[type="email"], select {
  height: 3em;
}
textarea {
  padding: 0;
  min-height: 3.75em;
}
input[type="checkbox"], input[type="radio"] {
  -moz-appearance: none;
  -webkit-appearance: none;
  -ms-appearance: none;
  appearance: none;
  display: block;
  float: left;
  margin-right: -2em;
  opacity: 0;
  width: 1em;
  z-index: -1;
}
input[type="checkbox"] + label, input[type="radio"] + label {
  text-decoration: none;
  color: #585858;
  cursor: pointer;
  display: inline-block;
  font-size: 1em;
  font-weight: 300;
  padding-left: 2.55em;
  padding-right: 0.75em;
  position: relative;
}
input[type="checkbox"] + label:before, input[type="radio"] + label:before {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  text-transform: none !important;
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
}
input[type="checkbox"] + label:before, input[type="radio"] + label:before {
  border-radius: 4px;
  border: solid 1px #c9c9c9;
  content: '';
  display: inline-block;
  font-size: 0.8em;
  height: 2.25em;
  left: 0;
  line-height: 2.25em;
  position: absolute;
  text-align: center;
  top: 0;
  width: 2.25em;
}
input[type="checkbox"]:checked + label:before, input[type="radio"]:checked + label:before {
  background: #93e2d8;
  border-color: #585858;
  color: #ffffff;
  content: '\00D7';
}
input[type="checkbox"]:focus + label:before, input[type="radio"]:focus + label:before {
  border-color: #134c4e;
  box-shadow: 0 0 0 1px #134c4e;
}
input[type="checkbox"] + label:before {
  border-radius: 4px;
}
input[type="radio"] + label:before {
  border-radius: 100%;
}
/* Box */
.box {
  border-radius: 4px;
  border: solid 1px #c9c9c9;
  margin-bottom: 2em;
  padding: 1.5em;
}
.box > :last-child, .box > :last-child > :last-child, .box > :last-child > :last-child > :last-child {
  margin-bottom: 0;
}
.box.alt {
  border: 0;
  border-radius: 0;
  padding: 0;
}
/* Image */
.image {
  border-radius: 10px;
  border: 0;
  display: inline-block;
  position: relative;
}
.image img {
  border-radius: 10px;
  display: block;
}
.image.left, .image.right {
  max-width: 40%;
}
.image.left img, .image.right img {
  width: 100%;
}
.image.left {
  float: left;
  padding: 0 1cm 1em 0;
  top: 0.25em;
}
.image.right {
  float: right;
  padding: 0 0 1em 1.5em;
  top: 0.25em;
}
.image.fit {
  display: block;
  margin: 0 0 2em 0;
  width: 100%;
}
.image.fit img {
  width: 100%;
}
.image.main {
  display: block;
  margin: 0 0 3em 0;
  width: 100%;
}
.image.main img {
  width: 100%;
}
@media screen and (max-width: 736px) {
  .image.main {
    margin: 0 0 2em 0;
  }
}
/* Button */
input[type="submit"], input[type="reset"], input[type="button"], button, .button {
  -moz-appearance: none;
  -webkit-appearance: none;
  -ms-appearance: none;
  appearance: none;
  -moz-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
  -webkit-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
  -ms-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
  transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
  background-color: transparent;
  border-radius: 4px;
  border: 0;
  box-shadow: inset 0 0 0 2px #585858;
  color: #585858 !important;
  cursor: pointer;
  display: inline-block;
  font-size: 0.8em;
  font-weight: 600;
  height: 3.5em;
  letter-spacing: 0.15em;
  line-height: 3.45em;
  overflow: hidden;
  padding: 0 1.25em 0 1.6em;
  text-align: center;
  text-decoration: none;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}
input[type="submit"].icon:before, input[type="reset"].icon:before, input[type="button"].icon:before, button.icon:before, .button.icon:before {
  margin-right: 0.5em;
}
input[type="submit"].fit, input[type="reset"].fit, input[type="button"].fit, button.fit, .button.fit {
  width: 100%;
}
input[type="submit"]:hover, input[type="reset"]:hover, input[type="button"]:hover, button:hover, .button:hover {
  color: #134c4e !important;
  box-shadow: inset 0 0 0 2px #134c4e;
}
input[type="submit"]:active, input[type="reset"]:active, input[type="button"]:active, button:active, .button:active {
  background-color: rgba(242, 132, 158, 0.1);
}
input[type="submit"].small, input[type="reset"].small, input[type="button"].small, button.small, .button.small {
  font-size: 0.6em;
}
input[type="submit"].large, input[type="reset"].large, input[type="button"].large, button.large, .button.large {
  font-size: 1em;
}
input[type="submit"].primary, input[type="reset"].primary, input[type="button"].primary, button.primary, .button.primary {
  box-shadow: inset 0 0 0 2px #93e2d8;
  background-color: #d6f8f2;
  color: #93e2d8 !important;
}
input[type="submit"].primary:hover, input[type="reset"].primary:hover, input[type="button"].primary:hover, button.primary:hover, .button.primary:hover {
  background-color: #134c4e;
}
input[type="submit"].primary:active, input[type="reset"].primary:active, input[type="button"].primary:active, button.primary:active, .button.primary:active {
  background-color: #93e2d8;
}
input[type="submit"].disabled, input[type="submit"]:disabled, input[type="reset"].disabled, input[type="reset"]:disabled, input[type="button"].disabled, input[type="button"]:disabled, button.disabled, button:disabled, .button.disabled, .button:disabled {
  pointer-events: none;
  opacity: 0.25;
}
/* Tiles */
.tiles {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  margin: -2.5em 0 0 -2.5em; /* Margen para compensar el margen de las columnas */
}
.tiles article {
  transition: transform 0.3s ease, opacity 0.3s ease; /* Transición para el zoom, más suave */
  position: relative;
  /* Calcular el ancho para 4 columnas, restando el margen entre ellas */
  width: calc(25% - 2.5em); /* 4 columnas (100% / 4 = 25%) */
  margin: 2.5em 0 0 2.5em; /* Margen superior e izquierdo para el espaciado */
}
.tiles article > .image {
  overflow: hidden; /* Importante para el efecto de zoom */
  position: relative;
  display: block;
  width: 100%;
  border-radius: 4px;
}
.tiles article > .image img {
  display: block;
  width: 100%;
  height: auto; /* Asegura que la imagen mantenga su proporción */
  transition: transform 0.3s ease; /* Transición para el zoom en la imagen */
}
/* Eliminar los pseudo-elementos ":before" y ":after" si no se usan para overlays */
/* Si los necesitas para algo más, ajusta su opacidad y background-color en el hover */
.tiles article > .image:before, .tiles article > .image:after {
  display: none; /* Ocultamos estos si solo quieres el zoom de imagen */
  /* Si los quieres mantener, podrías ajustar su opacidad o transformaciones aquí */
}
/* Efecto de zoom al pasar el mouse */
.tiles article:hover > .image img {
  transform: scale(1.1); /* Hace la imagen un 10% más grande */
}
/* Eliminar estilos relacionados con .tiles article > a si solo quieres imágenes */
/* Si mantienes los enlaces, el efecto de zoom se aplicaría a la imagen detrás */
/* Si quieres que el enlace tenga un hover, asegúrate de que no interfiera con el zoom de la imagen */
/* Puedes mantener los colores de fondo si los deseas como un overlay */
.tiles article.style1 > .image:before {
  background-color: #d6f8f2;
}
.tiles article.style2 > .image:before {
  background-color: #134c4e;
}
.tiles article.style3 > .image:before {
  background-color: #d6f8f2;
}
.tiles article.style4 > .image:before {
  background-color: #134c4e;
} /* Color para la cuarta imagen */
/* ... y así sucesivamente si tienes más estilos de color */
/* Media Queries para responsividad */
@media screen and (max-width: 1280px) {
  .tiles article {
    width: calc(25% - 1.25em); /* Ajuste para 4 columnas en pantallas más pequeñas */
    margin: 1.25em 0 0 1.25em;
  }
}
@media screen and (max-width: 980px) {
  .tiles article {
    width: calc(33.33333% - 2.5em); /* Vuelve a 3 columnas en tabletas */
    margin: 2.5em 0 0 2.5em;
  }
}
@media screen and (max-width: 736px) {
  .tiles article {
    width: calc(50% - 1.25em); /* 2 columnas en móviles más grandes */
    margin: 1.25em 0 0 1.25em;
  }
}
@media screen and (max-width: 480px) {
  .tiles {
    margin: 0;
  }
  .tiles article {
    width: 100%; /* 1 columna en móviles pequeños */
    margin: 1.25em 0 0 0;
  }
}
/* Menu */
#wrapper {
  -moz-transition: opacity 0.45s ease;
  -webkit-transition: opacity 0.45s ease;
  -ms-transition: opacity 0.45s ease;
  transition: opacity 0.45s ease;
  opacity: 1;
}
#menu {
  -moz-transform: translateX(22em);
  -webkit-transform: translateX(22em);
  -ms-transform: translateX(22em);
  transform: translateX(22em);
  -moz-transition: -moz-transform 0.45s ease, visibility 0.45s;
  -webkit-transition: -webkit-transform 0.45s ease, visibility 0.45s;
  -ms-transition: -ms-transform 0.45s ease, visibility 0.45s;
  transition: transform 0.45s ease, visibility 0.45s;
  position: fixed;
  top: 0;
  right: 0;
  width: 15em;
  max-width: 80%;
  height: 100%;
  -webkit-overflow-scrolling: touch;
  background: #93e2d8;
  color: #134c4e;
  cursor: default;
  visibility: hidden;
  z-index: 10002;
}
#menu > .inner {
  -moz-transition: opacity 0.45s ease;
  -webkit-transition: opacity 0.45s ease;
  -ms-transition: opacity 0.45s ease;
  transition: opacity 0.45s ease;
  -webkit-overflow-scrolling: touch;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 1.5em;
  opacity: 0;
  overflow-y: auto;
  color: #134c4e;
}
#menu > .inner > ul {
  list-style: none;
  margin: 0 0 0 0;
  padding: 0;
}
#menu > .inner > ul > li {
  padding: 0;
  border-top: solid 1px rgba(255, 255, 255, 0.15);
}
#menu > .inner > ul > li a {
  display: block;
  padding: 1em 0;
  line-height: 1.5;
  border: 0;
  color: #244b4d;
}
#menu > .inner > ul > li a:hover {
  color: #ffffff;
}
#menu > .inner > ul > li:first-child {
  border-top: 0;
  margin-top: -1em;
}
#menu > .close {
  -moz-transition: opacity 0.45s ease, -moz-transform 0.45s ease;
  -webkit-transition: opacity 0.45s ease, -webkit-transform 0.45s ease;
  -ms-transition: opacity 0.45s ease, -ms-transform 0.45s ease;
  transition: opacity 0.45s ease, transform 0.45s ease;
  -moz-transform: scale(0.25) rotate(180deg);
  -webkit-transform: scale(0.25) rotate(180deg);
  -ms-transform: scale(0.25) rotate(180deg);
  transform: scale(0.25) rotate(180deg);
  -webkit-tap-highlight-color: transparent;
  display: block;
  position: absolute;
  top: 2em;
  left: -6em;
  width: 6em;
  text-indent: 6em;
  height: 3em;
  border: 0;
  font-size: 1em;
  opacity: 0;
  overflow: hidden;
  padding: 0;
  white-space: nowrap;
}
#menu > .close:before, #menu > .close:after {
  -moz-transition: opacity 0.2s ease;
  -webkit-transition: opacity 0.2s ease;
  -ms-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 2em 2em;
}
#menu > .close:before {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100' preserveAspectRatio='none'%3E%3Cstyle%3Eline %7B stroke-width: 8px%3B stroke: %23134c4e%3B %7D%3C/style%3E%3Cline x1='15' y1='15' x2='85' y2='85' /%3E%3Cline x1='85' y1='15' x2='15' y2='85' /%3E%3C/svg%3E");
  opacity: 0;
}
#menu > .close:after {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100' preserveAspectRatio='none'%3E%3Cstyle%3Eline %7B stroke-width: 8px%3B stroke: %23585858%3B %7D%3C/style%3E%3Cline x1='15' y1='15' x2='85' y2='85' /%3E%3Cline x1='85' y1='15' x2='15' y2='85' /%3E%3C/svg%3E");
  opacity: 1;
}
#menu > .close:hover:before {
  opacity: 1;
}
#menu > .close:hover:after {
  opacity: 0;
}
@media screen and (max-width: 736px) {
  #menu {
    -moz-transform: translateX(16.5em);
    -webkit-transform: translateX(16.5em);
    -ms-transform: translateX(16.5em);
    transform: translateX(16.5em);
    width: 16.5em;
  }
  #menu > .inner {
    padding: 2.75em 1.5em;
  }
  #menu > .close {
    top: 0.5em;
    left: -4.25em;
    width: 4.25em;
    text-indent: 4.25em;
  }
  #menu > .close:before, #menu > .close:after {
    background-size: 1 em 1 em;
  }
}
body.is-menu-visible #wrapper {
  pointer-events: none;
  cursor: default;
  opacity: 0.25;
}
body.is-menu-visible #menu {
  -moz-transform: translateX(0);
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
  visibility: visible;
}
body.is-menu-visible #menu > * {
  opacity: 1;
}
body.is-menu-visible #menu .close {
  -moz-transform: scale(1.0) rotate(0deg);
  -webkit-transform: scale(1.0) rotate(0deg);
  -ms-transform: scale(1.0) rotate(0deg);
  transform: scale(1.0) rotate(0deg);
  opacity: 1;
}
/* Main */
#main {
  padding: 0em 0 4em 0;
}
@media screen and (max-width: 736px) {
  #main {
    padding: 0em 0 2em 0;
  }
}
/*Frase*/
.contact-section {
  width: 100%;
  height: 100px; /* Ajusta la altura según necesites */
  overflow: hidden; /* Oculta el contenido fuera del contenedor */
  display: flex;
  padding: 0px;
  align-items: center; /* Centra verticalmente el contenido */
  position: relative; /* Para el posicionamiento del carrusel */
}
.contact-frase {
  width: 100%;
  overflow: hidden; /* Importante para el efecto de carrusel */
  white-space: nowrap; /* Evita que los items se rompan a nuevas líneas */
}
.contact-frase-link {
  display: inline-flex; /* Permite que los items estén en una sola línea */
  align-items: center;
  text-decoration: none;
  color: #00FEDA; /* Color del texto */
  font-size: 5rem; /* Tamaño grande de la fuente */
  font-weight: 200;
  transition: transform 0.1s linear; /* Transición suave para el movimiento */
  /* Animación CSS para el movimiento inicial, se sobrescribe por JS */
  animation: scrollText 100s linear infinite; /* 30s es la duración, ajusta según el contenido */
}
.frase-item {
  display: inline-flex; /* Asegura que cada item (texto + svg) esté en línea */
  align-items: center;
  padding: 0 10px; /* Espacio entre las repeticiones de la frase */
  flex-shrink: 0; /* Evita que los items se encojan */
}
/* Keyframes para la animación de scroll */
@keyframes scrollText {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%); /* Mueve el contenido para que parezca infinito */
  }
}
/* Media Queries para responsividad */
@media (max-width: 1024px) {
  .animated-phrase-banner-link {
    font-size: 3rem;
  }
  .frase-item svg {
    height: 60px;
    width: 60px;
  }
}
@media (max-width: 768px) {
  .contact-section {
    height: 100px;
  }
  .animated-phrase-banner-link {
    font-size: 2rem;
  }
}
@media (max-width: 480px) {
  .contact-section {
    height: auto;
  }
  .animated-phrase-banner-link {
    font-size: auto;
  }
  .frase-item span {
    margin-right: 10px;
  }
}
/* Footer */
#footer {
  padding: 2em 0 3em 0;
  background-color: #93e2d8;
}
#footer > .inner {
  display: -moz-flex;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -moz-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -moz-flex-direction: row;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
}
#footer > .inner > * > :last-child {
  margin-bottom: 0;
}
#footer > .inner section:nth-child(1) {
  width: calc(66% - 2.5em);
  margin-right: 2.5em;
}
#footer > .inner section:nth-child(2) {
  width: calc(33% - 2.5em);
  margin-left: 2.5em;
}
@media screen and (max-width: 1280px) {
  #footer {
    padding: 5em 0 3em 0;
  }
  #footer > .inner section:nth-child(1) {
    width: calc(66% - 1.25em);
    margin-right: 1.25em;
  }
  #footer > .inner section:nth-child(2) {
    width: calc(33% - 1.25em);
    margin-left: 1.25em;
  }
}
@media screen and (max-width: 980px) {
  #footer > .inner section:nth-child(1) {
    width: 66%;
    margin-right: 0;
  }
  #footer > .inner section:nth-child(2) {
    width: calc(33% - 2.5em);
    margin-left: 2.5em;
  }
}
@media screen and (max-width: 736px) {
  #footer {
    padding: 3em 0 1em 0;
  }
  #footer > .inner {
    -moz-flex-direction: column;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  #footer > .inner section:nth-child(1) {
    width: 100%;
    margin-right: 0;
    margin: 3em 0 0 0;
  }
  #footer > .inner section:nth-child(2) {
    -moz-order: -1;
    -webkit-order: -1;
    -ms-order: -1;
    order: -1;
    width: 100%;
    margin-left: 0;
  }
}
/* Wrapper */
#wrapper > * > .inner {
  width: 100%;
  max-width: 80em;
  margin: 0 auto;
  padding: 0 2.5em;
}
@media screen and (max-width: 736px) {
  #wrapper > * > .inner {
    padding: 0 1.25em;
  }
}
/* Carousel Container */
.main-carousel-container {
  position: relative; /* Mantener relativo por si acaso, aunque no es estrictamente necesario para los puntos abajo */
  width: 100%;
  max-width: 100%; /* Ajusta según el ancho máximo que desees para tu carrusel */
  margin: 0; /* Centrar el carrusel */
  margin-bottom: 0em; /* Espacio debajo de todo el componente del carrusel */
}
.main-carousel-images {
  position: relative; /* Esencial para posicionar las imágenes absolutamente dentro */
  width: 100%;
  padding-bottom: 60%; /* Por ejemplo, para imágenes 16:9. Adapta esto a tus fotos. */
  height: 0; /* Necesario para que el truco de padding-bottom funcione */
  overflow: hidden; /* Oculta cualquier parte de la imagen que se salga del contenedor */
}
.main-carousel-images img {
  position: absolute; /* Permite superponer las imágenes y transiciones de opacidad */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; /* Rellenar el contenedor con el padding-bottom */
  border-radius: 6px;
  object-fit: cover; /* Asegura que la imagen cubra el área sin distorsión (puede recortar) */
  opacity: 0; /* Oculto por defecto */
  transition: opacity 0.5s ease-in-out; /* Transición suave de aparición/desaparición */
}
.main-carousel-images img.active {
  opacity: 1; /* Hace visible la imagen activa */
}
.main-carousel-dots {
  text-align: center; /* Centrar los puntos horizontalmente */
  padding: 0; /* Espaciado interno superior e inferior */
  margin-top: 0.5em; /* Espacio entre el contenedor de imágenes y los puntos */
}
.main-carousel-dots .dot {
  height: 10px;
  width: 10px;
  margin: 0 5px;
  background-color: #ccc; /* Gris claro para puntos inactivos */
  border-radius: 50%; /* Forma circular */
  display: inline-block; /* Permite que los puntos se alineen horizontalmente */
  cursor: pointer; /* Indica que es un elemento clickable */
  transition: background-color 0.3s ease, width 0.3s ease, border-radius 0.3s ease; /* Transiciones suaves */
}
.main-carousel-dots .dot.active {
  background-color: #134C4E; /* verde para el punto activo (ajusta a tu color de marca) */
  width: 30px; /* Más ancho para el punto activo, como en tu imagen */
  border-radius: 6px; /* Bordes más redondeados para la forma de "pastilla" */
}
/* Asegúrate de que no haya un margen conflictivo del .box.alt original */
.box.alt {
  margin-bottom: 0; /* Si tu .main-carousel-container reemplaza un .box.alt, esto ayuda */
}
/* Gallery */
.gallery {
  display: -moz-flex;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -moz-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  position: relative;
  margin: -2.5em 0 0 -2.5em;
}
.gallery article {
  -moz-transition: -moz-transform 0.7s ease, opacity 0.5s ease;
  -webkit-transition: -webkit-transform 0.7s ease, opacity 0.5s ease;
  -ms-transition: -ms-transform 0.7s ease, opacity 0.5s ease;
  transition: transform 0.7s ease, opacity 0.5s ease;
  position: relative;
  width: calc(33.333% - 2.5em);
  margin: 2.5em 0 0 2.5em; /* Espaciado entre imágenes */
  overflow: hidden; /* Asegura que el contenido no se salga al hacer zoom y que la capa verde se recorte */
  border-radius: 4px; /* CONTROLADOR PRINCIPAL DEL BORDE REDONDEADO PARA TODO EL CONTENEDOR */
}
.gallery article > .image {
  -moz-transition: -moz-transform 0.7s ease;
  -webkit-transition: -webkit-transform 0.7s ease;
  -ms-transition: -ms-transform 0.7s ease;
  transition: transform 0.7s ease;
  position: relative;
  display: block;
  width: 100%;
  /* ELIMINADO: border-radius: 4px; -- el padre maneja esto */
  overflow: hidden;
}
.gallery article > .image img {
  display: block;
  width: 100%;
}
.gallery article > .image:before {
  pointer-events: none;
  -moz-transition: background-color 0.5s ease, opacity 0.5s ease;
  -webkit-transition: background-color 0.5s ease, opacity 0.5s ease;
  -ms-transition: background-color 0.5s ease, opacity 0.5s ease;
  transition: background-color 0.5s ease, opacity 0.5s ease;
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 1.0;
  z-index: 1;
  background-color: transparent;
}
.gallery article > .image:after {
  pointer-events: none;
  -moz-transition: opacity 0.5s ease;
  -webkit-transition: opacity 0.5s ease;
  -ms-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  opacity: 0.15; /* Ajusta la opacidad inicial del patrón */
  z-index: 2;
}
.gallery article > a {
  display: -moz-flex;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -moz-flex-direction: column; /* Apila los elementos verticalmente */
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  align-items: flex-start; /* Alinea el contenido a la izquierda */
  justify-content: flex-end; /* Mueve el contenido hacia abajo */
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 1em;
  border-bottom: 0;
  color: #ffffff;
  text-align: left;
  text-decoration: none;
  z-index: 3;
  background-color: transparent;
  transition: background-color 0.5s ease;
}
/* --- CAPA PARA EL FONDO VERDE CON BORDE REDONDEADO INFERIOR --- */
.gallery article > a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0; /* Empieza con altura 0 */
  background-color: rgba(19, 76, 78, 0.7); /* Tu color #134c4e con 70% de opacidad */
  z-index: -1; /* Envía esta capa detrás del contenido del `<a>` */
  transition: height 0.5s ease; /* Transición para la altura */
  border-radius: 0 0 4px 4px; /* APLICA REDONDEO SOLO A LAS ESQUINAS INFERIORES DEL FONDO VERDE */
}
/* --- FIN CAPA FONDO VERDE --- */
.gallery article > a > :last-child {
  margin: 0;
}
.gallery article > a:hover {
  color: #ffffff !important;
}
.gallery article > a h2 {
  margin: 0;
}
.gallery article > a .content {
  -moz-transition: max-height 0.7s ease, opacity 0.7s ease;
  -webkit-transition: max-height 0.7s ease, opacity 0.7s ease;
  -ms-transition: max-height 0.7s ease, opacity 0.7s ease;
  transition: max-height 0.7s ease, opacity 0.7s ease;
  width: 100%;
  max-height: 0;
  line-height: 1.5;
  margin-top: 0;
  margin-bottom: 1em;
  opacity: 0;
  font-size: 0.9em;
  font-weight: 500;
  text-align: left;
}
.gallery article > a .content > :last-child {
  margin-bottom: 0;
}
.gallery article .tags {
  display: -moz-flex;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  flex-wrap: wrap;
  z-index: 4;
  opacity: 0;
  -moz-transition: opacity 0.7s ease;
  -webkit-transition: opacity 0.7s ease;
  -ms-transition: opacity 0.7s ease;
  transition: opacity 0.7s ease;
  margin-top: 1em;
  width: 100%;
}
.gallery article .tag {
  border: 0.7px solid #ffffff;
  color: #ffffff;
  font-size: 0.6em;
  padding: 0.25em 0.5em;
  margin-right: 0.5em;
  margin-bottom: 0em;
  border-radius: 3px;
  text-decoration: none;
}
.gallery article .tag:last-child {
  margin-right: 0;
}
body:not(.is-touch) .gallery article:hover > .image {
  -moz-transform: scale(1.05);
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}
body:not(.is-touch) .gallery article:hover > .image:before {
  background-color: transparent;
  opacity: 0.35;
}
body:not(.is-touch) .gallery article:hover > .image:after {
  opacity: 0;
}
body:not(.is-touch) .gallery article:hover .content, body:not(.is-touch) .gallery article:hover .tags {
  max-height: 20em;
  opacity: 1;
}
/* --- ACTIVAR EL FONDO VERDE AL 30% EN HOVER --- */
body:not(.is-touch) .gallery article:hover > a::before {
  height: 30%; /* La capa verde se expande al 30% de la altura del `<a>` */
}
/* --- FIN ACTIVAR FONDO VERDE --- */
@media screen and (max-width: 1280px) {
  .gallery article {
    width: calc(33.333% - 2.5em);
  }
}
@media screen and (max-width: 980px) {
  .gallery {
    margin: -1.25em 0 0 -1.25em;
  }
  .gallery article {
    width: calc(50% - 1.25em);
    margin: 1.25em 0 0 1.25em;
  }
}
@media screen and (max-width: 736px) {
  .gallery {
    margin: -1.25em 0 0 -1.25em;
  }
  .gallery article {
    width: calc(100% - 1.25em);
    margin: 1.25em 0 0 1.25em;
  }
}
/* Nuestros Servicios */
.services-container {
  /* Eliminamos max-width para que ocupe todo el ancho disponible de su padre */
  /* width: 85%; <--- ELIMINA O COMENTA ESTA LÍNEA */
  /* MODIFICACIÓN CLAVE: Centrar el contenedor con un max-width */
  max-width: 960px; /* Ajusta este valor al ancho máximo que deseas para tu contenido */
  margin: 2em auto; /* Centra el contenedor horizontalmente, con margen arriba y abajo */
  padding: 0 20px; /* Agrega padding horizontal para que el contenido no se pegue a los bordes de la pantalla en móviles */
  background-color: transparent;
  border-radius: 0;
  box-shadow: none;
  font-family: inherit;
  color: inherit;
  text-align: left;
}
/* Recomendación: Usar un h3 o h4 para "Nuestros Servicios" */
.services-container h3.section-title, .services-container h4.section-title {
  text-align: left; /* Alineado a la izquierda */
  color: #134c4e;
  margin-bottom: 1em;
  font-size: 1.2em; /* Tamaño de h2 en tu CSS base, puedes ajustar a 1.2em (h3) o 1em (h4) */
  font-weight: 400;
}
.service-item {
  margin-bottom: 0.15em;
  border: none;
  border-radius: 0;
  overflow: hidden;
  background-color: transparent;
  text-align: left;
  border-bottom: solid 1px #73B8AD; /* La línea de separación */
  padding-top: 0.1em;
  padding-bottom: 0.5em;
  box-sizing: border-box; /* Asegura que padding y borde se incluyan en el ancho */
}
/* Eliminar el borde inferior del último ítem para una apariencia más limpia */
.service-item:last-of-type {
  border-bottom: none;
  padding-bottom: 0; /* Asegura que el último ítem no tenga padding extra si se quita el borde */
}
.service-item summary {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 0;
  font-size: 2em;
  font-weight: 100;
  color: #134c4e;
  background-color: transparent;
  cursor: pointer;
  outline: none;
  position: relative;
  user-select: none;
  transition: color 0.2s ease;
}
.service-item summary:hover {
  background-color: transparent;
  color: #05B8A9;
}
/* Estilo para el ícono de "desplegar" */
.service-item summary::before {
  content: '+';
  font-size: 1.2em;
  transition: transform 0.3s ease, content 0.3s ease;
  position: static;
  margin-right: 1em;
  order: 0;
  color: #73B8AD;
  display: inline-block;
  vertical-align: middle;
}
/* Cambia el ícono a '-' cuando está abierto */
.service-item[open] summary::before {
  content: '-';
  transform: none;
  color: #05B8A9;
}
.service-content {
  padding: 0;
  background-color: transparent;
  line-height: 2em;
  font-size: 1em;
  color: #585858;
  border-top: 0;
  text-align: left;
}
/* Estilos para las columnas y los bullets */
.service-content .columns {
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
  margin-top: 0.5em;
}
.service-content .column {
  flex: 1;
  min-width: 150px;
}
.service-content ul {
  list-style: disc;
  margin: 0;
  padding-left: 5em;
  padding-bottom: 1em;
}
.service-content ul li {
  margin-bottom: 0em;
  padding-left: 0;
}
.service-content ul li:last-child {
  margin-bottom: 0;
}
/* Animación para el contenido */
.service-item[open] .service-content {
  animation: fadeIn 0.5s ease-out;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Row */
.row {
  display: flex;
  flex-wrap: wrap;
  box-sizing: border-box;
  align-items: stretch;
}
.row > * {
  box-sizing: border-box;
}
.row.gtr-uniform > * > :last-child {
  margin-bottom: 0;
}
.row > .col-12 {
  width: 100%;
}
.row {
  margin-top: 0;
  margin-left: -2em;
}
.row > * {
  padding: 0 0 0 2em;
}
.row.gtr-uniform {
  margin-top: -2em;
}
.row.gtr-uniform > * {
  padding-top: 2em;
}
@media screen and (max-width: 1680px) {
  .row {
    display: flex;
    flex-wrap: wrap;
    box-sizing: border-box;
    align-items: stretch;
  }
  .row > * {
    box-sizing: border-box;
  }
  .row.gtr-uniform > * > :last-child {
    margin-bottom: 0;
  }
  .row {
    margin-top: 0;
    margin-left: -2em;
  }
  .row > * {
    padding: 0 0 0 2em;
  }
  .row.gtr-uniform {
    margin-top: -2em;
  }
  .row.gtr-uniform > * {
    padding-top: 2em;
  }
}
@media screen and (max-width: 1280px) {
  .row {
    display: flex;
    flex-wrap: wrap;
    box-sizing: border-box;
    align-items: stretch;
  }
  .row > * {
    box-sizing: border-box;
  }
  .row.gtr-uniform > * > :last-child {
    margin-bottom: 0;
  }
  .row {
    margin-top: 0;
    margin-left: -2em;
  }
  .row > * {
    padding: 0 0 0 2em;
  }
  .row.gtr-uniform {
    margin-top: -2em;
  }
  .row.gtr-uniform > * {
    padding-top: 2em;
  }
}
@media screen and (max-width: 980px) {
  .row {
    display: flex;
    flex-wrap: wrap;
    box-sizing: border-box;
    align-items: stretch;
  }
  .row > * {
    box-sizing: border-box;
  }
  .row.gtr-uniform > * > :last-child {
    margin-bottom: 0;
  }
  .row > .col-3-medium {
    width: 25%;
  }
  .row > .col-6-medium {
    width: 50%;
  }
  .row > .col-9-medium {
    width: 75%;
  }
  .row > .col-12-medium {
    width: 100%;
  }
  .row {
    margin-top: 0;
    margin-left: -1.5em;
  }
  .row > * {
    padding: 0 0 0 1.5em;
  }
  .row.gtr-uniform {
    margin-top: -1.5em;
  }
  .row.gtr-uniform > * {
    padding-top: 1.5em;
  }
}
@media screen and (max-width: 736px) {
  .row {
    display: flex;
    flex-wrap: wrap;
    box-sizing: border-box;
    align-items: stretch;
  }
  .row > * {
    box-sizing: border-box;
  }
  .row.gtr-uniform > * > :last-child {
    margin-bottom: 0;
  }
  .row {
    margin-top: 0;
    margin-left: -1em;
  }
  .row > * {
    padding: 0 0 0 1em;
  }
  .row.gtr-uniform {
    margin-top: -1em;
  }
  .row.gtr-uniform > * {
    padding-top: 1em;
  }
}
@media screen and (max-width: 480px) {
  .row {
    display: flex;
    flex-wrap: wrap;
    box-sizing: border-box;
    align-items: stretch;
  }
  .row > * {
    box-sizing: border-box;
  }
  .row.gtr-uniform > * > :last-child {
    margin-bottom: 0;
  }
  .row {
    margin-top: 0;
    margin-left: -1em;
  }
  .row > * {
    padding: 0 0 0 1em;
  }
  .row.gtr-uniform {
    margin-top: -1em;
  }
  .row.gtr-uniform > * {
    padding-top: 1em;
  }
}
/* Copyright */
.copyright-section {
  font-weight: 300;
  font-size: 12px;
  line-height: normal;
  margin-top: var(--spacing-xl); /* Espacio arriba con variable */
  color: var(--color-dark);
  padding: var(--spacing-md) clamp(1rem, 5vw, var(--spacing-lg)); /* Padding en todos los lados con fluido */
  background-color: transparent;
}
@media (min-width: 737px) {
  .copyright-section {
    margin-top: var(--spacing-xxl); /* Más margen en desktop */
  }
}
.hero-flex-container {
  display: flex; /* Habilita Flexbox */
  flex-direction: row; /* Coloca los elementos en una fila (horizontal) */
  justify-content: flex-start; /* Alinea los elementos al inicio (izquierda) del contenedor */
  gap: 2em; /* Espacio entre el texto y el carrusel */
  padding: 3em 0; /* Espacio superior e inferior para esta sección */
}
.hero-text-content {
  flex: 1; /* Permite que el texto ocupe una parte del espacio disponible */
  max-width: 35%; /* Reducimos el ancho máximo del texto para que el carrusel tenga más espacio */
  text-align: left; /* Alinea el texto a la izquierda */
  padding: 0.5em 0; /* Espacio superior e inferior para esta sección */
}
.hero-carousel-wrapper {
  flex: 2; /* **Permite que el carrusel ocupe el doble de espacio** que el texto (1:2 de proporción) */
  max-width: 65%; /* Aumentamos ligeramente el ancho máximo del carrusel para acomodar la proporción */
  padding-left: 1em; /* Espacio a la izquierda del carrusel */
  min-height: 400px; /* **Aumentamos la altura del carrusel**. Ajusta este valor según necesites. */
  display: flex; /* Añadimos display flex para alinear el contenido del carrusel si es necesario */
  justify-content: center; /* Centra horizontalmente el contenido dentro del carrusel */
  align-items: center; /* Centra verticalmente el contenido dentro del carrusel */
}
.hero-text-content h1 {
  font-size: 3.5em;
  font-weight: 600;
  margin: 0;
  line-height: 1.2em;
  letter-spacing: -0.035em;
}

.main-carousel-container {
  width: 100%; 
  height: 100%; 
  object-fit: cover; 
}
@media screen and (max-width: 980px) {
  .hero-flex-container {
    flex-direction: column;
    text-align: center; 
    padding: 2em 0; /* Ajusta el padding para pantallas pequeñas */
  }
  .hero-text-content, .hero-carousel-wrapper {
    max-width: 90%; 
    padding: 0; /* Elimina el padding lateral para que ocupe más espacio */
text-align: center;

  }
  .hero-text-content {
    text-align: center; /* Asegura que el texto se centre en móvil */
    margin-left: auto; /* Elimina el margen izquierdo en móvil */
  }
	.hero-text-content h1 {
  font-size: 2.2em;
  font-weight: 600;
  margin: 0;
  line-height: auto;
}
}
