
    body {
      font-family: Arial, Helvetica, sans-serif;
       overflow-x: hidden;
    }
    .letra{
      font-family:sans-serif;
      font-size: 150%;
      font-style: italic;
      color: #bc955c;
    }
    .letra1{
      font-family:sans-serif;
      font-size: 150%;
      font-style: italic;
      color: #bc955c;
    }
    .letra2{
      font-family:sans-serif;
      font-size: 150%;
      font-style: italic;
      color: #1b3630;
    }



    .hero {
        height: 100vh;
         position: relative;
  overflow: hidden;
        text-align: left;
      background:  url('https://oriental.gob.mx/transparencia/conac/2025/2do/bgbdy.jpg') center/cover no-repeat;
   
    }     
      

    .overlay {
      position: absolute;
      inset: 0;
      background: rgba(0,0,0,0.5);
    }

    .hero-content {
      position: relative;
      z-index: 2;
    }

    .hero h1 {
      
      font-size: 4rem;
      font-weight: 800;
      color: #bc955c;
      
    }
    .hero h2 {
      
      font-size: 2rem;
      font-weight: 800;
      color: #235B4E;
      
    }

 .cards {
  position: absolute;
  right: 40px;
  bottom: 80px;
  width: 420px;
  height: 320px;
  z-index: 3;
 }

.card-img-custom {
  width: 140px;
  height: 220px;
  object-fit: cover;
  border: 2px solid white;
 }

.card-img-custom:hover {
  transform: scale(1.05);
 }

/* imagen del centro más alta */
.card-middle {
  transform: translateY(-30px);
 }
  .img {
  position: absolute;
  width: 150px;
  height: 230px;
  object-fit: cover;
  border-radius: 12px;
  border: 3px solid white;
  box-shadow: 0 15px 30px rgba(0,0,0,0.4);
  transition: 0.3s;
  cursor: pointer;
}

/* POSICIONES */
.img1 { left: 0; top: 60px; }
.img2 { left: 130px; top: 0; height: 280px; }
.img3 { left: 260px; top: 60px; }
.img4 { left: -130px; top: 0; height: 280px; }
.img5 { left: -260px; top: 60px; }
.img6 { left: -390px; top: 0; height: 280px; }
.img7 { left: -520Px; top: 60px; }

/* 🔥 HOVER */
.img:hover {
  transform: scale(1.2);
  z-index: 10;
}

/* LIGHTBOX */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.85);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.lightbox-img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0,0,0,0.5);
  border: 4px solid white;
  z-index: 10000;
}

/* BOTÓN CERRAR */
.close {
  position: absolute;
  top: 20px;
  right: 40px;
  font-size: 40px;
  color: white;
  cursor: pointer;
}

  @media (max-width: 992px) {
  .cards {
    right: 10px;
    bottom: 60px;
  }

  .card-img-custom {
    width: 100px;
    height: 160px;
  }
}

@media (max-width: 768px) {
  .cards {
    display: none; /* 🔥 mejor ocultarlas en móvil */
  }
}
 