:root {
  --fondo: #eeede8;
  --texto: #171717;
  --gris: #686868;
  --linea: rgba(20, 20, 20, 0.15);
  --azul: #466684;
  --turquesa: #006c80;
}


/* ================================
   BASE
================================ */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;

  background: var(--fondo);
  color: var(--texto);

  font-family: Arial, Helvetica, sans-serif;

  overflow-x: hidden;
}

a {
  color: inherit;
}


/* ================================
   HEADER
================================ */

header {
  width: 100%;

  position: absolute;
  top: 0;
  left: 0;

  padding: 18px 6%;

  display: flex;
  justify-content: space-between;
  align-items: center;

  z-index: 20;
}


/* LOGO */

.logo {
  display: block;

  width: 250px;
  height: 105px;

  overflow: hidden;

  text-decoration: none;

  flex: none;
}

.logo img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: contain;
  object-position: left center;

  pointer-events: none;
}


/* LADO DERECHO */

.header-right {
  display: flex;

  align-items: center;

  gap: 27px;
}


/* MENU */

nav {
  display: flex;

  align-items: center;

  gap: 28px;
}

nav a {
  position: relative;

  font-size: 11px;

  font-weight: 700;

  text-transform: uppercase;

  letter-spacing: 1.2px;

  text-decoration: none;
}

nav a:not(.nav-contacto)::after {
  content: "";

  position: absolute;

  left: 0;
  bottom: -7px;

  width: 0;
  height: 1px;

  background: var(--texto);

  transition: width .25s ease;
}

nav a:not(.nav-contacto):hover::after {
  width: 100%;
}

.nav-contacto {
  padding: 15px 22px;

  border: 1px solid rgba(0, 80, 100, .45);

  color: #075e73;
}


/* ================================
   BANDERAS / IDIOMAS
================================ */

.idiomas {
  display: flex;

  align-items: center;

  gap: 8px;

  white-space: nowrap;
}

.idioma {
  display: flex;

  align-items: center;

  gap: 7px;

  color: #747474;

  text-decoration: none;

  font-size: 10px;

  font-weight: 800;

  letter-spacing: 1px;

  transition:
    color .2s ease,
    transform .2s ease;
}

.idioma:hover {
  color: var(--texto);

  transform: translateY(-1px);
}

.idioma-activo {
  color: var(--texto);
}

.flag-icon {
  display: block;

  width: 39px;
  height: 27px;

  border: 3px solid #1b1b1b;

  border-radius: 8px;

  background: white;

  overflow: hidden;

  flex: none;

  box-shadow:
    0 1px 0 rgba(0,0,0,.06);
}

.idioma-separador {
  font-size: 11px;

  color: #aaa;

  margin: 0 1px;
}


/* ================================
   HERO
================================ */

.hero {
  width: 88%;
  max-width: 1380px;

  min-height: 100vh;

  margin: 0 auto;

  display: grid;

  grid-template-columns:
    .9fr
    1.1fr;

  align-items: center;

  gap: 6vw;

  padding: 135px 0 70px;
}

.hero-text {
  position: relative;

  z-index: 2;
}

.eyebrow {
  margin: 0 0 26px;

  font-size: 11px;

  font-weight: bold;

  letter-spacing: 2.7px;

  color: var(--gris);
}

.hero h1 {
  margin: 0;

  font-family: Georgia, "Times New Roman", serif;

  font-size: clamp(72px, 8vw, 132px);

  line-height: .82;

  letter-spacing: -6px;

  font-weight: normal;
}

.subtitle {
  margin: 34px 0 0;

  font-size: 26px;
}

.intro {
  max-width: 490px;

  margin: 24px 0 0;

  font-size: 17px;

  line-height: 1.7;

  color: #414141;
}

.hero-actions {
  margin-top: 38px;

  display: flex;

  align-items: center;

  gap: 28px;
}


/* ================================
   BOTONES
================================ */

.boton {
  display: inline-block;

  padding: 14px 24px;

  text-decoration: none;

  font-size: 13px;

  letter-spacing: .5px;

  transition:
    background .2s ease,
    color .2s ease,
    transform .2s ease;
}

.boton:hover {
  transform: translateY(-2px);
}

.boton-dark {
  background: var(--texto);

  color: white;
}

