/* =========================================================
   RESTAURO / AMERICANKITCHEN - LANDING PAGE PREMIUM
   Stack: HTML + CSS + JS puro
   Observação: CSS recriado em formato legível e comentado.
   ========================================================= */

/* =========================
   01. Tokens visuais
   ========================= */
:root {
  --black: #080909;
  --black-2: #111313;
  --gold: #c9962f;
  --gold-2: #e3b74c;
  --cream: #f7f2ea;
  --paper: #fffdf9;
  --text: #171717;
  --muted: #66615b;
  --line: rgba(201, 150, 47, 0.36);
  --green: #0b987a;
  --whatsapp: #20c463;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
}

/* =========================
   02. Reset/base
   ========================= */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Montserrat, system-ui, -apple-system, Segoe UI, sans-serif;
  background: var(--black);
  color: var(--text);
  line-height: 1.55;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.container {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.skip {
  position: absolute;
  left: -999px;
  top: 10px;
  z-index: 999;
  padding: 10px 14px;
  background: #fff;
  color: #000;
}

.skip:focus {
  left: 10px;
}

/* =========================
   03. Cabeçalho / navegação
   ========================= */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 80;
  background: rgba(8, 9, 9, 0.94);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(14px);
}

.nav {
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand img {
  width: 220px;
  filter: brightness(1.08);
}

.menu {
  display: flex;
  align-items: center;
  gap: 32px;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.menu a {
  position: relative;
}

.menu a:first-child,
.menu a:hover {
  color: var(--gold-2);
}

.menu a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -12px;
  width: 0;
  height: 2px;
  margin: auto;
  background: var(--gold-2);
  transition: 0.25s;
}

.menu a:hover::after {
  width: 100%;
}

/* =========================
   04. Botões
   ========================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid var(--gold);
  border-radius: 2px;
  background: transparent;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition: 0.25s;
}

.btn:hover {
  transform: translateY(-2px);
  background: var(--gold);
  color: var(--black);
}

.btn-header {
  min-width: 190px;
}

.wa-mini {
  position: relative;
  display: inline-block;
  width: 21px;
  height: 21px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.wa-mini::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 2px;
  width: 7px;
  height: 11px;
  border-left: 3px solid currentColor;
  border-bottom: 3px solid currentColor;
  border-radius: 2px;
  transform: rotate(-35deg);
}

/* =========================
   05. Hero premium + crossfade
   Patch aplicado:
   - remove background fixo da .hero
   - usa .hero-slider com duas imagens
   - usa .webp
   - mantém overlay escuro cinematic
   ========================= */
.hero {
  position: relative;
  min-height: 760px;
  padding-top: 92px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--black);
}

.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  opacity: 0;
  transform: scale(1.04);
  transition:
    opacity 1.8s ease-in-out,
    transform 7s ease;
  will-change: opacity, transform;
}

.hero-slide-01 {
  background-image: url("assets/images/hero/cozinha-01.webp");
}

.hero-slide-02 {
  background-image: url("assets/images/hero/cozinha-02.webp");
}

.hero-slide:first-child {
  opacity: 1;
  transform: scale(1);
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.96) 0%,
      rgba(0, 0, 0, 0.90) 22%,
      rgba(0, 0, 0, 0.76) 38%,
      rgba(0, 0, 0, 0.45) 54%,
      rgba(0, 0, 0, 0.10) 72%,
      rgba(0, 0, 0, 0) 100%
    );
}

.hero-glow {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(
      circle at 18% 42%,
      rgba(227, 183, 76, 0.11),
      transparent 38%
    );
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
  padding-left: 80px;
  color: white;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--gold-2);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.hero h1,
.section-title h2,
.location-copy h2 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 700;
  line-height: 0.98;
}

.hero h1 {
  color: #fff;
  font-size: clamp(54px, 5.7vw, 86px);
  text-shadow: 0 16px 40px rgba(0, 0, 0, 0.36);
}

.hero h1 span {
  color: var(--gold-2);
}

.hero p:not(.eyebrow) {
  max-width: 560px;
  margin: 26px 0 32px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 20px;
}

.hero-copy,
.hero-inner,
.hero-image {
  display: contents;
}

/* =========================
   06. Barra de diferenciais
   ========================= */
