html{scroll-behavior:smooth;}

html, body{
  height: 100%;
  margin:0;
  padding:0;
}

body{
  display:flex;
  flex-direction:column;
  font-family:Arial;
  background:white;
  color:#153661;
}

main{
  flex:1; /* Empuja el footer hacia abajo */
}


/* ===========================================================
   HEADER (idéntico al de SACRAMENTOS)
=========================================================== */
.head{
  position:fixed;
  top:0;
  width:100%;
  height:75px;
  background:#153661;
  box-shadow:0 2px 6px rgba(0,0,0,.25);
  display:flex;
  justify-content:center;
  align-items:center;
  z-index:1000;
}

.main-nav{
  width:92%;
  max-width:1200px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

/* LOGO */
.nav-left{
  display:flex;
  align-items:center;
  padding-left:10px;
}

.nav-logo{
  width:55px;
  height:auto;
}

/* NAV RIGHT */
.nav-right{
  display:flex;
  align-items:center;
  gap:25px;
}

.nav-right a,
.dropdown > a{
  color:white;
  font-weight:bold;
  font-size:18px;
  text-decoration:none;
  position:relative;
}

.nav-right .active{
  color:#ffcc33;
}

/* Subrayado */
.nav-right a::after,
.dropdown > a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-4px;
  width:0;
  height:2px;
  background:#ffcc33;
  transition:.3s;
}
.nav-right a:hover::after,
.dropdown > a:hover::after{
  width:100%;
}

/* DROPDOWN */
.dropdown{
  position:relative;
}

.dropdown-menu{
  position:absolute;
  top:120%;
  right:0;
  min-width:220px;
  background:white;
  border-radius:6px;
  box-shadow:0 4px 12px rgba(0,0,0,.15);
  padding:8px 0;
  opacity:0;
  visibility:hidden;
  transform:translateY(6px);
  transition:.2s;
}

.dropdown-menu a{
  display:block;
  padding:10px 15px;
  color:#153661;
  text-decoration:none;
  font-size:16px;
}

.dropdown-menu a:hover{
  background:#e8f1ff;
}

.dropdown:hover .dropdown-menu{
  opacity:1;
  visibility:visible;
  transform:translateY(0);
}


/* ===========================================================
   SECCIÓN HORARIOS
=========================================================== */
main{padding-top:100px;}

.horarios-section{
  padding:50px 20px;
  display:flex;
  justify-content:center;
}

.horarios-inner{
  width:100%;
  max-width:700px;
  background:#f8fbff;
  border-left:5px solid #153661;
  padding:30px;
  border-radius:10px;
  box-shadow:0 4px 15px rgba(0,0,0,.05);
}

.horarios-inner h1{
  font-size:32px;
  margin-bottom:20px;
}

.horarios-inner p{
  font-size:18px;
  margin-bottom:15px;
}

.horarios-inner ul{
  padding-left:20px;
}

.horarios-inner li{
  font-size:18px;
  margin-bottom:8px;
}


/* ===========================================================
   FOOTER (idéntico al de SACRAMENTOS)
=========================================================== */
.footer{
  background:#153661;
  color:white;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:20px 40px;
  margin-top:40px;
}

.footer-left img{
  height:110px;
}

.footer-center{
  text-align:center;
}

.dev-name{
  margin:3px 0;
  font-size:20px;
  font-weight:bold;
  color:#ffcc33;
}

.footer-right{
  display:flex;
  gap:15px;
}

.footer-right img{
  width:32px;
  height:32px;
  transition:.2s;
  cursor:pointer;
}

.footer-right img:hover{
  transform:scale(1.15);
}

@media(max-width:768px){
  .footer{
    flex-direction:column;
    gap:20px;
    text-align:center;
  }
}
