*{
  box-sizing: border-box;
  font-family: 'Lato', sans-serif !important;
}

body {
  margin: 0;
  font-family: 'Lato', sans-serif !important; 
  color: #ffffff;
  background-color: #ffffff;
  overflow-x: hidden;
}

.fa, .fas, .far, .fab {
  font-family: 'Font Awesome 5 Free', sans-serif !important; /* Ajusta según la versión */
}


.navbar-top {
  background: linear-gradient(to right, #22225f, #2eb2a7);
  color: white;
  display: flex;
  justify-content: flex-end; /* Alinea todos los elementos hacia la derecha */
  align-items: center;       /* Alinea verticalmente los elementos en el centro */
  padding: 10px 10px;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

.navbar-top .flags {
  display: flex;
  gap: 10px;
  align-items: center; 
  margin-right: 5px;
  margin-top: -5px;
}

.navbar-top .flags img {
  width: 25px;
  height: 15px;
  object-fit: cover;

}

.btn-contacto {
  background: linear-gradient(90deg, #262c5e, #28a694);
  color: #fff;
  border: none;
  cursor: pointer;
  padding: 6px 10px;
  font-size: 14px;
  border-radius: 4px;
  margin-top: -9px;
  display: inline-block;
  text-decoration: none;
  transition: background-position 0.4s;
  background-size: 200%;
}

.btn-contacto:hover {
  background-position: right;
  text-decoration: none;
}

@media screen and (max-width: 768px) {
  .btn-contacto {
    margin-top: 10px; /* Ajuste para dispositivos móviles */
  }
}

.btn-contacto:hover {
  background: linear-gradient(to right, #1f244c, #299c87);
  text-decoration: none;
}

.navbar-top .links {
  display: flex;
  gap: 20px;     
  margin-left: auto;         
}

.large-bar {
  font-size: 20px; 
  display: inline-block;
  vertical-align: middle;
  margin: 0;
  margin-top: -3px;
}

.navbar-top .links a {
  color: white;
  text-decoration: none;
  font-size: 15px;
}

.navbar-top .links a:hover {
  text-decoration: underline;
}

/* Estilos responsivos */
  @media (max-width: 768px) {
    .navbar-top {
      flex-direction: column; 
      align-items: center; 
      background: linear-gradient(to bottom, #22225f, #2eb2a7);
    }
  
    .navbar-top .links {
      flex-direction: column; 
      gap: 3px; 
      text-align: center; 
      margin: 0; 
      font-size: 10px; 
      align-items: center;
    }
  
    .navbar-top .flags {
      margin-bottom: 10px; 
    }
  }


@media (max-width: 992px) { /* Para tablets */
  .navbar-top {
    padding: 8px; 
    left: 0;
  }

  .navbar-top .flags img {
    width: 30px; 
    height: 20px;
    margin-top: 2px;
  }

  .navbar-top .links a {
    font-size: 14px; 
    text-align: center;
    margin-top: 2px;
  }
}




.header {
  width: 100%;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  padding: 0.5rem 0;
  z-index: 1000;
  transition: all 0.3s ease-in-out;
  top: 40px; 

}

.header-content {
  max-width: 100rem;
  width: 90%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #ffffff;
}

nav.nav {
  width: 100%;
  display: flex;
  align-items: center;
  margin-top: 8px;
}

.logo {
  max-width: 113.4px;
  height: 15.12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
}

.logo img {
  width: 13rem;
}

.mobile-menu {
  display: none;
  cursor: pointer;
}

.mobile-menu div {
  width: 2rem;
  height: 0.2rem;
  background-color: #28a694;
  margin: 0.5rem;
  transition: all ease-in-out 0.3s;
}

nav.nav ul {
  flex-wrap: wrap;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-around;
}

nav.nav ul li {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.5rem;
}

nav.nav a{
  margin-top: 10px;
}

nav.nav ul li a {
  font-size: clamp(0.8rem, 3vw, 1.5rem);
  color: #28a694;
  transition: all 0.3s ease-in-out;
}

nav.nav ul li a:hover {
  color: #262c5e;
  text-decoration: underline;
}

.dropdown-container {
  position: relative;
}

.dropdown-toggle {
  cursor: pointer;
  padding-left: 1rem;
}

.dropdown-menu {
  left: -10;
  top: calc(100% + 5px);
  background-color: #ffffff;
  border: 1px solid #10afd4;
  border-top: none;
  min-width: 100px;
}

.dropdown-menu a {
  white-space: nowrap;
  color: #000000;
  text-decoration: none;
  padding: 5px;
  display: block;
}

.dropdown-toggle:hover + .dropdown-menu, .dropdown-container:hover .dropdown-menu {
  display: block;
}

@media (max-width: 768px){
  .logo img{
    width: 100%;
    height: auto;
    margin-top: -10px;
  }
  
  .header-content{
    margin-top: 20px;
  }

}

@media (max-width: 992px) {
  .logo img {
    width: 11rem;
  }

  .header{
    left: 0;
  }
}

@media (max-width: 768px) {
  .header {
    margin-top: 115px;
    padding: 1rem 0;
    flex-direction: column;
    padding: 0.25rem 0;
    left: 0;
  }

  .header-content {
    flex-direction: column;
    align-items: center;
  }

  .mobile-menu {
    display: block;
    position: absolute;
    right: 20px;
    top: 10px;
  }

  nav.nav {
    display: none;
    width: 100%;
    max-height: 75vh;
    position: absolute;
    z-index: 1000;
  }

  nav.nav.active {
    display: flex;
    flex-direction: column;
  }

  nav.nav ul {
    flex-direction: column;
    align-items: center;
  }

  nav.nav ul li {
    margin: 10px 0;
    width: 100%;
    text-align: center;
  }

  .dropdown-menu {
    position: static;
    display: none;
    width: 100%;
  }

  .dropdown-toggle:hover + .dropdown-menu, 
  .dropdown-container:hover .dropdown-menu {
    display: none;
  }

  .dropdown-container.active .dropdown-menu {
    display: block;
  }

  nav.nav ul li.nav-links {
    margin: 5px 0; /* Reducir margen vertical entre los elementos en móviles */
  }

  nav.nav ul li.nav-links a {
    padding: 0.5rem 0.5rem; /* Ajustar padding para pantallas pequeñas */
  }
}


@media (max-width: 480px) {
  .logo img {
    width: 8rem;
  }
}






.chat-container-hojas {
  position: fixed;
  bottom: 85px; 
  right: 20px;
  background-color: #1d3557;
  color: white;
  padding: 10px;
  border-radius: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  gap: 10px; 
  z-index: 1002; 
}

.chat-container-hojas p {
  margin: 0;
  display: none; 
  background-color: #1d3557; 
  padding: 10px; 
  border-radius: 10px; 
}

.chat-container-hojas:hover p {
  display: block;
}

.hojas-button {
  background-color: #fff; 
  border-radius: 50%;
  width: 40px;
  height: 40px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  display: flex;
  justify-content: center;
  align-items: center; 
  z-index: 1003; 
}

.hojas-button img {
  width: 40px; 
  height: 40px; 
}

/* Estilos para la clase form */
.form {
  position: fixed;
  bottom: 150px; /* Ajusta para no superponerse con otros contenedores */
  right: 20px;
  background-color: #1d3557;
  color: white;
  padding: 10px;
  border-radius: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 1002;
}

.form p {
  margin: 0;
  display: none;
  background-color: #1d3557;
  padding: 10px;
  border-radius: 10px;
}

.form:hover p {
  display: block;
}

.boton-form {
  background: #fff;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1003;
}

.boton-form img {
  width: 30px;
  height: 30px;
  margin-left: 8px;
}

.carousel-item {
  position: relative;
}

.carousel-caption {
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white; 
}

.carousel-item img {
  object-fit: cover;
  height: auto;
  width: 100%;  
  max-height: 650px; 
}


.chat-container-whats {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #1d3557;
  color: white;
  padding: 10px;
  border-radius: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  gap: 10px; /* Espacio entre el mensaje y el botón */
  z-index: 1000; /* Asegura que esté por encima de otros elementos */
}

.chat-container-whats p {
  margin: 0;
  display: none; 
  background-color: #1d3557;
  padding: 10px; 
  border-radius: 10px; 
}

.chat-container-whats:hover p {
  display: block; 
}

.whatsapp-button {
  background-color: #25D366;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  display: flex;
  justify-content: center;
  align-items: center; /* Centrar contenido */
  z-index: 1001; /* Asegura que el botón esté encima del mensaje */
}

.whatsapp-button img {
  width: 70px; 
  height: 36px; 
}

@media (max-width: 768px) {
  .chat-container-whats, .chat-container-hojas, .form {
    right: auto;
    left: 20px; 
  }

  .chat-container-hojas {
    bottom: 150px; 
  }

  .chat-container-whats {
    bottom: 20px; 
  }

  .form {
    bottom: 85px; 
  }
}

.slider {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.slides {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.slide {
  min-width: 100%;
  box-sizing: border-box;
  position: relative;
}

.slide img {
  width: 100%;
  height: auto;
}

.overlay-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  padding: 10px;
  border-radius: 5px;
}

.slider-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  border-radius: 5px;
  z-index: 10;
  font-size: 18px; /* Tamaño de la fuente */
}

.slider-button-left {
  left: 10px; /* Espaciado desde la izquierda */
}

.slider-button-right {
  right: 10px; /* Espaciado desde la derecha */
}

.slider-button:hover {
  background-color: rgba(255, 255, 255, 0.7); /* Fondo al pasar el mouse */
  color: black; /* Color del texto al pasar el mouse */
}

@media screen and (max-width: 768px) {
  .slider {
    margin-top: 200px; 
}
}

@media screen and (max-width: 911px) {
  .slider {
    margin-top: 200px; 
}
}



main.main {
  
  text-align: center;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

section {
  width: 100%;
}


section#home {
  height: 70vh;
  max-width: none;
}

@media screen and (max-width: 768px) {
  section#home {
    height: auto; /* Altura automática para dispositivos móviles */
    min-height: 70vh; /* Altura mínima igual al 100% del viewport height */
    padding-top: 4.5rem; /* Espacio superior para encabezados fijos */
    margin-top: -100px;
  }
}

@media screen and (min-width: 769px) and (max-width: 1024px) {
  section#home {
    height: 50%; /* Ajusta la altura automáticamente al contenido en tabletas */
    padding-top: 4rem; /* Espacio superior para tabletas */
    min-height: 50vh; /* Altura mínima para llenar la pantalla */
  }

  .home-content {
    padding-top: 3rem; /* Ajuste de espacio superior en tabletas */
    height: auto; /* Altura dinámica según el contenido */
    justify-content: center; /* Centra el contenido verticalmente */
  }

  .home-text {
    padding-top: 0; /* Elimina cualquier padding superior existente */
    transform: translateY(-30px);
    padding: 0 2rem; /* Ajuste del padding lateral en tabletas */
    text-align: center; /* Centra el texto horizontalmente */
  }

  .home-text h1 {
    font-size: 2.5rem; /* Tamaño del título en tabletas */
    margin-bottom: 1rem; /* Espacio entre el título y el párrafo */
  }

  .home-text p {
    font-size: 1.2rem; /* Tamaño de texto para el párrafo */
    padding: 0; /* Elimina padding adicional en el párrafo */
  }
}


section#home .home-text h1 span {
  color: #2eb2a7; /* color para teamco consulting s.a.s */
}

section#home .home-text h1 {
  color: #262c5e; /* Color para la palabra Teamco */
}



.home-content {
  padding-top: 0;
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

@media screen and (max-width: 768px) {
  .home-content {
    padding-top: 2rem; /* Ajuste el espacio superior para pantallas más pequeñas */
  }
}

.home-text {
  width: 80%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1;
  opacity: 1;
  margin-top: 150px;
}


.home-text h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-family: 'arial', cursive;
  color: #02416d;
  margin-bottom: 1rem;
  text-align: center;
}

.home-text h1 span {
  font-size: clamp(2rem, 5vw, 3rem);
  font-family: 'arial', cursive;
  color: #32a0cc;
  font-weight: 700;
  margin-bottom: 1rem;
}

.home-text p {
  text-align: justify;
  font-size: clamp(1rem, 2vw, 1.5rem);
  color: #525050;
  font-weight: 300;
  margin-bottom: 1rem;
  padding: 40px;
}

.btn {
  display: inline-block; 
  font-size: clamp(1rem, 2vw, 1.5rem);
  background: linear-gradient(to right, #262c5e, #28a694);
  margin-top: 1rem;
  padding: 1rem;
  color: #fff;
  font-weight: 300;
  text-decoration: none;
}

.btn:hover {
  background: linear-gradient(to right, #28a694, #262c5e);
  color: #fff;
}

section#services {
  background-color: #fff;
  padding: 9rem 0;
  max-width: 100%;
}





#projects{
  background-color: #fff;
}

section#projects {
  background-color: #ffffff;
  max-width: 100rem;
  margin: 0 auto; /* Centra el contenido */
  padding: 2rem; 
}

