*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 18px;
  scroll-behavior: smooth;
}

body {
  font-family: "Georgia", "Times New Roman", serif;
  line-height: 1.7;
  color: #1a202c;
  background-color: #fffdf7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Georgia", serif;
  line-height: 1.3;
  color: #1a202c;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
  font-weight: 400;
}

h2 {
  font-size: 1.875rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
}

h3 {
  font-size: 1.375rem;
  font-weight: 600;
}

p {
  margin-bottom: 1rem;
}

.lead {
  font-size: 1.125rem;
  line-height: 1.6;
  color: #4a5568;
  margin-bottom: 2rem;
}

a {
  color: #2c5282;
  text-decoration: none;
  transition: color 150ms ease;
}
a:hover {
  color: rgb(24.6551724138, 45.9482758621, 72.8448275862);
}

blockquote {
  font-style: italic;
  color: #4a5568;
  border-left: 3px solid #d69e2e;
  padding-left: 1.5rem;
  margin: 2rem 0;
}
blockquote cite {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: #718096;
}

img {
  max-width: 100%;
  height: auto;
}

.btn {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background-color: #2c5282;
  color: white;
  border: none;
  border-radius: 4px;
  font-family: "Georgia", "Times New Roman", serif;
  font-size: 0.875rem;
  cursor: pointer;
  transition: background-color 150ms ease;
}
.btn:hover {
  background-color: rgb(31.1034482759, 57.9655172414, 91.8965517241);
  color: white;
}

