@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Barrio&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;700&family=Poppins:wght@300;400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Lexend+Tera:wght@100..900&display=swap");
.achievements {
  background: #111;
  padding: 4rem 2rem;
  text-align: center;
  color: white;
}
.achievements .title {
  font-size: 1.5rem;
  text-transform: uppercase;
  margin-bottom: 2rem;
  letter-spacing: 1px;
}
.achievements .achievements-grid {
  display: flex;
  justify-content: center;
  gap: 2rem;
}
.achievements .achievement {
  flex: 1 1 200px;
  max-width: 250px;
  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;
}

body {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  color: rgb(26, 27, 28);
  background-color: rgb(248, 249, 250);
}

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

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

.font-titulares {
  font-family: "Poppins", 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 */
}

a {
  text-decoration: none;
}

.btn {
  background-color: rgb(248, 249, 250);
  color: rgb(26, 27, 28);
  border: none;
  padding: 0.5rem 1rem;
  font-size: 1rem;
  border-radius: 0.25rem;
  cursor: pointer;
  transition: background 0.3s, transform 0.1s;
  white-space: nowrap;
  margin: 1rem;
}
.btn:hover {
  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: rgb(0, 123, 255);
  color: #fff;
  border: none;
  padding: 0.5rem 1rem;
  font-size: 1rem;
  border-radius: 0.25rem;
  cursor: pointer;
  transition: background 0.3s, transform 0.1s;
  white-space: nowrap;
}
.btn-primary:hover {
  background-color: rgba(0, 123, 255, 0.5);
}
.btn-primary:active {
  transform: scale(0.98);
}
.btn-primary:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.5);
}
.btn-secondary {
  background-color: rgb(108, 117, 125);
  color: #fff;
  border: none;
  padding: 0.5rem 1rem;
  font-size: 1rem;
  border-radius: 0.25rem;
  cursor: pointer;
  transition: background 0.3s, transform 0.1s;
  white-space: nowrap;
}
.btn-secondary:hover {
  background-color: rgba(108, 117, 125, 0.5);
}
.btn-secondary:active {
  transform: scale(0.98);
}
.btn-secondary:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(108, 117, 125, 0.5);
}
.btn-success {
  background-color: rgb(40, 167, 70);
  color: #fff;
  border: none;
  padding: 0.5rem 1rem;
  font-size: 1rem;
  border-radius: 0.25rem;
  cursor: pointer;
  transition: background 0.3s, transform 0.1s;
  white-space: nowrap;
}
.btn-success:hover {
  background-color: rgba(40, 167, 70, 0.5);
}
.btn-success:active {
  transform: scale(0.98);
}
.btn-success:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(40, 167, 70, 0.5);
}
.btn-danger {
  background-color: rgb(220, 53, 70);
  color: #fff;
  border: none;
  padding: 0.5rem 1rem;
  font-size: 1rem;
  border-radius: 0.25rem;
  cursor: pointer;
  transition: background 0.3s, transform 0.1s;
  white-space: nowrap;
}
.btn-danger:hover {
  background-color: rgba(220, 53, 70, 0.5);
}
.btn-danger:active {
  transform: scale(0.98);
}
.btn-danger:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(220, 53, 70, 0.5);
}
.btn-warning {
  background-color: rgb(255, 193, 7);
  color: #212529;
  border: none;
  padding: 0.5rem 1rem;
  font-size: 1rem;
  border-radius: 0.25rem;
  cursor: pointer;
  transition: background 0.3s, transform 0.1s;
  white-space: nowrap;
}
.btn-warning:hover {
  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: rgb(23, 163, 184);
  color: #fff;
  border: none;
  padding: 0.5rem 1rem;
  font-size: 1rem;
  border-radius: 0.25rem;
  cursor: pointer;
  transition: background 0.3s, transform 0.1s;
  white-space: nowrap;
}
.btn-info:hover {
  background-color: rgba(23, 163, 184, 0.5);
}
.btn-info:active {
  transform: scale(0.98);
}
.btn-info:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(23, 163, 184, 0.5);
}
.btn-light {
  background-color: rgb(248, 249, 250);
  color: #212529;
  border: none;
  padding: 0.5rem 1rem;
  font-size: 1rem;
  border-radius: 0.25rem;
  cursor: pointer;
  transition: background 0.3s, transform 0.1s;
  white-space: nowrap;
}
.btn-light:hover {
  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: rgb(26, 27, 28);
  color: #fff;
  border: none;
  padding: 0.5rem 1rem;
  font-size: 1rem;
  border-radius: 0.25rem;
  cursor: pointer;
  transition: background 0.3s, transform 0.1s;
  white-space: nowrap;
}
.btn-dark:hover {
  background-color: rgba(26, 27, 28, 0.5);
}
.btn-dark:active {
  transform: scale(0.98);
}
.btn-dark:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(26, 27, 28, 0.5);
}

