/* HERO */
.hero-ingresantes {
  background: linear-gradient(to bottom, #0f3c5d, #0d2b44);
  color: white;
  padding: 130px 20px 80px;
  text-align: center;
  position: relative;
}

.hero-logo {
  width: 150;               /* Ajustalo si querés más grande */
  height: auto;               /* Evita el estiramiento */
  object-fit: contain;        /* Mantiene proporción */
  margin-bottom: 25px;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}

.hero-ingresantes h1 {
  font-size: 48px;
  font-weight: 700;
}

/* TEXTOS */
.intro-ingresantes {
  padding: 60px 15%;
  background: #f6f7f9;
  font-size: 20px;
  line-height: 1.7;
  color: #333;
}

.intro-ingresantes strong {
  color: #0f3c5d;
}

/* BLOQUES */
.bloque-area {
  padding: 80px 10%;
  text-align: center;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.bloque-area.visible {
  opacity: 1;
  transform: translateY(0);
}

.bloque-area h2 {
  font-size: 40px;
  color: #0f3c5d;
  margin-bottom: 10px;
}

.bloque-area .sub {
  font-size: 22px;
  margin-bottom: 20px;
  color: #222;
}

/* ICONOS */
.icon-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 50px;
}

.icon-card {
  width: 220px;
  background: white;
  border-radius: 18px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: 0.3s;
}

.icon-card:hover {
  transform: translateY(-8px);
}

.icon-card img {
  width: 110px;
  height: 110px;
  object-fit: contain;
  border-radius: 20px;
}

.icon-card p {
  margin-top: 15px;
  font-size: 20px;
  font-weight: 600;
  color: #0f3c5d;
}

/* ==== CTA FINAL ==== */
.cta-final {
  background: linear-gradient(135deg, #0d3a66, #1B4C80);
  color: #ffffff;
  padding: 50px 40px; /* antes 10% */
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;

  border-radius: 20px;
  margin: 60px auto; /* centra el bloque */
  max-width: 1200px; /* evita que toque los bordes */
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

.cta-final h2 {
  font-size: 1.9rem;
  font-weight: 600;
  line-height: 1.4;
  max-width: 650px;
  margin: 0;
}

.cta-boton {
  margin-top: 20px;
}

.btn-inscripcion {
  background-color: #1e64c1;
  color: white;
  padding: 14px 30px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: 0.25s ease;
  display: inline-block;
}

.btn-inscripcion:hover {
  background-color: #174f9a;
  transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 768px) {
  .cta-final {
    text-align: center;
    flex-direction: column;
    gap: 20px;
  }

  .cta-final h2 {
    text-align: center;
  }

  .cta-boton {
    margin-top: 0;
  }
}