.trust-bar {
  padding: 30px 0;
  background: linear-gradient(180deg, #101212, #080909);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
}

.trust-grid article {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 10px 24px 10px 0;
  color: #fff;
  border-right: 1px solid rgba(201, 150, 47, 0.38);
}

.trust-grid article:last-child {
  border-right: 0;
}

.line-icon {
  flex: 0 0 58px;
  height: 58px;
  display: grid;
  place-items: center;
  color: var(--gold-2);
  font-size: 42px;
  line-height: 1;
}

.trust-grid h2 {
  margin: 0 0 4px;
  font-size: 14px;
  text-transform: uppercase;
}

.trust-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

/* =========================
   07. Seções padrão
   ========================= */
.section {
  padding: 78px 0;
  background: var(--paper);
}

.section-title {
  max-width: 980px;
  margin: 0 auto 38px;
  text-align: center;
}

.section-title h2 {
  color: #151515;
  font-size: clamp(34px, 4vw, 62px);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.section-lead {
  max-width: 980px;
  margin: 16px auto 0;
  color: var(--muted);
  font-size: 17px;
  white-space: nowrap;
}

/* =========================
   08. Portfólio / ambientes
   ========================= */
.portfolio {
  background: #fffaf2;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  grid-template-rows: 260px 260px;
  gap: 24px;
}

.portfolio-card {
  position: relative;
  overflow: hidden;
  border-radius: 3px;
  background: #111;
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.14);
}

.portfolio-card.large {
  grid-row: span 2;
}

.portfolio-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s;
}

.portfolio-card:hover img {
  transform: scale(1.05);
}

.portfolio-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(0, 0, 0, 0.86));
}

.portfolio-card div {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 24px;
  z-index: 2;
  color: #fff;
}

.portfolio-card strong {
  display: block;
  color: #fff;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 34px;
  line-height: 1;
}

.portfolio-card span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.78);
}

/* =========================
   09. Depoimentos
   ========================= */
.testimonials {
  background: linear-gradient(180deg, #fffdf9, #f3eee7);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.quote-card {
  min-height: 210px;
  padding: 28px 30px 32px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 7px;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.06);
}

.quote {
  display: block;
  height: 42px;
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 56px;
}

.quote-card p {
  margin: 8px 0 22px;
  color: #181818;
}

.quote-card i {
  display: block;
  width: 34px;
  height: 1px;
  margin-bottom: 14px;
  background: var(--gold);
}

.quote-card strong {
  font-weight: 500;
}

.dots {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 26px;
}

.dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d5d1ca;
}

.dots span:first-child {
  background: var(--gold);
}

/* =========================
   10. Localização / mapa
   ========================= */
.location-section {
  padding: 78px 0;
  background: #080909;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.location-grid {
  display: grid;
  grid-template-columns: 310px 1fr;
  align-items: center;
  gap: 46px;
}

.location-copy {
  color: #fff;
}

.location-copy h2 {
  color: #fff;
  font-size: clamp(42px, 4.3vw, 58px);
}

.address {
  margin: 24px 0 30px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 16px;
}

.map-card {
  height: 330px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 7px;
  box-shadow: var(--shadow);
}

.map-card iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* =========================
   11. Rodapé
   ========================= */
