body {
  font-family: "Quicksand", sans-serif;
  color: #333;
}

/* NAVBAR */
.custom-navbar {
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.navbar-brand strong {
  font-weight: 700;
}

/* HERO */

/* ======================
   HERO NUEVO DISEÑO
====================== */

.hero-section-custom {
  background: linear-gradient(
    to bottom,
    #1f3c88 0%,
    #2c6bff 55%,
    #ffffff 100%
  );
  padding-top: 70px; /* espacio navbar fixed */
  padding-bottom: 80px;
  overflow: hidden;
}

/* TEXTO */
.hero-text {
  animation: slideLeft 1.2s ease forwards;
  opacity: 0;
}

.hero-row{
  min-height: 70vh;
}

@keyframes slideLeft {
  from {
    transform: translateX(-60px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* IMAGEN */
.hero-image {
  animation: slideRight 1.4s ease forwards;
  opacity: 0;
}

@keyframes slideRight {
  from {
    transform: translateX(60px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* EFECTO FLOTANTE */
.hero-image img {
  max-height: 420px;
  animation: floatImage 4s ease-in-out infinite;
  transition: transform 0.4s ease;
}

@keyframes floatImage {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
  100% { transform: translateY(0px); }
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .hero-section-custom {
    text-align: center;
    padding-bottom: 60px;
  }

  .hero-image img {
    max-height: 300px;
  }
}











/* SECCIONES */
.section-light,
.section-gray {
  padding: 90px 0;
}

.section-light {
  background: #fff;
}

.section-gray {
  background: #f4f6f8;
}

.section-title {
  font-size: 2.4rem;
  font-weight: 700;
}

.section-tag {
  color: #c9a24d;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.9rem;
}

/* ACTIVIDADES */
.activity-card {
  background: #fff;
  padding: 30px 25px;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
}

.activity-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.activity-icon {
  font-size: 2.5rem;
  color: #c9a24d;
  margin-bottom: 15px;
  display: block;
}

.activity-card h5 {
  font-weight: 700;
  margin-bottom: 10px;
}

.activity-card p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 6px;
}

.activity-highlight {
  font-weight: 700;
  color: #c9a24d;
  font-size: 1.05rem;
}

.activity-card span {
  display: inline-block;
  margin-top: 12px;
  font-weight: 600;
  color: #c9a24d;
  font-size: 0.95rem;
}



/* ======================
   GALERÍA
====================== */
.galeria {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  padding: 30px;
}

.galeria img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
  cursor: pointer;
  transition: transform .4s ease;
}

.galeria img:hover {
  transform: scale(1.05);
}

/* LIGHTBOX */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.95);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.lightbox img {
  max-width: 85vw;
  max-height: 85vh;
  border-radius: 12px;
}

/* BOTONES */
.close {
  position: absolute;
  top: 25px;
  right: 35px;
  font-size: 32px;
  color: white;
  cursor: pointer;
}

.nav {
  position: absolute;
  font-size: 60px;
  color: white;
  cursor: pointer;
  user-select: none;
}

.left { left: 30px; }
.right { right: 30px; }

@media (max-width: 768px) {
  .nav {
    font-size: 40px;
  }
}


/*RADIO IGLESIA*/
.radio-section{
  background: linear-gradient(135deg,#0f2027,#203a43,#2c5364);
  color:white;
  border-top:5px solid #ff0000;
}

.radio-title{
  font-weight:700;
  font-size:2rem;
}

.radio-tag{
  background:#ff0000;
  color:white;
  padding:6px 14px;
  border-radius:20px;
  font-size:14px;
  font-weight:600;
  animation: parpadeo 1.5s infinite;
}

@keyframes parpadeo{
  0%{opacity:1;}
  50%{opacity:0.4;}
  100%{opacity:1;}
}



/* EVENTOS */
.event-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
}

.event-card img {
  transition: transform 0.6s ease;
}

.event-card:hover img {
  transform: scale(1.05);
}

.event-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

/* Overlay */
.event-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.75));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.event-card:hover .event-overlay {
  opacity: 1;
}

.event-label {
  color: #fff;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 2px solid #c9a24d;
  padding: 10px 26px;
  border-radius: 30px;
}



/* FOOTER */
.footer {
  background: #1f1f1f;
  color: #fff;
}

.footer a {
  color: #fff;
  text-decoration: none;
}

.footer a:hover {
  color: #c9a24d;
}

.footer-title {
  font-weight: 700;
}

.footer-item {
  margin-bottom: 10px;
  font-size: 0.95rem;
}

.footer-social {
  width: 38px;
  height: 38px;
  border: 1px solid #c9a24d;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c9a24d;
  transition: all 0.3s ease;
}

.footer-social:hover {
  background: #48066e;
  color: #1f1f1f;
}

.footer-copy a {
  color: #c9a24d;
  font-weight: 600;
}

@media (max-width: 768px) {
  .hero-image {
    margin-top: 30px !important;
  }
}

@media (max-width:768px){

.hero-row{
  min-height: auto;
}

}