/* Reset simple */
*{
  box-sizing:border-box;
  margin:0;
  padding:0;
  -webkit-font-smoothing:antialiased;
}
body{
  font-family: system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;
  color:#0c1a4a;
  background:#ffffff;
  line-height:1.4;
}
img{
  max-width:100%;
  height:auto;
  display:block;
  border-radius:12px;
}

/* Helpers */
.container{
  width:min(1200px,90%);
  margin:0 auto;
}
.accent{
  color:#ffcc00;
}
.section-title{
  font-size:clamp(1.6rem,1vw+1rem,2rem);
  font-weight:700;
  color:#0c1a4a;
  margin-bottom:.5rem;
}
.section-sub{
  color:#4a4a4a;
  margin-bottom:1rem;
  font-size:1rem;
}

/* HERO */
.hero{
  position:relative;
  background: radial-gradient(circle at 20% 20%,#1e3a8a 0%,#0c1a4a 60%);
  color:#fff;
  padding-top:4rem;
  padding-bottom:3rem;
  overflow:hidden;
}
.overlay{
  position:absolute;
  inset:0;
  background:radial-gradient(circle at 80% 20%,rgba(255,255,255,.15) 0%,rgba(0,0,0,0) 60%);
  pointer-events:none;
}
.hero-content{
  position:relative;
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:2rem;
  z-index:2;
}
.hero-left{
  flex:1 1 320px;
  color:#fff;
}
.logo-hero{
  width:80px;
  height:auto;
  border-radius:8px;
  box-shadow:0 10px 30px rgba(0,0,0,.4);
  margin-bottom:1rem;
}
.headline{
  font-size:clamp(1.8rem,1vw+1rem,2.2rem);
  font-weight:700;
  line-height:1.2;
}
.tagline{
  margin-top:.5rem;
  font-size:1.05rem;
  font-weight:500;
  max-width:32ch;
}
.niveles{
  list-style:none;
  display:flex;
  flex-wrap:wrap;
  gap:.5rem 1rem;
  margin:1rem 0 1.5rem;
  font-weight:600;
}
.niveles li{
  background:#ffcc00;
  color:#0c1a4a;
  padding:.4rem .75rem;
  border-radius:999px;
  font-size:.9rem;
  box-shadow:0 10px 20px rgba(0,0,0,.3);
}
.cta-btn{
  display:inline-block;
  background:#ffcc00;
  color:#0c1a4a;
  border-radius:999px;
  font-weight:700;
  text-decoration:none;
  padding:.8rem 1.2rem;
  font-size:1rem;
  box-shadow:0 12px 30px rgba(0,0,0,.4);
  transition:.2s;
  text-align:center;
}
.cta-btn:hover{
  filter:brightness(1.1);
  transform:translateY(-2px);
}
.cta-btn.full{
  width:100%;
}

.hero-right{
  flex:1 1 320px;
}
.video-wrapper{
  background:#000;
  border-radius:16px;
  box-shadow:0 30px 60px rgba(0,0,0,.6);
  padding:0;
  overflow:hidden;
  aspect-ratio:16/9;
}
.promo-video{
  width:100%;
  height:100%;
  border:0;
}

/* ABOUT */
.about{
  display:grid;
  gap:2rem;
  padding:3rem 0;
}
@media(min-width:800px){
  .about{
    grid-template-columns:1fr 1fr;
    align-items:center;
  }
}
.about-text .bullets{
  margin-left:1rem;
  margin-bottom:1rem;
  color:#0c1a4a;
  font-size:1rem;
  line-height:1.5;
}
.about-text .bullets li{
  margin-bottom:.4rem;
  position:relative;
  padding-left:1.2rem;
}
.about-text .bullets li::before{
  content:"✔";
  position:absolute;
  left:0;
  color:#ffcc00;
  font-weight:700;
}
.about-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:1rem;
}
.about-photo{
  width:100%;
  border-radius:16px;
  box-shadow:0 20px 40px rgba(0,0,0,.15);
  object-fit:cover;
}

/* SOCIAL */
.social-section{
  background:#f5f7ff;
  padding:3rem 0;
  text-align:center;
}
.social-embeds{
  margin-top:1.5rem;
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
}
.fb-embed iframe{
  border-radius:16px;
  box-shadow:0 20px 40px rgba(0,0,0,.2);
  background:#fff;
}

/* GALERIA */
.galeria{
  padding:3rem 0;
  text-align:center;
}
.grid-galeria{
  margin-top:2rem;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(min(250px,100%),1fr));
  gap:1rem;
}
.gal-item{
  cursor:pointer;
  border-radius:16px;
  box-shadow:0 20px 40px rgba(0,0,0,.2);
  width:100%;
  height:220px;
  object-fit:cover;
  background:#000;
  transition:.2s;
}
.gal-item:hover{
  transform:scale(1.02);
}