.footer {
  padding: 32px 0 28px;
  background: #080909;
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.footer-grid div {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  column-gap: 14px;
}

.footer-icon {
  grid-row: span 2;
  color: var(--gold-2);
  font-size: 34px;
}

.footer small {
  color: var(--gold-2);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.footer strong {
  color: rgba(255, 255, 255, 0.86);
  font-weight: 500;
}

.credit {
  margin: 28px 0 0;
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.72);
}

.credit a {
  color: #7c3aed;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.credit a:hover {
  opacity: 0.82;
}

.credit-heart {
  display: inline-block;
  margin: 0 2px;
}

/* =========================
   12. WhatsApp flutuante + chat
   ========================= */
.whatsapp-float {
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 95;
  width: 78px;
  height: 78px;
  border: 0;
  border-radius: 50%;
  background: var(--whatsapp);
  box-shadow: 0 18px 42px rgba(32, 196, 99, 0.36);
  cursor: pointer;
}

.whatsapp-float::before {
  content: "";
  position: absolute;
  inset: 18px;
  background: #fff;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path d="M16.04 2.67A13.2 13.2 0 0 0 4.7 22.62L3.1 29.33l6.86-1.56A13.25 13.25 0 1 0 16.04 2.67Zm0 2.4a10.85 10.85 0 0 1 9.2 16.6 10.83 10.83 0 0 1-13.9 3.77l-.46-.24-4.18.95.97-4.07-.28-.48A10.84 10.84 0 0 1 16.04 5.07Zm-4.4 5.76c-.24 0-.62.09-.94.45-.32.35-1.23 1.2-1.23 2.93 0 1.72 1.26 3.4 1.43 3.63.17.23 2.44 3.9 6.04 5.31 2.99 1.18 3.6.95 4.25.9.65-.05 2.1-.86 2.4-1.7.3-.83.3-1.54.2-1.69-.1-.14-.34-.23-.72-.42-.38-.18-2.23-1.1-2.57-1.22-.35-.13-.6-.18-.86.18-.25.38-.98 1.22-1.2 1.47-.22.25-.44.28-.82.09-.38-.19-1.6-.59-3.05-1.88-1.13-1-1.9-2.25-2.12-2.63-.22-.38-.02-.58.17-.77.17-.17.38-.44.56-.66.18-.22.24-.38.36-.63.13-.25.06-.47-.03-.66-.09-.18-.84-2.05-1.17-2.8-.3-.72-.62-.73-.86-.74h-.74Z"/></svg>') center / contain no-repeat;
}

.pulse {
  position: absolute;
  right: -6px;
  top: -6px;
  width: 18px;
  height: 18px;
  border: 3px solid var(--whatsapp);
  border-radius: 50%;
  background: #d62828;
}

.whatsapp-chat {
  position: fixed;
  right: 34px;
  bottom: 120px;
  z-index: 90;
  width: 360px;
  height: 420px;
  overflow: hidden;
  background: #f5efe6;
  border-radius: 16px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px) scale(0.96);
  transition: 0.25s;
}

.whatsapp-chat.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.chat-head {
  height: 98px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 26px;
  background: linear-gradient(135deg, #0bb28f, #087f68);
  color: #fff;
}

.avatar {
  position: relative;
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--gold-2);
  font-size: 19px;
  font-weight: 800;
}

.avatar span,
.avatar::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: #00d979;
}

.avatar span {
  right: -4px;
  bottom: 2px;
  width: 10px;
  height: 10px;
  background: #d62828;
}

.chat-head strong,
.chat-head small {
  display: block;
}

.chat-head small {
  margin-top: 2px;
  font-size: 13px;
}

.chat-close {
  position: absolute;
  right: 20px;
  top: 22px;
  z-index: 2;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
}

.chat-body {
  height: 230px;
  padding: 32px;
  background: radial-gradient(rgba(0, 0, 0, 0.035) 1px, transparent 1px);
  background-size: 16px 16px;
}

.chat-body p {
  display: inline-block;
  margin: 0;
  padding: 13px 18px;
  background: #fff;
  color: #111;
  border-radius: 16px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  font-size: 14px;
}

.chat-form {
  height: 92px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px;
  background: #fff;
}

.chat-form input {
  height: 50px;
  flex: 1;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  outline: none;
  background: #f0f0f2;
  font: inherit;
}

.chat-form button {
  width: 50px;
  height: 50px;
  border: 0;
  border-radius: 50%;
  background: var(--whatsapp);
  color: #fff;
  font-size: 22px;
  cursor: pointer;
}

/* =========================
   13. Responsivo
   ========================= */
@media (max-width: 1020px) {
  .menu {
    display: none;
  }

  .hero {
    min-height: 680px;
  }

  .hero-slide {
    background-position: 58% center;
  }

  .hero-overlay {
    background:
      linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.96) 0%,
        rgba(0, 0, 0, 0.86) 45%,
        rgba(0, 0, 0, 0.48) 100%
      );
  }

  .hero-content {
    width: min(720px, calc(100% - 48px));
    max-width: none;
    margin-inline: auto;
    padding-left: 0;
  }

  .trust-grid,
  .testimonial-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .trust-grid article {
    padding-bottom: 24px;
    border-right: 0;
    border-bottom: 1px solid rgba(201, 150, 47, 0.28);
  }

  .trust-grid article:last-child {
    border-bottom: 0;
  }

  .portfolio-grid,
  .location-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-grid {
    grid-template-rows: auto;
  }

  .portfolio-card,
  .portfolio-card.large {
    height: 360px;
    grid-row: auto;
  }

  .btn-header {
    display: none;
  }

  .location-copy {
    text-align: center;
  }

  .location-copy .btn {
    margin: auto;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 30px, 1180px);
  }

  .nav {
    height: 78px;
  }

  .brand img {
    width: 170px;
  }

  .hero {
    min-height: 640px;
    padding-top: 78px;
  }

  .hero-slide {
    background-position: 62% center;
  }

  .hero-overlay {
    background:
      linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.97) 0%,
        rgba(0, 0, 0, 0.88) 58%,
        rgba(0, 0, 0, 0.52) 100%
      );
  }

  .hero-content {
    width: min(100% - 30px, 1180px);
  }

  .hero h1 {
    font-size: 48px;
  }

  .hero p:not(.eyebrow) {
    font-size: 17px;
  }

  .section,
  .location-section {
    padding: 62px 0;
  }

  .portfolio-card,
  .portfolio-card.large {
    height: 300px;
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .map-card {
    height: 290px;
  }

  .whatsapp-chat {
    right: 14px;
    left: 14px;
    bottom: 96px;
    width: auto;
  }

  .whatsapp-float {
    right: 18px;
    bottom: 18px;
    width: 66px;
    height: 66px;
  }

  .footer-grid div {
    grid-template-columns: 36px 1fr;
  }

  .credit {
    padding-inline: 18px;
  }
}

