@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Merriweather:ital,opsz,wght@0,18..144,300..900;1,18..144,300..900&display=swap");
.achievements {
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
  padding: 4rem 2rem;
  background: #111;
  color: white;
}
.achievements .title {
  font-size: 1.5rem;
  text-transform: uppercase;
  margin-bottom: 2rem;
  letter-spacing: 1px;
}
.achievements .achievements-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  max-width: 100%;
  overflow-x: hidden;
}
.achievements .achievement {
  flex: 1 1 calc(25% - 2rem);
  max-width: 250px;
  min-width: 150px;
  text-align: center;
  text-align: center;
  color: white;
}
.achievements .achievement .icon {
  font-size: 3rem;
  color: #909df2;
  margin-bottom: 1rem;
}
.achievements .achievement .number {
  font-size: 2rem;
  font-weight: bold;
}
.achievements .achievement .description {
  font-size: 0.9rem;
  text-transform: uppercase;
  opacity: 0.8;
}

@media (min-width: 768px) {
  .achievements-grid {
    flex-direction: column;
    align-items: center;
  }
}
/****
  RESET
  */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  max-width: 100%;
}

html,
body {
  font-family: "Lato", sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  background-color: #fafafa;
  color: #333333;
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
  height: 100%;
  touch-action: pan-y;
}

.font-principal {
  font-family: "Lato", sans-serif !important;
}

.font-secundaria {
  font-family: "Lato", sans-serif !important;
}

.font-titulares {
  font-family: "Lato", sans-serif !important;
}

.icon {
  width: 3rem;
  height: auto;
  margin: auto;
  transition: filter 0.3s;
}
.icon:hover {
  filter: grayscale(100%);
}

body {
  -webkit-user-select: none; /* Chrome, Safari */
  -moz-user-select: none; /* Firefox */
  -ms-user-select: none; /* Internet Explorer/Edge */
  user-select: none; /* Estándar */
}

.scroll-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: #ffc107;
  color: white;
  font-size: 24px;
  text-align: center;
  line-height: 50px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
  transition: opacity 0.3s, transform 0.3s;
  z-index: 1300;
}

.seo-extra {
  margin-top: 4rem;
  padding: 2rem 1rem;
  text-align: center;
  border-top: 1px solid #ddd;
  background-color: white;
  font-size: 0.95rem;
  color: #555;
}

.seo-extra h2 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #222;
}

.seo-extra p {
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.construccion {
  width: 100%;
  text-align: center;
  font-size: 0.7rem;
  background-color: #223829;
  color: #f5f5f5;
  padding: 1rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 0;
}

.hero,
.fullscreen,
.seccion-100vh {
  min-height: 100svh;
}

@supports (height: 100dvh) {
  .hero,
  .fullscreen,
  .seccion-100vh {
    min-height: 100dvh;
  }
}
.btn {
  background-color: #f8f9fa;
  color: #343a40;
  border: none;
  padding: 1rem 1rem;
  font-size: 1rem;
  border-radius: 0.25rem;
  cursor: pointer;
  transition: background 0.3s, transform 0.1s;
  /* Para que los pseudo-elementos se sitúen correctamente */
  position: relative;
  overflow: hidden;
  z-index: 1;
  margin: 1rem;
}
.btn:hover {
  /* Ajuste sutil en hover, mezclando la base */
  background-color: rgba(248, 249, 250, 0.5);
}
.btn:active {
  transform: scale(0.98);
}
.btn:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(248, 249, 250, 0.5);
}
.btn-primary {
  background-color: #82a929;
  color: #fff;
  border: none;
  padding: 1rem 1rem;
  font-size: 1rem;
  border-radius: 0.25rem;
  cursor: pointer;
  transition: background 0.3s, transform 0.1s;
  /* Para que los pseudo-elementos se sitúen correctamente */
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.btn-primary:hover {
  /* Ajuste sutil en hover, mezclando la base */
  background-color: rgba(130, 169, 41, 0.5);
}
.btn-primary:active {
  transform: scale(0.98);
}
.btn-primary:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(130, 169, 41, 0.5);
}
.btn-secondary {
  background-color: #b6d16b;
  color: #fff;
  border: none;
  padding: 1rem 1rem;
  font-size: 1rem;
  border-radius: 0.25rem;
  cursor: pointer;
  transition: background 0.3s, transform 0.1s;
  /* Para que los pseudo-elementos se sitúen correctamente */
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.btn-secondary:hover {
  /* Ajuste sutil en hover, mezclando la base */
  background-color: rgba(182, 209, 107, 0.5);
}
.btn-secondary:active {
  transform: scale(0.98);
}
.btn-secondary:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(182, 209, 107, 0.5);
}
.btn-success {
  background-color: #28a745;
  color: #fff;
  border: none;
  padding: 1rem 1rem;
  font-size: 1rem;
  border-radius: 0.25rem;
  cursor: pointer;
  transition: background 0.3s, transform 0.1s;
  /* Para que los pseudo-elementos se sitúen correctamente */
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.btn-success:hover {
  /* Ajuste sutil en hover, mezclando la base */
  background-color: rgba(40, 167, 69, 0.5);
}
.btn-success:active {
  transform: scale(0.98);
}
.btn-success:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.5);
}
.btn-danger {
  background-color: #dc3545;
  color: #fff;
  border: none;
  padding: 1rem 1rem;
  font-size: 1rem;
  border-radius: 0.25rem;
  cursor: pointer;
  transition: background 0.3s, transform 0.1s;
  /* Para que los pseudo-elementos se sitúen correctamente */
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.btn-danger:hover {
  /* Ajuste sutil en hover, mezclando la base */
  background-color: rgba(220, 53, 69, 0.5);
}
.btn-danger:active {
  transform: scale(0.98);
}
.btn-danger:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.5);
}
.btn-warning {
  background-color: #ffc107;
  color: #212529;
  border: none;
  padding: 1rem 1rem;
  font-size: 1rem;
  border-radius: 0.25rem;
  cursor: pointer;
  transition: background 0.3s, transform 0.1s;
  /* Para que los pseudo-elementos se sitúen correctamente */
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.btn-warning:hover {
  /* Ajuste sutil en hover, mezclando la base */
  background-color: rgba(255, 193, 7, 0.5);
}
.btn-warning:active {
  transform: scale(0.98);
}
.btn-warning:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 193, 7, 0.5);
}
.btn-info {
  background-color: #17a2b8;
  color: #fff;
  border: none;
  padding: 1rem 1rem;
  font-size: 1rem;
  border-radius: 0.25rem;
  cursor: pointer;
  transition: background 0.3s, transform 0.1s;
  /* Para que los pseudo-elementos se sitúen correctamente */
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.btn-info:hover {
  /* Ajuste sutil en hover, mezclando la base */
  background-color: rgba(23, 162, 184, 0.5);
}
.btn-info:active {
  transform: scale(0.98);
}
.btn-info:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(23, 162, 184, 0.5);
}
.btn-light {
  background-color: #f8f9fa;
  color: #212529;
  border: none;
  padding: 1rem 1rem;
  font-size: 1rem;
  border-radius: 0.25rem;
  cursor: pointer;
  transition: background 0.3s, transform 0.1s;
  /* Para que los pseudo-elementos se sitúen correctamente */
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.btn-light:hover {
  /* Ajuste sutil en hover, mezclando la base */
  background-color: rgba(248, 249, 250, 0.5);
}
.btn-light:active {
  transform: scale(0.98);
}
.btn-light:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(248, 249, 250, 0.5);
}
.btn-dark {
  background-color: #343a40;
  color: #fff;
  border: none;
  padding: 1rem 1rem;
  font-size: 1rem;
  border-radius: 0.25rem;
  cursor: pointer;
  transition: background 0.3s, transform 0.1s;
  /* Para que los pseudo-elementos se sitúen correctamente */
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.btn-dark:hover {
  /* Ajuste sutil en hover, mezclando la base */
  background-color: rgba(52, 58, 64, 0.5);
}
.btn-dark:active {
  transform: scale(0.98);
}
.btn-dark:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(52, 58, 64, 0.5);
}

