@charset "UTF-8";
.poppins-regular {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.poppins-semibold {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.poppins-extrabold {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: normal;
}

:root {
  --hex-bg: #3d2b16;
  --body-bg: #eaedf0;
  --orange-txt: #ed7a47;
}

html {
  scroll-behavior: auto !important;
}

body {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.3rem;
  line-height: 1.2;
  overflow-x: hidden;
  background-color: var(--body-bg);
}

strong,
.fw-bold {
  font-weight: 600;
  font-style: normal;
}

span.resaltar {
  color: var(--orange-txt);
}

.img-brand {
  max-width: 130px;
  height: auto;
  min-height: 100px;
  aspect-ratio: 2/1;
}

.spacer {
  height: 85px;
}

.spacer-100 {
  height: 100px;
}

.video-thumb {
  cursor: pointer;
}

/*================================== Toggle button */
.navbar {
  background-color: var(--body-bg);
}

.navbar-brand {
  padding-top: 0;
  padding-bottom: 0;
}

.navbar-toggler-hex {
  all: unset;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  position: relative;
}

/* Hexágono de fondo */
.navbar-toggler-hex .hex-bg {
  position: absolute;
  inset: 0;
  background-color: #3b2f1e;
  clip-path: polygon(50% 0%, 93% 25%, 93% 75%, 50% 100%, 7% 75%, 7% 25%);
  transition: background-color 0.2s ease;
}

.navbar-toggler-hex:hover .hex-bg,
.navbar-toggler-hex:focus-visible .hex-bg {
  background-color: #5a4530;
}

.navbar-toggler-hex:active .hex-bg {
  background-color: #2a1f10;
}

/* Las 3 líneas */
.navbar-toggler-hex .hex-lines {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.navbar-toggler-hex .hex-lines span {
  display: block;
  width: 18px;
  height: 2px;
  background: #ffffff;
  border-radius: 1px;
  transition: all 0.25s ease;
}

/*================================== Menú @ Mobile */
.offcanvas.offcanvas-end {
  background-color: #000;
}
.offcanvas.offcanvas-end .offcanvas-header .btn-close {
  position: absolute;
  inset: 0;
  font-size: 1rem;
  background-color: #fff;
  clip-path: polygon(50% 0%, 93% 25%, 93% 75%, 50% 100%, 7% 75%, 7% 25%);
  transition: background-color 0.2s ease;
  padding: 0.85rem;
  margin-top: 10px;
  margin-right: 10px;
  --bs-btn-close-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e");
  opacity: 1;
}
.offcanvas.offcanvas-end .nav-item {
  margin: 0;
}
.offcanvas.offcanvas-end .nav-link {
  padding: 0.5rem 0;
  color: #4f4f4f;
  font-weight: 800;
  font-size: 1.7rem;
  text-transform: uppercase;
}
.offcanvas.offcanvas-end .nav-link:hover, .offcanvas.offcanvas-end .nav-link.active {
  color: #fff;
}

.offcanvas-backdrop.show {
  opacity: 0.8;
  /* 1.0 is fully opaque, 0.0 is invisible */
}

/*================================== Marquee */
/* Contenedor con fade en los bordes */
.marquee-outer {
  overflow: hidden;
  width: 100%;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  margin: 30px 0;
}

/* Track que se mueve */
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 22s linear infinite;
}

.marquee-outer:hover .marquee-track {
  animation-play-state: paused;
}

@keyframes marquee-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
/* Cada logo */
.marquee-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 40px;
  flex-shrink: 0;
}

.marquee-item img {
  max-height: 60%;
  width: auto;
  opacity: 0.45;
  filter: grayscale(1);
  transition: opacity 0.25s ease, filter 0.25s ease, transform 0.25s ease;
}

/* Logo activo al hacer hover */
.marquee-outer:hover .marquee-item:hover img {
  opacity: 1;
  filter: grayscale(0);
  transform: scale(1.08);
}

/*================================== Rive canvas */
#rive-01,
#rive-02 {
  width: 100%;
  display: block;
}

/*================================== Typewriter */
#typewriter-output {
  font-size: 2.3rem;
  line-height: 1.5;
  min-height: 450px;
}

/* Cursor parpadeante */
.tw-cursor {
  display: inline-block;
  width: 5px;
  height: 1.1em;
  background: #000;
  vertical-align: middle;
  margin-left: 1px;
  animation: tw-blink 0.7s step-end infinite;
}

@keyframes tw-blink {
  50% {
    opacity: 0;
  }
}
/*================================== Fade between images */
.img-fade-wrap {
  position: relative;
  width: 100%;
}

/* Las dos imágenes apiladas */
.img-fade-wrap img {
  position: absolute;
  inset: 0;
  display: block;
  margin: 0 auto;
}

/* Spacer: imagen visible que le da la altura al wrapper */
.img-fade-wrap .img-spacer {
  position: relative;
  /* override del absolute */
  visibility: hidden;
  z-index: 0;
}

.img-bottom {
  z-index: 1;
}

.img-top {
  z-index: 2;
  transition: opacity 0.5s ease;
}

.img-fade-wrap:hover .img-top {
  opacity: 0;
}

.phrase-lottie {
  min-height: 750px;
}