.briefing-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: 0.25s ease;
}

.briefing-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.briefing-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(10px);
}

.briefing-box {
  position: relative;
  z-index: 1;
  width: min(620px, 100%);
  max-height: 92vh;
  overflow-y: auto;
  padding: 42px;
  background: linear-gradient(180deg, #111313, #080909);
  border: 1px solid rgba(201, 150, 47, 0.42);
  border-radius: 18px;
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.52);
  color: #fff;
  transform: translateY(18px) scale(0.98);
  transition: 0.25s ease;
}

.briefing-modal.is-open .briefing-box {
  transform: translateY(0) scale(1);
}

.briefing-close {
  position: absolute;
  right: 20px;
  top: 16px;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 34px;
  cursor: pointer;
}

.briefing-box h2 {
  margin: 0 0 26px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(36px, 4vw, 52px);
  line-height: 1;
}

.briefing-form {
  display: grid;
  gap: 14px;
}

.briefing-form input,
.briefing-form select,
.briefing-form textarea {
  width: 100%;
  border: 1px solid rgba(201, 150, 47, 0.28);
  border-radius: 10px;
  padding: 15px 16px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  outline: none;
  font: inherit;
}

.briefing-form input::placeholder,
.briefing-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.58);
}

.briefing-form select option {
  color: #111;
}

.briefing-submit {
  width: 100%;
  margin-top: 8px;
  cursor: pointer;
}

.briefing-status {
  min-height: 22px;
  margin: 0;
  font-size: 14px;
  color: var(--gold-2);
}

body.modal-open {
  overflow: hidden;
}

@media (max-width: 620px) {
  .briefing-box {
    padding: 32px 22px;
  }

.section-lead {
  white-space: normal;
}

}

.promo-popup {
  position: fixed;
  inset: 0;
  z-index: 190;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: 0.25s ease;
}

.promo-popup.is-open {
  opacity: 1;
  pointer-events: auto;
}

.promo-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(10px);
}

.promo-box {
  position: relative;
  z-index: 1;
  width: min(520px, 100%);
  overflow: hidden;
  border-radius: 18px;
  background: #080909;
  border: 1px solid rgba(201, 150, 47, 0.45);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.52);
  transform: translateY(18px) scale(0.98);
  transition: 0.25s ease;
}

.promo-popup.is-open .promo-box {
  transform: translateY(0) scale(1);
}

.promo-close {
  position: absolute;
  top: 12px;
  right: 14px;
  z-index: 2;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-size: 28px;
  cursor: pointer;
}

.promo-image {
  width: 100%;
  display: block;
}

.promo-text {
  padding: 38px;
  color: #fff;
  text-align: center;
}

.promo-text h2 {
  margin: 0 0 14px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 46px;
  line-height: 1;
}

.promo-text p {
  margin: 0 0 26px;
  color: rgba(255, 255, 255, 0.78);
}

.promo-cta {
  width: calc(100% - 48px);
  margin: 24px;
}

@media (max-width: 620px) {
  .promo-box {
    width: min(100%, 420px);
  }

  .promo-text {
    padding: 32px 22px;
  }

  .promo-text h2 {
    font-size: 38px;
  }
}

.footer-social-link {
  display: grid;
  grid-template-columns: 42px 1fr;
  column-gap: 14px;
  align-items: center;
  color: inherit;
  text-decoration: none;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.footer-social-link small,
.footer-social-link strong {
  grid-column: 2;
}

.footer-social-link:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}