.btn2 {
  position: relative;
  color: #82a929;
  font-size: 1rem;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 3px;
  max-width: max-content;
  border: 2px solid #82a929;
  border-radius: 5px;
  padding: 12px 45px;
  overflow: hidden !important;
  z-index: 1;
}

.button .text {
  transition: 0.25s ease;
}

.btn2 .text-2 {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: max-content;
  color: #b6d16b;
}

.hero .slider-item.active .slider-reveal {
  animation: sliderReveal 1s ease forwards;
}

@keyframes sliderReveal {
  0% {
    transform: translateY(30px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
.btn-lg {
  padding: 0.75rem 1.5rem;
  font-size: 1.25rem;
  border-radius: 0.25rem;
}

.btn-sm {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  border-radius: 0.25rem;
}

.container {
  margin: 0 auto;
  padding-top: 80px;
}
.container-sm {
  width: 100vw !important;
  min-width: 100vw !important;
  margin: 0 auto;
  padding: 0 1rem;
  border: 1px solid rgba(255, 0, 0, 0.105);
}
.container-md {
  width: 100vw !important;
  min-width: 100vw !important;
  margin: 0 auto;
  padding: 0 1rem;
  border: 1px solid rgba(255, 0, 0, 0.105);
}
.container-lg {
  width: 100vw !important;
  min-width: 100vw !important;
  margin: 0 auto;
  padding: 0 1rem;
  border: 1px solid rgba(255, 0, 0, 0.105);
}
.container-xl {
  width: 100vw !important;
  min-width: 100vw !important;
  margin: 0 auto;
  padding: 0 1rem;
  border: 1px solid rgba(255, 0, 0, 0.105);
}
.container-xxl {
  width: 100vw !important;
  min-width: 100vw !important;
  margin: 0 auto;
  padding: 0 1rem;
  border: 1px solid rgba(255, 0, 0, 0.105);
}

.separator {
  width: 100%;
  height: 2px;
  background: #ddd;
  margin: 2rem 0;
  border-radius: 1px;
}

.separator-dark {
  width: 100%;
  height: 2px;
  background: #333;
  margin: 2rem 0;
  border-radius: 1px;
}

.separator-light {
  width: 100%;
  height: 2px;
  background: #eee;
  margin: 2rem 0;
  border-radius: 1px;
}

.separator-dashed {
  width: 100%;
  height: 2px;
  background: #bbb;
  margin: 2rem 0;
  border-radius: 1px;
  background: none;
  border-top: 2px "dashed" #bbb;
  height: 0;
}

.separator-double {
  width: 100%;
  height: 4px;
  background: #999;
  margin: 2rem 0;
  border-radius: 1px;
  background: none;
  border-top: 4px "double" #999;
  height: 0;
}

.text-start {
  text-align: left !important;
}

.text-center {
  text-align: center !important;
}

.text-end {
  text-align: right !important;
}

.display-1 {
  font-size: 5rem;
  font-weight: 300;
}

.display-2 {
  font-size: 4.5rem;
  font-weight: 300;
}

.display-3 {
  font-size: 4rem;
  font-weight: 300;
}

.display-4 {
  font-size: 3.5rem;
  font-weight: 300;
}

.fw-light {
  font-weight: 300 !important;
}

.fw-normal {
  font-weight: 400 !important;
}

.fw-bold {
  font-weight: 700 !important;
}

.carousel {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 10px;
}
.carousel .carousel-inner {
  display: flex;
  transition: transform 0.5s ease-in-out;
}
.carousel .carousel-item {
  min-width: 100%;
  transition: opacity 0.5s ease-in-out;
}
.carousel .carousel-item img {
  width: 100%;
  display: block;
}
.carousel .carousel-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  font-size: 1.5rem;
  transition: background 0.3s;
}
.carousel .carousel-control:hover {
  background: rgba(0, 0, 0, 0.8);
}
.carousel .carousel-control-prev {
  left: 10px;
}
.carousel .carousel-control-next {
  right: 10px;
}
.carousel .carousel-indicators {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}
.carousel .carousel-indicators button {
  width: 12px;
  height: 12px;
  background: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s;
}
.carousel .carousel-indicators button.active {
  background: red;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  color: black;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}
.modal.active {
  opacity: 1;
  visibility: visible;
}
.modal .modal-content {
  background: white;
  padding: 3rem;
  border-radius: 10px;
  outline: 1px solid #82a929; /* Se ve como un borde interno */
  outline-offset: -15px; /* Lo desplaza hacia dentro */
  width: 90%;
  max-width: 500px;
  text-align: center;
  position: relative;
}
.modal .modal-close {
  position: absolute;
  top: 20px;
  right: 30px;
  width: 40px;
  height: 40px;
  background-color: #b6d16b;
  border-radius: 50%;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}
.modal .modal-icon {
  position: absolute;
  top: 30px;
  left: 30px;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}

.modal-logo {
  width: 50%;
  max-width: 400px;
  margin: 1rem auto;
}
.modal-logo img {
  width: 100%;
}

.modal-dark {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(208, 208, 208, 0.8);
  color: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}
.modal-dark.active {
  opacity: 1;
  visibility: visible;
}
.modal-dark .modal-content {
  background: #333;
  padding: 3rem;
  border-radius: 10px;
  outline: 1px solid #82a929; /* Se ve como un borde interno */
  outline-offset: -15px; /* Lo desplaza hacia dentro */
  width: 90%;
  max-width: 500px;
  text-align: center;
  position: relative;
}
.modal-dark .modal-close {
  position: absolute;
  top: 20px;
  right: 30px;
  width: 40px;
  height: 40px;
  background-color: #b6d16b;
  border-radius: 50%;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}
.modal-dark .modal-icon {
  position: absolute;
  top: 30px;
  left: 30px;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}

.modal-light {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.7);
  color: black;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}
.modal-light.active {
  opacity: 1;
  visibility: visible;
}
.modal-light .modal-content {
  background: #f8f9fa;
  padding: 3rem;
  border-radius: 10px;
  outline: 1px solid #82a929; /* Se ve como un borde interno */
  outline-offset: -15px; /* Lo desplaza hacia dentro */
  width: 90%;
  max-width: 500px;
  text-align: center;
  position: relative;
}
.modal-light .modal-close {
  position: absolute;
  top: 20px;
  right: 30px;
  width: 40px;
  height: 40px;
  background-color: #b6d16b;
  border-radius: 50%;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}
.modal-light .modal-icon {
  position: absolute;
  top: 30px;
  left: 30px;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}

.modal-lg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  color: black;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}
.modal-lg.active {
  opacity: 1;
  visibility: visible;
}
.modal-lg .modal-content {
  background: white;
  padding: 3rem;
  border-radius: 10px;
  outline: 1px solid #82a929; /* Se ve como un borde interno */
  outline-offset: -15px; /* Lo desplaza hacia dentro */
  width: 95%;
  max-width: 800px;
  text-align: center;
  position: relative;
}
.modal-lg .modal-close {
  position: absolute;
  top: 20px;
  right: 30px;
  width: 40px;
  height: 40px;
  background-color: #b6d16b;
  border-radius: 50%;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}