/*Este solo funciona para solucionar el error de desplazamiento cuando haces clic en el banner y te manda mas abajo*/
#ancla-projects {
  display: block;
  height: 160px; 
  margin-top: -70px; 
}

.projects-content {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: -4rem 0.5rem;
  background-color: #fff;
}

.projects-text {
  width: 90%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 100;
  margin-bottom: 3rem;
  text-align: center;
}

.projects-text h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  color: #262c5e;
  font-weight: 200;
  margin-bottom: 1rem;
}

.resaltadoLT{
  color: #28a694;
  font-weight: bold;
}

.projects-text p {
  width: 80%;
  text-align: left;
  font-size: clamp(1rem, 2vw, 1.5rem);
  color: #525050;
  font-weight: 300;
  margin: 0 auto;
  margin-bottom: 1rem;
}

.projects-list {
  width: 90%;
  display: grid;
  column-gap: 2rem;
  row-gap: 2rem;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  justify-content: center;
}

.project-item {
  margin: 3rem 0;
  width: 100%;
  display: flex;
  text-align: center;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  border-radius: 0.5rem;

  position: relative;
}

.project-image img {
  width: 100%;
  height: 200px;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  object-fit: cover;
}

.project-image {
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.project-image button {
  width: 100%;
  min-height: 2rem;
  border-radius: 0.5rem;
  background: #fff;
  color: #a0a0a0;
  font-size: 16px;
  border: none;
  cursor: pointer;
  position: absolute;
  bottom: -4rem; 
  left: 50%; 
  transform: translateX(-50%); 
  transition: all 0.3s ease-in-out;
}

@media (max-width: 768px){
  .project-image button {
    font-size: 13px;
  }
}


section#contact {
  background-color: #f6f6f7;
  height: 100vh;
  padding: 4rem 2rem;
}

