/* =========================
   RESET
========================= */

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:'Outfit',sans-serif;
  background:#f8fbff;
  color:#0d2d5f;
  overflow-x:hidden;
}

/* =========================
   NAVBAR
========================= */

.navbar{
  width:100%;
  height:95px;
  background:white;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 5%;
  border-bottom:1px solid #edf2f7;
  position:sticky;
  top:0;
  z-index:999;
}

.logo{
  display:flex;
  align-items:center;
  gap:18px;
}

.logo img{
  width:80px;
}

.logo-text h2{

  font-family:
  'Playfair Display',
  serif;

  font-size: 42px;

  font-weight: 700;

  color: #0ea4d4;

  line-height: 1;

  letter-spacing: -1px;

}

.logo-text p{
  font-size:12px;
  color:#1b4c8f;
  line-height:1.4;
  margin-top:4px;
}

.nav-links{
  display:flex;
  gap:42px;
}

.nav-links a{
  text-decoration:none;
  color:#1a1a1a;
  font-size:17px;
  font-weight:500;
  transition:.3s;
  position:relative;
}

.nav-links a:hover{
  color:#08a8d8;
}

.nav-links a.active{
  color:#08a8d8;
}

.nav-links a.active::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-12px;
  width:100%;
  height:3px;
  border-radius:20px;
  background:#08a8d8;
}

.nav-btn{
  background:linear-gradient(
    135deg,
    #0c88bd,
    #0977aa
  );
  color:white;
  border:none;
  padding:16px 28px;
  border-radius:14px;
  font-size:16px;
  font-weight:600;
  cursor:pointer;
  display:flex;
  align-items:center;
  gap:10px;
  transition:.3s;
}

.nav-btn:hover{
  transform:translateY(-2px);
}

.menu-btn{
  display:none;
}

/* =========================
   HERO
========================= */

.hero{
  width:100%;
  min-height:calc(100vh - 95px);
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:60px 5%;
  background:
  linear-gradient(
    to right,
    #f8fbff,
    #eef7fd
  );
}

.hero-left{
  width:48%;
}

.hero-left h1{
  font-size:78px;
  line-height:1.05;
  font-weight:800;
  color:#0b2f63;
}

.hero-left span{
  color:#10a6d6;
}

.hero-left p{
  margin-top:28px;
  font-size:25px;
  line-height:1.7;
  color:#4d5f7d;
  max-width:720px;
}

.hero-buttons{
  display:flex;
  gap:22px;
  margin-top:40px;
}

.primary-btn{
  background:linear-gradient(
    135deg,
    #0d91c8,
    #0a7fb3
  );
  color:white;
  border:none;
  padding:20px 34px;
  border-radius:16px;
  font-size:18px;
  font-weight:600;
  display:flex;
  align-items:center;
  gap:12px;
  cursor:pointer;
}

.secondary-btn{
  background:white;
  color:#0d91c8;
  border:2px solid #0d91c8;
  padding:20px 34px;
  border-radius:16px;
  font-size:18px;
  font-weight:600;
  display:flex;
  align-items:center;
  gap:12px;
  cursor:pointer;
}

/* FEATURES */

.hero-features{
  display:flex;
  gap:30px;
  margin-top:50px;
}

.feature{
  display:flex;
  align-items:flex-start;
  gap:15px;
  max-width:220px;
}

.feature-icon{
  min-width:60px;
  min-height:60px;
  border-radius:50%;
  border:1px solid #d6e8f7;
  background:white;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#0d91c8;
  font-size:24px;
}

.feature span{
  color:#3b4c69;
  line-height:1.5;
  font-size:16px;
}

/* HERO RIGHT */

.hero-right{
  width:48%;
  display:flex;
  justify-content:flex-end;
}

.hero-image-wrapper{
  width:100%;
  max-width:760px;
  border-radius:80px 0 0 80px;
  overflow:hidden;
  position:relative;
}

.hero-image-wrapper::before{
  content:"";
  position:absolute;
  inset:0;
  border-radius:80px 0 0 80px;
  box-shadow:
  inset 0 0 0 14px #d9eef8;
  z-index:1;
}

.hero-image-wrapper img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

/* =========================
   WORKSHOPS
========================= */

.workshops{
  width:100%;
  display:flex;
  justify-content:space-between;
  gap:50px;
  padding:100px 5%;
  background:white;
}

.workshops-left{
  width:28%;
}

.section-mini-title{
  color:#10a6d6;
  font-size:15px;
  font-weight:700;
  letter-spacing:2px;
  margin-bottom:25px;
  position:relative;
}

.section-mini-title::after{
  content:"";
  width:20px;
  height:3px;
  background:#10a6d6;
  position:absolute;
  left:0;
  bottom:-10px;
}

.workshops-left h2{
  font-size:58px;
  line-height:1.1;
  margin-bottom:30px;
}

.workshops-left p{
  font-size:21px;
  line-height:1.8;
  color:#5b6b86;
}

.workshops-right{
  width:70%;
}

.cards-container{
  display:grid;
  grid-template-columns:
  repeat(3,1fr);
  gap:30px;
}

.workshop-card{
  background:white;
  border-radius:24px;
  overflow:hidden;
  border:1px solid #e6edf5;
  transition:.3s;
}

