/*
  CotizaPlanIsapre.cl — componente de marca web.
  El isotipo se usa como PNG sin alterar su diseño ni sus colores.
  El wordmark se construye como texto HTML para máxima nitidez y respuesta adaptable.
*/

.site-brand {
  --brand-logo-blue: #104a9a;
  --brand-logo-green: #058900;
  --brand-logo-gray: #575757;
  flex: 0 1 auto;
  display: inline-flex;
  align-items: center;
  gap: 0.48rem;
  min-width: 0;
  color: inherit;
  text-decoration: none;
}

.site-brand__mark {
  flex: 0 0 auto;
  width: 50px !important;
  height: 44px !important;
  object-fit: contain;
}

.site-brand__wordmark {
  display: inline-flex;
  align-items: baseline;
  min-width: 0;
  white-space: nowrap;
  font-family: "Nunito Sans", "Trebuchet MS", Arial, sans-serif;
  font-size: clamp(1.22rem, 1.75vw, 1.72rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.032em;
  text-rendering: geometricPrecision;
}

.site-brand__cotiza,
.site-brand__isapre {
  color: var(--brand-logo-blue);
}

.site-brand__plan {
  color: var(--brand-logo-green);
}

.site-brand__domain {
  margin-left: 0.04em;
  color: var(--brand-logo-green);
  font-size: 0.78em;
  letter-spacing: -0.01em;
}

.site-brand:focus-visible {
  border-radius: 0.6rem;
  outline: 3px solid rgba(18, 82, 173, 0.24);
  outline-offset: 4px;
}

.site-brand--footer {
  --brand-logo-blue: #ffffff;
  --brand-logo-green: #058900;
  --brand-logo-gray: #058900;
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
}

.site-brand--footer .site-brand__mark {
  width: 54px !important;
  height: 48px !important;
}

.site-brand--footer .site-brand__wordmark {
  font-size: clamp(1.28rem, 2vw, 1.82rem);
  letter-spacing: -0.014em;
}

.site-brand--footer .site-brand__domain {
  color: var(--brand-logo-green);
  letter-spacing: 0.005em;
}

.site-brand--footer .site-brand__wordmark {
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.10);
}

/* Anula las reglas históricas que dimensionaban cualquier imagen del logo horizontal. */
.site-brand img,
.site-footer__brand img {
  filter: none;
}

@media (max-width: 1180px) {
  .site-brand {
    gap: 0.38rem;
  }

  .site-brand__mark {
    width: 45px !important;
    height: 40px !important;
  }

  .site-brand__wordmark {
    font-size: clamp(1.12rem, 1.7vw, 1.48rem);
  }
}

@media (max-width: 620px) {
  .site-brand {
    gap: 0.2rem;
  }

  .site-brand__mark {
    width: 42px !important;
    height: 37px !important;
  }

  .site-brand__wordmark {
    font-size: clamp(1.12rem, 5.55vw, 1.42rem);
    letter-spacing: -0.028em;
  }

  .site-brand__domain {
    font-size: 0.76em;
    letter-spacing: 0;
  }

  .site-brand--footer .site-brand__mark {
    width: 48px !important;
    height: 42px !important;
  }

  .site-brand--footer .site-brand__wordmark {
    font-size: clamp(1.15rem, 5.2vw, 1.5rem);
    letter-spacing: -0.01em;
  }

  .site-brand--footer .site-brand__domain {
    letter-spacing: 0.01em;
  }
}

@media (max-width: 370px) {
  .site-brand {
    gap: 0.16rem;
  }

  .site-brand__mark {
    width: 37px !important;
    height: 33px !important;
  }

  .site-brand__wordmark {
    font-size: 1.03rem;
    letter-spacing: -0.025em;
  }

  .site-brand__domain {
    font-size: 0.75em;
  }
}
