@import url("https://use.typekit.net/ing3yil.css");
@import url("https://use.typekit.net/ing3yil.css");

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  cursor: none;
  overflow-x: hidden;
}

#particles-js {
  position: fixed;
  width: 100%;
  height: 100vh;
  z-index: -3;
}

html {
  font-size: 62.5%;
  background-color: #000000;
}

html,
body {
  overflow-x: hidden;
}

@media screen and (min-width: 320px) {
  /*==================== HEADER ====================*/
  /*==================== HEADER ====================*/

  .header {
    position: fixed;
    left: 0;
    right: 0;
    margin-inline: auto;
    width: 95%;
    height: 9.35vh;
    margin: 1rem auto 0;
    padding: 1.1rem 0rem 1.1rem 2.2rem;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    border: 2px solid #303030;
    border-radius: 42px;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    overflow: hidden;
    transition: 0.4s ease;
    z-index: 999;
  }

  .header.open .menuToggle::before {
    transform: translateY(0px) rotate(45deg);
  }

  .header.open .menuToggle::after {
    transform: translateY(0px) rotate(-45deg);
    box-shadow: none;
  }

  .header.open {
    padding: 1.4rem 0.2rem 15.5rem 2.2rem;
    height: 35vh;
    align-items: flex-start;
  }

  .header.open .nav-brand {
    margin-top: 0.8rem;
  }

  .menuToggle {
    background: #00ea00;
    position: fixed;
    right: 5%;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center; /* centrado horizontal */
  }

  .menuToggle::before {
    content: "";
    position: absolute;
    width: 22px;
    height: 2px;
    background: #333;
    transform: translateY(-6px);
    transition: 0.3s;
  }

  .menuToggle::after {
    content: "";
    position: absolute;
    width: 22px;
    height: 2px;
    background: #333;
    transform: translateY(6px);
    transition: 0.3s;
    box-shadow: 0 -6px 0 #333;
  }

  .nav-brand img {
    width: 150px;
  }

  .navbar {
    height: 25vh;
    width: 100%;
    position: absolute;
    top: 8.7rem;
    display: flex;
    flex-direction: column;
    left: 2.2rem;
  }

  .nav-link {
    font-family: articulat-cf, sans-serif;
    font-weight: 700;
    color: #fff;
    font-size: 2.6rem;
  }

  .header.open .nabvar {
    display: flex;
    flex-direction: column;
  }

  /*==================== SECCIONES ====================*/
  /*==================== SECCIONES ====================*/

  main {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    z-index: 2;
  }

  .seccion {
    width: 100%;
    height: 100vh;
  }

  .pin-wrapper {
    position: relative;
    height: 500vh;
  }

  .seccion-nosotros {
    width: 100%;
    height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
    overflow-y: visible;
  }

  .seccion-proyectos {
    width: 100%;
    height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .seccion-incluye {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    overflow: hidden;
  }

  .seccion-proceso {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
  }

  .seccion-hablemos {
    width: 100%;
    height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  footer {
    height: 70vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: center;
  }

  /*==================== ARTICULOS ====================*/
  /*==================== ARTICULOS ====================*/

  .articulo {
    width: 100%;
    height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .portfolio-track {
    width: 95%;
    aspect-ratio: 9/16;
    background: #202020;
    border-radius: 32px;
    position: relative;
    overflow: hidden;
  }

  .articulo-incluye {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.6s ease;
    width: 90%;
    height: 75vh;
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: center;
  }

  .articulo-incluye.visible {
    opacity: 1;
    pointer-events: auto;
  }

  .proceso {
    height: 90vh;
    width: 90%;
  }

  /*==================== DIV'S ====================*/
  /*==================== DIV'S ====================*/

  .fondo-main {
    position: absolute;
    z-index: -2;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.68) 40%,
      rgba(0, 0, 0, 0) 100%
    );
  }

  .glass-filter {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    backdrop-filter: blur(3.5px);
    background-color: rgba(0, 0, 0, 0); /* transparente, no negro */
    pointer-events: none;
    z-index: 0;
    opacity: 0;
  }

  .portfolio-container {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
    z-index: 2;
    gap: 1.2rem;
  }

  .slider-ui {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: transparent;
    position: relative;
    display: flex;
    align-items: center;
    background: transparent;
  }

  .slider-progress {
    display: flex;
    gap: 6px;
    padding: 1.725rem 1.2rem;
    background: #202020;
    border-radius: 999px;
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.6),
      0 2px 4px rgba(255, 255, 255, 0.05) inset;
  }

  .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #bdbdbd;
    transition: all 0.3s ease;
  }

  .dot.active {
    background: #4ae900;
    transform: scale(1.5);
  }

  .text-persuasion {
    font-family: sans-serif;
    font-size: 3.8rem;
    font-weight: 700;
    color: #fff;
    text-align: center;
    letter-spacing: -1.5px;
  }

  .icon-text-wrapper {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    position: relative;
  }

  .icon-circle {
    background-color: #4ae900;
    color: white;
    border-radius: 50%;
    padding: 0.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.25rem;
  }

  .icon-circle i {
    font-size: 45px;
  }

  .highlighted-word {
    color: #4ae900;
  }

  .palabra {
    position: absolute;
    top: 0;
    left: 0;
    transform: translateY(100%);
    opacity: 0;
    transition: none;
  }

  .palabra-0 {
    position: relative;
    transform: translateY(0%);
    opacity: 1;
  }

  .palabra-1 {
    padding-left: 5.5rem;
  }

  .palabra-2 {
    padding-left: 5.5rem;
  }

  .item-proceso {
    border-bottom: 1px solid #444;
  }

  .descripcion-etapa {
    font-family: articulat-cf, sans-serif;
    font-weight: 600;
    font-size: 1.4rem;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.4s ease;
    font-size: 1.8rem;
    color: #ccc;
    padding-right: 1.5rem;
  }

  .item-proceso.active .descripcion-etapa {
    max-height: 200px;
    opacity: 1;
    margin-bottom: 1.5rem;
  }

  .container-incluye {
    width: 100%;
    height: 27vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .container-contacto {
    width: 100%;
    height: 5vh;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }

  .container-datos {
    width: 100%;
    height: 10vh;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-between;
    align-items: end;
    padding: 0px 15px;
  }

  .logo-footer-container {
    width: 100%;
    height: 15vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .container-nav-footer {
    width: 100%;
    height: 15vh;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: start;
    padding: 0px 15px;
  }

  .nav-footer {
    display: flex;
    flex-direction: column;
  }

  .social-container {
    width: 20%;
    height: 16vh;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: flex-end;
  }

  .container-anuncio {
    width: 100%;
    height: 20vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  /*==================== VIDEOS ====================*/
  /*==================== VIDEOS ====================*/

  .background-video {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 25%;
    height: auto;
    opacity: 0; /* ← valor inicial visible */
    z-index: -1;
    pointer-events: none;
  }

  /*==================== IMAGENES ====================*/
  /*==================== IMAGENES ====================*/

  .slide {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
    opacity: 0;
    z-index: 0;
    transition: none;
  }

  .slide.active {
    opacity: 1;
    z-index: 1;
  }

  .gif-incluye {
    width: 100%;
    border-radius: 32px;
  }

  .logo-footer {
    width: 90%;
  }

  /*==================== TITULOS ====================*/
  /*==================== TITULOS ====================*/

  .titulo {
    font-family: articulat-cf, sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: clamp(2.4rem, 5vw, 3.2rem);
    color: aliceblue;
    line-height: 1.2;
    letter-spacing: -2px;
  }

  .titulo2 {
    font-family: articulat-cf, sans-serif;
    font-weight: 800;
    font-style: normal;
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    color: aliceblue;
    line-height: 1.2;
    letter-spacing: -2px;
  }

  .tituloPrimero {
    text-align: center;
    line-height: 1.1;
    margin-bottom: 1.6rem;
  }

  .titulo-incluye {
    font-size: 3.2rem;
    text-align: center;
    margin-top: 11.2rem;
  }

  .titulo-incluido {
    width: 98%;
    font-size: 2.8rem;
    text-align: center;
    margin-top: 2.4rem;
  }

  .titulo3 {
    font-size: clamp(1.8rem, 4vw, 2.4rem);
  }

  /*==================== TEXTOS ====================*/
  /*==================== TEXTOS ====================*/

  .texto {
    font-family: articulat-cf, sans-serif;
    font-weight: 400;
    font-style: normal;
    color: aliceblue;
    font-size: 1.8rem;
  }

  .texto-incluye {
    text-align: center;
    width: 95%;
    margin-top: 1.8rem;
    font-size: 2rem;
  }

  .textoPrimero {
    text-align: center;
    width: 90%;
  }

  .nosotros {
    font-family: articulat-cf, sans-serif;
    font-weight: 500;
    font-style: normal;
    color: #000;
    background: #4ae900;
    padding: 1.2rem 1.3rem 1.2rem 1.6rem;
    border-radius: 32px;
    font-size: 1.8rem;
    top: -8rem;
  }

  .texto-nosotros {
    font-family: articulat-cf, sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: clamp(2.4rem, 5vw, 3rem);
    color: aliceblue;
    width: 98%;
    text-align: center;
    letter-spacing: -1px;
  }

  .texto-nosotros-2 {
    font-family: articulat-cf, sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: clamp(2.4rem, 5vw, 3rem);
    color: aliceblue;
    width: 98%;
    text-align: center;
    letter-spacing: -1px;
  }

  .texto-nosotros-3 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    font-family: articulat-cf, sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: clamp(2.4rem, 5vw, 3rem);
    color: aliceblue;
    width: 98%;
    text-align: center;
    letter-spacing: -1px;
  }

  .texto-nosotros .char,
  .texto-nosotros-2 .char,
  .texto-nosotros-3 .char {
    display: inline-block;
    opacity: 0;
    transform: translateY(30px);
  }

  .tituloPrimero .char,
  .textoPrimero .char,
  .boton-reunion .char {
    display: inline-block;
    will-change: transform, opacity;
  }

  .ubicacion {
    font-family: articulat-cf, sans-serif;
    font-weight: 500;
    font-style: normal;
    color: #fff;
    width: 100%;
    text-align: center;
  }

  /*==================== BOTONES ====================*/
  /*==================== BOTONES ====================*/

  .boton-reunion {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 0.5rem 0.5rem 1.8rem;
    background-color: #4ae900;
    color: black;
    font-weight: 700;
    text-decoration: none;
    border-radius: 999px;
    overflow: hidden;
    gap: 1rem;
    transition: all 0.5s ease;
    margin-top: 1.8rem;
    position: relative;
  }

  .boton-reunion:hover {
    cursor: none;
  }

  .boton-texto {
    font-family: articulat-cf, sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 1.8rem;
  }

  .icon-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(
      145deg,
      #2a2a2a,
      #1a1a1a
    ); /* contraste más notorio */
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.8),
      /* sombra inferior */ 0 2px 4px rgba(255, 255, 255, 0.08) inset; /* leve brillo interno */
    color: white;
    border-radius: 50%;
    width: 4.8rem;
    height: 4.8rem;
    transition: all 0.5s ease;
    position: relative;
    z-index: 2;
  }

  .boton-reunion:hover .icon-wrapper {
    background: #fff;
    color: black;
    transition: transform 0.5s ease;
  }

  .icon-wrapper i {
    transition: transform 0.5s ease;
    font-size: 20px;
  }

  .boton-reunion:hover .icon-wrapper i {
    transform: rotate(45deg);
    background-color: aliceblue;
  }

  .boton-reunion:hover .icon-wrapper {
    background-color: aliceblue;
  }

  .boton-portfolio {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(
      145deg,
      #2a2a2a,
      #1a1a1a
    ); /* contraste más notorio */
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.6),
      /* sombra inferior */ 0 2px 4px rgba(255, 255, 255, 0.05) inset; /* leve brillo interno */
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    cursor: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }

  .boton-portfolio.left {
    left: -70px;
  }

  .boton-portfolio.right {
    right: -70px;
  }

  .boton-portfolio i {
    color: #00ea00;
    font-size: 20px;
  }

  .boton-portfolio:hover {
    transform: translateY(-50%) scale(1.08);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.8),
      0 2px 4px rgba(255, 255, 255, 0.1) inset;
  }

  .slider-playpause {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #202020;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
    background: linear-gradient(
      145deg,
      #2a2a2a,
      #1a1a1a
    ); /* contraste más notorio */
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.6),
      /* sombra inferior */ 0 2px 4px rgba(255, 255, 255, 0.05) inset; /* leve brillo interno */
    transform: translateY(0%);
    cursor: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }

  .slider-playpause i {
    color: #00ea00;
  }

  .slider-playpause:hover {
    transform: scale(1.08);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.8),
      0 2px 4px rgba(255, 255, 255, 0.1) inset;
  }

  .etapa {
    font-family: articulat-cf, sans-serif;
    font-weight: 600;
    font-size: 1.8rem;
    width: 100%;
    background: none;
    border: none;
    color: #fff;
    text-align: left;
    padding: 1.2rem 0;
    font-weight: bold;
    cursor: pointer;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .boton-desplegar {
    background: #fff;
    border-radius: 50%;
    height: 45px;
    width: 45px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
  }

  .boton-desplegar i {
    color: #000;
  }

  .item-proceso.active .boton-desplegar {
    transform: rotate(90deg);
    background: #4ae900;
  }

  .link-web-unica {
    font-family: articulat-cf, sans-serif;
    font-weight: 600;
    font-size: 4.8rem;
    color: #fff;
    text-align: center;
    letter-spacing: -1px;
    line-height: 0.9;
  }

  .nav-link-footer {
    font-family: articulat-cf, sans-serif;
    font-weight: 500;
    color: #fff;
    font-size: 2rem;
  }
}

