

/* ================= GLOBAL ================= */

:root{
  --blue:#1f2a3a;
  --dark:#0f1722;
  --gold:#d4b47c;
  --light:#f4f6f9;
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:'Poppins', sans-serif;
  background:var(--light);
  color:#333;
}

h1,h2,h3{
  font-family:'Playfair Display', serif;
}

/* ================= HERO ================= */

/* ================= HERO ================= */

.hero{
  position:relative;
  height:100vh;
  background:url("../img/business.jpg") center/cover no-repeat;
  display:flex;
  align-items:center;
  justify-content:flex-start;
  padding:0 8%;
  color:#f5f0e6;
  overflow:hidden;
}

.hero-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(to right, rgba(10,20,40,.85), rgba(10,20,40,.4));
  backdrop-filter:blur(2px);
}

.hero-content{
  position:relative;
  max-width:850px;
  z-index:2;
}

/* LOGO */
.hero-logo{
   position: relative;
   margin-bottom:120px; /* antes estaba en 30px */
  z-index: 3;
}

.hero-logo img {
  width: 220px;
  max-width: 100%;
  display: block;
}

/* TITLE */
.hero h1{
  font-size:3.5rem;
  margin-bottom:25px;
  opacity:0;
  transform:translateY(40px);

}

/* PARAGRAPH */
.hero p{
  font-size:1.4rem;
  margin-bottom:60px;
  opacity:0;
  transform:translateY(40px);
}

/* CTA */
.cta{
  display:inline-block;
  background:var(--gold);
  color:var(--blue);
  padding:18px 40px;
  border-radius:50px;
  font-weight:600;
  text-decoration:none;
  transition:.4s;
  opacity:0;
}

.cta:hover{
  transform:translateY(-5px);
  box-shadow:0 15px 35px rgba(212,180,124,.6);
}

/* Zoom animation background */
.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:inherit;
  background-size:cover;
  background-position:center;
  animation:zoomBg 20s ease-in-out infinite alternate;
  z-index:-1;
}

@keyframes zoomBg{
  from{transform:scale(1);}
  to{transform:scale(1.08);}
}

/* RESPONSIVE */
@media(max-width:992px){

.hero{
  justify-content:center;
  text-align:center;
}

.hero h1{
  font-size:2.3rem;
}

.hero p{
  font-size:1.1rem;
}

.hero-logo img{
  width:160px;
}

}

.cta{
  display:inline-block;
  background:var(--gold);
  color:var(--blue);
  padding:6px 40px;
  border-radius:50px;
  font-weight:600;
  text-decoration:none;
  transition:.4s;
  opacity:0;
  font-size: 24px;
}

.cta:hover{
  transform:translateY(-5px);
  box-shadow:0 15px 35px rgba(212,180,124,.6);
}

/* ================= WHY ================= */

.why{
  padding:120px 8%;
  background:var(--blue);
}

.why-container{
  display:grid;
  grid-template-columns:1.1fr 1fr;
  gap:60px;
  align-items:center;
  max-width:1400px;
  margin:auto;
}

.why h2{
  font-size:3rem;
  margin-bottom:30px;
  color:var(--gold);
  opacity:0;
  transform:translateY(40px);
}

@media(max-width:600px){
  .why h2{
  font-size:2rem;
  line-height: 2rem;
  margin-bottom:30px;
  color:var(--gold);
  opacity:0;
  transform:translateY(40px);
}
}


.why h4{
  font-size:1.8rem;
  margin-bottom:30px;
  color:white;
  transform:translateY(40px);
}

.why  li{
  font-size:1.2rem;
  color: white;
  line-height:0.2rem;
  margin-bottom:25px;
  transform:translateY(40px);
      margin-left: 20px
}

.why ul {
  margin-bottom:25px;
}

.why p{
  font-size:1.2rem;
  line-height:1.8;
  color:white;
  margin-bottom:25px;
  opacity:0;
  transform:translateY(40px);
}

.why img{
  width:100%;
  border-radius:6px;
  box-shadow:0 25px 60px rgba(0,0,0,.15);
  opacity:0;
  transform:translateY(40px);
}



@media(max-width:600px){
  .why  li{
  font-size:1.0rem;
  line-height:1.0rem;
  margin-bottom:30px;
  transform:translateY(40px);
      margin-left: 20px
  }

}


/* ================= SOLUTIONS ================= */

.solutions{
  position:relative;
  padding:120px 8%;
  background:url("../img/soluciones-ejecutivas.jpg") center/cover no-repeat fixed;
  color:#f5f0e6;
  text-align:center;

  
}

.solutions::before{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(15,23,34,.85);
}