.modal-lg .modal-icon {
  position: absolute;
  top: 30px;
  left: 30px;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}

.cta {
  background: #111;
  color: white;
  text-align: center;
  padding: 4rem 2rem;
}
.cta .cta-title {
  font-size: 1.5rem;
  text-transform: uppercase;
  margin: 1.5rem;
  letter-spacing: 1px;
}
.cta .cta-button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  border: 2px solid white;
  background: transparent;
  color: white;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  margin: 1rem;
  border-radius: 5px;
}
.cta .cta-button:hover {
  background: rgba(25.5, 25.5, 25.5, 0);
  color: rgb(229.5, 229.5, 229.5);
}
.cta a {
  text-decoration: none;
  color: #f8f9fa;
}

.cta-primary {
  background: #d0e7ff;
  color: rgb(73, 73, 73);
  text-align: center;
  padding: 4rem 2rem;
}
.cta-primary .cta-title {
  font-size: 1.5rem;
  text-transform: uppercase;
  margin: 1.5rem;
  letter-spacing: 1px;
}
.cta-primary .cta-button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  border: 2px solid rgb(148, 79, 79);
  background: white;
  color: #46698e;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  margin: 1rem;
  border-radius: 5px;
}
.cta-primary .cta-button:hover {
  background: white;
  color: rgb(53.1603773585, 79.7405660377, 107.8396226415);
}
.cta-primary a {
  text-decoration: none;
  color: #f8f9fa;
}

.cta-secondary {
  background: #f8f9fa;
  color: #333;
  text-align: center;
  padding: 4rem 2rem;
}
.cta-secondary .cta-title {
  font-size: 1.5rem;
  text-transform: uppercase;
  margin: 1.5rem;
  letter-spacing: 1px;
}
.cta-secondary .cta-button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  border: 2px solid #007bff;
  background: #007bff;
  color: white;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  margin: 1rem;
  border-radius: 5px;
}
.cta-secondary .cta-button:hover {
  background: rgb(51, 149.4, 255);
  color: rgb(229.5, 229.5, 229.5);
}
.cta-secondary a {
  text-decoration: none;
  color: #f8f9fa;
}

.cta-danger {
  background: #dc3545;
  color: white;
  text-align: center;
  padding: 4rem 2rem;
}
.cta-danger .cta-title {
  font-size: 1.5rem;
  text-transform: uppercase;
  margin: 1.5rem;
  letter-spacing: 1px;
}
.cta-danger .cta-button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  border: 2px solid white;
  background: white;
  color: #dc3545;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  margin: 1rem;
  border-radius: 5px;
}
.cta-danger .cta-button:hover {
  background: white;
  color: rgb(189.2151898734, 32.7848101266, 47.7721518987);
}
.cta-danger a {
  text-decoration: none;
  color: #f8f9fa;
}

.cta-success {
  background: #28a745;
  color: white;
  text-align: center;
  padding: 4rem 2rem;
}
.cta-success .cta-title {
  font-size: 1.5rem;
  text-transform: uppercase;
  margin: 1.5rem;
  letter-spacing: 1px;
}
.cta-success .cta-button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  border: 2px solid white;
  background: white;
  color: #28a745;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  margin: 1rem;
  border-radius: 5px;
}
.cta-success .cta-button:hover {
  background: white;
  color: rgb(30.1449275362, 125.8550724638, 52);
}
.cta-success a {
  text-decoration: none;
  color: #f8f9fa;
}

@media (min-width: 768px) {
  .cta {
    padding: 3rem 1.5rem;
  }
}
.cta {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
}
.cta.visible {
  opacity: 1;
  transform: translateY(0);
}