.footer {
  background-color: #fff;
  border-top: 2px solid #000000;
  padding: 2rem 2rem;
  width: 100%;
  display: flex;
  justify-content: space-between; 
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  margin-top: -5rem;
}

.footer-bottom {
  text-align: center;
  padding: 10px 0;
  color: #525050;
  font-size: 14px;
  position: relative; /* Añadimos posición relativa para que el pseudo-elemento pueda posicionarse correctamente */
}

.footer-bottom::before {
  content: ''; 
  position: absolute;
  top: 0;
  left: 50%; /* Posicionamos el elemento en la mitad del contenedor */
  transform: translateX(-50%); 
  width: 800px; /* Ancho del 50% del contenedor */
  height: 2px; /* Altura de la línea */
  background-color: #000; 
}



.footer .container {
  width: 100%;
  display: flex;
  max-width: 90%;
  justify-content: space-between; 
  flex-wrap: wrap;
  margin-top: 1rem;
}



.footer-col h4 {
  font-size: clamp(18px, 3.5vw, 20px);
  color: #0d1440;
  text-transform: capitalize;
  margin-bottom: 25px;
  position: relative;
  text-align: center;
}

.footer-col {
  flex-basis: 25%;
  text-align: left;
  margin: 0 auto;
  padding-left: 5px;
  line-height: 1.4;
}

