* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Quicksand', sans-serif;
    background: #fffafc;
    color: #444;
    line-height: 1.6;
  }
  
  header {
    background: linear-gradient(120deg, #ffb6c1, #ff69b4);
    color: white;
    padding-bottom: 20px;
    text-align: center;
  }
  
  .banner-img {
    width: 100%;
    height: auto;
    border-bottom: 4px solid #fff;
    max-height: 400px;
    object-fit: cover;
  }
  
  nav {
    margin-top: 20px;
  }
  
  nav a {
    margin: 0 10px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
  }
  
  nav a:hover {
    text-decoration: underline;
  }
  
  section {
    padding: 40px 20px;
  }
  
  .container {
    max-width: 900px;
    margin: 0 auto;
  }
  
  h1, h2, h3 {
    color: #ff69b4;
  }
  
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    margin-bottom: 20px;
    font-size: 2rem;
  }
  
  ul {
    list-style: none;
  }
  
  ul li {
    background: #ffe6ec;
    margin: 10px 0;
    padding: 15px;
    border-radius: 8px;
  }
  
  .galeria {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }
  
  .galeria-item {
    width: 280px;
    text-align: center;
  }
  
  .galeria-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  }
  
  .btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: #ff69b4;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    margin-top: 20px;
    transition: 0.3s;
  }
  
  .btn:hover {
    background-color: #e7559e;
  }

  .btn-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 20px;
  }
  
  footer {
    text-align: center;
    background: #ffb6c1;
    color: white;
    padding: 20px;
  }
  