@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
@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&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: "Roboto", sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  background-color: #fafafa;
  color: #333333;
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
}

.font-principal {
  font-family: "Roboto", 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;
}

.form-contacto {
  max-width: 500px;
  margin: 20px auto;
  padding: 20px;
  background: #f9f9f9;
  border-radius: 8px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}
.form-contacto .input-group {
  margin-bottom: 15px;
}
.form-contacto .input-group label {
  display: block;
  font-weight: bold;
  margin-bottom: 5px;
}
.form-contacto .input-group input,
.form-contacto .input-group textarea {
  width: 100%;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 16px;
}
.form-contacto .btn-enviar {
  width: 100%;
  padding: 10px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
}
.form-contacto .btn-enviar:hover {
  background-color: #0056b3;
}
.form-contacto .captcha {
  border: 1px solid rgba(199, 0, 0, 0.633);
  padding: 1rem;
  font-size: 1.3em;
}

.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::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 300%;
  background-color: white;
  transition: 0.5s ease;
  z-index: -1;
}
.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 .text-1 {
  transition: 0.25s ease;
}
.btn .text-2 {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  /* Ajusta color, tamaño, etc. */
  min-width: max-content;
  transition: 0.25s ease;
}
.btn:is(:hover, :focus-visible)::before {
  bottom: -50%;
}
.btn:is(:hover, :focus-visible) .text-1 {
  transform: translateY(-40px);
}
.btn:is(:hover, :focus-visible) .text-2 {
  top: 50%;
  transform: translate(-50%, -50%);
}
.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::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 300%;
  background-color: rgb(218.4285714286, 236.2571428571, 177.7428571429);
  transition: 0.5s ease;
  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-primary .text-1 {
  transition: 0.25s ease;
}
.btn-primary .text-2 {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  /* Ajusta color, tamaño, etc. */
  min-width: max-content;
  transition: 0.25s ease;
}
.btn-primary:is(:hover, :focus-visible)::before {
  bottom: -50%;
}
.btn-primary:is(:hover, :focus-visible) .text-1 {
  transform: translateY(-40px);
}
.btn-primary:is(:hover, :focus-visible) .text-2 {
  top: 50%;
  transform: translate(-50%, -50%);
}
.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::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 300%;
  background-color: white;
  transition: 0.5s ease;
  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-secondary .text-1 {
  transition: 0.25s ease;
}
.btn-secondary .text-2 {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  /* Ajusta color, tamaño, etc. */
  min-width: max-content;
  transition: 0.25s ease;
}
.btn-secondary:is(:hover, :focus-visible)::before {
  bottom: -50%;
}
.btn-secondary:is(:hover, :focus-visible) .text-1 {
  transform: translateY(-40px);
}
.btn-secondary:is(:hover, :focus-visible) .text-2 {
  top: 50%;
  transform: translate(-50%, -50%);
}
.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::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 300%;
  background-color: rgb(175.1304347826, 235.8695652174, 189);
  transition: 0.5s ease;
  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-success .text-1 {
  transition: 0.25s ease;
}
.btn-success .text-2 {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  /* Ajusta color, tamaño, etc. */
  min-width: max-content;
  transition: 0.25s ease;
}
.btn-success:is(:hover, :focus-visible)::before {
  bottom: -50%;
}
.btn-success:is(:hover, :focus-visible) .text-1 {
  transform: translateY(-40px);
}
.btn-success:is(:hover, :focus-visible) .text-2 {
  top: 50%;
  transform: translate(-50%, -50%);
}
.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::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 300%;
  background-color: rgb(250.1265822785, 226.8734177215, 229.1012658228);
  transition: 0.5s ease;
  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-danger .text-1 {
  transition: 0.25s ease;
}
.btn-danger .text-2 {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  /* Ajusta color, tamaño, etc. */
  min-width: max-content;
  transition: 0.25s ease;
}
.btn-danger:is(:hover, :focus-visible)::before {
  bottom: -50%;
}
.btn-danger:is(:hover, :focus-visible) .text-1 {
  transform: translateY(-40px);
}
.btn-danger:is(:hover, :focus-visible) .text-2 {
  top: 50%;
  transform: translate(-50%, -50%);
}
.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::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 300%;
  background-color: #fff4d3;
  transition: 0.5s ease;
  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-warning .text-1 {
  transition: 0.25s ease;
}
.btn-warning .text-2 {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  /* Ajusta color, tamaño, etc. */
  min-width: max-content;
  transition: 0.25s ease;
}
.btn-warning:is(:hover, :focus-visible)::before {
  bottom: -50%;
}
.btn-warning:is(:hover, :focus-visible) .text-1 {
  transform: translateY(-40px);
}
.btn-warning:is(:hover, :focus-visible) .text-2 {
  top: 50%;
  transform: translate(-50%, -50%);
}
.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::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 300%;
  background-color: rgb(167, 233.4782608696, 244);
  transition: 0.5s ease;
  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-info .text-1 {
  transition: 0.25s ease;
}
.btn-info .text-2 {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  /* Ajusta color, tamaño, etc. */
  min-width: max-content;
  transition: 0.25s ease;
}
.btn-info:is(:hover, :focus-visible)::before {
  bottom: -50%;
}
.btn-info:is(:hover, :focus-visible) .text-1 {
  transform: translateY(-40px);
}
.btn-info:is(:hover, :focus-visible) .text-2 {
  top: 50%;
  transform: translate(-50%, -50%);
}
.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::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 300%;
  background-color: white;
  transition: 0.5s ease;
  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-light .text-1 {
  transition: 0.25s ease;
}
.btn-light .text-2 {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  /* Ajusta color, tamaño, etc. */
  min-width: max-content;
  transition: 0.25s ease;
}
.btn-light:is(:hover, :focus-visible)::before {
  bottom: -50%;
}
.btn-light:is(:hover, :focus-visible) .text-1 {
  transform: translateY(-40px);
}
.btn-light:is(:hover, :focus-visible) .text-2 {
  top: 50%;
  transform: translate(-50%, -50%);
}
.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::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 300%;
  background-color: rgb(150.1724137931, 160, 169.8275862069);
  transition: 0.5s ease;
  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);
}
.btn-dark .text-1 {
  transition: 0.25s ease;
}
.btn-dark .text-2 {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  /* Ajusta color, tamaño, etc. */
  min-width: max-content;
  transition: 0.25s ease;
}
.btn-dark:is(:hover, :focus-visible)::before {
  bottom: -50%;
}
.btn-dark:is(:hover, :focus-visible) .text-1 {
  transform: translateY(-40px);
}
.btn-dark:is(:hover, :focus-visible) .text-2 {
  top: 50%;
  transform: translate(-50%, -50%);
}