.workshop-card:hover{
  transform:translateY(-5px);
  box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.workshop-card img{
  width:100%;
  height:230px;
  object-fit:cover;
}

.card-content{
  padding:25px;
}

.card-icon{
  width:62px;
  height:62px;
  border-radius:50%;
  background:#f0f8fc;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#0ea4d4;
  font-size:25px;
  margin-top:-55px;
  position:relative;
  z-index:5;
  border:6px solid white;
}

.card-content h3{
  margin-top:15px;
  font-size:33px;
  line-height:1.25;
  margin-bottom:20px;
}

.card-content ul{
  list-style:none;
}

.card-content li{
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom:14px;
  color:#62728c;
  font-size:17px;
}

.card-content button{
  width:100%;
  margin-top:20px;
  border:none;
  background:linear-gradient(
    135deg,
    #0d91c8,
    #0a7eb2
  );
  color:white;
  padding:16px;
  border-radius:12px;
  font-size:17px;
  font-weight:600;
  cursor:pointer;
}

.view-all{
  width:100%;
  display:flex;
  justify-content:center;
  margin-top:40px;
}

.view-all button{
  background:white;
  border:2px solid #153d74;
  color:#153d74;
  padding:18px 34px;
  border-radius:14px;
  font-size:17px;
  font-weight:600;
  cursor:pointer;
}

/* =========================
   WHATSAPP
========================= */

.whatsapp{
  position:fixed;
  right:25px;
  bottom:25px;
  width:72px;
  height:72px;
  border-radius:50%;
  background:#25d366;
  color:white;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:38px;
  text-decoration:none;
  z-index:999;
  box-shadow:0 10px 30px rgba(0,0,0,.2);
}

/* =========================
   MOBILE
========================= */

.mobile-menu{
  display:none;
}

@media(max-width:1200px){

  .hero{
    flex-direction:column;
    gap:60px;
  }

  .hero-left,
  .hero-right{
    width:100%;
  }

  .hero-left h1{
    font-size:60px;
  }

  .workshops{
    flex-direction:column;
  }

  .workshops-left,
  .workshops-right{
    width:100%;
  }

  .cards-container{
    grid-template-columns:1fr;
  }

}

@media(max-width:900px){

  .nav-links,
  .nav-btn{
    display:none;
  }

  .menu-btn{
    display:block;
    border:none;
    background:none;
    font-size:28px;
    color:#10366d;
    cursor:pointer;
  }

  .mobile-menu{
    width:100%;
    background:white;
    padding:25px;
    display:none;
    flex-direction:column;
    gap:20px;
    border-bottom:1px solid #edf2f7;
  }

  .mobile-menu a{
    text-decoration:none;
    color:#10366d;
    font-size:18px;
    font-weight:600;
  }

  .hero-left h1{
    font-size:48px;
  }

  .hero-left p{
    font-size:18px;
  }

  .hero-buttons{
    flex-direction:column;
  }

  .hero-features{
    flex-direction:column;
  }

  .workshops-left h2{
    font-size:40px;
  }

  .card-content h3{
    font-size:28px;
  }

}
@media(max-width:900px){

  .mobile-menu{
    position:absolute;
    top:80px;
    left:0;
    width:100%;
    background:#fff;
    padding:25px;
    display:none;
    flex-direction:column;
    gap:20px;
    border-bottom:1px solid #edf2f7;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    z-index:999;
  }

  .mobile-menu.active{
    display:flex;
  }

}
/* =========================
   FOOTER
========================= */

.footer{
  background:#0b2f63;
  color:white;
  padding-top:80px;
  margin-top:60px;
}

.footer-container{
  width:100%;
  display:grid;
  grid-template-columns:
  1.5fr 1fr 1fr 1fr;
  gap:50px;
  padding:0 5% 60px;
}

.footer-column h3{
  font-size:22px;
  margin-bottom:25px;
}

.footer-logo{
  display:flex;
  align-items:center;
  gap:18px;
  margin-bottom:25px;
}

.footer-logo img{
  width:75px;
}

.footer-logo h2{
  font-size:42px;
  line-height:1;
}

.footer-logo p{
  font-size:12px;
  line-height:1.5;
  color:#c9d9ee;
}

.footer-description{
  color:#d4dfef;
  line-height:1.8;
  font-size:17px;
  max-width:420px;
}

.footer-links{
  list-style:none;
}

.footer-links li{
  display:flex;
  align-items:flex-start;
  gap:12px;
  margin-bottom:18px;
  color:#d4dfef;
  line-height:1.6;
  font-size:16px;
}

.footer-links i{
  color:#10a6d6;
  margin-top:3px;
}

.footer-socials{
  display:flex;
  gap:14px;
}

.footer-socials a{
  width:46px;
  height:46px;
  border-radius:12px;
  background:rgba(255,255,255,.08);
  color:white;
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  font-size:18px;
  transition:.3s;
}

.footer-socials a:hover{
  background:#10a6d6;
  transform:translateY(-3px);
}

.footer-bottom{
  width:100%;
  border-top:1px solid rgba(255,255,255,.08);
  padding:25px 5%;
  text-align:center;
  color:#c3d4eb;
  font-size:15px;
}

/* =========================
   FOOTER MOBILE
========================= */

@media(max-width:1000px){

  .footer-container{
    grid-template-columns:1fr;
    gap:40px;
  }

}
/* =========================
   ABOUT HERO
========================= */

.about-hero{
  width:100%;
  min-height:55vh;
  background:
  linear-gradient(
    rgba(11,47,99,.8),
    rgba(11,47,99,.8)
  ),
  url("img/about-banner.jpg");

  background-size:cover;
  background-position:center;

  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;

  padding:100px 5%;
}

.about-hero-content span{
  color:#4fd3ff;
  font-weight:700;
  letter-spacing:2px;
}

.about-hero-content h1{
  color:white;
  font-size:72px;
  line-height:1.1;
  max-width:950px;
  margin:25px auto;
}

.about-hero-content p{
  color:#dce8f5;
  font-size:22px;
  max-width:750px;
  line-height:1.8;
  margin:auto;
}

/* =========================
   ABOUT SECTION
========================= */

.about-section{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:60px;
  padding:100px 5%;
  background:white;
}

.about-image{
  width:48%;
}

.about-image img{
  width:100%;
  border-radius:30px;
}

.about-text{
  width:48%;
}

.about-text h2{
  font-size:58px;
  margin-bottom:25px;
}

.about-text p{
  font-size:20px;
  line-height:1.9;
  color:#5c6b85;
  margin-bottom:25px;
}

/* =========================
   MISSION VISION
========================= */

.mission-vision{
  width:100%;
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:30px;
  padding:0 5% 100px;
}

.info-card{
  background:white;
  border-radius:28px;
  padding:50px;
  box-shadow:0 10px 40px rgba(0,0,0,.05);
}

.info-icon{
  width:75px;
  height:75px;
  border-radius:50%;
  background:#eaf7fd;
  color:#0da3d3;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:32px;
  margin-bottom:25px;
}

.info-card h3{
  font-size:38px;
  margin-bottom:20px;
}

.info-card p{
  color:#5c6b85;
  font-size:19px;
  line-height:1.9;
}

/* =========================
   VALUES
========================= */

.values-section{
  width:100%;
  padding:100px 5%;
  background:#f5fafe;
}

.section-center{
  text-align:center;
  margin-bottom:60px;
}

.section-center h2{
  font-size:60px;
}

.values-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}