.header .btn {
  display: block;
  margin-inline-start: auto;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  height: 10vh;
  width: 100%;
  display: flex;
  flex-direction: row;
  vertical-align: middle;
  align-content: center;
  align-items: center;
  background-color: #82a929;
  color: white;
  z-index: 4;
}
.header .menu-hamburguesa {
  width: 40px;
  height: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  z-index: 10;
  margin: 0 5px;
}
.header .b1 {
  width: 10%;
  height: 100%;
  padding-left: 1em;
  justify-content: center;
  align-content: center;
}
.header .b2 {
  width: 80%;
  height: 100%;
  justify-content: center;
  align-content: center;
}
.header .b3 {
  width: 10%;
  height: 100%;
  justify-content: center !important;
  align-content: center !important;
}
.header .b3 ion-icon {
  width: 48px !important;
  height: 48px !important;
}
.header .logo {
  width: 10%;
  height: 100%;
  justify-content: center;
  align-content: center;
  padding: 1em;
}
.header .nav-open-btn {
  position: fixed;
  top: 0;
  right: 0;
  width: 10%;
  align-content: center;
  vertical-align: middle;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 10px;
}

.header .container .logo {
  outline: none;
}

/* ╭─────────── VARIABLES CSS (opcionales) ──────────╮
   │ Si quieres poder personalizar rápido, déjalas.  │
   ╰─────────────────────────────────────────────────╯ */
:root {
  --icon-size: 3rem;
  --icon-bg: transparent;
  --icon-color: #000;
  --dark: #212529;
}

/* ─────────────── ICONO + TEXTO ─────────────── */
.feature-icon {
  font-size: var(--icon-size);
  background: var(--icon-bg);
  color: var(--icon-color);
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}

/* Efecto “levantar” al pasar el ratón */
.feature-icon:hover {
  transform: translateY(-5px);
}

/* Elementos internos */
.feature-icon .icon {
  font-size: var(--icon-size);
  color: inherit;
  margin-bottom: 0.5rem;
}

.feature-icon .title {
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.feature-icon .description {
  font-size: 1rem;
  color: #6c757d;
}

/* ───────────── SECCIÓN DE FEATURES ───────────── */
.features {
  display: flex;
  flex-wrap: wrap; /* permite saltar a nueva fila */
  justify-content: center; /* centra columnas cuando sobra espacio */
  max-width: 1400px;
  margin: auto;
  align-items: stretch;
  gap: 0.5rem; /* separación uniforme */
  background-color: #fff;
  padding: 0.5rem;
  /* debug */
}

.feature {
  flex: 1 1 400px; /* crece, encoge y mínimo 400px */
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem;
  padding: 1rem;
  background-color: rgba(255, 242, 0, 0.05);
  border: 1px solid rgba(156, 212, 255, 0.4);
  border-radius: 10px;
}

.feature h5 {
  border-bottom: 1px solid rgba(156, 212, 255, 0.4);
  text-align: center;
}

.feature .title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #343a40;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.feature .text {
  font-size: 1rem;
  color: #6c757d;
}

