/* ------------------------------------ */
/* --- ESTILOS PÁGINA QUIENES SOMOS --- */
/* ------------------------------------ */

/* Importamos los estilos globales principales */
@import url("main_styles.css");

.edupuc-section-full {
  background-color: #f5f5f6;
  border-radius: 10px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.12);
  padding: 40px 30px;
  font-family: "Poppins", "Helvetica Neue", Arial, sans-serif;
  color: #222;
}

.edupuc-section-full h2 {
  font-size: 1.8rem;
  font-weight: 600;
  color: #333;
  text-align: center;
  margin-bottom: 25px;
  letter-spacing: 0.5px;
}

.edupuc-section-full p {
  font-size: 1.1rem;
  line-height: 1.6;
  text-align: justify;
  margin-bottom: 15px;
}

.resaltado {
  color: #e49b2e;
  font-weight: 600;
}

/* --- Imagen con animación --- */
.logo-scroll {
  transition: transform 0.8s ease, filter 0.4s ease;
}

.logo-scroll:hover {
  transform: translateY(-8px);
  filter: brightness(1.1);
}

/* --- Responsive para sección EDUPUC --- */
@media (max-width: 768px) {
  .edupuc-section-full {
    text-align: center;
    padding: 30px 20px;
  }

  .logo-scroll {
    margin-top: 20px;
  }
}

/* ------------------------------------------------ */
/* --- CARDS DE INFORMACIÓN --- */
/* ------------------------------------------------ */
.card-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 10px;
}

.card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  padding: 25px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
}

.card h3 {
  color: #333;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 10px;
  text-align: center;
}

.card p {
  color: #555;
  line-height: 1.5;
  text-align: justify;
  font-size: 1rem;
}

/* ------------------------------------------------ */
/* --- 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;
  font-family: "Poppins", "Helvetica Neue", Arial, sans-serif;
}

.footer-logo {
  height: 100px;
  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: #f9f9f9;
  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%;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  display: block;
  background-color: #fff;
  color: #222;
  font-family: "Poppins", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

/* --- Enlaces generales --- */
a {
  color: #e49b2e;
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: #c9831f;
}
