* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', Arial, sans-serif;
  background: #f4f7fb;
  color: #111;
}

.header{
    position:fixed;
    width:100%;
    top:0;
    left:0;
    z-index:999;
    background:rgba(4,20,55,.92);
    backdrop-filter:blur(12px);
}

.navbar{
    max-width:1400px;
    margin:auto;
    height:105px;
    padding:0 35px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo{
    display:flex;
    align-items:center;
    gap:18px;
}

.logo img{
    width:110px;
    height:auto;
    object-fit:contain;
    transition:.3s;
}

.logo img:hover{
    transform:scale(1.05);
}

.logo span{
    color:#fff;
    font-size:32px;
    font-weight:700;
    letter-spacing:1px;
}
.menu{
    display:flex;
    gap:40px;
    list-style:none;
}

.menu a{
    color:white;
    text-decoration:none;
    font-size:17px;
    font-weight:500;
    transition:.3s;
}

.menu a:hover{
    color:#4DA3FF;
}

.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
}

.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(2, 12, 35, 0.78), rgba(2, 12, 35, 0.72));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 850px;
  padding: 20px;
}

.hero-content h1 {
  font-size: 58px;
  line-height: 1.1;
  margin-bottom: 18px;
}

.hero-content p {
  font-size: 22px;
  margin-bottom: 30px;
}

.btn {
  display: inline-block;
  background: #1266f1;
  color: white;
  padding: 14px 30px;
  border-radius: 35px;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(18, 102, 241, 0.35);
}

.btn:hover {
  background: #004bbd;
}

.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  background: rgba(255, 255, 255, 0.22);
  color: white;
  border: none;
  font-size: 32px;
  padding: 12px 18px;
  cursor: pointer;
  border-radius: 50%;
}

.arrow:hover {
  background: rgba(255, 255, 255, 0.4);
}

.left {
  left: 25px;
}

.right {
  right: 25px;
}

.about,
.services,
.gallery,
.testimonial,
.contact {
  padding: 85px 22px;
  text-align: center;
}

.about h2,
.services h2,
.gallery h2,
.testimonial h2,
.contact h2 {
  font-size: 38px;
  color: #061a40;
  margin-bottom: 20px;
}

.about p,
.testimonial p,
.contact p {
  max-width: 820px;
  margin: auto;
  font-size: 18px;
  line-height: 1.7;
}

.stats {
  background: #061a40;
  color: white;
  padding: 45px 20px;
  display: flex;
  justify-content: center;
  gap: 80px;
  text-align: center;
}

.stats h3 {
  font-size: 38px;
  color: #4da3ff;
}

.stats p {
  font-weight: 600;
}

.cards {
  max-width: 1100px;
  margin: 38px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.card {
  background: white;
  padding: 38px 28px;
  border-radius: 20px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
  border-top: 6px solid #1266f1;
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-8px);
}

.card h3 {
  color: #061a40;
  margin-bottom: 12px;
  font-size: 22px;
}

.card p {
  line-height: 1.6;
}

.gallery {
  background: #eef3fb;
}

.gallery-grid {
  max-width: 1150px;
  margin: 38px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.gallery-grid img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.18);
  transition: transform 0.3s ease;
}

.gallery-grid img:hover {
  transform: scale(1.04);
}

.testimonial {
  background: linear-gradient(135deg, #061a40, #1266f1);
  color: white;
}

.testimonial h2 {
  color: white;
}

.contact-box {
  background: white;
  max-width: 520px;
  margin: 28px auto;
  padding: 28px;
  border-radius: 18px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
}

.contact-box p {
  margin: 12px 0;
  font-size: 18px;
}

footer {
  background: #061a40;
  color: white;
  text-align: center;
  padding: 24px;
}

.whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  background: #25d366;
  color: white;
  font-size: 30px;
  padding: 15px 18px;
  border-radius: 50%;
  text-decoration: none;
  z-index: 999;
  box-shadow: 0 6px 18px rgba(0,0,0,0.35);
}

@media (max-width: 768px) {
  .menu {
    display: none;
    position: absolute;
    top: 86px;
    right: 20px;
    background: #061a40;
    flex-direction: column;
    padding: 22px;
    border-radius: 14px;
  }

  .menu.show {
    display: flex;
  }

  .menu-btn {
    display: block;
  }

  .hero-content h1 {
    font-size: 38px;
  }

  .hero-content p {
    font-size: 18px;
  }

  .cards,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .stats {
    flex-direction: column;
    gap: 28px;
  }

  .arrow {
    font-size: 24px;
    padding: 9px 13px;
  }
}

/*=====================================
            HORARIO
======================================*/

.schedule{
    padding:90px 30px;
    background:#f5f8fd;
}

.schedule-container{

    max-width:1200px;

    margin:auto;

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:50px;

    align-items:center;

}

.schedule-info h2{

    font-size:42px;

    color:#061A40;

    margin-bottom:20px;

}

.schedule-info p{

    font-size:18px;

    color:#555;

    line-height:1.8;

}

.schedule-card{

    background:white;

    border-radius:20px;

    padding:35px;

    box-shadow:0 15px 35px rgba(0,0,0,.12);

}

.day{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:18px 0;

    border-bottom:1px solid #e6e6e6;

    font-size:18px;

}

.day:last-child{

    border-bottom:none;

}

.day span:first-child{

    font-weight:600;

    color:#061A40;

}

.day span:last-child{

    color:#444;

}

.saturday span:last-child{

    color:#1266f1;

    font-weight:bold;

}

.sunday span:last-child{

    color:#d32f2f;

    font-weight:bold;

}

@media(max-width:900px){

.schedule-container{

grid-template-columns:1fr;

}

.schedule-info{

text-align:center;

}

.day{

font-size:16px;

}

}