.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 {
  width: 100%;
  margin: 0 auto;
  padding: 0;
}
.container-sm {
  width: 100%;
  max-width: 576px;
  margin: 0 auto;
  padding: 0 1rem;
}
.container-md {
  width: 100%;
  max-width: 768px;
  margin: 0 auto;
  padding: 0 1rem;
}
.container-lg {
  width: 100%;
  max-width: 992px;
  margin: 0 auto;
  padding: 0 1rem;
}
.container-xl {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
.container-xxl {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1rem;
}

.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: 1.5rem;
  border-radius: 8px;
  width: 90%;
  max-width: 500px;
  text-align: center;
  position: relative;
}
.modal .modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}

.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: 1.5rem;
  border-radius: 8px;
  width: 90%;
  max-width: 500px;
  text-align: center;
  position: relative;
}
.modal-dark .modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  background: none;
  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: 1.5rem;
  border-radius: 8px;
  width: 90%;
  max-width: 500px;
  text-align: center;
  position: relative;
}
.modal-light .modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  background: none;
  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: 1.5rem;
  border-radius: 8px;
  width: 95%;
  max-width: 800px;
  text-align: center;
  position: relative;
}
.modal-lg .modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}

.cta {
  background: #111;
  color: white;
  text-align: center;
  padding: 6rem 2rem !important;
}
.cta .cta-title {
  font-size: 1.5rem;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
}
.cta .cta-subtitle {
  font-size: 1.1rem;
  margin-bottom: 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;
}
.cta .cta-button:hover {
  background: rgba(25.5, 25.5, 25.5, 0);
  color: rgb(229.5, 229.5, 229.5);
}

.cta-primary {
  background: #d0e7ff;
  color: rgb(73, 73, 73);
  text-align: center;
  padding: 6rem 2rem !important;
}
.cta-primary .cta-title {
  font-size: 1.5rem;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
}
.cta-primary .cta-subtitle {
  font-size: 1.1rem;
  margin-bottom: 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;
}
.cta-primary .cta-button:hover {
  background: white;
  color: rgb(53.1603773585, 79.7405660377, 107.8396226415);
}

.cta-primary {
  background: #f8f9fa;
  color: #333;
  text-align: center;
  padding: 6rem 2rem !important;
}
.cta-primary .cta-title {
  font-size: 1.5rem;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
}
.cta-primary .cta-subtitle {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
}
.cta-primary .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;
}
.cta-primary .cta-button:hover {
  background: rgb(51, 149.4, 255);
  color: rgb(229.5, 229.5, 229.5);
}

.cta-secondary {
  background: #bedeff;
  color: rgb(26, 27, 28);
  text-align: center;
  padding: 6rem 2rem !important;
}
.cta-secondary .cta-title {
  font-size: 1.5rem;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
}
.cta-secondary .cta-subtitle {
  font-size: 1.1rem;
  margin-bottom: 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: rgb(26, 27, 28);
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.cta-secondary .cta-button:hover {
  background: rgb(51, 149.4, 255);
  color: rgb(1.4444444444, 1.5, 1.5555555556);
}

.cta-danger {
  background: #dc3545;
  color: white;
  text-align: center;
  padding: 6rem 2rem !important;
}
.cta-danger .cta-title {
  font-size: 1.5rem;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
}
.cta-danger .cta-subtitle {
  font-size: 1.1rem;
  margin-bottom: 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;
}
.cta-danger .cta-button:hover {
  background: white;
  color: rgb(189.2151898734, 32.7848101266, 47.7721518987);
}

.cta-success {
  background: #28a745;
  color: white;
  text-align: center;
  padding: 6rem 2rem !important;
}
.cta-success .cta-title {
  font-size: 1.5rem;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
}
.cta-success .cta-subtitle {
  font-size: 1.1rem;
  margin-bottom: 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;
}
.cta-success .cta-button:hover {
  background: white;
  color: rgb(30.1449275362, 125.8550724638, 52);
}

@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: hsl(222, 44%, 13%);
  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;
}

