body {
    font-family: 'Montserrat' !important;
    margin: 0 !important;
    padding: 0 !important;
}

/*#########################################################
encabezado
##########################################################
*/

.carousel.movil .button {
    display: none !important;
}
/* Estilos generales */
header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #000;
    height: 5rem;
    position: relative;
    overflow: visible;
}

.logo {
    display: flex;
}

.logo img {
    width: 8rem;
    height: auto;
    top: 0%;
    left: 0%;
    padding: 5%;
}

.logo .mono {
    margin-top: 20%;
}

.redicc {
    justify-content: end;
    display: flex;
}

.apply-button {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 550;
    text-decoration: none;
    margin-right: 4.5rem;
}

/* Botón hamburguesa */
.hamburger {
    display: none;
    font-size: 2rem;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    margin-right: 2rem;
}

/* Menú móvil */
.mobile-menu {
    display: none;
    flex-direction: column;
    background-color: #000;
    position: sticky;
    width: 100%;
    top: 4rem;
    left: 0;
    padding: 0rem 0;
    z-index: 2;
}

.mobile-menu a {
    color: #fff;
    padding: 1rem;
    text-align: center;
    display: block;
    text-decoration: none;
    font-size: 0.8rem;
    border: 2px solid #ffffff;
}

/* Media Query para pantallas pequeñas */
@media (max-width: 768px) {
    header {
        padding: 0;
        height: 4rem;
    }

    .logo img {
        width: 4.5rem;
        height: auto;
        padding: 5%;
    }

    .logo .mono {
        width: 4.5rem;
        height: auto;
        padding: 5%;
        margin-top: 0%;
    }

    .apply-button {
        display: none;
    }

    .hamburger {
        display: block;
    }
}

/* Mostrar menú móvil cuando está activo */
.show-menu {
    display: flex;
}

.imagenes {
    padding-top: 2rem;
    padding-left: 4rem;
    padding-right: 4rem;
    padding-bottom: 2rem;
}

/* Media query para pantallas más pequeñas */
@media (max-width: 768px) {
    .imagenes {
        margin: 0 !important;
        /* Margen reducido */
        padding-top: 1rem !important;
        padding-left: 1rem !important;
        padding-right: 1rem !important;
        padding-bottom: 1rem !important;
    }

    .imagenes .grid {
        margin: 0 !important;
        padding: 0 !important;
    }

    .imagenes .meteoro {
        max-height: 14rem;
        margin-bottom: 1rem;

    }
}

/********************************************************************
Seccion para abajo y footer
********************************************************************/
/* Estilos para la navegación por scroll */

proyectos-pc {
    position: relative;
    width: 100%;
    min-height: 100vh; /* altura mínima del viewport */
    background-color: #ffffff; /* fondo blanco para que no se note el vacío */
  }
