/* ------------------------------------------------ */
/* --- SECCIÓN EDUPUC --- */
/* ------------------------------------------------ */
.edupuc-section-full-2 {
  background-color: #f4f4f5;
  border-radius: 10px;
  padding: 40px 30px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.12);
  font-family: "Helvetica Neue", Arial, sans-serif;
}

.edupuc-section-full-2 h5 {
  color: #1a1a1a;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.edupuc-section-full-2 p {
  font-size: 1.1rem;
  color: #333;
  line-height: 1.65;
  text-align: justify;
}

/* Imagen con animación */
.logo-scroll {
  transition: transform 0.8s ease, filter 0.5s ease;
  filter: brightness(0.95);
}

.logo-scroll.mover {
  transform: translateY(-10px);
  filter: brightness(1.05);
}

@media (max-width: 768px) {
  .edupuc-section-full-2 {
    text-align: center;
  }

  .logo-scroll {
    margin-top: 20px;
  }
}

/* ------------------------------------------------ */
/* --- CARRUSEL  (Galería FiLU) --- */
/* ------------------------------------------------ */
.carousel {
  position: relative;
  width: 800px;
  max-width: 95%;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  background-color: #fff;
  margin: 0 auto;
}

.carousel-images {
  display: flex;
  transition: transform 0.6s ease-in-out;
  width: 100%;
  height: 100%;
}

.carousel-images img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  flex-shrink: 0;
  border-radius: 15px;
  filter: brightness(0.97);
  transition: filter 0.4s ease;
}

.carousel-images img:hover {
  filter: brightness(1.05);
}

/* Botones de control */
.carousel button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.55);
  border: none;
  color: white;
  font-size: 24px;
  padding: 10px 14px;
  cursor: pointer;
  border-radius: 50%;
  transition: background-color 0.3s, transform 0.3s;
}

.carousel button:hover {
  background-color: rgba(0, 0, 0, 0.8);
  transform: scale(1.1);
}

.prev {
  left: 10px;
}

.next {
  right: 10px;
}

/* --- Responsive carrusel --- */
@media (max-width: 992px) {
  .carousel-images img {
    height: 400px;
  }

  .carousel button {
    font-size: 20px;
    padding: 8px 12px;
  }
}

@media (max-width: 768px) {
  .carousel-images img {
    height: 300px;
  }

  .carousel button {
    font-size: 18px;
    padding: 6px 10px;
  }
}

@media (max-width: 576px) {
  .carousel-images img {
    height: 230px;
  }

  .carousel button {
    font-size: 16px;
    padding: 5px 9px;
  }
}

/* ------------------------------------------------ */
/* --- TARJETAS DE EDICIONES  --- */
/* ------------------------------------------------ */
.contenedor-tarjetas2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}

.tarjeta2 {
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin: 50px;
}

.tarjeta2:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.tarjeta2 img {
  width: 150px;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.tarjeta2 img:hover {
  transform: scale(1.05);
  filter: brightness(1.05);
}

.tarjeta2 h3 {
  color: #1e1e1e;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: 0.3px;
}

.tarjeta2 p {
  color: #555;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 15px;
  text-align: justify;
}

/* Botón de las tarjetas */
.btn2 {
  background-color: #939598;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.25s, transform 0.25s;
  text-decoration: none;
  display: inline-block;
  font-weight: 500;
}

.btn2:hover {
  background-color: #373737;
  transform: scale(1.03);
}

/* ------------------------------------------------ */
/* --- FOOTER --- */
/* ------------------------------------------------ */
.footer-custom {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background-color: #939598;
  padding: 15px 10px;
  text-align: center;
  margin-top: 50px;
  box-sizing: border-box;
}

.footer-logo {
  width: 110px;
  height: auto;
  object-fit: contain;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.footer-logo:hover {
  transform: scale(1.08);
  filter: brightness(1.15);
}

.footer-divider {
  width: 80%;
  margin: 20px auto;
  border: none;
  height: 1px;
  background-color: #ddd;
}

.footer-copy {
  font-size: 0.95rem;
  color: #f8f8f8;
  margin: 0;
  letter-spacing: 0.3px;
}

/* Responsive footer */
@media (max-width: 768px) {
  .footer-logo {
    width: 85px;
  }

  .footer-copy {
    font-size: 0.9rem;
  }
}

@media (max-width: 576px) {
  .footer-logo {
    width: 70px;
  }

  .footer-custom {
    padding: 30px 15px 20px;
  }
}

/* ------------------------------------------------ */
/* --- AJUSTE GENERAL DE PÁGINA --- */
/* ------------------------------------------------ */
html,
body {
  height: auto;
  min-height: 100%;
  background-color: #fff;
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #222;
}