/* ─────────────── BREAKPOINT md (≥ 768 px) ─────────────── */
@media (min-width: 768px) {
  .features {
    grid-template-columns: 1fr 1fr;
  }
}
/* ─────────────── BREAKPOINT lg (≥ 1024 px) ────────────── */
@media (min-width: 1024px) {
  .features {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.footer {
  background: rgb(213, 243, 244);
  color: #333;
  text-align: center;
  padding: 2rem 1rem;
  background-image: linear-gradient(140deg, #fffff9 25%, #fff9ff 50%, #f9ffff 75%);
}
.footer .footer-logo {
  font-size: 1.5rem;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.footer .footer-logo img {
  height: 55px;
  transition: height 0.3s;
}
.footer .footer-social {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.footer .footer-social a {
  font-size: 1.5rem;
  color: #333;
  transition: color 0.3s ease-in-out;
}
.footer .footer-social a:hover {
  color: #007bff;
}
.footer .footer-contacto a {
  text-decoration: none;
  color: #001249;
  margin: 1rem;
}
.footer .footer-contacto ion-icon {
  font-size: 1.1em;
}
.footer .footer-text {
  color: #888;
}
.footer .footer-copy {
  color: #001249;
}

@media (min-width: 768px) {
  .footer-social {
    flex-wrap: wrap;
  }
}
.footer {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
  border-top: 1px solid rgba(255, 0, 0, 0.2);
}
.footer.visible {
  opacity: 1;
  transform: translateY(0);
}

main {
  padding: 20px;
  color: #343a40;
  min-height: calc(100vh - 120px);
}

main h1 {
  font-size: calc(2rem + 1vw);
  color: hsl(199, 69%, 84%);
}

main h2 {
  font-size: calc(1.4rem + 0.8vw);
  color: hsl(199, 69%, 84%);
}

main h3 {
  font-size: calc(1.2rem + 0.6vw);
  color: hsl(199, 69%, 84%);
}

main p {
  font-size: calc(1.1rem + 0.8vw);
  font-weight: 500;
  font-family: "Lato", sans-serif;
  line-height: 1.5;
  letter-spacing: 0.5px;
  margin-block-end: 0.5em;
}

main a {
  border: 1px solid red;
  display: contents;
  font-size: calc(1rem + 0.4vw);
  color: hsl(217, 24%, 59%);
  text-decoration: underline;
  transition: color 0.25s ease;
}

main a:hover {
  color: hsl(199, 69%, 84%);
}

main img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
}

main ul {
  padding-left: 20px;
  list-style: disc;
}

.navbar {
  box-sizing: border-box;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: transparent;
  color: black;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  transition: all 0.3s ease-in-out;
  z-index: 100;
  backdrop-filter: blur(5px);
  color: hsl(0, 0%, 0%);
}
.navbar.scrolled {
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
}
.navbar .logo {
  width: 70%;
  height: auto;
  max-width: 300px;
  transition: height 0.3s;
}
.navbar .logo img {
  width: 100%;
  z-index: 1102;
}
.navbar .nav-links {
  display: none !important;
}
.navbar .nav-links ul {
  display: flex;
  list-style: none !important;
  gap: 1rem;
}
@media (min-width: 768px) {
  .navbar .nav-links {
    display: flex !important;
    gap: 1.5rem;
  }
  .navbar .nav-links a {
    font-family: "Lato", sans-serif;
    text-decoration: none;
    color: rgb(20, 52, 4);
    font-size: 0.95rem;
    letter-spacing: 1px;
    transition: color 0.3s;
  }
  .navbar .nav-links a:hover {
    color: #82a929;
  }
}
.navbar .hamburger {
  font-size: 2rem;
  background: none;
  border: none;
  color: #343a40;
  cursor: pointer;
  display: block;
  position: relative;
  width: 40px;
  height: 40px;
  z-index: 1001;
}
.navbar .hamburger span {
  display: block;
  width: 35px;
  height: 5px;
  background-color: #343a40;
  border-radius: 5px;
  position: absolute;
  left: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.navbar .hamburger span:nth-child(1) {
  top: 8px;
}
.navbar .hamburger span:nth-child(2) {
  top: 18px;
}
.navbar .hamburger span:nth-child(3) {
  top: 28px;
}
.navbar .hamburger.scrolled {
  color: #bdbdbd;
}
.navbar .hamburger.scrolled span {
  background-color: #bdbdbd;
}
.navbar .hamburger.active span:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}
.navbar .hamburger.active span:nth-child(2) {
  opacity: 0;
}
.navbar .hamburger.active span:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}

.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(221, 221, 221, 0.97);
  color: black;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease-in-out;
  z-index: 100 !important;
}
.menu-overlay.active {
  opacity: 1;
  pointer-events: all;
}
.menu-overlay .overlay-menu {
  list-style: none;
  text-align: center;
  width: 50%;
}
.menu-overlay .overlay-menu li {
  margin: 1rem 0;
  width: 100%;
  display: flex;
  text-align: center;
}
.menu-overlay .overlay-menu li p {
  width: 100%;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #417452;
}
.menu-overlay .overlay-menu li a {
  text-decoration: none;
  width: 100%;
  color: #343a40;
  font-size: 1.5rem;
  transition: 0.3s ease-in-out;
  border-right: 1px solid #101f15;
  border-bottom: 1px solid #101f15;
  border-radius: 10px;
}
.menu-overlay .overlay-menu li a:hover {
  background-color: rgba(255, 204, 0, 0.5176470588);
}

.hero-light {
  background: #edf4f1;
  text-align: center;
}
.hero-light .hero-content {
  max-width: 1400px;
  margin: auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-direction: row;
  align-items: stretch;
  gap: 2rem;
  padding: 5rem;
}
.hero-light .hero-content .continuacion {
  margin: 3rem 0 1rem 0;
}
.hero-light .hero-content .hero-text {
  flex: 1;
  padding: 2rem;
  text-align: left;
}
.hero-light .hero-content .hero-text ul li {
  margin-left: 1rem;
}
.hero-light .hero-content .hero-text p {
  font-size: 1.1rem;
  margin: 1rem 0;
}
.hero-light .hero-content .hero-text .comentario {
  font-style: italic;
  color: #a6652c;
}
.hero-light .hero-content .hero-text .link {
  text-decoration: none;
  font-size: 1.1rem;
  letter-spacing: 1px;
  color: #276a43;
}
.hero-light .hero-content h1 {
  font-family: "Merriweather", serif;
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 1px;
}
.hero-light .hero-content h2 {
  font-family: "Lato", sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  text-transform: uppercase;
}
.hero-light .hero-content h3 {
  font-family: "Lato", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  margin: 0.5rem 0;
}
.hero-light .hero-content .hero-button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-size: 1.2rem;
  background: #276a43;
  color: white;
  border-radius: 10px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s;
  margin: 1rem 0;
}
.hero-light .hero-content .hero-button:hover {
  background: black;
  color: white;
}
.hero-light .hero-content .hero-image {
  display: flex;
  width: 50%;
  height: auto;
  max-height: 400px;
  overflow: hidden;
  margin: auto;
  border-radius: 20px;
}
.hero-light .hero-content .hero-image img {
  object-fit: cover; /* Cubre todo el espacio recortando excesos. */
  width: 100%;
  height: auto;
}
@media (max-width: 1024px) {
  .hero-light .hero-content {
    flex-direction: column;
    padding: clamp(1.25rem, 4vw, 2rem);
    gap: clamp(1rem, 3vw, 1.5rem);
  }
  .hero-light .hero-content .hero-text {
    padding: 1rem;
  }
  .hero-light .hero-content .hero-image {
    width: 100%;
    height: min(45vh, 360px);
  }
}

.hero-dark {
  background: #dce6e8;
  text-align: center;
}
.hero-dark .hero-content {
  max-width: 1400px;
  margin: auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-direction: row;
  align-items: stretch;
  gap: 2rem;
  padding: 5rem;
}
.hero-dark .hero-content .continuacion {
  margin: 3rem 0 1rem 0;
}
.hero-dark .hero-content .hero-text {
  flex: 1;
  padding: 2rem;
  text-align: left;
}
.hero-dark .hero-content .hero-text ul li {
  margin-left: 1rem;
}
.hero-dark .hero-content .hero-text p {
  font-size: 1.1rem;
  margin: 1rem 0;
}
.hero-dark .hero-content .hero-text .comentario {
  font-style: italic;
  color: #a6652c;
}
.hero-dark .hero-content .hero-text .link {
  text-decoration: none;
  font-size: 1.1rem;
  letter-spacing: 1px;
  color: #276a43;
}
.hero-dark .hero-content h1 {
  font-family: "Merriweather", serif;
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 1px;
}
.hero-dark .hero-content h2 {
  font-family: "Lato", sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  text-transform: uppercase;
}
.hero-dark .hero-content h3 {
  font-family: "Lato", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  margin: 0.5rem 0;
}
.hero-dark .hero-content .hero-button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-size: 1.2rem;
  background: #276a43;
  color: white;
  border-radius: 10px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s;
  margin: 1rem 0;
}
.hero-dark .hero-content .hero-button:hover {
  background: black;
  color: white;
}
.hero-dark .hero-content .hero-image {
  display: flex;
  width: 50%;
  height: auto;
  max-height: 400px;
  overflow: hidden;
  margin: auto;
  border-radius: 20px;
}
.hero-dark .hero-content .hero-image img {
  object-fit: cover; /* Cubre todo el espacio recortando excesos. */
  width: 100%;
  height: auto;
}
@media (max-width: 1024px) {
  .hero-dark .hero-content {
    flex-direction: column;
    padding: clamp(1.25rem, 4vw, 2rem);
    gap: clamp(1rem, 3vw, 1.5rem);
  }
  .hero-dark .hero-content .hero-text {
    padding: 1rem;
  }
  .hero-dark .hero-content .hero-image {
    width: 100%;
    height: min(45vh, 360px);
  }
}