.boton-dark:hover {
  background: var(--azul);
}

.link-simple {
  font-size: 13px;

  text-decoration: none;

  border-bottom: 1px solid var(--texto);

  padding-bottom: 4px;
}


/* ================================
   FOTO PRINCIPAL
================================ */

.hero-visual {
  position: relative;
}

.numero {
  position: absolute;

  top: -30px;
  right: -6px;

  font-family: Georgia, "Times New Roman", serif;

  font-size: 68px;

  color: rgba(20, 20, 20, .10);

  z-index: 0;
}

.hero-photo {
  position: relative;

  width: 100%;

  overflow: hidden;

  z-index: 1;
}

.hero-photo img {
  display: block;

  width: 100%;
  height: auto;
}

.photo-caption {
  margin: 12px 0 0;

  text-align: right;

  font-size: 10px;

  letter-spacing: 2px;

  text-transform: uppercase;

  color: var(--gris);
}


/* ================================
   NÚMEROS
================================ */

.section-number {
  font-family: Georgia, "Times New Roman", serif;

  font-size: 18px;

  color: var(--gris);
}


/* ================================
   ACERCA DE MÍ
================================ */

.about {
  width: 88%;
  max-width: 1380px;

  margin: 0 auto;

  padding: 140px 0;

  border-top: 1px solid var(--linea);

  display: grid;

  grid-template-columns:
    80px
    minmax(340px, .9fr)
    minmax(320px, .8fr);

  gap: 5vw;

  align-items: start;
}

.about-spacer {
  width: 80px;
}

.about h2 {
  margin: 0;

  font-family: Georgia, "Times New Roman", serif;

  font-size: clamp(58px, 6vw, 96px);

  line-height: .92;

  letter-spacing: -4px;

  font-weight: normal;
}

.about-text {
  padding-top: 44px;
}

.about-text p {
  margin: 0 0 26px;

  font-size: 16px;

  line-height: 1.8;

  color: #444;
}

.about-text .about-lead {
  font-family: Georgia, "Times New Roman", serif;

  font-size: 25px;

  line-height: 1.45;

  color: var(--texto);
}


/* ================================
   02 · NOVEDADES
================================ */

.novedades {
  background-color: #f7f4ec;

  background-image:
    radial-gradient(
      rgba(20, 80, 99, .08) .7px,
      transparent .7px
    );

  background-size: 16px 16px;

  padding: 100px 6% 105px;
}

.novedades-inner {
  max-width: 1380px;

  margin: 0 auto;
}

.novedades-header {
  padding-bottom: 58px;
}

.novedades-eyebrow {
  margin-bottom: 28px;

  color: var(--turquesa);
}

.novedades-header h2 {
  margin: 0;

  font-size: clamp(60px, 6vw, 96px);

  line-height: 1;

  letter-spacing: -4px;

  font-weight: 300;
}

.novedades-grid {
  display: grid;

  grid-template-columns:
    repeat(3, minmax(0, 1fr));

  border-top: 1px solid var(--texto);

  border-bottom: 1px solid var(--texto);
}

.novedad-card {
  min-height: 350px;

  padding: 37px 30px 28px;

  display: flex;

  flex-direction: column;

  text-decoration: none;

  color: var(--texto);

  border-right:
    1px solid rgba(20,20,20,.14);
}

.novedad-card:last-child {
  border-right: 0;
}

.novedad-card:hover {
  background: rgba(255,255,255,.32);
}

.novedad-numero {
  margin-bottom: 44px;

  font-size: 32px;

  font-weight: 600;

  color: var(--turquesa);
}

.novedad-categoria {
  margin: 0 0 17px;

  font-size: 12px;

  font-weight: 800;

  letter-spacing: 1.4px;

  color: #626262;
}

.novedad-contenido h3 {
  margin: 0 0 14px;

  font-size: 25px;

  line-height: 1.15;

  font-weight: 400;
}

.novedad-descripcion {
  max-width: 340px;

  margin: 0;

  font-size: 15px;

  line-height: 1.55;

  color: #666;
}

.novedad-footer {
  margin-top: auto;

  padding-top: 26px;

  border-top:
    1px solid rgba(20,20,20,.14);

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 20px;

  font-size: 11px;

  font-weight: 800;

  letter-spacing: 1px;
}