.value-card{
  background:white;
  border-radius:24px;
  padding:45px 30px;
  text-align:center;
  transition:.3s;
}

.value-card:hover{
  transform:translateY(-5px);
}

.value-card i{
  font-size:42px;
  color:#0ea4d4;
  margin-bottom:20px;
}

.value-card span{
  font-size:22px;
  font-weight:600;
}

/* =========================
   WHAT WE DO
========================= */

.what-we-do{
  width:100%;
  padding:100px 5%;
  background:white;
}

.services-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}

.service-item{
  background:#f7fbff;
  border-radius:22px;
  padding:35px;
  display:flex;
  align-items:center;
  gap:20px;
}

.service-item i{
  font-size:28px;
  color:#0ea4d4;
}

.service-item span{
  font-size:22px;
  font-weight:600;
}

/* =========================
   SIMULATION
========================= */

.simulation-section{
  width:100%;
  padding:120px 5%;
  background:
  linear-gradient(
    rgba(11,47,99,.92),
    rgba(11,47,99,.92)
  ),
  url("img/simulation.jpg");

  background-size:cover;
  background-position:center;
}

.simulation-content{
  max-width:900px;
}

.simulation-content h2{
  color:white;
  font-size:60px;
  margin-bottom:30px;
}

.simulation-content p{
  color:#dbe6f2;
  font-size:22px;
  line-height:1.9;
}

/* =========================
   CTA
========================= */

.cta-section{
  width:100%;
  padding:100px 5%;
  text-align:center;
  background:#f7fbff;
}

.cta-section h2{
  font-size:60px;
  margin-bottom:20px;
}

.cta-section p{
  font-size:22px;
  color:#61708b;
  margin-bottom:35px;
}

.cta-section button{
  border:none;
  background:linear-gradient(
    135deg,
    #0d91c8,
    #0a7eb2
  );
  color:white;
  padding:20px 40px;
  border-radius:16px;
  font-size:18px;
  font-weight:600;
  cursor:pointer;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:1000px){

  .about-section{
    flex-direction:column;
  }

  .about-image,
  .about-text{
    width:100%;
  }

  .mission-vision{
    grid-template-columns:1fr;
  }

  .values-grid,
  .services-grid{
    grid-template-columns:1fr;
  }

  .about-hero-content h1,
  .section-center h2,
  .simulation-content h2,
  .cta-section h2{
    font-size:42px;
  }

}
/* =========================
   GALLERY HERO
========================= */

.gallery-hero{
  width:100%;
  min-height:55vh;

  background:
  linear-gradient(
    rgba(11,47,99,.8),
    rgba(11,47,99,.8)
  ),
  url("img/gallery-banner.jpg");

  background-size:cover;
  background-position:center;

  display:flex;
  align-items:center;
  justify-content:center;

  text-align:center;

  padding:100px 5%;
}

.gallery-hero-content span{
  color:#55d4ff;
  letter-spacing:2px;
  font-weight:700;
}

.gallery-hero-content h1{
  color:white;
  font-size:72px;
  line-height:1.1;
  margin:25px auto;
  max-width:900px;
}

.gallery-hero-content p{
  color:#d9e6f3;
  font-size:22px;
  line-height:1.8;
  max-width:760px;
  margin:auto;
}

