

* { box-sizing: border-box; }
body { background:#fff; color:#000; line-height:1.5; }

/* Typography */
h1 { font-size: clamp(2.3rem, 5vw, 3.3rem); letter-spacing: 1px; }
h2 { font-size: clamp(1.9rem, 4vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.5rem); }
p, li { font-size: clamp(0.95rem, 2vw, 1.05rem); }

.kicker{
  color:#FF6B1A;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 1rem;
  margin-bottom: 10px;
}

/* Buttons */
.heroCtas{ display:flex; gap:14px; margin-top: 18px; flex-wrap:wrap; justify-content:center; }
.btnPrimary{
  display:inline-block;
  padding: 11px 22px;
  border-radius: 10px;
  background:#002e52;
  color:#fff;
  text-decoration:none;
  border: 2px solid #002e52;
}
.btnPrimary:hover{ box-shadow: #ff6b1a 0px 0px 10px 0px; }

.btnGhost{
  display:inline-block;
  padding: 11px 22px;
  border-radius: 10px;
  background: transparent;
  color:#fff;
  text-decoration:none;
  border: 2px solid #ffffffb0;
}
.btnGhost:hover{ box-shadow: rgba(255,255,255,0.35) 0px 0px 10px 0px; }

/* HERO */
.banner{
  width:100%;
  height: 420px;
  background-image: linear-gradient(to right, #00000080, #00000080), url('img/BannerHome.webp');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;

  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;

  color:#fff;
  text-align:center;
  padding: 0 20px;
}

.logoBanner{ height: 90px; margin-bottom: 18px; }

.banner p{
  max-width: 980px;
  margin: 0 auto 18px;
  font-size: 1.2rem;
}

/* Container */
.contenedor{
  max-width: 1300px;
  margin: 80px auto;
  padding: 0 20px;
}

/* Duo layouts */
.contenedorDuo{
  display:flex;
  gap: 40px;
  flex-wrap:wrap;
  align-items:center;
}

.contDuo{
  flex:1;
  min-width: 280px;
  text-align:left;
}

.contMedia{ display:flex; justify-content:center; }

.lead{
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  line-height: 1.7;
}

.bullets{
  margin-top: 18px;
  padding-left: 18px;
  display: grid;
  justify-items:center;
}
.bullets li{
  margin: 8px 0;
  opacity: 0.95;
  background: #002e52;
  list-style: none;
  color: white;
  text-align: center;
  width: 100%;
  padding: 10px;
}


.gifPanel{
  width: 100%;
  min-height: 340px;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}


.noDisplay{ display:block; }

/* Section title */
.sectionTitle{
  margin-top: 70px;
  text-align:center;
}
.sectionTitle p{
  max-width: 860px;
  margin: 12px auto 0;
  opacity: 0.9;
}

/* Image */
.imgSoft{
  width:100%;
  max-width: 520px;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

/* Grid 4 cards */
.contenedor4x1{
  margin-top: 35px;
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 22px;
}

.card{
  background:#002e52;
  color:#fff;
  padding: 28px 22px;
  border-radius: 16px;
  text-align:center;
  box-shadow: 0 6px 14px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
}

.card:hover{
  transform: translateY(-6px);
  box-shadow: 0 10px 22px rgba(0,0,0,0.18);
}

.card img{ width: 54px; margin-bottom: 14px; }

/* Blue separator */
.separador{
  background:#002e52;
  color:#fff;
  padding: 90px 0;
  text-align:center;
}

.separador .contenedor{ margin: 0 auto; }

.statsGrid{
  margin-top: 35px;
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.statCard{
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 16px;
  padding: 22px;
  text-align:left;
}

.statValue{
  font-size: 2rem;
  font-weight: 800;
  color:#FF6B1A;
}
.statLabel{ font-weight: 700; margin-top: 6px; }
.statDesc{ opacity: 0.9; margin-top: 6px; }

/* Core division */
.coreDivision{
  background:#002e52;
  color:#fff;
  padding: 70px 0 90px;
  margin-bottom: 90px;
}

.contCDTitle{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding: 0 20px;
}

.conCardCD{
  max-width: 1300px;
  margin: 45px auto 0;
  padding: 0 20px;

  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.cardCD{
  background:#fff;
  color:#000;
  border: 2px solid #d6d6df;
  border-radius: 14px;
  padding: 26px;
  text-align:left;
  transition: transform .25s ease, box-shadow .25s ease;
}

.cardCD:hover{
  transform: translateY(-6px);
  box-shadow: 0 12px 26px rgba(0,0,0,0.16);
}

.iconCD{
  width: 84px;
  height: 84px;
  border-radius: 14px;
  background:#f0f0f4;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom: 14px;
  margin-left: auto;
  margin-right: auto;
}

.iconCD img{ width: 42px; }

.miniIcon{
  font-size: 1.8rem;
  font-weight: 900;
  color:#002e52;
}

/* CTA band */
.ctaBand{
  margin-top: 60px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 18px;
  padding: 26px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap: 18px;
}

.ctaText p{ opacity: 0.95; margin-top: 6px; }

.ctaBtns{ display:flex; gap: 12px; flex-wrap:wrap; }
.coreDivision .btnPrimary{ color:#fff; }
.coreDivision .btnGhost{
  color:#fff;
  border-color: rgba(255,255,255,0.7);
}

/* =========================
   Scroll Animations
   ========================= */
.scroll-anim,
.scroll-left,
.scroll-right,
.scroll-zoom{
  opacity:0;
  transition: all .9s cubic-bezier(.17, .55, .55, 1);
  will-change: transform, opacity;
}

.scroll-anim{ transform: translateY(40px); }
.scroll-left{ transform: translateX(-40px); }
.scroll-right{ transform: translateX(40px); }
.scroll-zoom{ transform: scale(.88); }

.visible{ opacity:1; transform:none; }

/* Responsive */
@media (max-width: 1024px){
  .banner{ height: 450px; background-attachment: scroll; }
  .contDuo{ text-align:center; }
  .ctaBand{ flex-direction: column; text-align:center; }
}


@media (max-width: 767px){
  .noDisplay{ display:none; }
  .separador{ padding: 70px 0; }
  .banner p{ font-size: 1rem; }
}
