
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:Arial, sans-serif;
}

body{
  background:#f5f7fb;
  color:#0b1f4d;
}

.topbar{
  background:#061b4e;
  color:#fff;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:15px 30px;
  position:sticky;
  top:0;
  z-index:1000;
}

.logo img{
  height:60px;
}

nav{
  display:flex;
  gap:25px;
}

nav a{
  color:#fff;
  text-decoration:none;
  font-weight:bold;
}

.menu-btn{
  display:none;
  background:none;
  border:none;
  color:#fff;
  font-size:28px;
}

.hero{
  
  background-image: url('uploads/ladin.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  
 
}

.hero h1{
  font-size:48px;
  line-height:1.1;
}

.chips{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin:20px 0;
}

.chips span{
  background:#f4b400;
  color:#061b4e;
  padding:10px 16px;
  border-radius:999px;
  font-weight:bold;
}

.btn-primary{
  display:inline-block;
  background:#f4b400;
  color:#061b4e;
  padding:14px 24px;
  border-radius:12px;
  text-decoration:none;
  font-weight:bold;
}

.hero-image img{
  width:100%;
  max-width:520px;
}

.destinos{
  padding:60px 8%;
}

.destinos h2{
  text-align:center;
  margin-bottom:30px;
  font-size:36px;
}

.cards{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}

.card{
  background:#fff;
  border-radius:24px;
  overflow:hidden;
  box-shadow:0 10px 30px rgba(0,0,0,.12);
}

.card img{
  width:100%;
  height:220px;
  object-fit:cover;
}

.card-body{
  padding:20px;
}

.precio{
  font-size:34px;
  color:#0d3a8c;
  font-weight:800;
  margin:10px 0;
}

.contador{
  margin-top:12px;
  font-weight:bold;
  color:#d97706;
}

.servicios{
  background:#fff;
  padding:60px 8%;
}

.serv-grid{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:18px;
  margin-top:24px;
}

.serv-grid div{
  background:#f5f7fb;
  border-radius:16px;
  padding:24px;
  text-align:center;
  font-weight:bold;
}

.contacto{
  background:#061b4e;
  color:#fff;
  padding:50px 8%;
  display:grid;
  grid-template-columns:1fr auto;
  gap:30px;
  align-items:center;
}

.qr img{
  width:180px;
  background:#fff;
  padding:10px;
  border-radius:16px;
}

@media(max-width:992px){
  .hero{
    grid-template-columns:1fr;
    text-align:center;
  }

  .cards{
    grid-template-columns:1fr 1fr;
  }

  .serv-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:768px){
  nav{
    display:none;
    position:absolute;
    top:80px;
    right:20px;
    background:#061b4e;
    flex-direction:column;
    padding:20px;
    border-radius:16px;
  }

  nav.active{
    display:flex;
  }

  .menu-btn{
    display:block;
  }

  .hero h1{
    font-size:34px;
  }

  .cards{
    grid-template-columns:1fr;
  }

  .serv-grid{
    grid-template-columns:1fr;
  }

  .contacto{
    grid-template-columns:1fr;
    text-align:center;
  }
}