@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Quicksand&display=swap");
@import url("fonts\fonnts.com-Pattanakarn_Regular.ttf");
* {
  margin: 0;
  padding: 0;
}

.menu-icon {
  width: 60px;
  height: 50px;
  position: fixed;
  z-index: 31;
  left: 5%;
  top: 1%;
  background: url("/imgs/ISO.png");
}

.menu-btn {
  position: fixed;
  z-index: 31;
  right: 1rem;
  top: 5px;
  width: 120px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  text-align: center;
  transition: all 0.5s ease-in-out;
}
.menu-btn__burguer {
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 1px;
  z-index: 2; /* Asegurarse de que esté sobre los bordes */
  transition: all 0.5s ease-in-out;
}
.menu-btn__border {
  position: absolute;
  background-color: #fff;
  transition: all 0.5s ease-in-out;
}
.menu-btn__border.top {
  width: 100%;
  height: 3px;
  top: 0;
  left: 0;
}
.menu-btn__border.bottom {
  width: 100%;
  height: 3px;
  bottom: 0;
  left: 0;
}
.menu-btn__border.left {
  width: 3px;
  height: 100%;
  top: 0;
  left: 0;
}
.menu-btn__border.right {
  width: 3px;
  height: 100%;
  top: 0;
  right: 0;
}
.menu-btn.open .menu-btn__burguer {
  color: transparent !important; /* Ocultar texto */
}
.menu-btn.open .menu-btn__border.top {
  transform: rotate(45deg) translate(23px, 10px);
  width: 45%; /* Ajuste para formar una "X" */
  left: 25%;
}
.menu-btn.open .menu-btn__border.bottom {
  transform: rotate(-45deg) translate(23px, -10px);
  width: 45%; /* Ajuste para formar una "X" */
  left: 25%;
}
.menu-btn.open .menu-btn__border.left, .menu-btn.open .menu-btn__border.right {
  opacity: 0; /* Ocultar los bordes verticales */
}

.navBar {
  position: fixed;
  top: 0;
  z-index: 30;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url("/imgs/1.png");
  background-size: cover;
  background-position: center;
  visibility: hidden;
  transform: translateY(-100%);
  transition: all 0.5s ease-in-out;
}
.navBar.open {
  visibility: visible;
  transform: translateY(0);
}
.navBar-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.navBar-nav__item {
  margin: 1.5rem 0;
  opacity: 0;
  transform: translateY(-20px);
  transition: all 0.5s ease-in-out;
}
.navBar-nav__item.open {
  transform: translateY(0);
  opacity: 1;
}
.navBar-nav__item.active > .navBar-nav__link {
  color: #ed9005;
}
.navBar-nav__link {
  font-size: 1.5rem;
  text-transform: uppercase;
  font-weight: 200;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  text-decoration: none;
  transition: -webkit-text-decoration 0.3s ease;
  transition: text-decoration 0.3s ease;
  transition: text-decoration 0.3s ease, -webkit-text-decoration 0.3s ease;
  display: inline-block;
  position: relative;
}
.navBar-nav__link::after {
  content: "";
  position: absolute;
  height: 5px;
  left: 0;
  bottom: -3px;
  width: 0%;
  background-color: #fff;
  transition: width 0.6s;
}
.navBar-nav__link:hover:after {
  width: 100%;
}
.navBar-nav__link:not(:hover):after {
  right: 0;
  left: auto;
}

.navBar-nav__item:nth-child(1) {
  transition-delay: 0.25s;
}

.navBar-nav__item:nth-child(2) {
  transition-delay: 0.35s;
}

.navBar-nav__item:nth-child(3) {
  transition-delay: 0.45s;
}

.navBar-nav__item:nth-child(4) {
  transition-delay: 0.55s;
}

.navBar-nav__item:nth-child(5) {
  transition-delay: 0.65s;
}

.navBar-nav__item:nth-child(6) {
  transition-delay: 0.75s;
}

.navBar-nav__item:nth-child(7) {
  transition-delay: 0.85s;
}