/* =========================
   GALLERY INTRO
========================= */

.gallery-intro{
  width:100%;
  padding:100px 5% 40px;
  background:white;
}

.gallery-intro p{
  max-width:850px;
  margin:25px auto 0;
  color:#60708b;
  font-size:22px;
  line-height:1.9;
}

/* =========================
   GALLERY GRID
========================= */

.gallery-section{
  width:100%;
  padding:0 5% 100px;
  background:white;
}

.gallery-grid{
  display:grid;

  grid-template-columns:
  repeat(3,1fr);

  grid-auto-rows:300px;

  gap:25px;
}

.gallery-item{
  position:relative;
  overflow:hidden;
  border-radius:30px;
  cursor:pointer;
}

.gallery-item img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:.5s;
}

.gallery-item:hover img{
  transform:scale(1.08);
}

.gallery-overlay{
  position:absolute;
  inset:0;

  background:
  linear-gradient(
    transparent,
    rgba(0,0,0,.7)
  );

  display:flex;
  align-items:flex-end;

  padding:30px;
}

.gallery-overlay span{
  color:white;
  font-size:24px;
  font-weight:600;
}

.gallery-item.tall{
  grid-row:span 2;
}

.gallery-item.wide{
  grid-column:span 2;
}

/* =========================
   GALLERY CTA
========================= */

.gallery-cta{
  width:100%;
  padding:100px 5%;
  text-align:center;
  background:#f6fbff;
}

.gallery-cta h2{
  font-size:60px;
  margin-bottom:20px;
}

.gallery-cta p{
  font-size:22px;
  color:#62728d;
  margin-bottom:35px;
}

.gallery-cta button{
  border:none;

  background:
  linear-gradient(
    135deg,
    #0d91c8,
    #0a7eb2
  );

  color:white;

  padding:20px 40px;

  border-radius:16px;

  font-size:18px;
  font-weight:600;

  cursor:pointer;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:1000px){

  .gallery-grid{
    grid-template-columns:1fr;
    grid-auto-rows:280px;
  }

  .gallery-item.wide,
  .gallery-item.tall{
    grid-column:span 1;
    grid-row:span 1;
  }

  .gallery-hero-content h1,
  .gallery-cta h2{
    font-size:42px;
  }

  .gallery-intro p,
  .gallery-hero-content p{
    font-size:18px;
  }

}
/* =========================
   RESOURCES HERO
========================= */

.resources-hero{
  width:100%;
  min-height:55vh;

  background:
  linear-gradient(
    rgba(11,47,99,.82),
    rgba(11,47,99,.82)
  ),
  url("img/resources-banner.jpg");

  background-size:cover;
  background-position:center;

  display:flex;
  align-items:center;
  justify-content:center;

  text-align:center;

  padding:100px 5%;
}

.resources-hero-content span{
  color:#56d5ff;
  letter-spacing:2px;
  font-weight:700;
}

.resources-hero-content h1{
  color:white;
  font-size:72px;
  line-height:1.1;
  margin:25px auto;
  max-width:950px;
}

.resources-hero-content p{
  color:#dce7f4;
  font-size:22px;
  line-height:1.8;
  max-width:760px;
  margin:auto;
}

/* =========================
   INTRO
========================= */

.resources-intro{
  width:100%;
  padding:100px 5% 50px;
  background:white;
}

.resources-intro p{
  max-width:850px;
  margin:25px auto 0;
  color:#62718d;
  font-size:22px;
  line-height:1.9;
}

/* =========================
   RESOURCES GRID
========================= */

.resources-section{
  width:100%;
  padding:0 5% 100px;
  background:white;
}

.resources-grid{
  display:grid;

  grid-template-columns:
  repeat(3,1fr);

  gap:30px;
}

.resource-card{
  background:#f8fbff;
  border-radius:28px;
  padding:35px;
  transition:.3s;
  border:1px solid #e8eff7;
}

.resource-card:hover{
  transform:translateY(-6px);

  box-shadow:
  0 15px 40px rgba(0,0,0,.06);
}

.resource-icon{
  width:75px;
  height:75px;
  border-radius:22px;

  background:
  linear-gradient(
    135deg,
    #0ea4d4,
    #0a7eb2
  );

  color:white;

  display:flex;
  align-items:center;
  justify-content:center;

  font-size:30px;

  margin-bottom:25px;
}

.resource-tag{
  display:inline-block;

  background:#e6f7fd;

  color:#0ea4d4;

  padding:8px 14px;

  border-radius:50px;

  font-size:13px;
  font-weight:700;

  margin-bottom:20px;
}

.resource-content h3{
  font-size:30px;
  line-height:1.3;
  margin-bottom:18px;
}

.resource-content p{
  color:#62718d;
  line-height:1.8;
  font-size:17px;
  margin-bottom:25px;
}

.resource-content a{
  color:#0ea4d4;
  text-decoration:none;
  font-weight:600;

  display:flex;
  align-items:center;
  gap:10px;
}

/* =========================
   CTA
========================= */

.resources-cta{
  width:100%;
  padding:100px 5%;
  text-align:center;
  background:#f5fafe;
}

.resources-cta h2{
  font-size:60px;
  margin-bottom:20px;
}

.resources-cta p{
  font-size:22px;
  color:#64748b;
  margin-bottom:35px;
}

