/* GENERAL */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    padding-top: 70px; /* espacio para la navbar fija */
  }
  
  .section {
    padding: 60px 20px;
    background-color: #f0f8ff;
    text-align: center;
  }
  
  /* NAVBAR */
  .navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #008080;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0px; 
    box-shadow: 0 8px 50px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    flex-wrap: wrap;
  }
  
  .logo {
    font-size: 30px;
    font-weight: bold;
  }
  
  .nav-links {
    list-style: none;
    display: flex;
    gap: 50px; 
    margin: 0;
    padding: 0; 
  }
  
  .nav-links a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    transition: color 0.3s;
    font-size: 16px;
  }
  
  .nav-links a:hover {
    color: #ffd700;
  }
  
  /* HEADER */
  .header {
    background-color: #e0f7fa;
    padding: 100px 20px;
    text-align: center;
  }
  
  .header h1 {
    margin: 0;
    font-size: 36px;
  }
  
  /* GALERÍA */
  .gallery {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 30px;
  }
  
  .gallery img {
    width: 300px;
    height: 200px;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }
  
  /* FOOTER */
  .footer {
    background-color: #004d40;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 30px;
  }  