.hero-primary {
  background: #badbff;
  text-align: center;
}
.hero-primary .hero-content {
  max-width: 1400px;
  margin: auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-direction: row;
  align-items: stretch;
  gap: 2rem;
  padding: 5rem;
}
.hero-primary .hero-content .continuacion {
  margin: 3rem 0 1rem 0;
}
.hero-primary .hero-content .hero-text {
  flex: 1;
  padding: 2rem;
  text-align: left;
}
.hero-primary .hero-content .hero-text ul li {
  margin-left: 1rem;
}
.hero-primary .hero-content .hero-text p {
  font-size: 1.1rem;
  margin: 1rem 0;
}
.hero-primary .hero-content .hero-text .comentario {
  font-style: italic;
  color: #a6652c;
}
.hero-primary .hero-content .hero-text .link {
  text-decoration: none;
  font-size: 1.1rem;
  letter-spacing: 1px;
  color: #276a43;
}
.hero-primary .hero-content h1 {
  font-family: "Merriweather", serif;
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 1px;
}
.hero-primary .hero-content h2 {
  font-family: "Lato", sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  text-transform: uppercase;
}
.hero-primary .hero-content h3 {
  font-family: "Lato", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  margin: 0.5rem 0;
}
.hero-primary .hero-content .hero-button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-size: 1.2rem;
  background: #276a43;
  color: white;
  border-radius: 10px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s;
  margin: 1rem 0;
}
.hero-primary .hero-content .hero-button:hover {
  background: black;
  color: white;
}
.hero-primary .hero-content .hero-image {
  display: flex;
  width: 50%;
  height: auto;
  max-height: 400px;
  overflow: hidden;
  margin: auto;
  border-radius: 20px;
}
.hero-primary .hero-content .hero-image img {
  object-fit: cover; /* Cubre todo el espacio recortando excesos. */
  width: 100%;
  height: auto;
}
@media (max-width: 1024px) {
  .hero-primary .hero-content {
    flex-direction: column;
    padding: clamp(1.25rem, 4vw, 2rem);
    gap: clamp(1rem, 3vw, 1.5rem);
  }
  .hero-primary .hero-content .hero-text {
    padding: 1rem;
  }
  .hero-primary .hero-content .hero-image {
    width: 100%;
    height: min(45vh, 360px);
  }
}

:root {
  --pill-bg: #eaf5ee;
  --pill-bd: #3f865e;
  --pill-tx: #2c6046;
  --pill-hbg: #3f865e;
  --pill-htx: #ffffff;
  --focus: #1c7c54;
}

.cliente-links {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 0.75rem;
  padding: 0;
  list-style: none;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.9rem;
  border: 2px solid var(--pill-bd);
  border-radius: 9px;
  background: var(--pill-bg);
  color: var(--pill-tx);
  text-decoration: none;
  font-weight: 600;
}

.pill:hover {
  background: var(--pill-hbg);
  color: var(--pill-htx);
}

.pill:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 2px;
}

/* Variante compacta en línea si prefieres texto subrayado moderno */
.links-inline a {
  color: var(--pill-bd);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 2px;
}

.links-inline a:hover {
  color: var(--pill-tx);
}

.pill ion-icon,
.pill svg {
  width: 1.1rem;
  height: 1.1rem;
  flex: 0 0 auto;
}

.fondo1 {
  margin-top: 170px;
  background: url("public/assets/images/IMG-20171114-WA0024.jpg") no-repeat top center;
  background-size: cover;
  width: 100%;
  height: auto;
  min-height: 400px;
  max-height: 700px;
}

.video-container {
  position: relative;
  width: 100% !important;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.video-background {
  width: 100% !important;
  height: auto;
}

.audio-button {
  position: absolute;
  bottom: 20px;
  left: 20px;
  padding: 10px 15px;
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
  border: none;
  cursor: pointer;
  border-radius: 5px;
  font-size: 16px;
}

.audio-button:hover {
  background-color: rgba(0, 0, 0, 0.9);
}

.gallery-container {
  padding: 2rem;
  text-align: center;
}
.gallery-container .gallery-title {
  font-family: "Lato", sans-serif;
  font-size: 1.8rem;
  font-weight: 400;
  margin-bottom: 1.2rem;
  color: hsl(0, 0%, 0%);
}
.gallery-container .gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
  padding: 0;
  list-style: none;
}
.gallery-container .gallery .gallery-item {
  /* Si deseas que cada "item" tenga una altura fija, defínela aquí: */
  display: flex;
  flex-direction: column;
  height: 350px;
  color: hsl(0, 0%, 0%);
  /* También puedes usar aspect-ratio si prefieres un formato específico: 
     aspect-ratio: 16/9; */
  overflow: hidden;
  border-radius: 5px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.gallery-container .gallery .gallery-item .gallery-image {
  border: 1px solid gray;
  height: 200px;
  max-height: 200px;
  overflow: hidden;
}
.gallery-container .gallery .gallery-item .gallery-image img {
  /* Para que la imagen cubra el 100% del contenedor (incluso al 110%). */
  width: 110%; /* La clave para “llenar” un poco más. */
  height: 110%; /* Igual en altura. */
  object-fit: cover; /* Cubre todo el espacio recortando excesos. */
  display: block;
  transition: transform 0.3s ease;
}
.gallery-container .gallery .gallery-item .gallery-image img:hover {
  transform: scale(1.05);
}
.gallery-container .gallery .gallery-item .gallery-text {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin: auto;
  height: auto;
}
.gallery-container .gallery .gallery-item .gallery-text h2 {
  font-weight: 400;
  width: 100%;
  margin-top: 0.5rem;
}
.gallery-container .gallery .gallery-item .gallery-text p {
  width: 100%;
  margin: 0.5rem auto;
  color: rgba(0, 0, 0, 0.75);
  padding: 0 0.5rem;
}

.testimonial {
  text-align: center;
  color: #333;
  padding: 4rem 2rem;
}
.testimonial .testimonial-title {
  font-size: 1.5rem;
  text-transform: uppercase;
  margin-bottom: 2rem;
  letter-spacing: 1px;
}
.testimonial .testimonial-avatars {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.testimonial .testimonial-avatars img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  transition: transform 0.3s ease-in-out;
}
.testimonial .testimonial-avatars img:hover {
  transform: scale(1.1);
}
.testimonial .testimonial-text {
  font-size: 1rem;
  color: #6c757d;
  max-width: 600px;
  margin: 0 auto 1.5rem;
}
.testimonial .testimonial-author {
  font-weight: bold;
  margin-top: 1rem;
  text-transform: uppercase;
  font-size: 0.9rem;
}
.testimonial .testimonial-company {
  font-size: 0.8rem;
  color: #888;
}

@media (min-width: 768px) {
  .testimonial-avatars {
    flex-wrap: wrap;
  }
}
.testimonial {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
}
.testimonial.visible {
  opacity: 1;
  transform: translateY(0);
}

.principal-light {
  background: #a0cfeb;
  color: #223829;
  display: flex;
  flex-direction: row;
  width: 100%;
  margin: 0;
  /* ─────────────── BREAKPOINT md (≥ 768 px) ─────────────── */
}
.principal-light .container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  align-content: center;
  justify-content: center;
  justify-items: center;
  width: 100%;
  max-width: 1400px;
  padding: 5vw;
}
.principal-light .container .imagen {
  flex: 1;
  margin: 0;
  width: 100%;
  max-width: 350px;
  padding: 1rem;
}
.principal-light .container .imagen img {
  width: 100%;
}
.principal-light .container .icon {
  width: 100%;
  max-width: 300px;
}
.principal-light .container .texto {
  flex: 1;
  margin: 0;
}
.principal-light .container .texto h1 {
  font-family: "Merriweather", serif;
  font-size: clamp(2.2rem, 2.2rem + (4rem - 2.2rem) * (100vw - 360px) / (1280px - 360px), 4rem);
  line-height: 1.1;
  font-weight: 500;
  letter-spacing: 1px;
  margin: auto;
}
.principal-light .container .texto h2 {
  font-size: clamp(1.1rem, 1.1rem + (1.6rem - 1.1rem) * (100vw - 360px) / (1280px - 360px), 1.6rem);
  line-height: 1.35;
  font-weight: 400;
  margin: 1rem auto;
}
.principal-light .container .texto a {
  display: inline-block;
  background-color: #5f9f73;
  padding: 1rem;
  border-radius: 10px;
  margin: 1rem auto;
  color: white;
  text-decoration: none;
  transition: background 0.3s, transform 0.1s;
}
.principal-light .container .texto a:hover {
  background-color: #101f15;
}
@media (min-width: 1024px) {
  .principal-light .container {
    flex-direction: row;
  }
}