/* ================================
   03 · AGENDA
================================ */

.agenda {
  background-color: #f7f4ec;

  background-image:
    radial-gradient(
      rgba(20, 80, 99, .08) .7px,
      transparent .7px
    );

  background-size: 16px 16px;

  padding: 105px 6% 115px;
}

.agenda-inner {
  max-width: 1380px;

  margin: 0 auto;
}

.agenda-header {
  margin-bottom: 58px;
}

.agenda-header h2 {
  margin: 0;

  font-size: clamp(66px, 6.5vw, 104px);

  line-height: .95;

  letter-spacing: -5px;

  font-weight: 300;
}

.agenda-grid {
  display: grid;

  grid-template-columns:
    repeat(3, minmax(0, 1fr));
}

.agenda-card {
  min-height: 390px;

  padding: 30px;

  display: flex;

  flex-direction: column;

  border:
    1px solid rgba(20,20,20,.18);

  border-right: 0;

  text-decoration: none;

  color: var(--texto);
}

.agenda-card:last-child {
  border-right:
    1px solid rgba(20,20,20,.18);
}

.agenda-card:hover {
  background:
    rgba(255,255,255,.30);
}

.agenda-icon {
  width: 56px;
  height: 56px;

  display: grid;

  place-items: center;

  margin-bottom: 35px;

  background: #006c80;

  color: white;
}

.agenda-icon svg {
  width: 25px;
  height: 25px;
}

.agenda-label {
  margin: 0 0 12px;

  font-size: 11px;

  font-weight: 800;

  letter-spacing: 1.7px;

  color: #006c80;
}

.agenda-card-content h3 {
  margin: 0 0 15px;

  font-size: 27px;

  line-height: 1.15;

  font-weight: 400;

  letter-spacing: -.7px;
}

.agenda-card-content > p:last-child {
  margin: 0;

  max-width: 360px;

  font-size: 15px;

  line-height: 1.6;

  color: #666;
}

.agenda-card-footer {
  margin-top: auto;

  padding-top: 24px;

  border-top:
    1px solid rgba(20,20,20,.15);

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 20px;

  font-size: 11px;

  font-weight: 800;

  letter-spacing: 1px;
}

.agenda-arrow {
  width: 36px;
  height: 36px;

  display: grid;

  place-items: center;

  border:
    1px solid rgba(20,20,20,.18);

  font-size: 20px;

  font-weight: 400;
}


/* ================================
   04 · BIBLIOTECA
================================ */

.biblioteca {
  background: #0e0f10;

  color: white;

  padding: 110px 6% 115px;
}

.biblioteca-inner {
  max-width: 1380px;

  margin: 0 auto;

  display: grid;

  grid-template-columns:
    minmax(380px, .85fr)
    minmax(600px, 1.45fr);

  gap: 110px;

  align-items: start;
}

.biblioteca-presentacion {
  padding-top: 3px;
}

.biblioteca-eyebrow {
  margin: 0 0 34px;

  font-size: 11px;

  font-weight: 800;

  letter-spacing: 2.5px;

  color: #71c1e5;
}

.biblioteca-presentacion h2 {
  margin: 0;

  font-size: clamp(62px, 6vw, 98px);

  line-height: .96;

  letter-spacing: -4px;

  font-weight: 300;
}

.biblioteca-intro {
  max-width: 490px;

  margin: 36px 0 0;

  font-size: 16px;

  line-height: 1.65;

  color: #b9b9b9;
}

.biblioteca-boton {
  width: fit-content;

  margin-top: 40px;

  padding: 20px 25px;

  background: #f6f5f0;

  color: #111;

  display: flex;

  align-items: center;

  gap: 32px;

  text-decoration: none;

  font-size: 12px;

  font-weight: 800;

  letter-spacing: 1px;
}

.biblioteca-lista {
  border-top:
    1px solid rgba(255,255,255,.30);
}

.recurso-item {
  min-height: 166px;

  display: grid;

  grid-template-columns:
    54px
    minmax(0, 1fr)
    34px;

  gap: 20px;

  align-items: start;

  padding: 34px 8px 34px 0;

  border-bottom:
    1px solid rgba(255,255,255,.22);
}

.recurso-numero {
  padding-top: 4px;

  font-size: 27px;

  color: #73c4e7;
}

