header img{
    border-radius: 4px;
    margin-right: 40px;
}

nav{
    position: fixed;
}
.navbar{
    background-color: rgb(52, 76, 127);
    
    
}

.dropdown ul{
  background-color: rgb(52, 76, 127);
}

.nav-item{
    margin: 5px;
    border-radius: 7px;
    transition: all 0.4s ease;
}

.nav-item:hover{
    background-color: rgba(255, 255, 255, 0.571);
    transition: all 0.4s ease;
    border-radius: 7px;
    color: black;
}

.navbar-nav li a{
    color: rgb(255, 255, 255);
}

body{
    display: flex;
  flex-direction: column;
  min-height: 100vh; /* Ensures the body takes at least the full viewport height */
  margin: 0;
}

main{
    flex-grow: 1;
}


/*CONTENIDO PRINCIPAL*/
main h2{
    margin-top: 120px;
    justify-content: center;
    text-align: center;
    background-color: rgb(52, 76, 127);
    margin-right: 10px;
    margin-left: 20px;
    border-radius: 10px;
    color: white;
}

.subtitle {
      font-size: 1.3rem;
      color: #7f8c8d;
      margin-top: 15px;
      font-weight: 400;
    }

    .coming-soon {
      position: relative;
      overflow: hidden;
      display: inline-block;
    }

    .coming-soon::after {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
      animation: shine 2.5s infinite;
    }

    @keyframes shine {
      0% { left: -100%; }
      100% { left: 100%; }
    }

    .container {
      text-align: center;
      background-color: rgba(255, 255, 255, 0.9);
      padding: 60px 40px;
      border-radius: 15px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
      max-width: 500px;
      width: 90%;
    }






/*footer*/
.footer {
    background: #2c3e50; /* Color de fondo oscuro (puedes cambiarlo) */
    color: #fff;
    padding: 0.4rem 0;
    font-family: 'Arial', sans-serif;
    text-align: center;
   
    bottom: 0;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.footer p {
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

/* Estilos de los íconos de redes */
.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.social-icon {
    color: white;
    background: rgba(255, 255, 255, 0.1);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

/* Texto inferior */
.footer-bottom {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
}