.principal-dark {
  background: #223829;
  color: #f5f5f5;
  display: flex;
  flex-direction: row;
  width: 100%;
  margin: 0;
  /* ─────────────── BREAKPOINT md (≥ 768 px) ─────────────── */
}
.principal-dark .container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  align-content: center;
  justify-content: center;
  justify-items: center;
  width: 100%;
  max-width: 1400px;
  padding: 5vw;
}
.principal-dark .container .imagen {
  flex: 1;
  margin: 0;
  width: 100%;
  max-width: 350px;
  padding: 1rem;
}
.principal-dark .container .imagen img {
  width: 100%;
}
.principal-dark .container .icon {
  width: 100%;
  max-width: 300px;
}
.principal-dark .container .texto {
  flex: 1;
  margin: 0;
}
.principal-dark .container .texto h1 {
  font-family: "Merriweather", serif;
  font-size: clamp(2.2rem, 2.2rem + (4rem - 2.2rem) * (100vw - 360px) / (1280px - 360px), 4rem);
  line-height: 1.1;
  font-weight: 500;
  letter-spacing: 1px;
  margin: auto;
}
.principal-dark .container .texto h2 {
  font-size: clamp(1.1rem, 1.1rem + (1.6rem - 1.1rem) * (100vw - 360px) / (1280px - 360px), 1.6rem);
  line-height: 1.35;
  font-weight: 400;
  margin: 1rem auto;
}
.principal-dark .container .texto a {
  display: inline-block;
  background-color: #5f9f73;
  padding: 1rem;
  border-radius: 10px;
  margin: 1rem auto;
  color: white;
  text-decoration: none;
  transition: background 0.3s, transform 0.1s;
}
.principal-dark .container .texto a:hover {
  background-color: #101f15;
}
@media (min-width: 1024px) {
  .principal-dark .container {
    flex-direction: row;
  }
}

.principal-primary {
  background: #badbff;
  color: #f5f5f5;
  display: flex;
  flex-direction: row;
  width: 100%;
  margin: 0;
  /* ─────────────── BREAKPOINT md (≥ 768 px) ─────────────── */
}
.principal-primary .container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  align-content: center;
  justify-content: center;
  justify-items: center;
  width: 100%;
  max-width: 1400px;
  padding: 5vw;
}
.principal-primary .container .imagen {
  flex: 1;
  margin: 0;
  width: 100%;
  max-width: 350px;
  padding: 1rem;
}
.principal-primary .container .imagen img {
  width: 100%;
}
.principal-primary .container .icon {
  width: 100%;
  max-width: 300px;
}
.principal-primary .container .texto {
  flex: 1;
  margin: 0;
}
.principal-primary .container .texto h1 {
  font-family: "Merriweather", serif;
  font-size: clamp(2.2rem, 2.2rem + (4rem - 2.2rem) * (100vw - 360px) / (1280px - 360px), 4rem);
  line-height: 1.1;
  font-weight: 500;
  letter-spacing: 1px;
  margin: auto;
}
.principal-primary .container .texto h2 {
  font-size: clamp(1.1rem, 1.1rem + (1.6rem - 1.1rem) * (100vw - 360px) / (1280px - 360px), 1.6rem);
  line-height: 1.35;
  font-weight: 400;
  margin: 1rem auto;
}
.principal-primary .container .texto a {
  display: inline-block;
  background-color: #5f9f73;
  padding: 1rem;
  border-radius: 10px;
  margin: 1rem auto;
  color: white;
  text-decoration: none;
  transition: background 0.3s, transform 0.1s;
}
.principal-primary .container .texto a:hover {
  background-color: #101f15;
}
@media (min-width: 1024px) {
  .principal-primary .container {
    flex-direction: row;
  }
}