.recurso-contenido h3 {
  margin: 0;

  font-size: 23px;

  font-weight: 400;
}

.recurso-contenido p {
  margin: 16px 0 0;

  font-size: 15px;

  line-height: 1.5;

  color: #b3b3b3;
}

.recurso-meta {
  margin-top: 22px;

  font-size: 11px;

  font-weight: 800;

  letter-spacing: 1.5px;

  color: #71c1e5;
}

.recurso-download {
  width: 25px;
  height: 25px;

  color: white;
}

.recurso-download svg {
  width: 100%;
  height: 100%;
}


/* ================================
   05 · BLOG
================================ */

.blog {
  background-color: #f7f4ec;

  background-image:
    radial-gradient(
      rgba(20,80,99,.08) .7px,
      transparent .7px
    );

  background-size: 16px 16px;

  padding: 105px 6% 95px;
}

.blog-inner {
  max-width: 1380px;

  margin: 0 auto;
}

.blog-header {
  display: grid;

  grid-template-columns:
    minmax(500px, 1.5fr)
    minmax(300px, .7fr);

  gap: 80px;

  align-items: center;

  padding-bottom: 55px;

  border-bottom:
    3px solid var(--texto);
}

.blog-eyebrow {
  margin-bottom: 27px;

  color: var(--turquesa);
}

.blog-header h2 {
  margin: 0;

  font-size: clamp(58px, 6vw, 94px);

  line-height: 1;

  letter-spacing: -4px;

  font-weight: 300;
}

.blog-intro {
  max-width: 430px;

  margin: 25px 0 0;

  font-size: 16px;

  line-height: 1.65;

  color: #555;
}

.blog-list {
  width: 100%;
}

.blog-item {
  min-height: 158px;

  display: grid;

  grid-template-columns:
    80px
    150px
    minmax(0, 1fr)
    58px;

  gap: 24px;

  align-items: center;

  padding: 32px 12px 32px 8px;

  border-bottom:
    1px solid rgba(20,20,20,.16);

  text-decoration: none;

  color: var(--texto);
}

.blog-item:hover {
  background:
    rgba(255,255,255,.40);
}

.blog-numero {
  font-size: 36px;

  font-weight: 600;

  color: var(--turquesa);
}

.blog-categoria {
  font-size: 12px;

  font-weight: bold;

  letter-spacing: 1px;
}

.blog-contenido h3 {
  margin: 0 0 18px;

  font-size:
    clamp(28px, 2.4vw, 42px);

  line-height: 1.1;

  font-weight: 400;
}

.blog-contenido p {
  margin: 0;

  font-size: 15px;

  line-height: 1.55;

  color: #666;
}

.blog-arrow {
  width: 44px;
  height: 44px;

  display: grid;

  place-items: center;

  justify-self: end;

  border:
    1px solid rgba(20,20,20,.18);

  font-size: 25px;
}

.blog-item-disabled {
  cursor: default;
}


/* ================================
   06 · FORMATOS
================================ */

.formatos {
  background-color: #f7f4ec;

  background-image:
    radial-gradient(
      rgba(20,80,99,.08) .7px,
      transparent .7px
    );

  background-size: 16px 16px;

  padding: 115px 6% 120px;
}

.formatos-inner {
  max-width: 1380px;

  margin: 0 auto;

  display: grid;

  grid-template-columns:
    minmax(330px, .7fr)
    minmax(600px, 2fr);

  gap: 90px;
}

.formatos-presentacion {
  display: grid;

  grid-template-columns:
    45px
    1fr;

  gap: 22px;
}

.formatos-presentacion .section-number {
  padding-top: 3px;
}

.formatos-texto {
  min-width: 0;
}

.formatos-eyebrow {
  margin-bottom: 25px;

  color: #075e73;
}

.formatos-texto h2 {
  margin: 0;

  font-size:
    clamp(58px, 5.8vw, 93px);

  line-height: .95;

  letter-spacing: -4px;

  font-weight: 300;
}

.formatos-intro {
  max-width: 340px;

  margin: 34px 0 0;

  font-size: 16px;

  line-height: 1.65;

  color: #666;
}

.formatos-grid {
  display: grid;

  grid-template-columns:
    repeat(2, minmax(0, 1fr));

  gap: 16px;
}