.resources-cta button{
  border:none;

  background:
  linear-gradient(
    135deg,
    #0d91c8,
    #0a7eb2
  );

  color:white;

  padding:20px 40px;

  border-radius:16px;

  font-size:18px;
  font-weight:600;

  cursor:pointer;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:1000px){

  .resources-grid{
    grid-template-columns:1fr;
  }

  .resources-hero-content h1,
  .resources-cta h2{
    font-size:42px;
  }

  .resources-hero-content p,
  .resources-intro p{
    font-size:18px;
  }

}
/* =========================
   TALLERES HERO
========================= */

.talleres-hero{
  width:100%;
  min-height:60vh;

  background:
  linear-gradient(
    rgba(11,47,99,.82),
    rgba(11,47,99,.82)
  ),
  url("img/talleres-banner.jpg");

  background-size:cover;
  background-position:center;

  display:flex;
  align-items:center;
  justify-content:center;

  text-align:center;

  padding:120px 5%;
}

.talleres-hero-content span{
  color:#59d8ff;
  letter-spacing:2px;
  font-weight:700;
}

.talleres-hero-content h1{
  color:white;
  font-size:72px;
  line-height:1.1;
  max-width:950px;
  margin:25px auto;
}

.talleres-hero-content p{
  color:#dce7f4;
  font-size:22px;
  line-height:1.8;
  max-width:760px;
  margin:auto auto 40px;
}

/* =========================
   HERO BUTTON
========================= */

.hero-taller-btn{
  display:inline-flex;
  align-items:center;
  gap:15px;

  background:
  linear-gradient(
    135deg,
    #0ea4d4,
    #0b7eb2
  );

  color:white;
  text-decoration:none;

  padding:24px 42px;

  border-radius:22px;

  font-size:22px;
  font-weight:700;

  transition:.3s;
}

.hero-taller-btn:hover{
  transform:translateY(-3px);
}

/* =========================
   INTRO
========================= */

.talleres-intro{
  width:100%;
  padding:100px 5% 40px;
  background:white;
}

.talleres-intro p{
  max-width:850px;
  margin:25px auto 0;
  color:#61708b;
  font-size:22px;
  line-height:1.9;
}

/* =========================
   TALLERES GRID
========================= */

.talleres-section{
  width:100%;
  padding:0 5% 100px;
  background:white;
}

.talleres-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:35px;
}

.taller-card{
  background:white;
  border-radius:30px;
  overflow:hidden;

  box-shadow:
  0 15px 40px rgba(0,0,0,.06);

  transition:.3s;
}

.taller-card:hover{
  transform:translateY(-6px);
}

.taller-card img{
  width:100%;
  height:280px;
  object-fit:cover;
}

.taller-card-content{
  padding:35px;
}

.taller-icon{
  width:75px;
  height:75px;
  border-radius:50%;

  background:#ebf8fe;
  color:#0ea4d4;

  display:flex;
  align-items:center;
  justify-content:center;

  font-size:30px;

  margin-bottom:25px;
}

.taller-card-content h3{
  font-size:34px;
  line-height:1.2;
  margin-bottom:20px;
}

.taller-card-content p{
  color:#62718d;
  line-height:1.8;
  font-size:18px;
  margin-bottom:25px;
}

.taller-card-content ul{
  list-style:none;
  margin-bottom:30px;
}

.taller-card-content li{
  display:flex;
  align-items:center;
  gap:12px;

  margin-bottom:16px;

  color:#4f5f7b;
}

.taller-card-content li i{
  color:#0ea4d4;
}

.taller-card-content button{
  width:100%;
  border:none;

  background:
  linear-gradient(
    135deg,
    #0ea4d4,
    #0b7eb2
  );

  color:white;

  padding:18px;

  border-radius:16px;

  font-size:17px;
  font-weight:600;

  cursor:pointer;
}

/* =========================
   BENEFITS
========================= */

.benefits-section{
  width:100%;
  padding:100px 5%;
  background:#f6fbff;
}

.benefits-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:30px;
}

.benefit-card{
  background:white;

  border-radius:24px;

  padding:40px 30px;

  text-align:center;

  transition:.3s;
}

.benefit-card:hover{
  transform:translateY(-5px);
}

.benefit-card i{
  font-size:42px;
  color:#0ea4d4;
  margin-bottom:20px;
}

.benefit-card span{
  font-size:22px;
  font-weight:600;
}

/* =========================
   CTA
========================= */

.talleres-cta{
  width:100%;
  padding:100px 5%;

  text-align:center;

  background:#0b2f63;
}

.talleres-cta h2{
  color:white;
  font-size:60px;
  margin-bottom:20px;
}

.talleres-cta p{
  color:#dce7f4;
  font-size:22px;
  margin-bottom:35px;
}

.talleres-cta a{
  display:inline-flex;
  align-items:center;
  justify-content:center;

  background:
  linear-gradient(
    135deg,
    #0ea4d4,
    #0b7eb2
  );

  color:white;
  text-decoration:none;

  padding:20px 40px;

  border-radius:18px;

  font-size:18px;
  font-weight:700;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:1100px){

  .talleres-grid,
  .benefits-grid{
    grid-template-columns:1fr;
  }

  .talleres-hero-content h1,
  .talleres-cta h2{
    font-size:42px;
  }

  .talleres-hero-content p,
  .talleres-intro p{
    font-size:18px;
  }

}
/* =========================
   INSCRIBITE HERO
========================= */