.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;
}

.btn2::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 200%;
  height: 200%;
  background-color: #b6d16b;
  transition: 0.5s ease;
  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;
}

.btn2:is(:hover, :focus-visible)::before {
  bottom: -50%;
}

.btn2:is(:hover, :focus-visible) .text-1 {
  transform: translateY(-40px);
}

.btn2:is(:hover, :focus-visible) .text-2 {
  top: 50%;
  transform: translate(-50%, -50%);
}

.btn2-secondary::before {
  background-color: #b6d16b;
}

.btn2-secondary .text-2 {
  color: hsl(0, 0%, 100%);
}

.has-before,
.has-after {
  position: relative;
  z-index: 1;
}

.has-before::before,
.has-after::after {
  content: "";
  position: absolute;
}

.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-text {
  font-size: 0.9rem;
  color: #888;
}
.footer .footer-copy {
  font-size: 0.65rem;
  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);
  border-bottom: 1px solid #bdbdbd;
  color: hsl(0, 0%, 0%);
}
.navbar.scrolled {
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
}
.navbar.scrolled .logo img {
  height: 55px;
  transition: height 0.3s;
}
.navbar .logo img {
  height: 80px;
  transition: height 0.3s;
  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: "Roboto", 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;
}
.menu-overlay .overlay-menu li {
  margin: 1rem 0;
}
.menu-overlay .overlay-menu li a {
  text-decoration: none;
  color: #343a40;
  font-size: 1.5rem;
  transition: color 0.3s ease-in-out;
}
.menu-overlay .overlay-menu li a:hover {
  color: #ffcc00;
}