.formato-card {
  min-height: 355px;

  position: relative;

  overflow: hidden;

  padding: 42px 30px 27px;

  color: white;

  text-decoration: none;

  display: flex;

  flex-direction: column;
}

.formato-card:hover {
  filter: brightness(1.04);
}

.formato-instagram {
  background: #362342;
}

.formato-youtube {
  background: #b12626;
}

.formato-linkedin {
  grid-column: 1 / -1;

  min-height: 285px;

  padding-top: 31px;

  background: #00566a;
}

.formato-icono {
  position: absolute;

  width: 205px;
  height: 205px;

  top: 65px;
  right: 90px;

  color:
    rgba(255,255,255,.13);

  pointer-events: none;
}

.formato-icono svg {
  width: 100%;
  height: 100%;
}

.formato-icono-video {
  width: 230px;
  height: 185px;

  top: 74px;
  right: 65px;
}

.formato-icono-maletin {
  width: 270px;
  height: 210px;

  top: 52px;
  left: 50%;

  transform:
    translateX(-4%);

  color:
    rgba(255,255,255,.12);
}

.formato-contenido {
  position: relative;

  z-index: 2;

  margin-top: auto;

  margin-bottom: 26px;
}

.formato-contenido h3 {
  margin: 0 0 15px;

  font-size:
    clamp(34px, 3vw, 50px);

  line-height: 1.08;

  letter-spacing: -2px;

  font-weight: 300;
}

.formato-contenido p {
  max-width: 500px;

  margin: 0;

  font-size: 15px;

  line-height: 1.5;

  color:
    rgba(255,255,255,.80);
}

.formato-contenido-linkedin {
  max-width: 520px;

  margin-top: 4px;

  margin-bottom: 27px;
}

.linkedin-label {
  position: relative;

  z-index: 3;

  display: flex;

  align-items: center;

  gap: 10px;

  font-size: 12px;

  font-weight: bold;

  letter-spacing: 1.5px;
}

.linkedin-label svg {
  width: 18px;
  height: 18px;
}

.formato-footer {
  position: relative;

  z-index: 3;

  padding-top: 19px;

  border-top:
    1px solid rgba(255,255,255,.35);

  font-size: 12px;

  font-weight: bold;
}


/* ================================
   07 · CONTACTO
================================ */

.contacto {
  background: var(--texto);

  color: white;

  padding: 120px 6%;

  display: grid;

  grid-template-columns:
    80px
    1fr;

  gap: 5vw;
}

.contacto .section-number {
  color: #999;
}

.contacto .eyebrow {
  color: #aaa;
}

.contacto h2 {
  margin: 0 0 25px;

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size:
    clamp(70px, 9vw, 150px);

  line-height: .9;

  letter-spacing: -6px;

  font-weight: normal;
}

.contacto-contenido p:not(.eyebrow) {
  margin: 0;

  font-size: 18px;

  color: #ccc;
}

.contacto-acciones {
  display: flex;

  align-items: stretch;

  gap: 18px;

  margin-top: 40px;
}

.contacto-link {
  width: 320px;

  min-height: 78px;

  display: flex;

  align-items: center;

  gap: 14px;

  padding: 14px 18px;

  background: white;

  color: var(--texto);

  font-weight: 600;
}

.contacto-link:hover {
  background: #f2f2f2;

  color: var(--texto);
}

.contacto-logo {
  display: block;

  width: 48px;
  height: 48px;

  object-fit: contain;

  flex: none;
}

.contacto-arrow {
  margin-left: auto;

  font-size: 23px;

  font-weight: 400;
}


/* ================================
   08 · REDES
================================ */

.redes {
  background-color: #f7f4ec;

  background-image:
    radial-gradient(
      rgba(20,80,99,.09) .7px,
      transparent .7px
    );

  background-size: 16px 16px;

  padding: 104px 6% 110px;
}

.redes-inner {
  max-width: 1380px;

  margin: 0 auto;

  display: grid;

  grid-template-columns:
    80px
    minmax(0, 1fr);

  gap: 5vw;
}

.redes-contenido {
  min-width: 0;
}

.redes-heading h2 {
  margin: 0;

  max-width: 820px;

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size:
    clamp(58px, 6vw, 96px);

  line-height: .96;

  font-weight: normal;

  letter-spacing: -4px;
}