.carrusel-pc-container {
    background-color: #ffffff;
    min-height: 100vh;
    position: relative;
    overflow: visible !important;
    padding: 3rem 0;
  }
  
  .scroll-sections-container {
    position: relative;
    width: 100%;
    height: 100vh;
  }
  
  .scroll-section {
    width: 100%;
    height: 100vh; /* Altura completa de la ventana */
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
  }

  #section1 {
    opacity: 1;
    visibility: visible;
  }
  
  .scroll-section.active {
    opacity: 1;
    visibility: visible;
  }
  
  .dual-box-container {
    display: flex;
    justify-content: space-between;
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    gap: 1.5rem;
  }
  
  .single-item {
    justify-content: center;
  }
  
  .box-pc {
    background-color: #000000;
    color: #ffffff;
    padding: 4rem 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Cambiado de flex-start */
    align-items: flex-start; /* Cambiado de center para que coincida con la alineación izquierda */
    min-height: 60vh;
    max-width: 650px;
    width: 50%;
    border-radius: 8px;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255,255,255,0.3);
    box-sizing: border-box;
  }

  .box-pc:hover {
    transform: translateY(-5px);
}

  
  .box-pc-center {
    width: 70%;
    align-items: flex-start; /* Asegurando que también esté alineado a la izquierda */
  }
  
  .box-pc-left {
    border-left: 3px solid #ffc843;
  }
  
  .box-pc-right {
    border-right: 3px solid #ffc843;
  }
  
  .box-pc-center {
    border-left: 3px solid #ffc843;
    border-right: 3px solid #ffc843;
  }
  
  /* Indicadores de sección */
  .section-indicators {
    position: fixed;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 100;
  }
  
  .indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .indicator.active {
    background-color: #ffc843;
    transform: scale(1.2);
  }
  
  .title-pc {
    font-size: 2.8rem; /* Aumentado de 2rem */
    font-weight: 900;
    margin-bottom: 1.8rem;
    text-align: left; /* Cambiado de center */
    width: 100%;
    padding: 0 15px;
    line-height: 1.1;
  }


  
  /* Visibilidad del carrusel PC: visible en desktop, oculto en móvil */
  .carrusel-pc-container {
    display: block !important;
  }
  
  @media (max-width: 768px) {
    .carrusel-pc-container {
      display: none !important;
    }
  }
  
  /* ===== ESTILOS CARRUSEL MÓVIL ===== */
  .carrusel-movil-container {
    background-color: #000000;
    width: 100%;
  }
  
  .carrusel-movil {
    width: 100%;
  }
  
  .carousel-inner-movil {
    overflow: visible;
  }
  
  .carousel-item .box-movil {
    padding-top: 5rem;
    padding-bottom: 5rem;
    width: 100%;
    height: auto;
    min-height: 100vh;
    padding-left: 2rem;
    padding-right: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #000000;
    color: #ffffff;
    transition: transform 0.5s ease;
    backface-visibility: visible;
  }
  
  .title-movil {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 3rem;
    text-align: center;
  }
  
  .text-movil {
    text-align: left !important;
    text-justify: inter-word;
    hyphens: auto;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    max-width: 80%;
    line-height: 1.5;
  }
  
  .carousel-control-movil-prev,
  .carousel-control-movil-next {
    width: 10%;
    opacity: 0.8;
  }
  
  .carousel-indicators-movil {
    bottom: 20px;
  }
  
  .carousel-indicators-movil button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin: 0 4px;
    background-color: #555;
    opacity: 0.5;
  }
  
  .carousel-indicators-movil button.active {
    background-color: #fff;
    opacity: 1;
  }

  @media (min-width: 769px) and (max-width: 1199px) {
    .title-pc {
      font-size: 2.2rem; /* Aumentado de 1.8rem */
      margin-bottom: 2rem;
    }
    
    .text-pc {
      font-size: 1.1rem; /* Aumentado de 0.9rem */
      line-height: 1.7;
    }
  }
  
  /* ===== CONTROL DE VISIBILIDAD PARA AMBOS CARRUSELES ===== */
  /* Estos estilos deben estar al final del archivo CSS para tener prioridad */
  
  /* Visibilidad del carrusel PC: visible en desktop, oculto en móvil */
  .carrusel-pc-container {
    display: flex !important;
  }
  
  @media (max-width: 768px) {
    .carrusel-pc-container {
      display: none !important;
    }
  }
  
  /* Visibilidad del carrusel móvil: oculto en desktop, visible en móvil */
  .carrusel-movil-container {
    display: none !important;
  }
  
  @media (max-width: 768px) {
    .carrusel-movil-container {
      display: block !important;
    }
  }

/*
seccion nueva
*/

section {
    font-family: 'Oswald';
    height: 100vh;
    /* Ocupa el 100% de la altura de la ventana */
    display: flex;
    /* Opcional: Si deseas centrar el contenido dentro de la sección */
    flex-direction: column;
    align-items: center;
    /* Centra verticalmente el contenido */
    justify-content: center;
    /* Centra horizontalmente el contenido */
}

