/* GENERAL */
body {
  font-family: 'Poppins', sans-serif;
}

/* ================= HERO ================= */
.hero {
  background: linear-gradient(180deg, #0a3a65, #0f4e93);
  padding: 120px 20px 80px;
  text-align: center;
  color: white;
  display: flex;
  justify-content: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.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 h1 {
  font-size: 2.6rem;
  font-weight: 700;
}


/* ================= TEXTO + ICONOS ================= */
.metodo-texto {
  max-width: 1100px;
  margin: 60px auto;
  text-align: center;
  padding: 0 20px;
}

.metodo-icons {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 80px;
}

.metodo-icons img {
  width: 130px;
}
.indetec-icon {
  width: 190px;     /* ⬅ tamaño recomendado */
  height: auto;
  margin-bottom: 14px;
}

/* ================================
   SECCIÓN "NO SE TERMINA, SE EVOLUCIONA"
   ================================ */
.seccion-evoluciona {
  position: relative;
  width: 100%;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;

  /* Imagen de fondo (cámbiala por la que quieras usar) */
  background-image: url("/CURSOS/img/banner\ metodo\ indetec.png"); 
  background-size: cover;
  background-position: center center;

  /* EFECTO ESTÁTICO */
  background-attachment: fixed;

  /* Capa oscura suavizada */
  overflow: hidden;
}

.seccion-evoluciona::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55); /* filtro oscuro */
  backdrop-filter: blur(2px);      /* ligero blur para modernidad */
  z-index: 1;
}

/* Texto */
.seccion-evoluciona .overlay {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  max-width: 850px;
}

.seccion-evoluciona h2 {
  font-size: 2.6rem;
  margin-bottom: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.seccion-evoluciona p {
  font-size: 1.2rem;
  margin-bottom: 12px;
  font-weight: 300;
}

.seccion-evoluciona p.mini {
  margin-top: 8px;
  font-size: 1.1rem;
  opacity: 0.9;
}

/* Responsive */
@media (max-width: 768px) {
  .seccion-evoluciona {
    min-height: 300px;
    padding: 50px 20px;
    background-attachment: scroll; /* mobile mejora desempeño */
  }

  .seccion-evoluciona h2 {
    font-size: 2rem;
  }

  .seccion-evoluciona p {
    font-size: 1rem;
  }
}


/* ================= ÁREAS ================= */
.areas-explorar {
  padding: 70px 20px;
  text-align: center;
  background: linear-gradient(135deg, #e8eef7, #f5f8ff);
}

.areas-explorar h2 {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 50px;
  color: #123b70;
}

/* GRID DE 2 FILAS DE 6 COLUMNAS */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 30px 15px;
  max-width: 1300px;
  margin: auto;
}

/* ITEM */
.area-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* CÍRCULO PERFECTO */
.area-item img {
  width: 110px;
  height: 110px;
  object-fit: contain;
  background: white;
  border-radius: 50%;
  padding: 20px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
  transition: transform .3s ease;
}

.area-item img:hover {
  transform: scale(1.08);
}

.area-item p {
  margin-top: 12px;
  font-size: 1rem;
  font-weight: 600;
  color: #123b70;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .areas-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 768px) {
  .areas-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 480px) {
  .areas-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