.social-links {
  display: grid;

  grid-template-columns:
    repeat(4, minmax(0, 1fr));

  gap: 22px;

  margin-top: 64px;
}

.social-card {
  min-width: 0;

  display: flex;

  align-items: center;

  gap: 14px;

  padding: 10px 0;

  text-decoration: none;

  text-transform: uppercase;

  font-size: 13px;

  font-weight: bold;

  letter-spacing: 1px;

  transition:
    transform .2s ease;
}

.social-card:hover {
  transform:
    translateY(-3px);
}

.social-logo {
  width: 58px;
  height: 58px;

  display: block;

  object-fit: contain;

  flex: none;
}


/* ================================
   FOOTER
================================ */

footer {
  padding: 0 6%;

  background: #f7f4ec;

  color: #52565a;

  font-size: 14px;
}

.footer-top,
.footer-bottom {
  max-width: 1380px;

  margin: 0 auto;

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 30px;
}

.footer-top {
  padding: 38px 0 42px;

  border-top:
    1px solid rgba(20,20,20,.15);
}

.footer-logo {
  width: 195px;
  height: 76px;

  display: block;

  flex: none;
}

.footer-logo img {
  width: 100%;
  height: 100%;

  object-fit: contain;

  object-position: left center;
}

.footer-bottom {
  padding: 22px 0 28px;

  border-top:
    1px solid rgba(20,20,20,.15);

  font-size: 12px;
}

.footer-top p,
.footer-bottom p {
  margin: 0;
}


/* ================================
   TABLET GRANDE
================================ */

@media (max-width: 1100px) {

  .header-right {
    gap: 15px;
  }

  nav {
    gap: 14px;
  }

  nav a {
    font-size: 9px;
  }

  .nav-contacto {
    padding: 11px 14px;
  }

  .flag-icon {
    width: 35px;
    height: 24px;

    border-width: 3px;

    border-radius: 7px;
  }

}


/* ================================
   TABLET
================================ */

@media (max-width: 950px) {

  .logo {
    width: 185px;

    height: 84px;
  }

  .header-right {
    gap: 11px;
  }

  nav {
    gap: 11px;
  }

  nav a {
    font-size: 8px;
  }

  .idioma span:last-child {
    display: none;
  }


  /* HERO */

  .hero {
    grid-template-columns: 1fr;

    gap: 60px;

    padding-top: 150px;
  }

  .hero-text {
    max-width: 700px;
  }

  .hero-photo {
    max-width: 720px;
  }


  /* ABOUT */

  .about {
    grid-template-columns:
      50px
      1fr;
  }

  .about-spacer {
    width: 50px;
  }

  .about-text {
    grid-column: 2;
  }


  /* NOVEDADES */

  .novedades-grid {
    grid-template-columns: 1fr;
  }

  .novedad-card {
    min-height: 260px;

    border-right:
      1px solid rgba(20,20,20,.14);

    border-bottom:
      1px solid rgba(20,20,20,.14);
  }

  .novedad-card:last-child {
    border-bottom: 0;
  }


  /* AGENDA */

  .agenda-grid {
    grid-template-columns: 1fr;
  }

  .agenda-card {
    border-right:
      1px solid rgba(20,20,20,.18);

    border-bottom: 0;
  }

  .agenda-card:last-child {
    border-bottom:
      1px solid rgba(20,20,20,.18);
  }


  /* BIBLIOTECA */

  .biblioteca-inner {
    grid-template-columns: 1fr;

    gap: 70px;
  }


  /* BLOG */

  .blog-header {
    grid-template-columns: 1fr;

    gap: 20px;
  }

  .blog-item {
    grid-template-columns:
      60px
      120px
      1fr
      50px;
  }


  /* FORMATOS */

  .formatos-inner {
    grid-template-columns: 1fr;

    gap: 60px;
  }

  .formatos-texto h2 {
    font-size: 70px;
  }


  /* CONTACTO */

  .contacto-acciones {
    flex-wrap: wrap;
  }


  /* REDES */

  .social-links {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));
  }

}


/* ================================
   CELULAR
================================ */