.features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  text-align: center;
  padding: 4rem 2rem;
}
.features .feature {
  flex: 1 1 300px;
  max-width: 400px;
}
.features .feature .title {
  font-size: 1.2rem;
  font-weight: bold;
  color: rgb(26, 27, 28);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 1rem;
}
.features .feature .text {
  font-size: 1rem;
  color: #6c757d;
}

@media (min-width: 768px) {
  .features {
    flex-direction: column;
    align-items: center;
  }
  .feature {
    max-width: 90%;
  }
}
.footer {
  background: rgb(242, 255, 255);
  color: #333;
  text-align: center;
  padding: 2rem 1rem;
}
.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;
}
.footer.visible {
  opacity: 1;
  transform: translateY(0);
}

.back-top-btn {
  border: 1px solid red;
}

.navbar {
  box-sizing: border-box;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 12vh;
  background: rgba(255, 204, 76, 0.75);
  color: rgb(26, 27, 28);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  transition: all 0.3s ease-in-out;
  z-index: 1000;
  backdrop-filter: blur(5px);
  z-index: 1001 !important;
}
.navbar ul {
  display: flex;
  gap: 1rem;
}
.navbar.scrolled {
  box-sizing: border-box;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 12vh;
  background: rgba(255, 204, 76, 0.75);
  color: rgb(26, 27, 28);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  transition: all 0.3s ease-in-out;
  z-index: 1000;
  backdrop-filter: blur(5px);
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
}
.navbar.scrolled ul {
  display: flex;
  gap: 1rem;
}
.navbar.scrolled .logo img {
  height: 55px;
  transition: height 0.3s;
}
.navbar .logo img {
  height: 70px;
  transition: height 0.3s;
  margin: auto;
  vertical-align: middle;
}
.navbar .nav-links li {
  list-style: none;
}
.navbar .nav-links a {
  text-decoration: none;
  color: rgb(26, 27, 28);
  font-size: 1rem;
  transition: color 0.3s;
  border: 1px solid rgba(108, 117, 125, 0.5);
  white-space: nowrap;
}
.navbar .nav-links a:hover {
  color: #f8b400;
}
@media (min-width: 768px) {
  .navbar .nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    list-style: none;
    padding: 0;
    margin: 0;
  }
}
.navbar .hamburger {
  font-size: 2rem;
  background: none;
  border: none;
  color: rgb(26, 27, 28);
  cursor: pointer;
  display: block;
  position: relative;
  width: 40px;
  height: 40px;
}
.navbar .hamburger span {
  display: block;
  width: 35px;
  height: 2px;
  background-color: rgb(26, 27, 28);
  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: rgb(108, 117, 125);
}
.navbar .hamburger.scrolled span {
  background-color: rgb(0, 123, 255);
}
.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;
  margin-top: 10vh;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.9);
  color: black;
  display: flex;
  flex-direction: column !important;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease-in-out;
  z-index: 100 !important;
}
.menu-overlay ul {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.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: white;
  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: center;
  justify-content: space-between;
  flex-direction: column;
  gap: 2rem;
  padding: 6rem 2rem;
  background: #ffffff;
}
.hero-light .hero-text {
  flex: 1;
  max-width: 500px;
  text-align: left;
}
.hero-light .hero-title {
  font-size: 1.6rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.hero-light .hero-description {
  font-size: 1rem;
  color: #6c757d;
  margin: 1rem 0;
}
.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-image {
  flex: 1;
  display: flex;
  width: 100% !important;
  max-width: 500px;
  justify-content: center;
  position: relative;
  border: 1px solid rgba(80, 80, 80, 0.7);
}
.hero-light .hero-image img {
  width: 100%;
  max-width: 100%;
  height: auto;
}
.hero-light .hero-image img:nth-child(2) {
  position: absolute;
  left: 10%;
  top: 20%;
  width: 70%;
}
.hero-light .hero-image img:nth-child(3) {
  position: absolute;
  left: 20%;
  top: 40%;
  width: 50%;
}

.hero-dark {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  gap: 2rem;
  padding: 6rem 2rem;
  background: #dce6e8;
}
.hero-dark .hero-text {
  flex: 1;
  max-width: 500px;
  text-align: left;
}
.hero-dark .hero-title {
  font-size: 1.6rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.hero-dark .hero-description {
  font-size: 1rem;
  color: #6c757d;
  margin: 1rem 0;
}
.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-image {
  flex: 1;
  display: flex;
  width: 100% !important;
  max-width: 500px;
  justify-content: center;
  position: relative;
  border: 1px solid rgba(80, 80, 80, 0.7);
}
.hero-dark .hero-image img {
  width: 100%;
  max-width: 100%;
  height: auto;
}
.hero-dark .hero-image img:nth-child(2) {
  position: absolute;
  left: 10%;
  top: 20%;
  width: 70%;
}
.hero-dark .hero-image img:nth-child(3) {
  position: absolute;
  left: 20%;
  top: 40%;
  width: 50%;
}

.hero-primary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  gap: 2rem;
  padding: 6rem 2rem;
  background: #badbff;
}
.hero-primary .hero-text {
  flex: 1;
  max-width: 500px;
  text-align: center;
}
.hero-primary .hero-title {
  font-size: 1.6rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.hero-primary .hero-description {
  font-size: 1rem;
  color: #6c757d;
  margin: 1rem 0;
}
.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-image {
  flex: 1;
  display: flex;
  width: 100% !important;
  max-width: 500px;
  justify-content: center;
  position: relative;
  border: 1px solid rgba(80, 80, 80, 0.7);
}
.hero-primary .hero-image img {
  width: 100%;
  max-width: 100%;
  height: auto;
}
.hero-primary .hero-image img:nth-child(2) {
  position: absolute;
  left: 10%;
  top: 20%;
  width: 70%;
}
.hero-primary .hero-image img:nth-child(3) {
  position: absolute;
  left: 20%;
  top: 40%;
  width: 50%;
}

@media (min-width: 768px) {
  .hero-light,
  .hero-dark,
  .hero-primary {
    flex-direction: row;
  }
  .hero-light .hero-image,
  .hero-dark .hero-image,
  .hero-primary .hero-image {
    order: -1;
  }
}
.fondo1 {
  margin-top: 170px;
  background: url("../../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-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: hsl(217, 24%, 59%);
}
.gallery-container .gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  padding: 0;
  list-style: none;
}
.gallery-container .gallery .gallery-item {
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.gallery-container .gallery .gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}
.gallery-container .gallery .gallery-item img:hover {
  transform: scale(1.05);
}

.slider {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}
.slider .slider-container {
  display: flex;
  height: 100%;
  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;
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  width: 90%;
  padding: 1rem 2rem;
  border-radius: 15px;
  opacity: 0;
  transition: opacity 1s ease, transform 1s ease;
  border: 1px solid rgba(255, 193, 7, 0.5);
  z-index: 10;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(5px);
}
.slider .slide.active .slide-content {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.slider .slide-subtitle {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 300;
  color: rgb(26, 27, 28);
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
}
.slider .slide-title {
  font-size: 1.3rem;
  font-weight: 500;
  margin: 10px 0;
  text-shadow: 0 0 5px rgba(255, 255, 255, 0.8), 0 0 10px rgba(255, 255, 255, 0.6), 0 0 15px rgba(255, 255, 255, 0.4);
  color: rgb(0, 123, 255);
}
.slider .logo img {
  width: 20%;
  margin-bottom: 0;
}
.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 rgb(248, 249, 250);
  background: transparent;
  color: rgb(248, 249, 250);
  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: rgb(248, 249, 250);
}
.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: rgb(108, 117, 125);
  cursor: pointer;
  animation: bounce 1.5s infinite ease-in-out;
}

.testimonial {
  text-align: center;
  color: #333;
  padding: 6rem 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 */