.footer-col a[href^="mailto:"] {
  text-transform: none; /* Asegura que el correo electrónico no se muestre en mayúsculas */
}



.footer-col ul li:not(:last-child) {
  margin-bottom: 10px;
}

.footer-col ul li {
  display: flex;
  align-items: center;
}

.footer-col ul li i {
  margin-right: 0.4rem;
  color: #000000;
}


.footer-col ul li a{
  margin-right: 0.4rem;
  font-size: 15px;
  text-transform: capitalize;
  color: #333333;
  text-decoration: none;
  color: #333333;
  display: block;
  transition: all 0.8s ease
}

.footer-col p {
  width: 70%;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.5px;
  text-transform: capitalize;
  color: #333333;
  text-decoration: none;
  color: #333333;
  display: block;
  transition: all 0.8s ease
}

.footer-col ul li a:hover,
.footer-col p:hover {
  color: #333333;;
  padding-left: 8px;
}

.footer-col .social-links a {
  display: inline-block;
  height: 40px;
  width: 40px;
  background-color: rgba(12, 10, 10, 0.2);
  margin: 0 10px 10px 0;
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
  color: #000000;
  transition: all 0.5s ease;
  color: #075E54;
}

.footer-col .social-links a:hover {
  color: #075E54;
  background-color: #000000;
}