.somos {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
.somos__barra {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background-color: rgb(0, 0, 0);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 2px solid #fff;
}
.somos__video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -1;
  -o-object-fit: cover;
     object-fit: cover;
}
.somos__video__mobile {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -1;
  -o-object-fit: cover;
     object-fit: cover;
}
.somos__contenido {
  position: relative;
  z-index: 1;
  text-align: center;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.somos__titulo__texto, .somos__subtitulo__texto {
  margin: 0;
  padding: 0;
  text-transform: uppercase;
}
.somos__titulo__texto {
  font-size: 4rem;
  font-weight: bold;
}
.somos__subtitulo__texto {
  font-size: 2rem;
  margin-top: 1rem;
  font-weight: lighter;
}

#carouselExample {
  height: 100%;
  width: 100%;
}
#carouselExample .carousel-inner {
  height: 100%;
  width: 100%;
}
#carouselExample .carousel-inner .carousel-item {
  height: 100%;
}
#carouselExample .carousel-inner .carousel-item img {
  height: 100%;
  width: auto;
  margin: 0 auto;
  -o-object-fit: cover;
     object-fit: cover;
}
#carouselExample .carousel-indicators {
  bottom: 20px;
}
#carouselExample .carousel-indicators li {
  background-color: #444;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}
#carouselExample .carousel-indicators li.active {
  opacity: 1;
}
#carouselExample .carousel-control-prev,
#carouselExample .carousel-control-next {
  position: absolute;
  top: 90%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background-color: rgba(0, 0, 0, 0.7);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 1.5rem;
  transition: background-color 0.3s ease;
}
#carouselExample .carousel-control-prev:hover,
#carouselExample .carousel-control-next:hover {
  background-color: rgba(0, 0, 0, 0.6);
}
#carouselExample .carousel-control-prev .carousel-control-prev-icon,
#carouselExample .carousel-control-prev .carousel-control-next-icon,
#carouselExample .carousel-control-next .carousel-control-prev-icon,
#carouselExample .carousel-control-next .carousel-control-next-icon {
  filter: invert(1);
}

/* Ajusta el texto <p> en la primera sección para evitar superposiciones */
.construccion-texto {
  top: 10%;
  left: 5%;
  z-index: 10;
  color: #fff;
  font-size: 1.5rem;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 1rem;
  border-radius: 8px;
}

.carousel-item p {
  max-width: 90%; /* Ajusta el ancho sin que sea fijo */
  text-align: center;
  font-size: large;
  margin: 0 auto; /* Centra el texto */
  padding: 1rem; /* Agrega un poco de espacio */
  word-wrap: break-word; /* Asegura que las palabras largas no rompan el diseño */
}