@media screen and (min-width: 1080px) {
  /*==================== HEADER ====================*/
  /*==================== HEADER ====================*/

  .menuToggle {
    display: none;
  }

  .nav-brand {
    display: none;
  }

  .navbar {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    position: relative;
    padding: 0;
    top: auto;
    left: auto;
  }

  .nav-link {
    text-decoration: none;
    font-weight: 700;
    cursor: none;
    padding: 0.8rem 1.2rem;
    border-radius: 24px;
    transition: 0.4s ease-in-out;
  }

  .nav-link:hover {
    color: #000;
    background: #4ae900;
    padding: 0.4rem 1.2rem;
    border-radius: 24px;
  }

  .header {
    padding: 0;
    width: 50%;
    height: 12vh;
    justify-content: center;
    align-items: center;
    transition: top 0.3s ease;
    top: 0;
    position: fixed;
    z-index: 999;
  }

  .header.hidden {
    top: -100px;
  }

  .header.visible {
    top: 0;
  }

  .background-video {
    top: 55%;
  }

  /*==================== SECCION ====================*/
  /*==================== SECCION ====================*/

  .seccion-proceso {
    height: 100vh;
  }

  footer {
    padding: 0px 20px;
  }

  /*==================== ARTICULOS ====================*/
  /*==================== ARTICULOS ====================*/

  .articulo-incluye {
    flex-direction: row;
    justify-content: space-around;
  }

  .proceso {
    width: 60%;
    height: 50vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  /*==================== DIV'S ====================*/
  /*==================== DIV'S ====================*/

  .container-incluye {
    justify-content: flex-start;
    align-items: flex-start;
    width: 45%;
    height: 45vh;
  }

  .logo-footer-container {
    height: 30vh;
  }

  .container-contacto {
    width: 15%;
    height: 7vh;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-end;
  }

  .container-datos {
    flex-wrap: nowrap;
  }

  /*==================== TITULOS ====================*/
  /*==================== TITULOS ====================*/

  .titulo-incluye {
    margin-top: 7.8rem;
  }

  .titulo-incluido {
    text-align: left;
  }

  /*==================== TEXTOS ====================*/
  /*==================== TEXTOS ====================*/

  .texto-incluye {
    width: 60%;
    font-size: 4rem;
  }

  .ubicacion {
    width: 15%;
    text-align: left;
  }

  /*==================== IMAGENES ====================*/
  /*==================== IMAGENES ====================*/

  .gif-incluye {
    width: 35%;
  }

  /*==================== BOTONES ====================*/
  /*==================== BOTONES ====================*/

  .etapa {
    font-size: 2rem;
  }

  /*==================== TITTULOS ====================*/
  /*==================== TITTULOS ====================*/

  .titulo {
    font-size: clamp(2.5rem, 6vw, 5rem);
  }

  .titulo-incluye {
    text-align: left;
  }

  main .titulo {
    width: 80%;
  }

  /*==================== TEXTOS ====================*/
  /*==================== TEXTOS ====================*/

  .texto-nosotros,
  .texto-nosotros-2,
  .texto-nosotros-3 {
    text-align: center;
  }

  .jump {
    display: none;
  }

  .articulo {
    height: 90vh;
  }

  .texto {
    font-size: clamp(1.4rem, 1.5vw, 1.8rem);
  }

  .texto-incluye {
    text-align: left;
  }

  .texto-nosotros {
    width: 60%;
  }

  .text-persuasion {
    font-size: 4.8rem;
  }

  .cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 20px; /* tamaño del círculo */
    height: 20px;
    background-color: #4ae900; /* tu verde característico */
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    filter: blur(1px); /* blur residual */
    box-shadow: 0 0 10px #4ae900, 0 0 20px #00ff88; /* resplandor */
    transform: translate(-50%, -50%);
    transition: transform 0.05s linear;
  }

  .portfolio-container {
    position: relative;
    width: 70%;
    aspect-ratio: 16/9;
    z-index: 2;
  }

  .portfolio-track {
    aspect-ratio: 16/9;
  }
}
.intro-overlay {
  position: fixed;
  inset: 0;
  background-color: #000;
  z-index: 99999;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  pointer-events: all;
  transition: opacity 0.8s ease-out;
}

