/* Cadutech — folha de estilo principal.
   Design tokens (cor, tipografia, espaçamento) vivem em tokens.css.
   Paleta: azul e branco institucional. */
@import url("tokens.css");

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  /* trava de segurança: nunca permite rolagem horizontal acidental */
  overflow-x: clip;
}

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

a {
  color: var(--blue-700);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--blue-900);
}

.container {
  width: var(--container-w);
  margin-inline: auto;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 55, 150, 0.08);
}

.site-header__inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
}

.logo-link__mark {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  background-image: url("../images/logo-emblema.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.brand {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand__name {
  font-family: var(--font-display);
  font-weight: var(--fw-black);
  font-size: 1.7rem;
  letter-spacing: -0.03em;
  color: var(--blue-900);
}

.brand__accent {
  color: var(--accent-600);
}

.brand__tag {
  font-size: 0.66rem;
  font-weight: var(--fw-bold);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 3px;
}

@media (max-width: 480px) {
  .brand__name {
    font-size: 1.45rem;
  }
  .logo-link__mark {
    width: 48px;
    height: 48px;
  }
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-desktop a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
}

.nav-desktop a:hover {
  color: var(--blue-700);
}

.nav-cta {
  background: linear-gradient(135deg, var(--blue-800), var(--blue-600));
  color: var(--white) !important;
  padding: 0.55rem 1.15rem;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: var(--shadow-sm);
}

.nav-cta:hover {
  filter: brightness(1.05);
  color: var(--white) !important;
}

/* Seletor de idioma */
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 2px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
}

.lang-switch__item {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-display);
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  color: var(--text-muted);
  text-decoration: none;
  padding: 3px 9px;
  border-radius: var(--radius-pill);
  line-height: 1;
}

.flag {
  width: 18px;
  height: 13px;
  margin-right: 5px;
  border-radius: 2px;
  background-size: cover;
  background-position: center;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1);
}

.flag--br {
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 28 20'><rect width='28' height='20' fill='%23009c3b'/><path d='M14 2 26 10 14 18 2 10Z' fill='%23ffdf00'/><circle cx='14' cy='10' r='4.2' fill='%23002776'/></svg>");
}

.flag--us {
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 28 20'><rect width='28' height='20' fill='%23fff'/><g fill='%23b22234'><rect width='28' height='1.54'/><rect y='3.08' width='28' height='1.54'/><rect y='6.15' width='28' height='1.54'/><rect y='9.23' width='28' height='1.54'/><rect y='12.3' width='28' height='1.54'/><rect y='15.4' width='28' height='1.54'/><rect y='18.46' width='28' height='1.54'/></g><rect width='11.2' height='10.77' fill='%233c3b6e'/></svg>");
}

.lang-switch__item.is-active {
  background: var(--blue-700);
  color: var(--white);
}

.lang-switch__item:not(.is-active):hover {
  color: var(--blue-700);
}

.nav-mobile .lang-switch {
  align-self: flex-start;
  margin-top: var(--space-2);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: none;
  background: var(--blue-50);
  border-radius: 10px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--blue-900);
  border-radius: 1px;
}

.nav-mobile {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: 1px solid rgba(0, 55, 150, 0.1);
  padding: 1rem 1.5rem 1.25rem;
  flex-direction: column;
  gap: 0.5rem;
  box-shadow: var(--shadow-sm);
}

.nav-mobile.is-open {
  display: flex;
}

.nav-mobile a {
  padding: 0.65rem 0;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid var(--blue-100);
}

.nav-mobile .nav-cta {
  text-align: center;
  margin-top: 0.5rem;
  border: none;
}

@media (max-width: 880px) {
  .nav-desktop {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }
}

/* Hero */
.hero {
  padding: calc(var(--header-h) + 3.5rem) 0 4.5rem;
  background: linear-gradient(
    165deg,
    var(--blue-50) 0%,
    var(--white) 45%,
    var(--blue-100) 100%
  );
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -15%;
  width: 70%;
  max-width: 600px;
  aspect-ratio: 1;
  background: radial-gradient(
    circle,
    rgba(0, 85, 204, 0.12) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
}

@media (max-width: 900px) {
  .hero__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero__visual {
    max-width: 320px;
    margin-inline: auto;
    margin-top: var(--space-8);
  }
}

.hero__eyebrow {
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-700);
  margin-bottom: 0.75rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--blue-950);
  margin: 0 0 1rem;
}