.solutions-content{
  position:relative;
  z-index:2;
  max-width:1400px;
  margin:auto;
}

.solutions h2{
  font-size:3rem;
  color:var(--gold);
  margin-bottom:20px;
  opacity:0;
  transform:translateY(40px);
}

@media(max-width:600px){
  .solutions h2{
  font-size:2rem;
  line-height: 2rem;
  color:var(--gold);
  margin-bottom:20px;
  opacity:0;
  transform:translateY(40px);
  }
}





.solutions h3{
  font-weight:300;
  letter-spacing:2px;
  margin-bottom:60px;
  opacity:0;
  font-size: 1.6rem;
  transform:translateY(40px);
}

.solutions-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:40px;
}

.solution-card{
  border:1px solid rgba(212,180,124,.6);
  padding:50px 30px;
  transition:.4s;
  opacity:0;
  transform:translateY(40px);
}

.solution-card:hover{
  background:rgba(212,180,124,.1);
  transform:translateY(-10px);
}

/* ================= PROGRAMS ================= */

.programs{
  background:#d4d7d8;
  padding:120px 8%;
  color:#f5f0e6;
}

.programs h2{
  font-size:3rem;
  margin-bottom:80px;
  opacity:0;
  transform:translateY(40px);
  color:var(--blue);

}

@media(max-width:600px){
  .programs h2{
  font-size:2.5rem;
  text-align: center;
  line-height: 2.5rem;
  margin-bottom:80px;
  opacity:0;
  transform:translateY(40px);
  color:var(--blue);

}

}

.programs-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
}

.program-card{
  padding:20px 50px;
  background:#cbb48c;
  color:var(--blue);
  transition:.4s;
  opacity:0;
  transform:translateY(50px);
}

