* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Quicksand', sans-serif;
    background: linear-gradient(to bottom, #fffef9, #f5e9dc);
    color: #3d2b1f;
    line-height: 1.6;
    overflow-x: hidden;
  }
  
  header {
    background: #fceae8;
    padding: 20px;
    text-align: center;
    border-bottom: 2px solid #e0cfc2;
  }
  
  header h1 {
    font-family: 'Great Vibes', cursive;
    font-size: 3em;
    color: #a05252;
  }
  
  nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 10px;
  }
  
  nav ul li {
    margin: 0 15px;
  }
  
  nav ul li a {
    text-decoration: none;
    color: #5a4444;
    font-weight: bold;
    padding: 8px 16px;
    border-radius: 20px;
    background: #f5e4d7;
    transition: 0.3s ease;
  }
  
  nav ul li a:hover {
    background: #ffdbcb;
    color: #a05252;
  }
  
  h2 {
    font-size: 2em;
    margin: 40px auto 20px;
    text-align: center;
    color: #7b3e19;
  }
  
  h2::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: #e9bfb5;
    margin: 10px auto;
    border-radius: 10px;
  }
  
  section {
    padding: 30px 20px;
  }
  
  .grid-imagenes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 20px;
  }
  
  .imagen-item {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .imagen-item img {
    width: 100%;
    max-height: 250px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
  }
  
  .imagen-item img:hover {
    transform: scale(1.03);
  }
  
  .imagen-item p {
    margin-top: 10px;
    font-size: 1.1em;
    text-align: center;
    color: #5c443c;
  }
  
  footer {
    background: #d9c3b5;
    padding: 30px 20px;
    text-align: center;
  }
  
  footer h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: #5d3c35;
  }
  
  footer p {
    margin: 8px 0;
    font-size: 1em;
  }
  
  .social-icons {
    margin: 15px 0;
  }
  
  .social-icons img {
    width: 32px;
    height: 32px;
    margin: 0 10px;
    transition: transform 0.3s ease;
  }
  
  .social-icons img:hover {
    transform: scale(1.1);
  }
  
  .fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1.2s ease, transform 1.2s ease;
  }
  
  .fade-in-visible {
    opacity: 1;
    transform: translateY(0);
  }
  