.hero__lead {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 34ch;
  margin: 0 0 1.75rem;
}

@media (max-width: 900px) {
  .hero__lead {
    margin-inline: auto;
  }
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

@media (max-width: 900px) {
  .hero__actions {
    justify-content: center;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn:active {
  transform: scale(0.98);
}

.btn--primary {
  background: linear-gradient(135deg, var(--blue-800), var(--blue-600));
  color: var(--white);
  box-shadow: 0 8px 28px rgba(0, 85, 204, 0.35);
}

.btn--primary:hover {
  color: var(--white);
  box-shadow: 0 12px 36px rgba(0, 85, 204, 0.4);
}

.btn--ghost {
  background: var(--white);
  color: var(--blue-800);
  border: 2px solid rgba(0, 85, 204, 0.28);
}

.btn--ghost:hover {
  background: var(--blue-50);
  color: var(--blue-900);
}

.hero__visual {
  position: relative;
}

/* Hero — composição gráfica (showcase) */
.showcase {
  position: relative;
}

.showcase__panel {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  box-shadow: var(--shadow);
  border: 1px solid var(--color-border);
  position: relative;
  z-index: 1;
}

.showcase__head {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-5);
}

.showcase__badge {
  margin-left: auto;
  flex-shrink: 0;
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: var(--fw-bold);
  color: var(--blue-700);
  background: var(--blue-50);
  border: 1px solid var(--color-border);
  padding: 0.28rem 0.6rem;
  border-radius: var(--radius-pill);
}

.showcase__kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3);
  margin-bottom: var(--space-5);
}

.kpi {
  background: var(--blue-50);
  border-radius: var(--radius);
  padding: var(--space-3);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.kpi__label {
  font-family: var(--font-display);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  color: var(--text-muted);
}

.kpi__bars {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 26px;
}

.kpi__bars i {
  flex: 1;
  border-radius: 2px 2px 0 0;
  background: var(--blue-500);
}

.kpi__bars i:nth-child(1) {
  height: 35%;
  opacity: 0.4;
}
.kpi__bars i:nth-child(2) {
  height: 55%;
  opacity: 0.6;
}
.kpi__bars i:nth-child(3) {
  height: 75%;
  opacity: 0.8;
}
.kpi__bars i:nth-child(4) {
  height: 100%;
}

.showcase__avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-500), var(--blue-800));
  flex-shrink: 0;
}

.showcase__lines {
  display: flex;
  flex-direction: column;
  gap: 7px;
  flex: 1;
}

.showcase__line {
  height: 9px;
  border-radius: 5px;
  background: var(--blue-100);
}

.showcase__line--short {
  width: 55%;
}

.showcase__chart {
  background: var(--blue-50);
  border-radius: var(--radius);
  padding: var(--space-4);
}

.showcase__chart-label {
  display: block;
  font-family: var(--font-display);
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--blue-700);
  margin-bottom: var(--space-2);
}

.showcase__chart svg {
  display: block;
}

.showcase__chip {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--white);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  border-radius: var(--radius-pill);
  padding: 0.5rem 0.85rem;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: var(--fw-bold);
  color: var(--blue-900);
  white-space: nowrap;
}

.showcase__chip--a {
  top: 16%;
  right: -5%;
}

.showcase__chip--a svg {
  color: var(--blue-600);
}

.showcase__chip--b {
  bottom: 14%;
  left: -5%;
}

.showcase__chip--b svg {
  color: var(--accent-600);
}

@media (max-width: 900px) {
  .showcase__chip--a {
    right: 2%;
  }
  .showcase__chip--b {
    left: 2%;
  }
}

/* Sections */
section {
  padding: var(--space-18) 0;
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--blue-950);
  margin: 0 0 0.5rem;
}

.section__subtitle {
  color: var(--text-muted);
  max-width: 52ch;
  margin: 0 0 2.5rem;
}

/* Métricas / prova social */
.metrics {
  padding: var(--space-10) 0;
  background: var(--white);
  border-bottom: 1px solid var(--color-border);
}

.metrics__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  text-align: center;
}

.metric {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
  padding: var(--space-2) var(--space-4);
}