.caracteristicas {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  width: 100%;
  background-color: #f3f1ef;
  color: #223829;
  margin: 0;
  /* ─────────────── BREAKPOINT md (≥ 768 px) ─────────────── */
}
.caracteristicas .container {
  width: 100%;
  max-width: 1400px;
  padding: 5vw;
}
.caracteristicas .container .titulo-1 {
  flex: 0 0 100%;
  width: 100%;
  margin: 0 0 1rem 0;
  font-family: "Merriweather", serif;
  font-size: clamp(2rem, 2rem + (3rem - 2rem) * (100vw - 360px) / (1280px - 360px), 3rem);
  text-align: center;
}
.caracteristicas .container .tarjetas {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap; /* permite saltar a nueva fila */
  max-width: 1400px;
  align-items: center;
  align-content: center;
  justify-content: center;
  justify-items: center;
  margin: auto;
  align-items: stretch;
  gap: 0.5rem; /* separación uniforme */
  padding: 0.5rem;
}
.caracteristicas .container .tarjeta {
  flex: 1 1 300px; /* crece, encoge y mínimo 400px */
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem;
  padding: 1rem;
  border-left: 1px solid rgba(16, 31, 21, 0.2235294118);
  border-right: 1px solid rgba(16, 31, 21, 0.2235294118);
  border-radius: 20px;
}
.caracteristicas .container .tarjeta .imagen {
  display: inline-flex;
  width: 30%;
  max-width: 150px;
  height: auto;
  margin: auto;
}
.caracteristicas .container .tarjeta .imagen img {
  width: 100%;
}
.caracteristicas .container .tarjeta .titulo {
  font-size: clamp(1rem, 1rem + (2rem - 1rem) * (100vw - 360px) / (1280px - 360px), 2rem);
  font-weight: 600;
}
.caracteristicas .container .tarjeta .descripcion {
  font-size: clamp(1rem, 1rem + (1.3rem - 1rem) * (100vw - 360px) / (1280px - 360px), 1.3rem);
  font-weight: 400;
}
.caracteristicas .container .tarjeta a {
  display: inline-block;
  background-color: #5f9f73;
  border-radius: 10px;
  margin: 1rem auto;
  color: white;
  text-decoration: none;
  transition: background 0.3s, transform 0.1s;
}
.caracteristicas .container .tarjeta a:hover {
  background-color: #101f15;
}
.caracteristicas .container h2 {
  font-size: clamp(1.1rem, 1.1rem + (1.6rem - 1.1rem) * (100vw - 360px) / (1280px - 360px), 1.6rem);
  line-height: 1.35;
  font-weight: 400;
  margin: auto;
}
.lanzamiento {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  width: 100%;
  background-color: #fdfdfd;
  color: #223829;
  margin: 0;
  /* ─────────────── BREAKPOINT md (≥ 768 px) ─────────────── */
}
.lanzamiento h1 {
  font-family: "Merriweather", serif;
  font-size: clamp(2rem, 2rem + (3rem - 2rem) * (100vw - 360px) / (1280px - 360px), 3rem);
  text-align: center;
  font-weight: 500;
}
.lanzamiento h2 {
  font-size: clamp(1.1rem, 1.1rem + (1.6rem - 1.1rem) * (100vw - 360px) / (1280px - 360px), 1.6rem);
  line-height: 1.35;
  font-weight: 400;
  margin: auto;
}
.lanzamiento h3 {
  margin: 2rem 0;
  text-transform: uppercase;
  font-weight: 400;
  border-bottom: 1px solid rgba(255, 0, 0, 0.1);
}
.lanzamiento ul,
.lanzamiento ol {
  font-family: "Lato", sans-serif;
  font-size: clamp(1rem, 1rem + (1.3rem - 1rem) * (100vw - 360px) / (1280px - 360px), 1.3rem);
  line-height: 1.35;
  font-weight: 400;
  margin: 1rem auto;
}
.lanzamiento ul li,
.lanzamiento ol li {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}
.lanzamiento .container {
  width: 100%;
  max-width: 1400px;
  padding: 5vw;
}
.lanzamiento .container .titulo-1 {
  flex: 0 0 100%;
  width: 100%;
  margin: 0 0 1rem 0;
  font-family: "Merriweather", serif;
  font-size: clamp(2rem, 2rem + (3rem - 2rem) * (100vw - 360px) / (1280px - 360px), 3rem);
  text-align: center;
}
.lanzamiento .container h2 {
  font-size: clamp(1.1rem, 1.1rem + (1.6rem - 1.1rem) * (100vw - 360px) / (1280px - 360px), 1.6rem);
  line-height: 1.35;
  font-weight: 400;
  margin: auto;
}
.lanzamiento .requisitos h3 {
  text-align: center;
  text-transform: capitalize;
  font-size: clamp(1.2rem, 1.2rem + (2.3rem - 1.2rem) * (100vw - 360px) / (1280px - 360px), 2.3rem);
  font-weight: 500;
}
.lanzamiento .requisitos ul {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  list-style: none;
  align-items: stretch;
  gap: 2rem 1rem; /* separación uniforme */
}
.lanzamiento .requisitos ul li {
  padding: 2rem;
  flex: 1 1 300px; /* crece, encoge y mínimo 400px */
  border-radius: 20px;
  border: 1px solid rgba(16, 31, 21, 0.2235294118);
}
.faq {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}
.faq h1 {
  font-family: "Merriweather", serif;
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 1px;
}
.faq h2 {
  font-family: "Lato", sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.faq-item {
  border-bottom: 1px solid #d3dad7;
}
.faq-item .faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 0;
  background: none;
  border: 0;
  font-size: clamp(1rem, 1rem + (1.5rem - 1rem) * (100vw - 360px) / (1280px - 360px), 1.5rem);
  cursor: pointer;
  color: #1f2f2c;
  text-align: left;
}
.faq-item .faq-question .chevron {
  width: 25px;
  height: 25px;
  transition: transform 0.25s ease;
  color: #1f2f2c;
}
.faq-item .faq-question .faq-question[aria-expanded=true] .chevron {
  transform: rotate(180deg);
}
.faq-item .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  color: #424b47;
  line-height: 1.6;
  font-size: clamp(0.85rem, 0.85rem + (1.2rem - 0.85rem) * (100vw - 360px) / (1280px - 360px), 1.2rem);
  padding-left: 2rem;
}
.faq-item .faq-answer p {
  padding: 0 0 1rem 0;
}
.faq-item .faq-answer ul {
  list-style: disc;
  list-style-position: outside;
  padding-left: 1.25rem; /* necesario para que se vean dentro del bloque */
  margin: 0.5rem 0;
}
.faq-item .faq-answer ul li {
  display: list-item; /* por si algún reset lo cambió */
}

/*# sourceMappingURL=estilos.css.map */
