/* =========================================================
   CONTENEDOR PRINCIPAL
   ========================================================= */

#banner-escudo-v1 {
  --azul: #2c306c;
  --fondo: #eef3f7;
  --texto-principal: #111111;
  --texto-secundario: #53606c;

  width: 100%;
  padding: clamp(24px, 5vw, 64px);

  background:
    radial-gradient(
      circle at 84% 12%,
      rgba(206, 235, 238, 0.72),
      transparent 32%
    ),
    var(--fondo);
}

#banner-escudo-v1,
#banner-escudo-v1 * {
  box-sizing: border-box;
}


/* =========================================================
   DISTRIBUCIÓN
   ========================================================= */

#banner-escudo-v1 .banner-contenido {
  display: grid;
  grid-template-columns:
    minmax(0, 1.2fr)
    minmax(240px, 0.65fr);

  align-items: center;
  gap: clamp(36px, 7vw, 100px);

  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}


/* =========================================================
   COLUMNA DE TEXTO
   ========================================================= */

#banner-escudo-v1 .banner-texto {
  min-width: 0;
}


/* =========================================================
   ENLACE PARA VOLVER
   ========================================================= */

#banner-escudo-v1 .volver {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  margin-bottom: 48px;

  color: #30343b;
  text-decoration: none;

  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;

  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

#banner-escudo-v1 .volver svg {
  width: 18px;
  height: 18px;

  fill: currentColor;
}

#banner-escudo-v1 .volver:hover,
#banner-escudo-v1 .volver:focus-visible {
  color: var(--azul);
  transform: translateX(-3px);
}

#banner-escudo-v1 .volver:focus-visible {
  outline: 3px solid rgba(44, 48, 108, 0.2);
  outline-offset: 4px;
  border-radius: 3px;
}


/* =========================================================
   ETIQUETA
   ========================================================= */

#banner-escudo-v1 .banner-etiqueta {
  margin: 0 0 12px;

  color: var(--azul);

  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}


/* =========================================================
   TÍTULO
   ========================================================= */

#banner-escudo-v1 h1 {
  max-width: 750px;
  margin: 0;

  color: var(--texto-principal);

  font-family: Arial, sans-serif;
  font-size: clamp(2rem, 4.2vw, 4rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
}


/* =========================================================
   DESCRIPCIÓN
   ========================================================= */

#banner-escudo-v1 .banner-descripcion {
  max-width: 620px;
  margin: 22px 0 0;

  color: var(--texto-secundario);

  font-size: clamp(1rem, 1.4vw, 1.15rem);
  line-height: 1.65;
}


/* =========================================================
   COLUMNA DEL ESCUDO
   ========================================================= */

#banner-escudo-v1 .banner-imagen {
  display: flex;
  align-items: center;
  justify-content: center;

  min-width: 0;
  min-height: 360px;
}

#banner-escudo-v1 .banner-imagen picture {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 100%;
}


/* =========================================================
   IMAGEN DEL ESCUDO
   ========================================================= */

#banner-escudo-v1 .banner-imagen img {
  display: block;

  width: auto;
  max-width: min(100%, 360px);
  max-height: 500px;
  height: auto;
  margin: 0 auto;

  /*
    No se utiliza background, border ni box-shadow porque
    la imagen es PNG transparente.

    drop-shadow aplica la sombra a la forma visible del escudo.
  */
  filter:
    drop-shadow(0 24px 24px rgba(28, 38, 54, 0.15))
    drop-shadow(0 5px 8px rgba(28, 38, 54, 0.1));
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

  #banner-escudo-v1 .banner-contenido {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  #banner-escudo-v1 .volver {
    margin-bottom: 28px;
  }

  #banner-escudo-v1 .banner-imagen {
    min-height: auto;
  }

  #banner-escudo-v1 .banner-imagen img {
    max-width: min(65vw, 320px);
    max-height: 430px;
  }
}


/* =========================================================
   MÓVIL
   ========================================================= */

@media (max-width: 520px) {

  #banner-escudo-v1 {
    padding: 24px 18px 34px;
  }

  #banner-escudo-v1 .banner-contenido {
    gap: 28px;
  }

  #banner-escudo-v1 h1 {
    font-size: 2rem;
  }

  #banner-escudo-v1 .banner-descripcion {
    margin-top: 16px;

    font-size: 1rem;
  }

  #banner-escudo-v1 .banner-imagen img {
    max-width: min(75vw, 280px);
    max-height: 380px;
  }
}


/* =========================================================
   ACCESIBILIDAD
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

  #banner-escudo-v1 .volver {
    transition: none;
  }
}