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;
}









.container2 {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  opacity: 0;
  animation: fadeIn 1.5s forwards;
}

@keyframes fadeIn {
  from {
      opacity: 0;
  }
  to {
      opacity: 1;
  }
}

h1 {
  text-align: center;
  margin-bottom: 20px;
  color: #d35400;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.card {
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.card:hover {
  transform: scale(1.05);
}

.card img {
  width: 100%;
  height: auto;
}

.card-content {
  padding: 20px;
}

.card-content h2 {
  font-size: 1.5em;
  margin-bottom: 10px;
}

.card-content p {
  font-size: 1em;
  color: #555;
}























/* 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 */
      }

      .grid {
        grid-template-columns: 1fr;
    }

    h1 {
        font-size: 1.8em;
    }

    .card-content h2 {
        font-size: 1.3em;
    }
    
    
    
    
        .footer .container3 {
          flex-direction: column;
          align-items: center;
        }
      
        .footer-section {
          text-align: center;
        }
      
        .footer-section .social-icons {
          display: flex;
          justify-content: center;
        }
      }
    