.btn--outline {
  background-color: transparent;
  border: 1px solid #2c5282;
  color: #2c5282;
}
.btn--outline:hover {
  background-color: #2c5282;
  color: white;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.main {
  min-height: calc(100vh - 200px);
}

.hero {
  background-color: #f7f5ef;
  padding: 4rem 1.5rem;
  text-align: center;
  border-bottom: 1px solid #e2e8f0;
}
.hero__content {
  max-width: 800px;
  margin: 0 auto;
}
.hero__subtitle {
  font-size: 1.125rem;
  color: #4a5568;
  margin-bottom: 2rem;
}
.hero__quote {
  max-width: 600px;
  margin: 2rem auto 0;
  text-align: left;
}
.hero--small {
  padding: 3rem 1.5rem;
}
.hero--compact {
  padding: 2rem 1.5rem;
  min-height: auto;
}

.content {
  padding: 4rem 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.bio h3 {
  margin-top: 3rem;
  color: #2c5282;
}
.bio h4 {
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  color: #4a5568;
}
.bio ul {
  margin: 1rem 0 1.5rem;
  padding-left: 2rem;
}
.bio ul li {
  margin-bottom: 0.5rem;
  line-height: 1.7;
}
.bio p {
  margin-bottom: 1.5rem;
}

.featured {
  padding: 4rem 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}
.featured h2 {
  text-align: center;
}

.books-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.areas {
  background-color: #f7f5ef;
  padding: 4rem 1.5rem;
}
.areas h2 {
  text-align: center;
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: 2rem auto 0;
}

.footer {
  background-color: #1a202c;
  color: #fffdf7;
  padding: 2rem 1.5rem;
  text-align: center;
}
.footer__content {
  max-width: 1100px;
  margin: 0 auto;
}
.footer a {
  color: #d69e2e;
}
.footer a:hover {
  color: rgb(226.546, 187.682, 109.954);
}
.footer p {
  margin-bottom: 0.5rem;
}

.libros-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.libro-card {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}
.libro-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.libro-card__cover {
  width: 100%;
  height: 280px;
  object-fit: contain;
  object-position: center;
  background: #f5f5f5;
  padding: 0.75rem;
  display: block;
  border-bottom: 1px solid #e2e8f0;
}
.libro-card__content {
  padding: 1rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.libro-card h3 {
  font-size: 18px;
  color: #2c5282;
  margin-bottom: 0.25rem;
  line-height: 1.3;
  font-weight: 600;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.libro-card__subtitle {
  font-style: italic;
  color: #4a5568;
  font-size: 0.8rem;
  margin-bottom: 0.5rem;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2em;
}
.libro-card__description {
  color: #1a202c;
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}
.libro-card__year {
  font-size: 0.8rem;
  color: #4a5568;
  margin-bottom: 0.5rem;
  font-weight: 500;
}
.libro-card .btn--download {
  width: 100%;
  text-align: center;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
}

@media (min-width: 1400px) {
  .libros-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
}
@media (max-width: 768px) {
  .libros-grid {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 1rem;
  }
  .libro-card__cover {
    height: 240px;
  }
  .libro-card h3 {
    font-size: 0.95rem;
  }
}
.revista-historia {
  max-width: 800px;
  margin: 0 auto;
}
.revista-historia h2, .revista-historia h3 {
  color: #2c5282;
  margin-top: 3rem;
}
.revista-historia p {
  margin-bottom: 1.5rem;
  line-height: 1.7;
}
.revista-historia ul {
  margin: 1.5rem 0;
  padding-left: 2rem;
}
.revista-historia ul li {
  margin-bottom: 0.5rem;
}

.revista-intro {
  margin-bottom: 3rem;
}
.revista-intro .lead {
  font-size: 1.125rem;
  font-style: italic;
  color: #4a5568;
  border-left: 4px solid #d69e2e;
  padding-left: 1.5rem;
  margin: 3rem 0;
}

.revista-quote {
  background: #f7f5ef;
  border-left: 4px solid #2c5282;
  padding: 1.5rem;
  margin: 3rem 0;
  font-style: italic;
}
.revista-quote cite {
  display: block;
  margin-top: 1rem;
  font-style: normal;
  font-size: 0.875rem;
  color: #4a5568;
}

.portadas-galeria {
  margin-top: 4rem;
  padding-top: 4rem;
  border-top: 1px solid #e2e8f0;
}
.portadas-galeria h2 {
  text-align: center;
  color: #2c5282;
  margin-bottom: 1rem;
}

.portadas-intro {
  text-align: center;
  color: #4a5568;
  margin-bottom: 3rem;
}

.portadas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.portada-item {
  text-align: center;
  transition: transform 0.2s;
}
.portada-item:hover {
  transform: translateY(-4px);
}
.portada-item img {
  width: 100%;
  height: auto;
  border: 1px solid #e2e8f0;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.2s;
}
.portada-item img:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}
.portada-item figcaption {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: #4a5568;
  font-weight: 500;
}

.revista-prensa,
.revista-libro {
  margin-top: 4rem;
  padding-top: 4rem;
  border-top: 1px solid #e2e8f0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.prensa-articulo h3 {
  color: #2c5282;
  margin-bottom: 0.5rem;
}
.prensa-articulo .prensa-meta {
  font-size: 0.875rem;
  color: #4a5568;
  margin-bottom: 1.5rem;
}
.prensa-articulo blockquote {
  background: #f7f5ef;
  border-left: 4px solid #d69e2e;
  padding: 1.5rem;
  margin: 1.5rem 0;
  font-style: italic;
}

.proyectos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.proyecto-card {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}
.proyecto-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.proyecto-card__image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-bottom: 1px solid #e2e8f0;
}
.proyecto-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.proyecto-card__content {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.proyecto-card h3 {
  font-size: 1.125rem;
  color: #2c5282;
  margin-bottom: 0.5rem;
}
.proyecto-card__year {
  font-size: 0.875rem;
  color: #4a5568;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.proyecto-card p {
  color: #1a202c;
  margin-bottom: 1.5rem;
  line-height: 1.6;
  flex: 1;
}
.proyecto-card .btn {
  align-self: flex-start;
}

@media (max-width: 768px) {
  .proyectos-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
.cursos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 3rem;
}

.curso-card {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 4px;
  padding: 1.5rem;
  transition: transform 0.2s, box-shadow 0.2s;
}
.curso-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.curso-card h3 {
  font-size: 1.125rem;
  color: #2c5282;
  margin-bottom: 1rem;
  font-weight: 600;
}
.curso-card p {
  color: #1a202c;
  line-height: 1.6;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .cursos-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}
.header {
  background-color: #ffffff;
  border-bottom: 1px solid #e2e8f0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
}
.nav__logo {
  font-family: "Georgia", serif;
  font-size: 1.25rem;
  color: #1a202c;
  font-weight: 600;
}
.nav__logo:hover {
  color: #2c5282;
}
.nav__menu {
  display: flex;
  list-style: none;
  gap: 1.5rem;
}
.nav__menu a {
  color: #4a5568;
  font-size: 0.875rem;
  padding: 0.5rem 0;
  position: relative;
}
.nav__menu a:hover {
  color: #2c5282;
}
.nav__menu a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #2c5282;
  transition: width 250ms ease;
}
.nav__menu a:hover::after {
  width: 100%;
}

.nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}
.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #1a202c;
  margin: 5px 0;
  transition: transform 150ms ease;
}

.book-card {
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 2rem;
  transition: box-shadow 250ms ease, transform 250ms ease;
}
.book-card:hover {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
  transform: translateY(-2px);
}
.book-card h3 {
  color: #2c5282;
  margin-bottom: 0.5rem;
}
.book-card p {
  color: #4a5568;
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
}