.footer-col .social-links a p {
  font-size: 0.8rem; 
}

#logo-footer {
  height: 2cm;
  width: 0,7cm; 
  cursor: pointer;
  margin: 0 auto; 
  margin-left: 50px;
  position: relative;
  top: 20px;
}

.texto-footer {
  font-size: 12px !important; 
  color: #333;
  text-align: center;
  margin-top: 10px;
  font-weight: bold;
  margin-left: 55px;
}

@media (max-width: 768px) {
  .texto-footer {
    font-size: 10px; /* Reduce el tamaño de la fuente en dispositivos más pequeños */
    margin-left: 20px; /* Ajusta el margen para móviles */
  }
}


#logo-footer-En {
  height: 2cm;
  width: 0,7cm; 
  cursor: pointer;
  position: relative;
  top: 20px;
  margin: 0 auto; 
  margin-left: 50px;
}

#linkedin-logo {
  position: relative;
  height: 40px; 
  width: auto; 
  margin-top: 10px; 
  top: -120px;
  margin-left: 750px;
  cursor: pointer;
  transition: transform 0.3s ease-in-out; 
}

#linkedin-logo:hover {
  animation: floating 3s infinite ease-in-out;
}

@keyframes floating {
  0% {
    transform: translateY(-5px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(-8px);
  }
}

@media (max-width: 1200px) {
  #linkedin-logo {
    margin-left: 600px; /* Ajuste el margen según sea necesario */
  }
}

@media (max-width: 992px) {
  #logo-footer, #logo-footer-En {
    height: 150px;
    width: 170px;
  }

  #linkedin-logo {
    top: -90px;
    margin-left: 500px; /* Ajuste el margen según sea necesario */
  }
}

@media (max-width: 768px) {
  #logo-footer, #logo-footer-En {
    height: 120px;
    width: 140px;
    margin-left: 20px;
  }

  #logo-footer-En {
    top: -30px;
  }

  #linkedin-logo {
    top: -70px;
    margin-left: 300px; 
  }
}

@media (max-width: 576px) {
  #logo-footer, #logo-footer-En {
    height: 100px;
    width: 140px;
    margin-left: 10px;
  }

  #logo-footer-En {
    top: -20px;
  }

  #linkedin-logo {
    top: -20px;
    margin-left: 10px; 
  }
}



@media screen and (max-width: 600px) {
  .footer-col {
    flex-basis: 100%; 
    text-align: left;
  }
  
  .footer-col p {
    white-space: nowrap; 
    text-overflow: ellipsis; 
  }
}









/* responsive */
@media screen and (max-width: 700px) {
  .about-content {
    padding: 0;
  }
  .about-image {
    width: 95%;
  }
  .about-content-section,
  .about-content-section:last-child {
    flex-direction: column;
  }
}

