* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

body {
  background: #f4fafa;
  color: #1f2f2f;
  line-height: 1.6;
}

/* HERO */
.hero {
  background: linear-gradient(135deg, #1f2f2f, #2f4f4f);
  padding: 100px 20px 80px;
  text-align: center;
  color: #fff;
}

.hero-content span {
  color: #4edecb;
  letter-spacing: 2px;
  font-size: 13px;
}

.hero-content h1 {
  font-size: 48px;
  margin: 15px 0;
}

.hero-content p {
  max-width: 600px;
  margin: auto;
  opacity: 0.9;
}

/* INFO */
.info {
  max-width: 1100px;
  margin: -60px auto 0;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.info-card {
  background: #d3dfdf;
  padding: 22px;
  border-radius: 10px;
  border-top: 3px solid #4edecb;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.info-card h2 {
  margin-bottom: 10px;
  font-size: 18px;
}

.info-card p {
  font-size: 14px;
  color: #344;
}

/* CTA */
.cta {
  max-width: 800px;
  margin: 80px auto;
  padding: 0 20px;
  text-align: center;
}

.cta h2 {
  font-size: 28px;
  margin-bottom: 15px;
}

.cta p {
  margin-bottom: 25px;
  color: #555;
}

.cta a {
  text-decoration: none;
  color: #1f2f2f;
  font-weight: 600;
  border-bottom: 2px solid #4edecb;
  padding-bottom: 4px;
  transition: color 0.3s ease;
}

.cta a:hover {
  color: #4edecb;
}

/* RESPONSIVE */
@media (max-width: 600px) {
  .hero-content h1 {
    font-size: 36px;
  }
}

/* LITIO */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

body {
  background: #f4fafa;
  color: #1f2f2f;
  line-height: 1.6;
}

/* HERO */
.hero {
  background: linear-gradient(135deg, #1f2f2f, #2f4f4f);
  padding: 100px 20px 80px;
  text-align: center;
  color: #fff;
}

.hero-content span {
  color: #4edecb;
  letter-spacing: 2px;
  font-size: 13px;
}

.hero-content h1 {
  font-size: 48px;
  margin: 15px 0;
}

.hero-content p {
  max-width: 650px;
  margin: auto;
  opacity: 0.9;
}

/* INFO */
.info {
  max-width: 1100px;
  margin: -60px auto 0;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.info-card {
  background: #d3dfdf;
  padding: 22px;
  border-radius: 10px;
  border-top: 3px solid #4edecb;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.15);
}

.info-card h2 {
  margin-bottom: 10px;
  font-size: 18px;
}

.info-card p {
  font-size: 14px;
  color: #344;
}

/* GALERÍA */
.gallery {
  max-width: 1100px;
  margin: 70px auto;
  padding: 0 20px;
}

.gallery h2 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 26px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.img-box {
  background: #d3dfdf;
  height: 160px;
  border-radius: 10px;
  border: 2px dashed #4edecb;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2f4f4f;
  font-size: 14px;
  transition: transform 0.25s ease;
}

.img-box:hover {
  transform: scale(1.03);
}

/* CTA */
.cta {
  max-width: 800px;
  margin: 60px auto 80px;
  padding: 0 20px;
  text-align: center;
}

.cta h2 {
  font-size: 28px;
  margin-bottom: 15px;
}

.cta p {
  margin-bottom: 25px;
  color: #555;
}

.cta a {
  text-decoration: none;
  color: #1f2f2f;
  font-weight: 600;
  border-bottom: 2px solid #4edecb;
  padding-bottom: 4px;
  transition: color 0.3s ease;
}

.cta a:hover {
  color: #4edecb;
}
  


/* RESPONSIVE */
@media (max-width: 600px) {
  .hero-content h1 {
    font-size: 36px;
  }
}
/* =========================
   LIGHTBOX
========================= */

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.lightbox.active {
  display: flex;
}

.lightbox-img {
  display: block;
  max-width: 90vw;
  max-height: 90vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.45);
  animation: zoomIn 0.25s ease;
}

.close {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 42px;
  color: #fff;
  cursor: pointer;
  user-select: none;
}

/* Animación */
@keyframes zoomIn {
  from {
    transform: scale(0.9);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
/* MINIATURA */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.gallery-grid img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.gallery-grid img:hover {
  transform: scale(1.04);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.15);
}