.program-card h3{
  font-size: 25px;
  font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.program-card h5{
  font-size: 18px;
  font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.program-card:nth-child(1){background:#ccb68d;}
.program-card:nth-child(2){background:#c2a97c;}
.program-card:nth-child(3){background:#9c8760;}
.program-card:nth-child(4){background:#d8cdb7;}

.program-card:hover{
  transform:translateY(-15px);
  box-shadow:0 30px 60px rgba(0,0,0,.25);
}

/* ================= CTA FINAL ================= */

.final-cta{
  padding:120px 8%;
  text-align:center;
  background:#fff;
}

.final-cta h2{
  font-size:2.5rem;
  margin-bottom:30px;
  opacity:0;
  transform:translateY(40px);
}

/* ================= ANIMATION ================= */

.show{
  opacity:1 !important;
  transform:translateY(0) !important;
  transition:1s ease;
  line-height: 30px;
}



/* ================= RESPONSIVE ================= */

@media(max-width:992px){

.hero h1{font-size:2.3rem;}
.hero p{font-size:1.1rem;}

.why-container{
  grid-template-columns:1fr;
}

.solutions-grid,
.programs-grid{
  grid-template-columns:1fr;
}

.program-card{
  padding:50px 30px;
}

}

.solution-subtitle{
  margin-top:25px;
  font-style:italic;
  font-size:1.1rem;
  color:var(--gold);
  letter-spacing:1px;
  opacity:.9;
}

.why-btn{
  display:inline-block;
  margin-top:30px;
  background:var(--gold);
  color:var(--blue);
  padding:16px 38px;
  border-radius:50px;
  font-weight:600;
  text-decoration:none;
  transition:all .4s ease;
}

.why-btn:hover{
  transform:translateY(-5px);
  box-shadow:0 15px 35px rgba(212,180,124,.6);
}

/* ================= CONTACT INFO ================= */
/* ================= CONTACT INFO ================= */
/* ================= CONTACT + FOOTER ================= */


/* ================= CONTACT MODULE ================= */

.contact-module{
  background:#0f1722;
  color:#f5f0e6;
  padding:100px 8%;
}

.contact-container{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  max-width:1200px;
  margin:auto;
}

/* Column Titles */
.contact-info h3,
.office-hours h3{
  font-size:1.8rem;
  color:var(--gold);
  margin-bottom:30px;
}

/* Contact Items */
.contact-item{
  display:flex;
  align-items:flex-start;
  gap:15px;
  margin-bottom:20px;
}

.contact-item p{
  margin:0;
  font-size:1.05rem;
  line-height:1.6;
}

.icon{
  width:22px;
  min-width:22px;
  margin-top:3px;
}

.icon svg{
  width:100%;
  fill:var(--gold);
}

/* Office Hours */
.office-hours p{
  margin-bottom:20px;
  font-size:1.05rem;
  line-height:1.6;
}

/* Slogan */
.contact-slogan{
  margin-top:80px;
  text-align:center;
  font-family:'Playfair Display', serif;
  font-size:2.8rem;
  color:var(--gold);
  line-height:1.3;
  max-width:900px;
  margin-left:auto;
  margin-right:auto;
}

/* ================= MOBILE FIX ================= */

@media(max-width:992px){

  .contact-module{
    padding:80px 6%;
  }

  .contact-container{
    grid-template-columns:1fr;
    gap:50px;
    text-align:left;
  }

  .contact-info,
  .office-hours{
    max-width:500px;
    margin:auto;
  }

  .contact-slogan{
    font-size:2rem;
    margin-top:60px;
  }

}

@media(max-width:600px){

  .contact-module{
    padding:70px 5%;
  }

  .contact-item{
    gap:12px;
  }

  .contact-item p,
  .office-hours p{
    font-size:1rem;
  }

  .contact-slogan{
    font-size:1.6rem;
  }

}

/*************/
/* ================= FOOTER ================= */

.main-footer{
  background:#0a1018;
  color:#f5f0e6;
  padding:60px 8% 30px;
}

.footer-container{
  display:flex;
  justify-content:space-between;
  align-items:center;
  max-width:1200px;
  margin:auto;
}

/* Logo */
.footer-logo img{
  width:180px;
}

/* Social */
.footer-social{
  display:flex;
  gap:30px;
}

.footer-social a{
  text-decoration:none;
  color:#f5f0e6;
  font-weight:500;
  transition:.3s;
  position:relative;
}

.footer-social a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-5px;
  width:0%;
  height:2px;
  background:var(--gold);
  transition:.3s;
}

.footer-social a:hover{
  color:var(--gold);
}

.footer-social a:hover::after{
  width:100%;
}

/* Divider */
.footer-divider{
  height:1px;
  background:rgba(212,180,124,.3);
  margin:40px auto 25px;
  max-width:1200px;
}

/* Bottom */
.footer-bottom{
  text-align:center;
  font-size:.9rem;
  color:#aaa;
}

/* ================= RESPONSIVE ================= */

@media(max-width:992px){

  .footer-container{
    flex-direction:column;
    gap:30px;
    text-align:center;
  }
.footer-social a{
  font-size:20px;
  color:#f5f0e6;
  margin:0 12px;
  transition:.3s;
}

.footer-social a:hover{
  color:var(--gold);
  transform:translateY(-3px);
}

.footer-social-wrapper{
  text-align:right;
}

.social-title{
  font-size:.9rem;
  letter-spacing:1px;
  margin-bottom:15px;
  color:#aaa;
  text-transform:uppercase;
}
.footer-social-wrapper{
  text-align:right;
}

.social-title{
  font-size:.9rem;
  letter-spacing:1px;
  margin-bottom:15px;
  color:#aaa;
  text-transform:uppercase;
}

}


/* Developer Credit */

.developer-credit{
  text-align:center;
  font-size:0.85rem;
  color:#777;
  margin-top:15px;
}

.developer-credit a{
  color:var(--gold);
  text-decoration:none;
  font-weight:500;
  transition:.3s;
}

.developer-credit a:hover{
  opacity:.8;
}



.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 28px;
  background-color: #25D366; /* Verde oficial WhatsApp */
  border-radius: 50%;
  text-align: center;
  box-shadow: 2px 2px 5px #999;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}
.whatsapp-float:hover {
  background-color: #128C7E; /* Verde más oscuro */
}
.whatsapp-float img {
  width: 32px;
  height: 32px;
}


/* ================= CTA SECTION ================= */

.cta-section{
  padding:100px 8%;
  text-align:center;
  background:
    radial-gradient(circle at center, rgba(212,180,124,.05), transparent 60%),
    linear-gradient(135deg, #0a1018 0%, #111827 100%);
  border-top:1px solid rgba(212,180,124,.15);
  border-bottom:1px solid rgba(212,180,124,.15);
}

.cta-container{
  max-width:900px;
  margin:auto;
}

.cta-title{
  font-family:'Playfair Display', serif;
  font-size:1.6rem;
  font-weight:500;
  margin-bottom:20px;
}

.cta-title span{
  display:block;
  color:var(--gold);
}

.cta-subtitle{
  color:#aaa;
  margin-bottom:40px;
  font-size:1.1rem;
}

.cta-buttons{
  display:flex;
  justify-content:center;
  gap:20px;
  flex-wrap:wrap;
  margin-top: 80px;
}

/* Botón principal */

.btn-gold{
  background:var(--gold);
  color:#0a1018;
  padding:14px 35px;
  border-radius:30px;
  text-decoration:none;
  font-weight:600;
  transition:.3s ease;
}

.btn-gold:hover{
  background:#c9a35a;
  transform:translateY(-3px);
  box-shadow:0 8px 25px rgba(212,180,124,.35);
}

/* Botón secundario */

.btn-outline-gold{
  border:1px solid var(--gold);
  color:var(--gold);
  padding:14px 35px;
  border-radius:30px;
  text-decoration:none;
  transition:.3s ease;
}

.btn-outline-gold:hover{
  background:var(--gold);
  color:#0a1018;
}


/* ================= MODAL BASE ================= */

.modal-overlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.75);
  backdrop-filter:blur(6px);
  display:flex;
  justify-content:center;
  align-items:flex-start;
  padding:40px 20px; /* importante en móvil */
  opacity:0;
  visibility:hidden;
  transition:.3s ease;
  z-index:9999;
}

/* ACTIVO CON :target */
.modal-overlay.active{
  opacity:1;
  visibility:visible;
}

/* CONTENIDO */
.modal-content{
  background:#0f1722;
  width:100%;
  max-width:600px;
  max-height:90vh;   /* clave */
  overflow-y:auto;   /* clave */
  padding:50px 40px;
  border-radius:12px;
  border:1px solid rgba(212,180,124,.25);
}

.modal-overlay:target .modal-content{
  transform:translateY(0);
}

/* TITULO */
.modal-content h2{
  font-family:'Playfair Display', serif;
  margin-bottom:10px;
  color: var(--gold);
  font-weight:500;
}

/* SUBTITLE */
.modal-subtitle{
  color:#aaa;
  font-size:.9rem;
  margin-bottom:30px;
}

/* CLOSE */
.close-modal{
  position:absolute;
  top:15px;
  right:20px;
  font-size:1.6rem;
  text-decoration:none;
  color:#fffefe;
  transition:.3s;
}

.close-modal:hover{
  color:var(--gold);
}

/* FORM */
.contact-form .form-group{
  margin-bottom:20px;
}

.contact-form input,
.contact-form textarea{
  width:100%;
  padding:12px 15px;
  background:#111827;
  border:1px solid rgba(212,180,124,.2);
  color:#fff;
  border-radius:6px;
  outline:none;
  transition:.3s;
}

.contact-form input:focus,
.contact-form textarea:focus{
  border-color:var(--gold);
  box-shadow:0 0 8px rgba(212,180,124,.2);
}

/* BOTON */
.full-width{
  width:100%;
}


.form-note{
  margin-top:18px;
  font-size:1.0rem;
  color:rgba(212,180,124,.7);
  text-align:center;
  letter-spacing:0px;
  line-height: 20px;
}

.form-group label{
  margin-bottom:8px;
  font-size:.9rem;
  color:#ccc;
}

.form-group label{
  margin-bottom:8px;
  font-size:.9rem;
  color:#ccc;
}

.checkbox-group{
  display:flex;
  flex-direction:column;
  gap:10px;
}

.checkbox-group label{
  display:flex;
  align-items:center;
  gap:8px;
  font-size:.9rem;
  color:#ccc;
}


.modal-content::-webkit-scrollbar{
  width:6px;
}

.modal-content::-webkit-scrollbar-thumb{
  background:rgba(212,180,124,.4);
  border-radius:10px;
}


.participants-group{
  display:flex;
  gap:20px;
  flex-wrap:nowrap; /* clave */
}

.option-item{
  white-space:nowrap; /* evita salto de línea */
}

.option-item span{
  display:inline-block;
  padding:10px 20px;
  border:1px solid rgba(212,180,124,.3);
  border-radius:30px;
  transition:.3s ease;
}

.option-item input{
  display:none;
}

.option-item input:checked + span{
  background:var(--gold);
  color:#0a1018;
  border-color:var(--gold);
}


.schedule-group{
  display:flex;
  gap:15px;
  flex-wrap:nowrap; /* no se bajan en desktop */
  overflow-x:auto;  /* si no caben, permite scroll horizontal */
  padding-bottom:5px;
}

.schedule-item{
  white-space:nowrap; /* evita que se parta */
}

.schedule-item input{
  display:none;
}

.schedule-item span{
  display:inline-block;
  padding:10px 18px;
  border:1px solid rgba(212,180,124,.3);
  border-radius:30px;
  transition:.3s ease;
  cursor:pointer;
}

.schedule-item input:checked + span{
  background:var(--gold);
  color:#0a1018;
  border-color:var(--gold);
}

.schedule-group::-webkit-scrollbar{
  height:4px;
}

.schedule-group::-webkit-scrollbar-thumb{
  background:rgba(212,180,124,.4);
  border-radius:10px;
}