@media screen and (max-width: 600px) {
  .projects-list {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-col ul li a,
  .footer-col p {
    font-size: 14px;
  }
}

@media screen and (max-width: 550px) {
  .projects-list {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-text {
    width: 100%;
    margin: 0;
  }
  .header-content {
    align-items: baseline;
  }

  .services-list {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  nav.nav {
    position: absolute;
    right: 0;
    width: 50vw;
    background-color: rgba(3, 139, 187, 0.8);
    height: 100vh;
    transform: translateX(100%);
    transition: all ease-in-out 0.4s;
    z-index: -5;
  }

  nav.nav ul {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    justify-content: space-around;
  }
  nav.nav li {
    margin: 0;
    opacity: 0;
  }

  nav.nav ul li a {
    font-size: 1.5rem;
    color: #fff;
  }

  @keyframes LinksFadeIn {
    from {
      opacity: 0;
      transform: translateX(50px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }

  .mobile-menu {
    display: initial;
    
  }

  .mobile-menu.active .line1 {
    transform: rotate(-45deg) translate(-6px, 8px);
  }

  .mobile-menu.active .line2 {
    opacity: 0;
  }

  .mobile-menu.active .line3 {
    transform: rotate(45deg) translate(-5px, -7px);
  }

  nav.nav.active {
    transform: translateX(0);
  }

  .footer-col {
    width: 50%;
    margin-bottom: 30px;
  }
}

@media screen and (max-width: 400px) {
  .projects-list {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 300px) {
  .projects-list {
    grid-template-columns: 1fr;
  }
  .footer-col {
    width: 100%;
  }
}






.titulo {
  text-align: center;
  font-size: 3rem;
  font-weight: 200;
  margin-bottom: 20px;
  color: #262c5e;
}

@media (max-width: 768px) {
  .titulo {
      display: none;
  }
}


.category {
  width: 90%;
  max-width: 1200px;
  padding: 20px;
  margin: 20px auto;
  align-items: center;
  background-color: #fff;
  background: #fff;
}

#clientes {
  scroll-margin-top: 100px; 
}

.general-title{
  font-size: clamp(2rem, 5vw, 3rem);
  color: #262c5e;
  margin-bottom: 1rem;
  margin: 0 auto;
  text-align: center;
}

.category-title {
  font-size: 1.5em;
  color: #333;
  margin-bottom: 20px;
  text-align: center;
}
.logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  background-color: #fff;
  object-fit: contain;
}
.company-logo {
  width: 170px;
  height: auto;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 10px;
  background-color: #fff;
  border: 1px solid #e0e0e0;
}

.todos{
  max-width: 170px;
  width: 100%;
  height: 100px;
  object-fit: contain
}

.company-logo:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
.category{
  margin-right: 10px;
}

}

.gallery-container{
  background-color: #fff;
  margin-top: 3rem;
}

#aliados{
  scroll-margin-top: 130px; 
}


.gallery-title{
  color: #001533;
  background-color: #fff;
}




.gallery-title {
  margin-top: 20px;
  margin-bottom: 70px;
  text-align: center;
  font-size: 30px;
  background-color: #fff;
  color: #262c5e;
}

/* Pausar animación al hacer hover */
.gallery:hover {
  animation-play-state: paused;
}

.highlight-aliados {
  color: #262c5e; /* Color para "aliados" */
}

.highlight-comerciales {
  color: #28a694; /* Color para "comerciales" */
}






section#about {
  background-color: #f6f6f7;
  max-width: 100rem;
  margin: 0 auto; /* Centra el contenido */
}

.about-content {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2rem;
  align-items: center;
  justify-items: center;
  
}

.about-content-section {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-content-section:last-child {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  justify-content: center;
}

.about-text {
  width: 50%;
  padding: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 100;
  margin-bottom: 3rem;
}

.about-text h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  color: #038bbb;
  font-weight: 700;
  margin-bottom: 1rem;
  text-align: center;
}

.about-text p {
  text-align: justify;
  font-size: clamp(1rem, 2vw, 1.5rem);
  color: #232323;
  font-weight: 300;
  margin-bottom: 1rem;
}

.about-image {
  width: 50%;
  height: auto;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 0.5rem;
}

.BotonLDT {
  background-color: #0059ff;
  font-size: 15px;
  color: #ffffff;
  width: 250px;
  display: block; 
  margin: 0 auto; 
  padding: 10px 20px; 
  border: none; 
  border-radius: 5px; 
  cursor: pointer; 
  transition: background-color 0.3s ease; 
  text-align: center;
  border: 2px solid #000000;

  &:hover {
    background-color: #003cff; /* Cambiar el color de fondo al pasar el cursor */
  }
}

.container-xd {
  width: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  background-color: #fff; 
  padding: 10px;
}





.card {
  display: flex;
  flex-direction: column; 
  height: 100%; 
  border: 1px solid rgba(0, 0, 0, 0.125); 
  border-radius: 15px; 
  transition: transform 0.3s; 
}

.card-body {
  display: flex;
  flex-direction: column; 
  flex: 1; 
  text-align: center;
}

.card-body .btn-primary {
  margin-top: auto; 
  background: #fff; 
  color: #333; 
  text-decoration: none;
  padding: 10px 20px;
  display: inline-block; 
  transition: background-color 0.3s;
}

.card-body .btn-primary:focus {
  outline: none; /* Elimina el borde azul por defecto */
  box-shadow: none; /* Elimina cualquier sombra */
}

/* Estilo cuando el botón está activo (se está presionando) */
.card-body .btn-primary:active {
  background-color: #e0e0e0; 
  color: #fff; 
}

.card-text{
  text-align: justify-all;
  flex-grow: 1;
  color: #4F4F4F;
}

.card:hover {
  transform: scale(1.05);
  border: 1px solid #a0a0a0;
}

.card img {
  border-radius: 10px;
  max-width: 100%;
  height: 250px; /* Ajusta esta altura según tus necesidades */
  object-fit: cover; /* Esto asegurará que las imágenes conserven su proporción de aspecto */
}

.card-body {
  font-size: 14px;
  
}

/* Media query para tablets */
@media (max-width: 992px) {
  .col-md-3 {
    flex: 0 0 100%; /* Cada columna ocupará el 100% del ancho disponible */
    max-width: 100%;
    padding: 10px; /* Ajusta el padding de las columnas */
  }

  .card {
    width: 100%; /* Hace que la tarjeta ocupe el 100% del ancho de su columna */
    margin-bottom: 15px; /* Añade margen inferior entre las tarjetas */
    border-radius: 10px; /* Ajusta el borde redondeado si es necesario */
  }

  .card img {
    height: 200px; /* Ajusta la altura de las imágenes para pantallas más pequeñas */
  }

  .card-body {
    font-size: 12px; /* Reduce el tamaño de la fuente en pantallas más pequeñas */
  }
}


@supports ((-webkit-hyphens:auto) or (hyphens:auto)) {
  .card-text {
    -webkit-hyphens: auto;
    hyphens: auto;
  }
}

.blue-text {
  color: #262c5e;
  font-weight: 200;
  font-size: 21px;
}

.contenedor-xd {
  width: 100%;
  margin: 0 auto;
  background-color: #ffffff;
  margin-left: auto;
}

/*Este solo funciona para solucionar el error de desplazamiento cuando haces clic en el banner y te manda mas abajo*/
#ancla-funciones {
  display: block;
  height: 120px;
  margin-top: -70px; 
}