.hero-light {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-direction: column;
  gap: 2rem;
  padding: 4rem 0;
  background-image: linear-gradient(140deg, #fffff9 25%, #fff9ff 50%, #f9ffff 75%);
  text-align: center;
}
.hero-light .hero-text {
  flex: 1;
  padding: 2rem;
  max-width: 1200px;
  margin: auto;
}
.hero-light .hero-head {
  border-top: 1px solid yellowgreen;
  border-bottom: 1px solid yellowgreen;
  background-color: rgb(252, 255, 245);
  padding: 1rem 0;
}
.hero-light .hero-title {
  font-family: "Roboto", sans-serif;
  font-size: 2rem;
  font-weight: 300;
  font-weight: bold;
  letter-spacing: 2px;
}
.hero-light .hero-subtitle {
  font-family: "Lato", sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  font-weight: bold;
  letter-spacing: 2px;
}
.hero-light .hero-button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  border: 2px solid black;
  text-transform: uppercase;
  background: none;
  cursor: pointer;
  transition: all 0.3s;
}
.hero-light .hero-button:hover {
  background: black;
  color: white;
}
.hero-light .hero-logo {
  font-size: 1.5rem;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 1rem;
  width: 50%;
  max-width: 300px;
}
.hero-light .hero-logo img {
  width: 100%;
  transition: height 0.3s;
}
.hero-light .hero-image {
  display: flex;
  width: 100%;
  height: 30vh;
  border: 1px solid #bdbdbd;
  overflow: hidden;
}
.hero-light .hero-image img {
  object-fit: cover; /* Cubre todo el espacio recortando excesos. */
  width: 100%;
  height: auto;
}
.hero-light .hero-map {
  width: 100%;
  max-width: 50%;
  height: auto;
  display: flex;
  justify-content: center;
  margin: 2rem 0;
}
.hero-light .hero-map iframe {
  width: 100%;
  max-height: 60vh;
  border: none;
  max-width: 100%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border-radius: 20px;
}

.hero-dark {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-direction: column;
  gap: 2rem;
  padding: 4rem 0;
  background-image: linear-gradient(140deg, #fffff9 25%, #fff9ff 50%, #f9ffff 75%);
  text-align: center;
}
.hero-dark .hero-text {
  flex: 1;
  padding: 2rem;
  max-width: 1200px;
  margin: auto;
}
.hero-dark .hero-head {
  border-top: 1px solid yellowgreen;
  border-bottom: 1px solid yellowgreen;
  background-color: rgb(252, 255, 245);
  padding: 1rem 0;
}
.hero-dark .hero-title {
  font-family: "Roboto", sans-serif;
  font-size: 2rem;
  font-weight: 300;
  font-weight: bold;
  letter-spacing: 2px;
}
.hero-dark .hero-subtitle {
  font-family: "Lato", sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  font-weight: bold;
  letter-spacing: 2px;
}
.hero-dark .hero-button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  border: 2px solid black;
  text-transform: uppercase;
  background: none;
  cursor: pointer;
  transition: all 0.3s;
}
.hero-dark .hero-button:hover {
  background: black;
  color: white;
}
.hero-dark .hero-logo {
  font-size: 1.5rem;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 1rem;
  width: 50%;
  max-width: 300px;
}
.hero-dark .hero-logo img {
  width: 100%;
  transition: height 0.3s;
}
.hero-dark .hero-image {
  display: flex;
  width: 100%;
  height: 30vh;
  border: 1px solid #bdbdbd;
  overflow: hidden;
}
.hero-dark .hero-image img {
  object-fit: cover; /* Cubre todo el espacio recortando excesos. */
  width: 100%;
  height: auto;
}
.hero-dark .hero-map {
  width: 100%;
  max-width: 50%;
  height: auto;
  display: flex;
  justify-content: center;
  margin: 2rem 0;
}
.hero-dark .hero-map iframe {
  width: 100%;
  max-height: 60vh;
  border: none;
  max-width: 100%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border-radius: 20px;
}