.inscribite-hero{
  width:100%;
  min-height:50vh;

  background:
  linear-gradient(
    rgba(11,47,99,.85),
    rgba(11,47,99,.85)
  ),
  url("img/inscribite-banner.jpg");

  background-size:cover;
  background-position:center;

  display:flex;
  align-items:center;
  justify-content:center;

  text-align:center;

  padding:120px 5%;
}

.inscribite-hero-content span{
  color:#59d8ff;
  font-weight:700;
  letter-spacing:2px;
}

.inscribite-hero-content h1{
  color:white;
  font-size:72px;
  line-height:1.1;

  margin:25px auto;

  max-width:900px;
}

.inscribite-hero-content p{
  color:#dce7f4;
  font-size:22px;
  line-height:1.8;

  max-width:760px;

  margin:auto;
}

/* =========================
   SECTION
========================= */

.inscripcion-section{
  width:100%;
  padding:100px 5%;
  background:#f7fbff;
}

.inscripcion-container{
  display:grid;

  grid-template-columns:
  1.1fr .9fr;

  gap:50px;
}

/* =========================
   LEFT
========================= */

.inscripcion-left h2{
  font-size:52px;
  line-height:1.1;

  margin-top:20px;
  margin-bottom:40px;
}

.inscripcion-cards{
  display:flex;
  flex-direction:column;
  gap:25px;
}

/* =========================
   CARD
========================= */

.inscripcion-card{
  background:white;

  border-radius:30px;

  overflow:hidden;

  display:flex;
  gap:25px;

  padding:20px;

  cursor:pointer;

  transition:.3s;

  border:2px solid transparent;

  box-shadow:
  0 10px 30px rgba(0,0,0,.05);
}

.inscripcion-card:hover{
  transform:translateY(-5px);
}

.inscripcion-card.active{
  border-color:#0ea4d4;
}

.inscripcion-card img{
  width:240px;
  height:180px;

  object-fit:cover;

  border-radius:22px;
}

.inscripcion-card-content{
  flex:1;

  display:flex;
  flex-direction:column;
  justify-content:center;
}

.inscripcion-card-content h3{
  font-size:32px;
  line-height:1.2;
  margin-bottom:15px;
}

.inscripcion-card-content p{
  color:#62718d;
  font-size:18px;
  line-height:1.7;

  margin-bottom:20px;
}

.card-info{
  display:flex;
  gap:25px;
  flex-wrap:wrap;
}

.card-info span{
  display:flex;
  align-items:center;
  gap:10px;

  color:#4e5f7d;
  font-weight:500;
}

.card-info i{
  color:#0ea4d4;
}

/* =========================
   RIGHT
========================= */

.inscripcion-right{
  display:flex;
  flex-direction:column;
  gap:35px;
}

/* =========================
   CALENDAR
========================= */

.calendar-box{
  background:white;

  border-radius:35px;

  padding:40px;

  box-shadow:
  0 15px 40px rgba(0,0,0,.05);
}

.calendar-header h3{
  font-size:34px;
  margin-bottom:30px;
}

/* =========================
   DAYS
========================= */

.calendar-days{
  display:grid;

  grid-template-columns:
  repeat(2,1fr);

  gap:18px;

  margin-bottom:40px;
}

.day{
  border:none;

  background:#eef7fd;

  padding:22px;

  border-radius:18px;

  font-size:18px;
  font-weight:700;

  cursor:pointer;

  transition:.3s;
}

.day.active{
  background:
  linear-gradient(
    135deg,
    #0ea4d4,
    #0b7eb2
  );

  color:white;
}

/* =========================
   HORARIOS
========================= */

.horarios-box h4{
  font-size:26px;
  margin-bottom:25px;
}

.horarios-grid{
  display:flex;
  flex-wrap:wrap;
  gap:15px;

  margin-bottom:35px;
}

.hora{
  border:none;

  background:#eef7fd;

  padding:18px 26px;

  border-radius:14px;

  font-size:16px;
  font-weight:700;

  cursor:pointer;

  transition:.3s;
}

.hora.active{
  background:
  linear-gradient(
    135deg,
    #0ea4d4,
    #0b7eb2
  );

  color:white;
}

/* =========================
   CUPOS
========================= */

.cupos-box{
  display:flex;
  align-items:center;
  justify-content:space-between;

  background:#f6fbff;

  padding:22px 25px;

  border-radius:18px;
}

.cupos-left{
  display:flex;
  align-items:center;
  gap:12px;

  font-weight:600;
}

.cupos-left i{
  color:#18b66f;
}

.cupos-box span{
  color:#18b66f;
  font-weight:700;
}

/* =========================
   FORM
========================= */

.form-box{
  background:white;

  border-radius:35px;

  padding:40px;

  box-shadow:
  0 15px 40px rgba(0,0,0,.05);
}

.form-box h3{
  font-size:34px;
  margin-bottom:35px;
}

#inscripcionForm{
  display:flex;
  flex-direction:column;
  gap:25px;
}

.input-group{
  display:flex;
  flex-direction:column;
  gap:12px;
}

.input-group label{
  font-weight:600;
  color:#24324a;
}

.input-group input{
  width:100%;

  border:none;

  background:#f4f9fd;

  padding:20px;

  border-radius:16px;

  font-size:16px;

  outline:none;
}