.diseno {
  display: flex;
  height: 100vh;
  width: 100vw;
}
.diseno__texto {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
  background-color: #ff9800;
  color: #fff;
}
.diseno__texto__titulo {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
  padding: 1.4rem;
}
.diseno__texto__descripcion {
  padding: 1.4rem;
  font-size: 1.2rem;
  line-height: 1.6;
}
.diseno__texto__icono {
  position: absolute;
  bottom: 1rem; /* Siempre a 1rem del fondo */
  right: 1rem; /* Si necesitas alinearlo al lado derecho */
  background: transparent;
  color: #fff;
  width: 3rem;
  height: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  border: 2px solid #fff;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.diseno__texto__icono:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}
.diseno__imagen {
  flex: 1;
  background-image: url("/imgs/secciones/seccion1.png");
  background-size: cover;
  background-position: center;
}

.innovacion {
  display: flex;
  height: 100vh;
  width: 100vw;
}
.innovacion__texto {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
  background-color: #000;
  color: #fff;
}
.innovacion__texto__titulo {
  font-size: 2.5rem;
  font-weight: bold;
  padding: 1.4rem;
}
.innovacion__texto__descripcion {
  padding: 1.4rem;
  font-size: 1.2rem;
  line-height: 1.6;
}
.innovacion__texto__icono {
  position: absolute;
  bottom: 1rem; /* Siempre a 1rem del fondo */
  right: 2rem; /* Si necesitas alinearlo al lado derecho */
  background: transparent;
  color: #fff;
  width: 3rem;
  height: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  border: 2px solid #fff;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.innovacion__texto__icono:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}
.innovacion__imagen {
  flex: 1;
  background-image: url("/imgs/secciones/seccion4.png");
  background-size: cover;
  background-position: center;
}

.dialog {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8); /* Fondo semi-transparente */
  visibility: hidden; /* Oculto por defecto */
  opacity: 0; /* Invisible inicialmente */
  transition: opacity 0.4s ease, transform 0.4s ease; /* Suavidad al aparecer */
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.dialog.open {
  visibility: visible; /* Visible cuando se activa */
  opacity: 1; /* Totalmente visible */
}

.dialog-content {
  position: relative;
}

.dialog-content {
  background: #fff;
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
  max-width: 500px;
  width: 90%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.dialog-close-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: transparent;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #333;
}

.proyectos__proyecto__icono {
  font-size: 1.5rem;
  border: none;
  background: transparent;
  cursor: pointer;
  color: #333;
}

.proyectos {
  display: flex;
  height: 100vh;
  width: 100vw;
}
.proyectos__proyecto {
  flex: 1;
  position: relative;
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
.proyectos__proyecto#proyecto-1 {
  background-image: url("/imgs/fondo-proyecto-1.png");
}
.proyectos__proyecto#proyecto-2 {
  background-image: url("/imgs/fondo-proyecto-2.png");
}
.proyectos__proyecto#proyecto-3 {
  background-image: url("/imgs/fondo-proyecto-3.png");
}
.proyectos__proyecto::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1;
}
.proyectos__proyecto__contenido {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
}
.proyectos__proyecto__titulo {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 2rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}
.proyectos__proyecto__icono {
  position: absolute;
  background: transparent;
  color: #fff;
  width: 3rem;
  height: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  border: 2px solid #fff;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.proyectos__proyecto__icono:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

.dialog {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6); /* Fondo semitransparente */
  display: none; /* Oculto por defecto */
  justify-content: center;
  align-items: center;
  z-index: 1000;
}
.dialog.open {
  display: flex; /* Muestra el diálogo cuando tiene la clase `open` */
}
.dialog-content {
  background: #fff;
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
  max-width: 500px;
  width: 90%;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  position: relative;
}
.dialog-content .dialog-close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}

.proyecto {
  display: flex;
  height: 100vh;
  width: 100vw;
}
.proyecto__texto {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
  background-color: #ff9800;
  color: #fff;
}
.proyecto__texto__titulo {
  font-size: 2.5rem;
  font-weight: bold;
  padding: 1.4rem;
}
.proyecto__texto__descripcion {
  padding: 1.4rem;
  font-size: 1.2rem;
  line-height: 1.6;
}
.proyecto__texto__icono {
  position: absolute;
  bottom: 1rem; /* Siempre a 1rem del fondo */
  left: 1rem; /* Si necesitas alinearlo al lado derecho */
  background: transparent;
  color: #fff;
  width: 3rem;
  height: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  border: 2px solid #fff;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.proyecto__texto__icono:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}
.proyecto__imagen {
  flex: 1;
  background-image: url("/imgs/secciones/seccion3.png");
  background-size: cover;
  background-position: center;
}

.proyeccion {
  display: flex;
  height: 100vh;
  width: 100vw;
}
.proyeccion__texto {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
  background-color: #000;
  color: #fff;
}
.proyeccion__texto__titulo {
  font-size: 2.5rem;
  font-weight: bold;
  padding: 1.4rem;
}
.proyeccion__texto__descripcion {
  padding: 1.4rem;
  font-size: 1.2rem;
  line-height: 1.6;
}
.proyeccion__texto__icono {
  position: absolute;
  bottom: 1rem; /* Siempre a 1rem del fondo */
  right: 2rem; /* Si necesitas alinearlo al lado derecho */
  background: transparent;
  color: #fff;
  width: 3rem;
  height: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  border: 2px solid #fff;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.proyeccion__texto__icono:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}
.proyeccion__imagen {
  flex: 1;
  background-image: url("/imgs/3.png");
  background-size: cover;
  background-position: center;
}

.frase {
  position: relative;
  width: 100%;
  height: 100vh;
  background: url("/imgs/frase.png") center center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}
.frase::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}
.frase__contenido {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 2rem;
}
.frase__cita {
  font-size: 2rem;
  font-style: italic;
  line-height: 1.5;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.8);
}
.frase__autor {
  font-size: 1.5rem;
  font-weight: bold;
  color: #ed9005;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
}