.hero-primary {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-direction: column;
  gap: 2rem;
  padding: 4rem 0;
  background-image: linear-gradient(140deg, #fffff9 25%, #fff9ff 50%, #f9ffff 75%);
  text-align: center;
}
.hero-primary .hero-text {
  flex: 1;
  padding: 2rem;
  max-width: 1200px;
  margin: auto;
}
.hero-primary .hero-head {
  border-top: 1px solid yellowgreen;
  border-bottom: 1px solid yellowgreen;
  background-color: rgb(252, 255, 245);
  padding: 1rem 0;
}
.hero-primary .hero-title {
  font-family: "Roboto", sans-serif;
  font-size: 2rem;
  font-weight: 300;
  font-weight: bold;
  letter-spacing: 2px;
}
.hero-primary .hero-subtitle {
  font-family: "Lato", sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  font-weight: bold;
  letter-spacing: 2px;
}
.hero-primary .hero-button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  border: 2px solid black;
  text-transform: uppercase;
  background: none;
  cursor: pointer;
  transition: all 0.3s;
}
.hero-primary .hero-button:hover {
  background: black;
  color: white;
}
.hero-primary .hero-logo {
  font-size: 1.5rem;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 1rem;
  width: 50%;
  max-width: 300px;
}
.hero-primary .hero-logo img {
  width: 100%;
  transition: height 0.3s;
}
.hero-primary .hero-image {
  display: flex;
  width: 100%;
  height: 30vh;
  border: 1px solid #bdbdbd;
  overflow: hidden;
}
.hero-primary .hero-image img {
  object-fit: cover; /* Cubre todo el espacio recortando excesos. */
  width: 100%;
  height: auto;
}
.hero-primary .hero-map {
  width: 100%;
  max-width: 50%;
  height: auto;
  display: flex;
  justify-content: center;
  margin: 2rem 0;
}
.hero-primary .hero-map iframe {
  width: 100%;
  max-height: 60vh;
  border: none;
  max-width: 100%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border-radius: 20px;
}

.hero-description {
  font-family: "Roboto", sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.6);
  margin: 1rem 0;
  text-align: justify;
  text-indent: 1.5rem; /* solo la primera línea */
}

.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;
}

.slider {
  position: relative;
  width: 100vw;
  height: 40vh;
  max-height: 400px;
  overflow: hidden;
  font-family: "Lato", sans-serif;
}
.slider .slider-container {
  display: flex;
  height: 100%;
  width: 100vw !important;
  transition: transform 1s ease-in-out;
}
.slider .slide {
  flex: 0 0 100%;
  height: 100%;
  width: 100%;
  pointer-events: auto;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.slider .slide-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
  bottom: 10vh;
  left: 50%;
  transform: translateX(-50%) translateY(250px);
  text-align: center;
  color: #fbc02d;
  font-weight: 100;
  width: max-content;
  padding: 1rem 2rem;
  border-radius: 15px;
  opacity: 0;
  transition: opacity 1s ease, transform 1s ease;
  z-index: 10;
  background: transparent;
  border: 1px solid white;
}
.slider .slide.active .slide-content {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.slider .slide-subtitle {
  font-size: clamp(0.9rem, 1.1vw + 0.5rem, 1.6rem);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 300;
  color: #f8f9fa;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
}
.slider .slide-title {
  color: hsl(0, 0%, 100%);
  font-size: clamp(1.1rem, 2vw + 0.5rem, 1.8rem);
  font-weight: 700;
  margin: 10px 0;
  text-shadow: 1px 1px 5px rgba(155, 155, 155, 0.8), 0 0 10px rgba(0, 0, 0, 0.6);
}
.slider img {
  width: 20%;
  margin-bottom: 2rem;
}
.slider .slide-buttons .btn-outline {
  z-index: 20;
  position: relative;
}
.slider .slide-buttons {
  margin-top: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}
.slider .or {
  font-size: 1rem;
  color: #aaa;
}
.slider .btn-outline {
  padding: 10px 20px;
  border: 2px solid #f8f9fa;
  background: transparent;
  color: #f8f9fa;
  font-size: 1rem;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
  color: #f8f9fa;
}
.slider .btn-outline:hover {
  background: black;
  color: white;
}
.slider .slider-indicators {
  position: absolute;
  bottom: 5vh;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
}
.slider .slider-indicators div {
  width: 12px;
  height: 12px;
  background: white;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s ease;
}
.slider .slider-indicators div:hover {
  background: rgba(255, 255, 255, 0.7);
}
.slider .slider-indicators div.active {
  background: #ffcc00;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
}
.scroll-indicator {
  position: absolute;
  bottom: 1vh;
  font-size: 2rem;
  color: white;
  cursor: pointer;
  animation: bounce 1.5s infinite ease-in-out;
}

.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);
}

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