/*================================== Horizontal Cards */
#cards-container .horizontal-scroll-wrapper {
  /* ScrollTrigger pineará este contenedor, por lo que debe tener altura para generar scroll vertical */
  height: 300vh;
  /* La duración del scroll vertical que activa el horizontal */
  background-color: #eee;
}
#cards-container #container-hrz,
#cards-container #container-hrz-2 {
  display: flex;
  flex-wrap: nowrap;
  width: max-content;
  /* El ancho total de todos los paneles */
  padding: 3rem 0;
  overflow: hidden;
  width: 100%;
  padding: 0;
  display: flex;
  grid-column-gap: 1rem;
}
#cards-container .article,
#cards-container .article-2 {
  padding: 1.8rem;
  color: #000;
  font-size: 1.2rem;
  width: 750px;
  border-radius: 0 !important;
  flex: none;
  justify-content: space-around;
}
#cards-container .article-card img {
  max-width: 350px;
  height: auto;
}
#cards-container .article-card .article-body {
  padding-top: 10px;
  margin-bottom: 20px;
}
#cards-container .article-card .article-description {
  max-width: 100%;
  font-size: 1rem;
}
#cards-container .article-card .module-name {
  font-weight: 800;
  font-style: normal;
  font-size: 2rem;
  line-height: 1.2;
}
#cards-container .article-circle {
  border-left: 4px solid #000;
}
#cards-container .article-circle::before {
  content: "";
  position: absolute;
  aspect-ratio: 1;
  background-image: url("../img/Abstract_circle.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 0;
  pointer-events: none;
  animation: floatOrb 24s ease-in-out infinite;
}
#cards-container .article-circle:nth-child(1)::before {
  transform: rotate(0deg);
  transform-origin: center;
  top: 0%;
  right: -5%;
  width: 50%;
  --orb-rotation: 0deg;
  animation-delay: 0s;
}
#cards-container .article-circle:nth-child(2)::before {
  --orb-rotation: -62deg;
  transform: rotate(--orb-rotation);
  transform-origin: center;
  top: 30%;
  right: 5%;
  width: 35%;
  animation-delay: -3s;
}
#cards-container .article-circle:nth-child(3)::before {
  --orb-rotation: 122deg;
  transform: rotate(--orb-rotation);
  transform-origin: center;
  top: 20%;
  right: 15%;
  width: 28%;
  animation-delay: -4s;
}
#cards-container .article-circle:nth-child(4)::before {
  --orb-rotation: 244deg;
  transform: rotate(--orb-rotation);
  transform-origin: center;
  top: 45%;
  right: 5%;
  width: 40%;
  animation-delay: -2s;
}
#cards-container .article-circle .article-body {
  padding-top: 200px;
  z-index: 1;
}
#cards-container .article-circle .article-description {
  max-width: 50%;
}
#cards-container .article-circle .module-name {
  font-weight: 800;
  font-style: normal;
  font-size: 2.5rem;
  line-height: 1.2;
}
#cards-container .article-dark {
  background-color: #000;
  color: #fff;
}
#cards-container .article:first-child {
  z-index: 10;
}
#cards-container .article-2:first-child {
  z-index: 10;
}
#cards-container .article-card-body {
  padding-top: 100px;
}
#cards-container .article-body,
#cards-container .article-footer {
  white-space: normal;
}
#cards-container .article-footer {
  border: none;
  background-color: transparent;
  text-align: right;
}

.vid-fluid {
  width: 100%;
  height: auto;
}

footer {
  padding: 1rem 0;
}
footer p {
  margin: 0;
  font-size: 0.85rem;
  font-weight: 600;
}
footer img {
  max-height: 100px;
}
footer i {
  color: var(--hex-bg);
  font-size: 3rem;
}
footer i:hover {
  color: #000;
}

/*================================== Modal */
.modal-backdrop {
  opacity: 0.8 !important;
}

.modal-video h5 {
  font-size: 2.2rem;
}
.modal-video .modal-content {
  color: #fff;
  background-color: #000;
  border-radius: 1.2rem;
}
.modal-video .modal-body {
  font-size: 0.95rem;
  padding: 1rem 1.5rem;
}
.modal-video .modal-header {
  border-bottom: none;
  padding: 1.5rem 1.5rem;
}
.modal-video .modal-header .btn-close {
  font-size: 0.5rem;
}
.modal-video .modal-footer {
  border-top: none;
}
.modal-video .btn-close {
  width: 0.5em;
  height: 0.5em;
  background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2314ea73'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e");
}

.w-45-80 {
  width: 80% !important;
}

.form-label {
  font-size: 0.85rem;
  font-weight: 600;
}

.btn-enviar {
  text-transform: uppercase;
  background-color: #3d2b16;
  border-radius: 0;
  font-weight: 800;
  font-style: normal;
}
.btn-enviar:hover {
  background-color: #000;
}

#contenedorPrincipal,
#contenedorPrincipal2 {
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

@keyframes floatOrb {
  0% {
    transform: translateY(0px) rotate(var(--orb-rotation, 0deg));
  }
  50% {
    transform: translateY(40px) rotate(calc(var(--orb-rotation, 0deg) + 180deg));
  }
  100% {
    transform: translateY(0px) rotate(calc(var(--orb-rotation, 0deg) + 360deg));
  }
}
/* Media Queries */
@media (min-width: 992px) {
  body {
    padding-top: 5rem;
  }
  .nav-link {
    padding: 0 !important;
    font-size: 4rem !important;
  }
  .spacer {
    height: 0;
  }
  .w-45-80 {
    width: 45% !important;
  }
}
@media (min-width: 1400px) {
  .container {
    max-width: 1200px;
  }
}/*# sourceMappingURL=styles.css.map */