.metric + .metric {
  border-left: 1px solid var(--color-border);
}

.metric__value {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  font-weight: var(--fw-black);
  line-height: 1;
  letter-spacing: var(--tracking-tight);
  color: var(--blue-800);
}

.metric__label {
  font-size: var(--fs-sm);
  color: var(--text-muted);
  max-width: 24ch;
  margin-inline: auto;
}

@media (max-width: 640px) {
  .metrics__grid {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }

  .metric + .metric {
    border-left: none;
    border-top: 1px solid var(--color-border);
    padding-top: var(--space-8);
  }
}

/* Sobre */
.sobre {
  background: var(--white);
}

.sobre__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: start;
}

@media (max-width: 860px) {
  .sobre__grid {
    grid-template-columns: 1fr;
  }
}

/* Páginas jurídicas (privacidade, termos) */
body.page-legal {
  padding-top: var(--header-h);
}

.legal-doc {
  max-width: 720px;
  margin: 0 auto;
  padding: 2.5rem 0 4rem;
}

.legal-doc h1 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.1rem);
  font-weight: 800;
  color: var(--blue-950);
  margin: 0 0 0.5rem;
  letter-spacing: -0.02em;
}

.legal-doc .legal-doc__meta {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0 0 2rem;
}

.legal-doc h2 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--blue-900);
  margin: 2rem 0 0.75rem;
}

.legal-doc h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  margin: 1.25rem 0 0.5rem;
}

.legal-doc p,
.legal-doc li {
  color: var(--text);
  margin: 0 0 1rem;
}

.legal-doc ul {
  margin: 0 0 1rem;
  padding-left: 1.35rem;
}

.legal-doc a {
  font-weight: 600;
}

.back-link {
  display: inline-block;
  margin-bottom: 1.5rem;
  font-weight: 600;
  font-size: 0.9375rem;
}

/* Serviços */
.servicos {
  background: linear-gradient(180deg, var(--blue-50) 0%, var(--white) 100%);
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

@media (max-width: 900px) {
  .cards {
    grid-template-columns: 1fr;
  }
}

.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border: 1px solid rgba(0, 55, 150, 0.1);
  box-shadow: var(--shadow-sm);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.card:hover {
  border-color: rgba(0, 85, 204, 0.35);
  box-shadow: var(--shadow);
}

.card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--blue-100), var(--white));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-700);
  margin-bottom: var(--space-4);
}

.card__icon svg {
  width: 24px;
  height: 24px;
}

.card:hover .card__icon {
  color: var(--blue-600);
}

.card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--blue-900);
  margin: 0 0 0.5rem;
}

.card p {
  margin: 0;
  font-size: 0.98rem;
  color: var(--text-muted);
}

/* Diferenciais */
.diferenciais {
  background: var(--blue-900);
  color: var(--white);
}

.diferenciais .section__title {
  color: var(--white);
}

.diferenciais .section__subtitle {
  color: rgba(255, 255, 255, 0.85);
}

.diferenciais__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem 2.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

@media (max-width: 700px) {
  .diferenciais__list {
    grid-template-columns: 1fr;
  }
}

.diferenciais__list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.diferenciais__list li::before {
  content: "✓";
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
}

/* Contato */
.contato {
  background: var(--blue-50);
}

.contato__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3rem;
  align-items: start;
}

@media (max-width: 860px) {
  .contato__grid {
    grid-template-columns: 1fr;
  }
}

.contato__info h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin: 1.5rem 0 0.5rem;
  color: var(--blue-900);
}

.contato__info p,
.contato__info a {
  margin: 0;
  color: var(--text-muted);
}

.contato__info a {
  font-weight: 600;
}