.input-group input:focus{
  border:2px solid #0ea4d4;
}

/* =========================
   BUTTON
========================= */

.confirm-btn{
  width:100%;

  border:none;

  background:
  linear-gradient(
    135deg,
    #0ea4d4,
    #0b7eb2
  );

  color:white;

  padding:22px;

  border-radius:18px;

  font-size:18px;
  font-weight:700;

  cursor:pointer;

  display:flex;
  align-items:center;
  justify-content:center;
  gap:12px;

  transition:.3s;

  margin-top:10px;
}

.confirm-btn:hover{
  transform:translateY(-3px);
}

/* =========================
   SUMMARY
========================= */

.summary-section{
  width:100%;
  padding:100px 5%;

  background:white;
}

.summary-box{
  max-width:900px;
  margin:auto;

  text-align:center;
}

.summary-icon{
  width:110px;
  height:110px;

  border-radius:50%;

  margin:auto auto 30px;

  background:
  linear-gradient(
    135deg,
    #0ea4d4,
    #0b7eb2
  );

  color:white;

  display:flex;
  align-items:center;
  justify-content:center;

  font-size:42px;
}

.summary-box h2{
  font-size:58px;
  line-height:1.2;

  margin-bottom:25px;
}

.summary-box p{
  color:#62718d;

  font-size:22px;
  line-height:1.8;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:1100px){

  .inscripcion-container{
    grid-template-columns:1fr;
  }

  .inscribite-hero-content h1,
  .summary-box h2{
    font-size:42px;
  }

  .inscribite-hero-content p,
  .summary-box p{
    font-size:18px;
  }

}

@media(max-width:800px){

  .inscripcion-card{
    flex-direction:column;
  }

  .inscripcion-card img{
    width:100%;
    height:240px;
  }

  .calendar-days{
    grid-template-columns:1fr;
  }

  .inscripcion-left h2{
    font-size:40px;
  }

  .inscripcion-card-content h3{
    font-size:28px;
  }

}
/* =========================================
   FECHAS
========================================= */

#calendarDays{

  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:20px;

}

.day-btn{

  border:none;
  background:#ffffff;
  color:#0f172a;
  padding:14px 24px;
  border-radius:14px;
  font-size:16px;
  font-weight:700;
  cursor:pointer;
  transition:0.25s;
  box-shadow:
  0 4px 12px rgba(0,0,0,0.08);

}

.day-btn:hover{

  transform:translateY(-2px);

  background:#2563eb;
  color:white;

}

.day-btn.active{

  background:#0f172a;
  color:white;

  box-shadow:
  0 8px 20px rgba(15,23,42,0.25);

}

/* =========================================
   HORARIOS
========================================= */

#horariosGrid{

  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-top:25px;

}

.hora-btn{

  border:none;
  background:white;
  padding:14px 18px;
  border-radius:16px;
  cursor:pointer;

  display:flex;
  align-items:center;
  gap:10px;

  font-size:15px;
  font-weight:700;

  transition:0.25s;

  box-shadow:
  0 4px 14px rgba(0,0,0,0.08);

}

.hora-btn:hover{

  transform:translateY(-3px);

}

.hora-btn.active{

  background:#0f172a;
  color:white;

  box-shadow:
  0 10px 22px rgba(15,23,42,0.25);

}

/* =========================================
   ESTADOS
========================================= */

.hora-btn.activo{

  border:2px solid #22c55e;

}

.hora-btn.completo{

  border:2px solid #f59e0b;
  opacity:0.7;

}

.hora-btn.cancelado{

  border:2px solid #ef4444;
  opacity:0.6;

}

/* =========================================
   TAG ESTADO
========================================= */

.estado-tag{

  font-size:12px;
  font-weight:700;

  padding:6px 10px;

  border-radius:999px;

  background:#f1f5f9;

}

.hora-btn.activo .estado-tag{

  background:#dcfce7;
  color:#166534;

}

.hora-btn.completo .estado-tag{

  background:#fef3c7;
  color:#92400e;

}

.hora-btn.cancelado .estado-tag{

  background:#fee2e2;
  color:#991b1b;

}

/* =========================================
   TEXTO INFO
========================================= */

#cuposText{

  margin-top:20px;

  font-size:16px;
  font-weight:600;

  color:#334155;

}
.logo{
  display:flex;
  align-items:center;
  gap:14px;
}

.main-logo{
  width:60px;
}

.logo-text{
  display:flex;
  flex-direction:column;
}

.logo-title-img{
  width:460px;
}

.logo-text p{

  font-size:11px;

  font-weight:600;

  line-height:1.2;

  color:#64748b;

  letter-spacing:.5px;

  margin-top:2px;

}
/* =========================
   HERO BANNER
========================= */


.about-hero{
  width:100%;
  margin:0;
  padding:0;
  overflow:hidden;
  position:relative;
}

.hero-banner{
  width:100%;
  height:auto;
  display:block;
}

/* =========================
   TABLET
========================= */

@media (max-width: 1024px){

  .hero-banner{
    width:100%;
    height:auto;
  }

}

/* =========================
   MOBILE
========================= */

@media (max-width: 768px){

  .about-hero{
    overflow:hidden;
  }

  .hero-banner{
    width:100%;
    height:auto;
    display:block;
  }

}