@media (max-width: 650px) {

  header {
    padding: 15px 6%;

    align-items: flex-start;
  }

  .logo {
    width: 135px;

    height: 62px;
  }

  .header-right {
    width: 65%;

    flex-direction: column;

    align-items: flex-end;

    gap: 11px;
  }

  nav {
    width: 100%;

    justify-content: flex-end;

    flex-wrap: wrap;

    gap: 8px 12px;
  }

  nav a {
    font-size: 8px;
  }

  .nav-contacto {
    padding: 7px 10px;
  }

  .idiomas {
    gap: 7px;
  }

  .idioma {
    font-size: 9px;
  }

  .idioma span:last-child {
    display: inline;
  }

  .flag-icon {
    width: 34px;
    height: 23px;

    border-width: 3px;

    border-radius: 7px;
  }


  /* HERO */

  .hero {
    width: 88%;

    padding-top: 145px;
  }

  .hero h1 {
    font-size: 64px;

    letter-spacing: -3px;
  }

  .intro {
    font-size: 15px;
  }

  .hero-actions {
    flex-direction: column;

    align-items: flex-start;

    gap: 20px;
  }


  /* ABOUT */

  .about {
    width: 88%;

    display: block;

    padding: 90px 0;
  }

  .about-spacer {
    display: none;
  }

  .about h2 {
    font-size: 55px;

    letter-spacing: -3px;
  }

  .about-text {
    padding-top: 55px;
  }


  /* NOVEDADES */

  .novedades {
    padding: 80px 6%;
  }

  .novedades-header {
    padding-bottom: 40px;
  }

  .novedades-header h2 {
    font-size: 56px;

    letter-spacing: -3px;
  }

  .novedad-card {
    min-height: 290px;

    padding: 30px 18px;
  }


  /* AGENDA */

  .agenda {
    padding: 80px 6%;
  }

  .agenda-header h2 {
    font-size: 54px;

    letter-spacing: -3px;
  }

  .agenda-card {
    min-height: 330px;

    padding: 25px 20px;
  }


  /* BIBLIOTECA */

  .biblioteca {
    padding: 80px 6%;
  }

  .biblioteca-inner {
    display: block;
  }

  .biblioteca-presentacion h2 {
    font-size: 56px;

    letter-spacing: -3px;
  }

  .biblioteca-lista {
    margin-top: 65px;
  }

  .recurso-item {
    grid-template-columns:
      45px
      1fr
      28px;

    gap: 14px;

    padding: 28px 0;
  }


  /* BLOG */

  .blog {
    padding: 80px 6%;
  }

  .blog-header h2 {
    font-size: 54px;

    letter-spacing: -3px;
  }

  .blog-item {
    grid-template-columns:
      55px
      1fr
      44px;

    gap: 15px;

    padding: 30px 0;
  }

  .blog-categoria,
  .blog-contenido {
    grid-column: 2;
  }

  .blog-arrow {
    grid-column: 3;

    grid-row: 1 / 4;
  }


  /* FORMATOS */

  .formatos {
    padding: 80px 6%;
  }

  .formatos-inner {
    display: block;
  }

  .formatos-presentacion {
    display: block;
  }

  .formatos-presentacion .section-number {
    margin-bottom: 35px;
  }

  .formatos-texto h2 {
    font-size: 56px;

    letter-spacing: -3px;
  }

  .formatos-grid {
    margin-top: 60px;

    grid-template-columns: 1fr;
  }

  .formato-card,
  .formato-linkedin {
    grid-column: auto;

    min-height: 330px;
  }


  /* CONTACTO */

  .contacto {
    display: block;

    padding: 90px 6%;
  }

  .contacto .section-number {
    margin-bottom: 40px;
  }

  .contacto h2 {
    font-size: 70px;

    letter-spacing: -4px;
  }

  .contacto-acciones {
    flex-direction: column;

    align-items: stretch;
  }

  .contacto-link {
    width: 100%;
  }


  /* REDES */

  .redes {
    padding: 80px 6%;
  }

  .redes-inner {
    display: block;
  }

  .redes .section-number {
    margin-bottom: 40px;
  }

  .redes-heading h2 {
    font-size: 54px;

    letter-spacing: -3px;
  }

  .social-links {
    margin-top: 42px;

    grid-template-columns: 1fr;
  }


  /* FOOTER */

  .footer-top,
  .footer-bottom {
    align-items: flex-start;

    flex-direction: column;

    gap: 18px;
  }

}