section .colab {
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
  }
  
  section .colab h1 {
    font-size: 8rem;
    font-weight: bold;
    color: #E5E5E5;
    line-height: 1;
    margin: 0;
    padding: 0;
    text-align: center;
    letter-spacing: -2px;
    overflow-wrap: break-word;
    word-wrap: break-word;
    hyphens: auto;
  }
  
  /* Ajustes para tablets */
  @media (max-width: 1024px) {
    section .colab h1 {
      font-size: 6rem;
    }
  }
  
  /* Ajustes para móviles */
  @media (max-width: 768px) {
    section .colab h1 {
      font-size: 3rem;
      letter-spacing: -1px;
    }
    
    section .colab {
      margin-bottom: 20px;
    }
  }
  
  /* Para pantallas muy pequeñas */
  @media (max-width: 375px) {
    section .colab h1 {
      font-size: 2.5rem;
    }
  }

.marcas-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .marcas {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 40px;
    padding: 30px;
  }
  
  .marca-wrapper {
    display: flex;
    align-items: center;
  }
  
  .left-side {
    justify-content: flex-end;
    padding-right: 10%;
  }
  
  .right-side {
    justify-content: flex-start;
    padding-left: 10%;
  }
  
  .marca {
    max-width: 150px;
    height: auto;
    transition: transform 0.3s ease;
  }
  
  .marca:hover {
    transform: scale(1.05);
  }
  
  /* Ajustes para tablet */
  @media (max-width: 1024px) {
    .marcas {
      gap: 30px;
    }
    
    .marca {
      max-width: 120px;
    }
  }
  
  /* Ajustes para móvil */
  @media (max-width: 768px) {
    section {
      height: auto;
      padding: 40px 0;
    }
    
    .marcas {
      grid-template-columns: 1fr 1fr;
      gap: 20px;
      padding: 15px;
    }
    
    .marca {
      max-width: 80px;
    }
    
    .left-side, .right-side {
      padding: 0;
    }
    
    .left-side {
      justify-content: center;
    }
    
    .right-side {
      justify-content: center;
    }
  }

/* footer*/
.full-height {
    height: auto;
    /* 100% de la altura de la ventana del navegador */

}

footer {
    background-color: #000000 !important;

}

footer .grid {
    grid-template-columns: 2fr 1fr;
}

footer .text2 {
    font-size: 1.5rem !important;
    width: 100% !important;
    text-align: start;
    font-weight: 900;
}

footer .text {
    font-size: 1.5rem !important;
    width: 100% !important;
    text-align: start;
    font-weight: bold;
}

footer .mono {
    width: 40rem !important;
}

footer .text1 {
    font-size: 6rem !important;
    width: 100% !important;
    font-family: 'Oswald';
}

footer .that {
    font-weight: 900;
    color: #ffc843;
}


@media (max-width: 768px) {
    footer {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .full-height {
        height: auto;
        /* Ajusta la altura según el contenido */
    }

    footer .grid {
        grid-template-columns: 1fr;
        /* Cambia a una columna para pantallas pequeñas */
        gap: 0;
        padding: 5px;
        /* Reduce aún más el padding */
    }

    /* Cambia el orden del contenedor de la imagen */
    footer .ml-auto {
        order: -1;
        /* Cambia el orden para que aparezca primero */
        margin-bottom: 20px;
        /* Añade espacio debajo de la imagen */
        text-align: center;
        /* Centra la imagen en la columna */
    }

    footer .text2 {
        font-size: 1.2rem !important;
        /* Tamaño de fuente más pequeño */
    }

    footer .text1 {
        font-size: 3rem !important;
        /* Reduce el tamaño de la fuente */
        text-align: start;
    }

    footer .text {
        font-size: 1.2rem !important;
        width: 100% !important;
        text-align: start;
        font-weight: bold;
    }

    footer .mono {
        width: 100% !important;
        /* Imagen más pequeña y que ocupe el ancho disponible */
    }

    .flex1 {
        text-align: center;
        /* Centra todo el contenido */
        padding-left: 0;
        /* Elimina padding */
    }

    .flex.grid-cols-3 {
        gap: 5rem;
        /* Reduce el espacio entre los iconos de redes sociales */
    }

    footer img {
        width: 2rem !important;
        /* Ajusta el tamaño de los íconos de redes sociales */
    }
}