body {
    background: #fdfdfc;
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
  }
  
  .navbar {
    background: white;
    padding: 15px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  }
  
  .logo {
    height: 50px;
  }
  
  .menu {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
  }
  
  .menu li a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    transition: color 0.3s ease;
  }
  
  .menu li a:hover {
    color: #28a745;
  }
  
  .hero-gallery {
    background: url('img/insta2.png') center/cover no-repeat;
    height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
    text-align: center;
    padding: 0 20px;
  }
  
  .hero-gallery h1 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    margin-bottom: 10px;
  }
  
  .section {
    padding: 80px 20px;
    text-align: center;
  }
  
  
  .section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    background: linear-gradient(to right, #28a745, #218838);
    color: white;
    display: inline-block;
    padding: 10px 30px;
    border-radius: 30px;
    margin-bottom: 20px;
  }
  
  .subtitle {
    color: #666;
    font-size: 18px;
    margin-bottom: 40px;
  }
  
  .gallery-grid.fixed-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto 60px auto;
  }
  
  
  @media (max-width: 1024px) {
    .gallery-grid {
      column-count: 2;
    }
  }
  
  @media (max-width: 600px) {
    .gallery-grid {
      column-count: 1;
    }
  }
  
  .gallery-item {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
  }
  
  .gallery-item:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  }
  
  .gallery-item img,
  .gallery-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border: none;
    aspect-ratio: 4 / 3;
  }
  
  
  .btn-float {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: #28a745;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: background 0.3s;
    font-weight: bold;
    z-index: 999;
  }
  
  .btn-float:hover {
    background: #1e7e34;
  }
  
  /* Lightbox overlay */
  .video-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    display: none;
  }
  
  .video-lightbox video,
  .video-lightbox img {
    width: 90%;
    max-width: 800px;
    border-radius: 15px;
    box-shadow: 0 0 30px rgba(0,0,0,0.5);
  }
  
  .video-lightbox.active {
    display: flex;
  }
  
  .video-lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 30px;
    color: white;
    cursor: pointer;
  }
  
  .intro-galeria {
    text-align: center;
    margin-bottom: 40px;
  }
  
  .intro-galeria h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    color: #28a745;
    margin-bottom: 10px;
  }
  
  .linea-deco {
    width: 60px;
    height: 4px;
    background-color: #28a745;
    margin: 0 auto 10px;
    border-radius: 2px;
  }
  
  .subgaleria {
    font-size: 18px;
    color: #555;
  }
  
  .copyright-footer {
    background: #111;
    color: #ccc;
    text-align: center;
    padding: 20px 10px;
    font-size: 14px;
    margin-top: 60px;
    border-top: 1px solid #333;
  }
  
  .copyright-footer p {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.5px;
  }
  