/* =========================
   MOBILE PEQUEÑO
========================= */

@media (max-width: 480px){

  .hero-banner{
    width:100%;
    height:auto;
    display:block;
  }

}
/* =========================
   HERO RECURSOS
========================= */

.resources-hero{
    width: 100%;
    margin: 0;
    padding: 0;
    background: #3f5f91;
    overflow: hidden;
}

.resources-hero img{
    width: 100%;
    height: auto;
    display: block;
}

/* Si el navbar es fixed */
.navbar{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;
    z-index: 1000;
    background: #fff;
}

.resources-hero{
    margin-top: 90px;
}
/* =====================================
   MOBILE OPTIMIZACIÓN GENERAL
===================================== */

@media (max-width:768px){

  /* NAVBAR */

  .navbar{
    height:75px;
    padding:0 20px;
  }

  .main-logo{
    width:45px;
  }

  .logo-title-img{
    width:180px;
  }

  .logo-text p{
    font-size:8px;
  }

  /* HERO */

  .hero{
    padding:40px 20px;
  }

  .hero-left h1{
    font-size:38px;
    line-height:1.15;
  }

  .hero-left p{
    font-size:16px;
    line-height:1.7;
  }

  .primary-btn,
  .secondary-btn{
    width:100%;
    justify-content:center;
    padding:16px;
  }

  /* TITULOS GENERALES */

  .section-center h2,
  .about-text h2,
  .workshops-left h2,
  .simulation-content h2,
  .gallery-cta h2,
  .resources-cta h2,
  .talleres-cta h2,
  .cta-section h2{
    font-size:34px;
    line-height:1.2;
  }

  /* CARDS */

  .card-content,
  .resource-card,
  .value-card,
  .info-card,
  .service-item{
    padding:25px;
  }

  .card-content h3,
  .resource-content h3,
  .taller-card-content h3{
    font-size:24px;
  }

  /* FOOTER */

  .footer{
    text-align:center;
  }

  .footer-logo{
    flex-direction:column;
    gap:15px;
  }

  .footer-description{
    max-width:100%;
  }

  .footer-links li{
    justify-content:center;
  }

  .footer-socials{
    justify-content:center;
  }

}
/* =====================================
   MOBILE PEQUEÑO
===================================== */

@media (max-width:480px){

  .logo-title-img{
    width:140px;
  }

  .logo-text p{
    display:none;
  }

  .hero-left h1{
    font-size:30px;
  }

  .about-hero-content h1,
  .gallery-hero-content h1,
  .resources-hero-content h1,
  .talleres-hero-content h1,
  .inscribite-hero-content h1{
    font-size:32px;
  }

  .about-hero-content p,
  .gallery-hero-content p,
  .resources-hero-content p,
  .talleres-hero-content p,
  .inscribite-hero-content p{
    font-size:16px;
  }

  .footer-column h3{
    font-size:20px;
  }

  .footer-bottom{
    font-size:13px;
  }

}
@media (max-width:768px){

  .resources-hero{
    margin-top:75px;
  }

  .resources-hero img{
    width:100%;
    display:block;
  }

}
/* =========================
   TOP BANNER
========================= */
.top-banner{

  width:100%;

  height:635px;

  overflow:hidden;

}

.top-banner img{
  width:100%;
  display:block;
  transform:translateY(-70px);
}
@media(max-width:768px){

  .top-banner{

    margin-top:75px;

    height:110px;

  }

}
/* =========================
   MARQUEE
========================= */

.top-marquee{

  width:100%;

  height:42px;

  background:linear-gradient(
    90deg,
    #0d4ea3,
    #1ca9e8
  );

  overflow:hidden;

  display:flex;

  align-items:center;

  position:relative;

  z-index:10;

}

.marquee-track{

  display:flex;

  align-items:center;

  gap:70px;

  white-space:nowrap;

  min-width:max-content;

  animation:marqueeMove 30s linear infinite;

}

.marquee-track span{

  display:flex;

  align-items:center;

  gap:10px;

  color:#fff;

  font-size:14px;

  font-weight:600;

  letter-spacing:.3px;

}

.marquee-track i{

  font-size:15px;

  color:#fff;

}

@keyframes marqueeMove{

  from{
    transform:translateX(0);
  }

  to{
    transform:translateX(-50%);
  }

}

/* MOBILE */

@media(max-width:768px){

  .top-marquee{

    height:36px;

  }

  .marquee-track{

    gap:40px;

  }

  .marquee-track span{

    font-size:12px;

  }

}
/* =========================
   TALLERES MARQUEE
========================= */

.workshops-marquee{

  width:100%;

  height:55px;

  background:#0d4ea3;

  overflow:hidden;

  display:flex;

  align-items:center;

  margin:50px 0;

  border-radius:16px;

}

.workshops-marquee-track{

  display:flex;

  align-items:center;

  gap:80px;

  white-space:nowrap;

  min-width:max-content;

  animation:workshopsMarquee 30s linear infinite;

}

.workshops-marquee-track span{

  display:flex;

  align-items:center;

  gap:12px;

  color:white;

  font-size:15px;

  font-weight:600;

}

.workshops-marquee-track i{

  color:#6dd3ff;

  font-size:18px;

}

@keyframes workshopsMarquee{

  from{
    transform:translateX(0);
  }

  to{
    transform:translateX(-50%);
  }

}