/* MODAL */
.modal{
  display:flex;
  align-items:center;
  justify-content:center;
  position:fixed;
  z-index:9999;
  left:0;
  top:0;
  width:100%;
  height:100%;
  overflow:auto;
  background-color:rgba(0,0,0,0.9);
  padding:1rem;
}
.modal.hidden{
  display:none;
}
.modal-content{
  max-width:90%;
  max-height:80vh;
  border-radius:16px;
  box-shadow:0 30px 60px rgba(0,0,0,.8);
}
.close{
  color:#fff;
  position:absolute;
  top:20px;
  right:30px;
  font-size:2rem;
  font-weight:700;
  cursor:pointer;
  line-height:1;
}
.caption{
  color:#fff;
  margin-top:1rem;
  text-align:center;
  font-size:1rem;
  max-width:90%;
}

/* CONTACTO */
.contacto{
  background:#0c1a4a;
  color:#fff;
  padding:3rem 0;
}
.contacto-wrapper{
  display:grid;
  gap:2rem;
}
@media(min-width:900px){
  .contacto-wrapper{
    grid-template-columns:1fr 1fr;
  }
}
.contact-info .section-title{
  color:#fff;
}
.contact-info .section-sub{
  color:#ffcc00;
}
.contact-list{
  list-style:none;
  font-size:1rem;
  line-height:1.5;
  margin-bottom:1.5rem;
}
.contact-list a{
  color:#ffcc00;
  text-decoration:none;
  font-weight:600;
}
.mapa-wrapper{
  border-radius:16px;
  overflow:hidden;
  box-shadow:0 30px 60px rgba(0,0,0,.8);
  background:#000;
  min-height:250px;
}
.mapa-wrapper iframe{
  width:100%;
  height:100%;
  border:0;
  min-height:250px;
}

/* FORM */
.form-card{
  background:#fff;
  color:#0c1a4a;
  border-radius:16px;
  padding:1.5rem;
  box-shadow:0 30px 60px rgba(0,0,0,.6);
}
.form-title{
  font-size:1.25rem;
  font-weight:700;
  margin-bottom:1rem;
  color:#0c1a4a;
}
.info-form{
  display:grid;
  gap:1rem;
  font-size:.95rem;
}
.info-form label{
  display:grid;
  gap:.4rem;
  font-weight:600;
  color:#0c1a4a;
}
.info-form input,
.info-form select,
.info-form textarea{
  width:100%;
  padding:.7rem .8rem;
  font-size:1rem;
  border-radius:10px;
  border:2px solid #cbd5e1;
  outline:none;
  font-family:inherit;
}
.info-form input:focus,
.info-form select:focus,
.info-form textarea:focus{
  border-color:#0c1a4a;
}
.info-form button{
  border:0;
  cursor:pointer;
}

/* FOOTER */
.footer{
  background:#020617;
  color:#fff;
  padding:2rem 0 0;
  font-size:.9rem;
}
.footer-inner{
  display:flex;
  flex-wrap:wrap;
  gap:1rem 2rem;
  align-items:flex-start;
  justify-content:space-between;
  padding-bottom:1rem;
}
.footer-left{
  display:flex;
  align-items:flex-start;
  gap:1rem;
  max-width:600px;
}
.footer-logo{
  width:60px;
  height:auto;
  border-radius:8px;
  box-shadow:0 10px 30px rgba(255,255,255,.1);
  background:#fff;
  padding:.4rem;
}
.footer-name{
  font-weight:700;
  font-size:1rem;
  color:#fff;
  margin-bottom:.3rem;
}
.footer-dir,
.footer-tel{
  color:#a3a3a3;
  line-height:1.4;
  font-size:.85rem;
}
.footer-right .cta-btn.small{
  font-size:.9rem;
  padding:.6rem 1rem;
}
.hecho{
  background:#000;
  text-align:center;
  padding:.75rem 1rem;
  font-size:.75rem;
  color:#a3a3a3;
}
.hecho a{
  color:#ffcc00;
  text-decoration:none;
  font-weight:600;
}

/* WHATSAPP FLOAT */
.whatsapp-float{
  position:fixed;
  right:16px;
  bottom:16px;
  width:56px;
  height:56px;
  background:#25D366;
  color:#fff;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:1.6rem;
  font-weight:700;
  box-shadow:0 20px 40px rgba(0,0,0,.5);
  text-decoration:none;
  z-index:10000;
  line-height:1;
}
.whatsapp-float span{
  transform:translateY(1px);
}

/* RESPONSIVE TWEAKS */
@media(max-width:480px){
  .hero{
    padding-top:2.5rem;
    padding-bottom:2rem;
  }
  .niveles{
    gap:.4rem .5rem;
  }
  .gal-item{
    height:180px;
  }
}