:root {
  --scroll-size: 12px;
  --scroll-radius: 20px;
  --scroll-track: rgb(0 0 0 / 40%);
  --scroll-thumb-color: #ED6A5A;
}

body::-webkit-scrollbar {
  width: var(--scroll-size, 10px);
  height: var(--scroll-size, 10px);
}

body::-webkit-scrollbar-track {
  background-color: var(--scroll-track, transparent);
  border-radius: var(--scroll-track-radius, var(--scroll-radius));
}

body::-webkit-scrollbar-thumb {
  background-color: var(--scroll-thumb-color, grey);
  background-image: var(--scroll-thumb, none);
  border-radius: var(--scroll-thumb-radius, var(--scroll-radius));
}

.construccion {
  display: flex;
  height: 100vh;
  width: 100vw;
}
.construccion__texto {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
  background-color: #000;
  color: #fff;
}
.construccion__texto__titulo {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
  padding: 1.4rem;
}
.construccion__texto__descripcion {
  padding: 1.4rem;
  font-size: 1.2rem;
  line-height: 1.6;
}
.construccion__texto__icono {
  position: absolute;
  bottom: 1rem; /* Siempre a 1rem del fondo */
  right: 2rem; /* Si necesitas alinearlo al lado derecho */
  background: transparent;
  color: #fff;
  width: 3rem;
  height: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  border: 2px solid #fff;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.construccion__texto__icono:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}
.construccion__imagen {
  flex: 1;
  background-image: url("/imgs/secciones/seccion6.png");
  background-size: cover;
  background-position: center;
}

.desarrollo {
  display: flex;
  height: 100vh;
  width: 100vw;
}
.desarrollo__texto {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
  background-color: #ff9800;
  color: #fff;
}
.desarrollo__texto__titulo {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
  padding: 1.4rem;
}
.desarrollo__texto__descripcion {
  padding: 1.4rem;
  font-size: 1.2rem;
  line-height: 1.6;
}
.desarrollo__texto__icono {
  position: absolute;
  bottom: 1rem; /* Siempre a 1rem del fondo */
  left: 1rem; /* Si necesitas alinearlo al lado derecho */
  background: transparent;
  color: #fff;
  width: 3rem;
  height: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  border: 2px solid #fff;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.desarrollo__texto__icono:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}
.desarrollo__imagen {
  flex: 1;
  background-image: url("/imgs/secciones/seccion5.png");
  background-size: cover;
  background-position: center;
}

.contacto {
  display: flex;
  width: 100%;
  height: 65vh;
}
.contacto__izquierda {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #000;
  padding: 2rem;
}
.contacto__izquierda__titulo {
  font-size: 3rem;
  color: #fff;
  text-align: left;
  width: 100%;
  max-width: 90%;
  margin-bottom: 2rem;
}
.contacto__izquierda p {
  color: #fff;
  font-size: 1.25rem;
  line-height: 1.5rem;
}
.contacto .contacto__derecha {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background-color: #000;
  color: #fff;
  padding: 2rem;
}
.contacto .contacto__derecha__datos {
  display: flex;
  justify-content: space-between;
}
.contacto .contacto__derecha__datos__columna {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  margin-bottom: 2rem !important;
}
.contacto .contacto__derecha__datos__columna__dato {
  display: flex !important; /* Fuerza el comportamiento esperado */
  align-items: center;
  margin: 2rem;
  font-size: 1.4rem;
}
.contacto .contacto__derecha__datos__columna__dato i {
  font-size: 1.5rem; /* Tamaño del ícono */
  color: #fff; /* Color blanco */
}
.contacto .contacto__derecha__datos__columna__dato p {
  font-size: 1.2rem;
  color: #fff; /* Asegura que el texto también sea blanco */
}
.contacto .contacto__derecha__separador {
  width: 100%;
  height: 1px;
  background-color: #fff;
  opacity: 0.5;
  margin-bottom: 2rem;
}
.contacto .contacto__derecha__redes {
  display: flex;
  justify-content: space-around;
  gap: 1.5rem;
}
.contacto .contacto__derecha__redes a svg {
  width: 2rem;
  height: 2rem;
  filter: invert(1);
  transition: transform 0.3s ease;
}
.contacto .contacto__derecha__redes a svg:hover {
  transform: scale(1.2);
}

/* Tablets */
@media (min-width: 768px) and (max-width: 1023px) {
  .contacto,
  .proyeccion,
  .frase,
  .desarrollo,
  .diseno,
  .somos {
    flex-direction: column;
  }
  .contacto__left,
  .contacto__right,
  .proyeccion__contenido,
  .frase__contenido,
  .desarrollo__contenido,
  .diseno__contenido,
  .somos__contenido {
    width: 100%;
    font-size: small;
    text-align: center; /* Centra texto */
  }
  .frase__contenido {
    font-size: 1.2rem;
  }
  .somos__contenido h1,
  .somos__contenido h2 {
    font-size: 2.5rem;
  }
}
/* Móviles */
@media (max-width: 767px) {
  html, body {
    scroll-behavior: smooth;
    overflow-x: hidden; /* Oculta cualquier desbordamiento horizontal */
    width: 100vw; /* Asegura que el ancho no exceda el viewport */
  }
  html ::-webkit-scrollbar, body ::-webkit-scrollbar {
    width: 0px; /* Oculta la barra de desplazamiento */
    background: transparent; /* Hace que no se vea */
  }
  .contacto,
  .proyeccion,
  .frase,
  .desarrollo,
  .proyecto,
  .diseno,
  .somos {
    flex-direction: column;
  }
  /* ICON */
  .menu-icon {
    top: 0.8rem;
    left: 1.8%;
  }
  /* MENU */
  .menu-btn {
    top: 0.8rem;
    right: 0.5rem;
    width: 120px;
    height: 50px;
  }
  .navBar-nav {
    left: 40px;
    padding-top: 6rem;
    justify-content: unset;
  }
  /* SOMOS */
  .somos {
    height: auto;
  }
  .somos__barra {
    height: 80px;
    position: fixed;
  }
  .proyecto__texto__titulo {
    margin-bottom: 0;
  }
  .icono {
    display: none;
  }
  .contacto__derecha {
    padding: 0 !important;
    font-size: 0.5rem;
  }
  .contacto__derecha__columna {
    width: 50%;
    padding-bottom: 2rem;
  }
  .contacto__derecha__datos__columna__dato {
    display: flex;
    flex-direction: column; /* Apila icono y texto */
    align-items: center; /* Centra el contenido */
    text-align: center;
    gap: 4px; /* Espaciado entre icono y texto */
  }
  .contacto__derecha__datos__columna__dato p {
    width: 120px; /* Reduce el tamaño en pantallas más pequeñas */
    height: 50px;
  }
  /* SECCIONES*/
  .barra {
    height: 80px;
    display: flex;
    justify-content: space-between;
  }
  .somos {
    height: 75vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }
  .somos__barra {
    height: 80px;
    border-bottom: 1px solid #fff;
    background-color: black;
    z-index: 10;
  }
  .somos__video-wrapper {
    position: relative;
    flex: 1;
    width: 100%;
    overflow: hidden;
  }
  .somos__video {
    display: none;
    flex: 1;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .somos__video__mobile {
    flex: 1;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    display: block;
  }
  .somos__contenido {
    padding: 2rem 1rem;
    text-align: center;
  }
  .somos__titulo__texto {
    font-size: 2.2rem;
  }
  .somos__subtitulo__texto {
    font-size: 1.2rem;
    margin-top: 0.5rem;
  }
  /* DISEÑO */
  .diseno {
    flex-direction: column;
  }
  .diseno__imagen {
    background-image: url("/imgs/mobile/SOMOS.png");
    height: 20vh;
    width: 100%;
  }
  .diseno__imagen {
    order: 2;
  }
  .diseno__texto {
    order: 1;
  }
  .diseno__texto {
    width: 100%;
    padding: 1rem;
  }
  .diseno__texto__titulo {
    font-size: 2rem;
  }
  .diseno__texto__descripcion {
    font-size: 1.2rem;
  }
  .proyecto {
    flex-direction: column;
    height: auto;
  }
  .proyecto__imagen {
    background-image: url("/imgs/mobile/PROYECTO.png");
    min-height: 20vh;
    width: 100%;
  }
  .proyecto__imagen {
    order: 1;
  }
  .proyecto__texto {
    order: 2;
  }
  .proyecto__texto {
    width: 100%;
    padding: 1rem;
  }
  .proyecto__texto__titulo {
    font-size: 2rem;
  }
  .proyecto__texto__descripcion {
    font-size: 1.2rem;
  }
  .proyeccion {
    flex-direction: column;
    height: auto;
  }
  .proyeccion__imagen {
    background-image: url("/imgs/mobile/DISENOS.png");
    height: 50vh;
    width: 100%;
  }
  .proyeccion__imagen {
    order: 1;
  }
  .proyeccion__texto {
    order: 2;
  }
  .proyeccion__texto {
    width: 100%;
    padding: 1rem;
  }
  .proyeccion__texto__titulo {
    font-size: 2rem;
  }
  .proyeccion__texto__descripcion {
    font-size: 1.2rem;
  }
  .innovacion {
    flex-direction: column;
    height: auto;
  }
  .innovacion__imagen {
    background-image: url("/imgs/mobile/INNOVACION.png");
    min-height: 40vh;
    width: 100%;
  }
  .innovacion__texto {
    width: 100%;
    padding: 1rem;
  }
  .innovacion__texto__titulo {
    font-size: 2rem;
  }
  .innovacion__texto__descripcion {
    font-size: 1.2rem;
  }
  .desarrollo {
    flex-direction: column;
    height: auto;
  }
  .desarrollo__imagen {
    background-image: url("/imgs/mobile/DESARROLLOS.png");
    min-height: 50vh;
    width: 100%;
  }
  .desarrollo__imagen {
    order: 1;
  }
  .desarrollo__texto {
    order: 2;
  }
  .desarrollo__texto {
    width: 100%;
    padding: 1rem;
  }
  .desarrollo__texto__titulo {
    font-size: 2rem;
  }
  .desarrollo__texto__descripcion {
    font-size: 1.2rem;
  }
  .construccion {
    flex-direction: column;
    height: auto;
  }
  .construccion__imagen {
    background-image: url("/imgs/mobile/CONSTRUCCION.png");
    min-height: 50vh;
    width: 100%;
  }
  .construccion__imagen {
    order: 1;
  }
  .construccion__texto {
    order: 2;
  }
  .construccion__texto {
    width: 100%;
    padding: 1rem;
  }
  .construccion__texto__titulo {
    font-size: 2rem;
  }
  .construccion__texto__descripcion {
    font-size: 1.2rem;
  }
  .contacto__left,
  .contacto__right,
  .proyeccion__contenido,
  .frase__contenido,
  .desarrollo__contenido,
  .diseno__contenido {
    width: 100%;
  }
  .frase__contenido {
    font-size: 1rem;
  }
  .somos__contenido h1,
  .somos__contenido h2 {
    font-size: 2rem;
  }
  .contacto__derecha__redes {
    padding-bottom: 6rem;
  }
}
@font-face {
  font-family: "Pattanakarn";
  src: url("/fonts/Pattanakarn.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "InterphasesRegular";
  src: url("/fonts/Interphases-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "InterphasesLight";
  src: url("/fonts/Interphases-ExtraLight.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
body {
  background: #5D576B;
  color: set-text-color(#5D576B);
  height: 100vh;
  font-family: "InterphasesRegular", sans-serif;
  line-height: 1;
  margin: 0;
  padding: 0;
  overflow-x: hidden; /* Oculta el desplazamiento horizontal */
}

h1 {
  font-family: Pattanakarn;
}

li {
  font-family: Pattanakarn;
}

a {
  color: set-text-color(#5D576B);
  text-decoration: none;
}

.line-break {
  display: block;
  margin-top: 0.5rem; /* o el espacio que quieras */
}

.text-secondary {
  color: #ed9005;
}/*# sourceMappingURL=main.css.map */