/* Canais de contato */
.contato__channels {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.channel {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  padding: var(--space-5);
  background: var(--white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  color: inherit;
  transition: border-color var(--ease), box-shadow var(--ease),
    transform var(--ease);
}

.channel:hover {
  border-color: rgba(0, 85, 204, 0.35);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.channel__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: grid;
  place-items: center;
}

.channel--whats .channel__icon {
  background: var(--whatsapp);
  color: var(--white);
}

.channel--mail .channel__icon {
  background: var(--blue-100);
  color: var(--blue-700);
}

.channel__body {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.channel__body strong {
  font-family: var(--font-display);
  font-size: var(--fs-lg);
  color: var(--blue-900);
}

.channel__desc {
  font-size: var(--fs-sm);
  color: var(--text-muted);
}

.channel__cta {
  margin-top: var(--space-2);
  font-weight: var(--fw-semibold);
  font-size: var(--fs-sm);
  color: var(--blue-700);
}

.channel--whats:hover .channel__cta {
  color: var(--whatsapp-dark);
}

.contato__note {
  margin: var(--space-2) 0 0;
  font-size: var(--fs-xs);
  color: var(--text-muted);
}

/* Botão flutuante de WhatsApp */
.whats-fab {
  position: fixed;
  right: var(--space-5);
  bottom: var(--space-5);
  z-index: 90;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--whatsapp);
  color: var(--white);
  display: grid;
  place-items: center;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.25);
  transition: transform var(--ease), box-shadow var(--ease);
}

.whats-fab:hover {
  color: var(--white);
  transform: scale(1.06);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.3);
}

.form-panel {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid rgba(0, 55, 150, 0.08);
}

.form-panel h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: 0 0 0.25rem;
  color: var(--blue-950);
}

.form-panel > p {
  margin: 0 0 1.5rem;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 560px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--blue-900);
  margin-bottom: 0.35rem;
}

input,
select,
textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  border: 1px solid rgba(0, 55, 150, 0.2);
  border-radius: 10px;
  margin-bottom: 1rem;
  background: var(--white);
  color: var(--text);
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--blue-600);
  box-shadow: 0 0 0 3px rgba(0, 85, 204, 0.15);
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-2);
}

.form-message {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: var(--radius);
  font-size: 0.9375rem;
  display: none;
}

.form-message.is-visible {
  display: block;
}

.form-message--ok {
  background: #e8f8ef;
  color: #0d5c2e;
  border: 1px solid #a3e4b8;
}

.form-message--err {
  background: #fdeeee;
  color: #8b1a1a;
  border: 1px solid #f5b4b4;
}

/* Depoimentos (grade responsiva) */
.reviews {
  background: var(--white);
}

/* linha horizontal centralizada; cards de altura igual (topo e base alinhados),
   quebram para a próxima linha quando não cabem (3 por linha no desktop) */
.reviews__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: var(--space-6);
}

.review {
  flex: 1 1 320px;
  max-width: 400px;
  background: var(--white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.review__text {
  margin: 0;
  font-size: var(--fs-md);
  color: var(--text);
  line-height: 1.6;
  flex: 1;
}

.review__author {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
  color: inherit;
}

a.review__author:hover .review__name {
  color: var(--blue-700);
}

.review__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--blue-500), var(--blue-800));
}

.review__meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.review__name {
  font-family: var(--font-display);
  color: var(--blue-900);
  font-size: 1rem;
}

.review__channel {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: var(--fs-sm);
  color: var(--text-muted);
}

.review__yt {
  color: #ff0000;
  flex-shrink: 0;
}

.review__subs {
  font-size: var(--fs-xs);
  color: var(--text-muted);
}

.review__subs strong {
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  color: var(--blue-800);
}

/* Footer */
.site-footer {
  background: var(--blue-950);
  color: rgba(255, 255, 255, 0.88);
  padding: 2.5rem 0;
  font-size: 0.9rem;
}

.site-footer__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.75rem;
  font-size: 0.875rem;
}

.site-footer__links a {
  text-decoration: none;
}

.site-footer__links a:hover {
  text-decoration: underline;
}

.site-footer__sep {
  opacity: 0.6;
}

.site-footer__copy {
  margin: 0;
  width: 100%;
  flex-basis: 100%;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
}

@media (min-width: 720px) {
  .site-footer__inner {
    flex-wrap: nowrap;
    align-items: flex-start;
  }

  .site-footer__copy {
    width: auto;
    flex: 0 0 auto;
    max-width: 280px;
    padding-top: 0;
    margin-left: auto;
    border-top: none;
    text-align: right;
  }
}

.site-footer .footer-brand {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.footer-brand__name {
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  color: var(--white);
}

.footer-brand__tag {
  font-size: var(--fs-xs);
  color: rgba(255, 255, 255, 0.7);
}

.site-footer a {
  color: rgba(255, 255, 255, 0.95);
}