.btn-primary {
  background: #fff;
  color: white;
  text-decoration: none;
  padding: 10px 20px;
  display: inline-block;
  transition: background-color 0.3s;
  border: none;
  font-size: 16px;
}


.row {
  padding-top: -30px;
  margin-right: -15px;
}

.col-md-3 {
  padding: 15px;
  display: flex;
}

.wrappercook {
  position: fixed;
  bottom: 280px;
  right: -370px;
  max-width: 345px;
  width: 100%;
  background: #fff;
  border-radius: 8px;
  padding: 15px 25px 22px;
  transition: right 0.3s ease;
  z-index: 9999;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}
.wrappercook.show {
  right: 20px;
}
.wrappercook header {
  display: flex;
  align-items: center;
  column-gap: 15px;
}
header i {
  color: #28a694;
  font-size: 32px;
}

header h6 {
  color: #28a694;
  font-weight: 500;
  font-size: 20px;
  margin: 0;
  text-align: center; 
}
.wrappercook .data {
  margin-top: 16px;
  
}
.wrappercook .data p {
  color: #333;
  font-size: 16px;
}
.data p a {
  color: #28a694;
  text-decoration: none;
}
.data p a:hover {
  text-decoration: underline;
}
.wrappercook .buttons {
  margin-top: 16px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.buttons .button {
  border: 1px solid #333;
  color: #fff;
  padding: 8px 0;
  border-radius: 4px;
  background: linear-gradient(to right, #262c5e, #28a694);
  cursor: pointer;
  width: calc(100% / 2 - 10px);
  transition: all 0.2s ease;
}
.buttons #acceptBtn:hover {
  background: linear-gradient(to right, #28a694, #262c5e);
}
#declineBtn {
  border: 1px solid #333;
  background-color: #fff;
  color: #fff;
}
#declineBtn:hover {
  background: linear-gradient(to right, #28a694, #262c5e);
  color: #fff;
}

@media(max-width: 350px) {
  .wrappercook {
    transform: translateY(20px);
    height: 450px;
  }
}

@media(max-width: 450px) {
  .wrappercook {
    transform: translateY(50px);
 
  }
}