.intro-contenedor {
  position: relative;
  height: fit-content;
  display: flex;
  justify-content: center;
  align-items: center;
}

.intro-text,
.intro-logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.intro-text {
  font-family: articulat-cf, sans-serif;
  font-weight: 500;
  font-size: clamp(2.4rem, 5vw, 4rem);
  color: #fff;
  text-align: center;
  opacity: 0;
  white-space: nowrap;
}

.intro-logo {
  width: 20rem;
  opacity: 0;
}

@media screen and (min-width: 1600px) {
  .nav-link {
    font-size: 2.8rem;
  }

  .nav-link:hover {
    color: #000;
    background: #4ae900;
    padding: 0.6rem 1.6rem;
    border-radius: 24px;
  }

  .header {
    width: 41%;
    height: 10vh;
    border-radius: 72px;
  }

  .ubicacion {
    width: 12%;
  }

  .titulo {
    font-size: clamp(4rem, 5vw, 6.5rem);
  }

  .titulo3 {
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    letter-spacing: 0;
  }

  .icon-circle i {
    font-size: 55px;
  }

  .titulo-incluye {
    margin-top: 14rem;
  }

  .texto {
    font-size: clamp(1.8rem, 1.3vw, 2.4rem);
  }

  .texto-nosotros,
  .texto-nosotros-2,
  .texto-nosotros-3 {
    font-size: clamp(2.5rem, 6vw, 5rem);
  }

  .text-persuasion {
    font-size: 5.8rem;
    letter-spacing: -2px;
  }

  .palabra-1 {
    padding-left: 6.5rem;
  }

  .palabra-2 {
    padding-left: 6.5rem;
  }

  .nav-link-footer {
    font-size: 3.2rem;
  }

  .intro-text {
    font-size: 6.8rem;
  }

  .intro-logo {
    width: 35rem;
  }
}
.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