.libros-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.libro-card {
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  overflow: hidden;
  transition: box-shadow 250ms ease, transform 250ms ease;
  display: flex;
  flex-direction: column;
}
.libro-card:hover {
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}
.libro-card__cover {
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: center;
  border-bottom: 1px solid #e2e8f0;
}
.libro-card__content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.libro-card h3 {
  color: #2c5282;
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}
.libro-card__subtitle {
  color: #718096;
  font-size: 0.875rem;
  font-style: italic;
  margin-bottom: 0.75rem;
}
.libro-card__description {
  color: #4a5568;
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  flex-grow: 1;
}
.libro-card__year {
  color: #718096;
  font-size: 0.8125rem;
  margin-bottom: 1rem;
  font-weight: 600;
}
.libro-card__note {
  color: #718096;
  font-size: 0.75rem;
  margin-bottom: 1rem;
  font-style: italic;
}
.libro-card .btn {
  margin-top: auto;
}

.subnav {
  background-color: #f7f5ef;
  border-bottom: 1px solid #e2e8f0;
  padding: 1rem 0;
}
.subnav .container {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
.subnav--sticky {
  position: sticky;
  top: 0;
  z-index: 100;
}
.subnav__link {
  color: #4a5568;
  font-size: 0.9375rem;
  padding: 0.5rem 0;
  position: relative;
  transition: color 150ms ease;
}
.subnav__link:hover {
  color: #2c5282;
}
.subnav__link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #2c5282;
  transition: width 250ms ease;
}
.subnav__link:hover::after {
  width: 100%;
}
.subnav__link.active {
  color: #2c5282;
  font-weight: 600;
}
.subnav__link.active::after {
  width: 100%;
}

.articulos-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.articulo-card {
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 1.5rem;
  transition: box-shadow 250ms ease, border-color 250ms ease;
}
.articulo-card:hover {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
  border-color: #2c5282;
}
.articulo-card h3 {
  color: #2c5282;
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
}
.articulo-card__description {
  color: #4a5568;
  font-size: 0.9375rem;
  margin-bottom: 0.75rem;
  line-height: 1.6;
}
.articulo-card__meta {
  color: #718096;
  font-size: 0.8125rem;
  margin-bottom: 1rem;
}
.articulo-card__year {
  color: #718096;
  font-size: 0.8125rem;
  margin-bottom: 1rem;
  font-weight: 600;
}
.articulo-card__note {
  color: #718096;
  font-size: 0.75rem;
  margin-top: 0.5rem;
  font-style: italic;
}

.nota-importante {
  background-color: #fff7ed;
  border-left: 4px solid #d69e2e;
  padding: 1.5rem;
  margin-top: 3rem;
  border-radius: 4px;
}
.nota-importante p {
  color: #1a202c;
  font-size: 0.9375rem;
  margin-bottom: 0;
}

.area-card {
  display: block;
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 1.5rem;
  text-decoration: none;
  transition: box-shadow 250ms ease, border-color 250ms ease;
}
.area-card:hover {
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  border-color: #2c5282;
}
.area-card:hover h3 {
  color: #2c5282;
}
.area-card h3 {
  color: #1a202c;
  margin-bottom: 0.25rem;
  transition: color 150ms ease;
}
.area-card p {
  color: #718096;
  font-size: 0.875rem;
  margin-bottom: 0;
}

[data-year="0"] .libro-card__year,
[data-year="0"] .articulo-card__year {
  display: none !important;
}

@media (max-width: 768px) {
  html {
    font-size: 16px;
  }
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.5rem;
  }
  .nav {
    flex-wrap: wrap;
  }
  .nav__toggle {
    display: block;
  }
  .nav__menu {
    display: none;
    flex-direction: column;
    width: 100%;
    padding-top: 1rem;
    gap: 0.5rem;
  }
  .nav__menu.is-open {
    display: flex;
  }
  .nav__menu a {
    padding: 0.5rem 0;
  }
  .hero {
    padding: 2rem 1.5rem;
  }
  .hero__quote {
    font-size: 0.875rem;
  }
  .featured,
  .areas {
    padding: 2rem 1.5rem;
  }
  .books-grid,
  .areas-grid {
    grid-template-columns: 1fr;
  }
  .libros-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .libro-card__cover {
    height: 350px;
  }
}
@media (max-width: 576px) {
  h1 {
    font-size: 1.75rem;
  }
  .hero__subtitle {
    font-size: 1rem;
  }
  .book-card,
  .area-card {
    padding: 1.5rem;
  }
}
@media print {
  .header,
  .footer,
  .nav {
    display: none;
  }
  .main {
    padding: 0;
  }
  a {
    color: #1a202c;
    text-decoration: underline;
  }
}

/*# sourceMappingURL=main.css.map */
