body {
    background-color: white;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

header {
    background-color: #2c3e50; /* Color de fondo del menú */
    color: white;
    padding: 20px 0;
    text-align: center;
}

.navbar {
    background-color: #2c3e50; /* Fondo del navbar */
    padding: 15px 0;
}

.navbar-nav .nav-link {
    color: white !important; /* Cambia el color del texto */
    font-size: 1.5rem;
    padding: 10px 20px; /* Ajusta el padding */
    letter-spacing: 0.05rem;
    margin-right: 15px;
}



.navbar-toggler-icon {
    background-image: url('data:image/svg+xml;charset=utf8,%3Csvg viewBox="0 0 30 30" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath stroke="rgba(255,255,255,.5)" stroke-width="2" stroke-linecap="round" stroke-miterlimit="10" d="M4 7h22M4 15h22M4 23h22"/%3E%3C/svg%3E') !important; /* Cambia el color del icono a blanco */
}


.navbar-brand img {
    max-width: 100px; /* Ajusta el tamaño de la imagen del logo */
    padding-left: 13px;
}



















.who-we-are {
  background-color: #f4f4f9;
  padding: 100px 0;
  text-align: center;
  font-family: 'Arial', sans-serif;
}

.who-we-are .container {
  width: 80%;
  margin: 0 auto;
}

.who-we-are h2 {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 20px;
}

.who-we-are .message {
  font-size: 1.2rem;
  color: #777;
  margin-bottom: 40px;
}

.who-we-are .loading {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.who-we-are .loading .dot {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: #ff6347;
  animation: bounce 1.4s infinite ease-in-out;
}

.who-we-are .loading .dot:nth-child(1) {
  animation-delay: 0s;
}

.who-we-are .loading .dot:nth-child(2) {
  animation-delay: 0.2s;
}

.who-we-are .loading .dot:nth-child(3) {
  animation-delay: 0.4s;
}


@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}













/* Estilo del footer */
/* Estilo del footer */
.footer {
    background-color: #2c3e50;
    color: white;
    padding: 20px 10px;
    text-align: center;
  }
  
  .footer .container3 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* Centra los elementos horizontalmente */
    max-width: 1200px; /* Ancho máximo del contenedor */
    margin: 0 auto; /* Centra el contenedor en la página */
    gap: 20px;
  }
  
  .footer-section {
    flex: 1;
    min-width: 250px;
  }
  
  .footer-section h3 {
    font-size: 16px;
    margin-bottom: 10px;
    color: #000;
    border-bottom: 2px solid #ccc;
    display: inline-block;
  }
  
  .footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .footer-section ul li {
    margin-bottom: 5px;
  }
  
  .footer-section ul li a {
    text-decoration: none;
    color: white;
  }
  
  .footer-section ul li a:hover {
    text-decoration: underline;
  }
  
  .footer-section p {
    margin: 5px 0;
  }
  
  .footer-section .social-icons a {
    margin-right: 10px;
    text-decoration: none;
    font-size: 20px;
    color: white;
  }
  
  .footer-section .social-icons a:hover {
    color: #000;
  }

  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .navbar-nav .nav-item + .nav-item {
      border-top: 1px solid white; /* Solo en pantallas pequeñas */
    }






    .footer .container3 {
      flex-direction: column;
      align-items: center;
    }
  
    .footer-section {
      text-align: center;
    }
  
    .footer-section .social-icons {
      display: flex;
      justify-content: center;
    }
  }
