/* File: /public/assets/css/pages/footer-sobre-nosotros.css */

html,
body {
  min-height: 100%;
}

body {
  display: flex;
  flex-direction: column;
}

.footer-sobre-nosotros-main {
  flex: 1 0 auto;
  min-height: calc(100vh - 220px);
}

.site-footer {
  margin-top: auto;
}

.footer-sobre-nosotros-section {
  padding: 4rem 0 6rem;
}

.footer-sobre-nosotros-card {
  padding: 2.6rem;
  background-color: var(--color-tarjeta);
  border: 1px solid var(--color-borde-1);
  border-radius: var(--border-radius-12);
  box-shadow: var(--sombra-base);
}

/* ===== AVISO PRIORIDAD IDIOMA ===== */

.footer-sobre-nosotros-priority {
  margin: 0 0 2.2rem 0;
  padding: 1rem 1.3rem;
  background-color: #fffbeb;
  border: 1px solid #f4e7b5;
  border-left: 4px solid var(--color-advertencia);
  border-radius: var(--border-radius-10);
  font-family: var(--fuente-principal);
  font-size: var(--texto-12);
  font-weight: 800;
  line-height: 1.5;
  color: #7c5a03;
  text-transform: uppercase;
}

/* ===== CABECERA ===== */

.footer-sobre-nosotros-header {
  padding-bottom: 2.4rem;
  margin-bottom: 2.4rem;
  border-bottom: 1px solid var(--color-borde-1);
}

.footer-sobre-nosotros-title {
  margin: 0 0 1.6rem 0;
  font-family: var(--fuente-secundaria);
  font-size: var(--texto-32);
  font-weight: 800;
  line-height: 1.15;
  color: var(--color-texto-principal);
}

.footer-sobre-nosotros-intro {
  max-width: 980px;
}

/* ===== TEXTOS ===== */

.footer-sobre-nosotros-intro p,
.footer-sobre-nosotros-block p,
.footer-sobre-nosotros-closing p {
  margin: 0;
  font-family: var(--fuente-principal);
  font-size: var(--texto-16);
  line-height: 1.75;
  color: var(--color-texto-secundario);
}

.footer-sobre-nosotros-intro p + p,
.footer-sobre-nosotros-block p + p {
  margin-top: 1.2rem;
}

.footer-sobre-nosotros-card strong {
  color: var(--color-texto-principal);
  font-weight: 800;
}

.footer-sobre-nosotros-card a {
  color: var(--color-acento);
  text-decoration: none;
  font-weight: 600;
  word-break: break-word;
}

.footer-sobre-nosotros-card a:hover {
  text-decoration: underline;
}

/* ===== BLOQUES ===== */

.footer-sobre-nosotros-block {
  padding-bottom: 2.4rem;
  margin-bottom: 2.4rem;
  border-bottom: 1px solid var(--color-borde-1);
}

.footer-sobre-nosotros-block:last-of-type {
  margin-bottom: 0;
  border-bottom: none;
}

.footer-sobre-nosotros-subtitle {
  margin: 0 0 1.2rem 0;
  font-family: var(--fuente-secundaria);
  font-size: var(--texto-24);
  font-weight: 700;
  line-height: 1.25;
  color: var(--color-acento);
}

/* ===== LISTAS ===== */

.footer-sobre-nosotros-list {
  margin: 1.2rem 0 1.8rem;
  padding-left: 2rem;
}

.footer-sobre-nosotros-list li {
  margin-bottom: 0.7rem;
  font-family: var(--fuente-principal);
  font-size: var(--texto-16);
  line-height: 1.65;
  color: var(--color-texto-secundario);
}

.footer-sobre-nosotros-list li:last-child {
  margin-bottom: 0;
}

.footer-sobre-nosotros-list li::marker {
  color: var(--color-acento);
}

/* ===== BLOQUE DESTACADO ===== */

.footer-sobre-nosotros-emphasis {
  margin: 1.6rem 0;
  padding: 1.6rem 1.8rem;
  background-color: #f4f7f6;
  border-left: 4px solid var(--color-acento);
  border-radius: var(--border-radius-10);
}

.footer-sobre-nosotros-emphasis p {
  margin: 0;
  font-family: var(--fuente-principal);
  font-size: var(--texto-16);
  font-weight: 700;
  line-height: 1.65;
  color: var(--color-texto-principal);
  text-transform: none;
}

.footer-sobre-nosotros-emphasis p + p {
  margin-top: 0.8rem;
}

.footer-sobre-nosotros-emphasis p:first-child {
  font-family: var(--fuente-secundaria);
  font-size: var(--texto-18);
  font-weight: 800;
  line-height: 1.35;
  color: var(--color-acento);
}

/* ===== CIERRE ===== */

.footer-sobre-nosotros-closing {
  margin-top: 2.4rem;
  padding: 1.6rem 1.8rem;
  background-color: #f4f7f6;
  border-left: 4px solid var(--color-acento);
  border-radius: var(--border-radius-10);
}

.footer-sobre-nosotros-closing p {
  color: var(--color-texto-principal);
  font-weight: 600;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 768px) {
  .footer-sobre-nosotros-section {
    padding: 3rem 0 4rem;
  }

  .footer-sobre-nosotros-card {
    padding: 1.6rem;
  }

  .footer-sobre-nosotros-priority,
  .footer-sobre-nosotros-intro p,
  .footer-sobre-nosotros-block p,
  .footer-sobre-nosotros-closing p,
  .footer-sobre-nosotros-list li,
  .footer-sobre-nosotros-emphasis p {
    font-size: var(--texto-14);
  }

  .footer-sobre-nosotros-title {
    font-size: var(--texto-24);
  }

  .footer-sobre-nosotros-subtitle {
    font-size: var(--texto-20);
  }

  .footer-sobre-nosotros-emphasis p:first-child {
    font-size: var(--texto-16);
  }
}

@media (max-width: 480px) {
  .footer-sobre-nosotros-card {
    padding: 1.3rem;
  }

  .footer-sobre-nosotros-header,
  .footer-sobre-nosotros-block {
    padding-bottom: 2rem;
    margin-bottom: 2rem;
  }

  .footer-sobre-nosotros-list {
    padding-left: 1.8rem;
  }

  .footer-sobre-nosotros-closing,
  .footer-sobre-nosotros-emphasis {
    padding: 1.3rem;
  }

  .footer-sobre-nosotros-priority {
    padding: 1rem;
  }
}
