/* =========================
RESET E BASE
========================= */
*,
*::before,
*::after {
box-sizing: border-box;
}

body {
margin: 0;
font-family: system-ui, -apple-system, BlinkMacSystemFont, "Roboto", "Segoe UI", sans-serif;
line-height: 1.6;
color: #111827;
background: #ffffff;
}

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

a:hover {
text-decoration: underline;
}

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

/* Paleta aproximando do site original */
:root {
  --green: #25d366; /* botão WhatsApp */
  --green-dark: #1eb454;
  --red: #f24b3a; /* botões e destaques */
  --red-dark: #d63c2e;
  --gray-bg: #f5f5f5;
  --gray-soft: #f3f4f6;
  --text-main: #111827;
  --text-muted: #4b5563;
}

/* Container geral */
.container {
width: 100%;
max-width: 1180px;
margin: 0 auto;
padding: 0 32px;
}

@media (max-width: 640px) {
.container {
padding: 0 20px;
}
}

/* =========================
BOTÕES
========================= */
.btn {
display: inline-flex;
align-items: center;
justify-content: center;
gap: 8px;
padding: 14px 28px;
border-radius: 12px;
border: none;
background: var(--green);
color: #fff;
font-weight: 600;
font-size: 0.95rem;
text-align: center;
cursor: pointer;
transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.1s ease;
box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}

.btn:hover {
background: var(--green-dark);
text-decoration: none;
box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
transform: translateY(-1px);
}

/* Botão vermelho (“Saiba mais” dos cards) */
.btn-red {
background: var(--red);
}

.btn-red:hover {
background: var(--red-dark);
}

/* Botão de contorno do header */
.btn-outline {
background: var(--green);      /* verde cheio */
  color: #ffffff;                /* texto branco */
  border: none;                  /* remove a borda vermelha */
  border-radius: 999px;
}

.btn-outline:hover {
  background: var(--green-dark);
  color: #ffffff;
}

.btn-large {
min-width: 260px;
}

/* Botão WhatsApp especial do hero */
/* .btn.btn-whats {
display: inline-flex;
align-items: center;
gap: 10px;
padding: 16px 34px;
background: var(--green);
border-radius: 999px;
box-shadow: 0 10px 24px rgba(0,0,0,0.15);
font-size: 1.05rem;
} */

/*.btn.btn-whats img {
width: 20px;
height: 20px;
display: block;
}

/* Variação do botão dentro de cards */
.card .btn-whats {
margin-top: 24px;
width: 100%;
justify-content: center;
padding: 14px 0;
font-size: 0.98rem;
}

/* CTA com telefone (se usar em algum lugar) */
.cta-phone {
display: inline-flex;
align-items: center;
justify-content: center;
gap: 10px;
padding: 14px 32px;
border-radius: 999px;
background: #ffffff;
color: #111827;
font-weight: 500;
font-size: 0.95rem;
text-decoration: none;
box-shadow: 0 10px 24px rgba(0,0,0,0.18);
cursor: pointer;
}

.cta-phone:hover {
background: #f3f4f6;
text-decoration: none;
}

/* =========================
HEADER
========================= */
.site-header {
background: #ffffff;
border-bottom: 1px solid #e5e7eb;
position: sticky;
top: 0;
z-index: 20;
}

.header-inner {
display: flex;
align-items: center;
justify-content: space-between;
padding: 14px 20px;
gap: 20px;
}

.logo img {
height: 52px;
width: auto;
}

.main-nav {
display: flex;
gap: 22px;
font-size: 0.97rem;
color: #111827;
}

.main-nav a {
padding: 6px 4px;
position: relative;
}

.main-nav a::after {
content: "";
position: absolute;
left: 0;
bottom: -4px;
width: 0;
height: 2px;
border-radius: 999px;
background: var(--red);
transition: width 0.2s ease;
}

.main-nav a:hover {
text-decoration: none;
}

.main-nav a:hover::after {
width: 100%;
}

/* =========================
HERO
========================= */
.hero {
position: relative;
background: url("img/hero-bg.webp") center center / cover no-repeat;
padding: 120px 0 130px;
}

.hero::before {
content: "";
position: absolute;
inset: 0;
background: rgba(255, 255, 255, 0.78); /* overlay branco leve */
}

.hero-inner {
position: relative;
z-index: 1;
display: flex;
justify-content: center;
}

.hero-text {
max-width: 640px;
text-align: center;
}

.hero-text h1 {
font-size: 3.4rem;
line-height: 1.15;
margin: 0 0 18px;
color: var(--text-main);
}

.hero-text p {
font-size: 1rem;
margin: 0 0 26px;
color: var(--text-muted);
}

/* Lista (se for usar futuramente) */
.hero-list {
list-style: none;
padding: 0;
margin: 22px 0 0;
color: #374151;
font-size: 0.95rem;
}

.hero-list li + li {
margin-top: 4px;
}

/* Some com a imagem redonda antiga */
.hero-image {
display: none;
}

/* =========================
SEÇÕES GERAIS
========================= */
.section {
padding: 70px 0;
background: #ffffff;
}

.section-light {
background: #f7f7f7;
}

.section-title {
text-align: center;
font-family: "Roboto", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
font-size: 2.4rem;
font-weight: 800;
margin: 0 0 12px;
color: var(--text-main);
}

.section-subtitle {
text-align: center;
max-width: 720px;
margin: 0 auto 36px;
font-family: "Roboto", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
font-size: 1rem;
font-weight: 400;
color: var(--text-muted);
}

/* =========================
GRID E CARDS
========================= */
.grid {
display: grid;
gap: 22px;
}

.grid-3 {
grid-template-columns: repeat(3, minmax(0, 1fr));
}

/* CARDS DE SERVIÇOS */
.card {
background: #ffffff;
border-radius: 24px;
padding: 22px 22px 24px;
border: 1px solid #ececec;
box-shadow: 0 18px 40px rgba(15, 23, 42, 0.14);
display: flex;
flex-direction: column;
align-items: flex-start;
height: 100%;
}

.card img {
width: 100%;
border-radius: 18px;
margin: -10px 0 16px 0;
object-fit: cover;
}

.card h3 {
margin: 0 0 10px;
font-family: "Roboto", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
font-size: 1.15rem;
font-weight: 700;
color: var(--text-main);
}

.card p {
margin: 0;
font-family: "Roboto", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
font-size: 0.98rem;
font-weight: 400;
color: #4b5563;
line-height: 1.6;
}

/* botão preenche a base do card */
.card .btn {
margin-top: auto;
align-self: stretch;
text-align: center;
}

/* =========================
STEPS (Como funciona) – se usar
========================= */
.steps {
display: grid;
gap: 20px;
}

.step {
display: flex;
gap: 16px;
align-items: flex-start;
background: #ffffff;
border-radius: 18px;
padding: 18px 20px;
border: 1px solid #e5e7eb;
box-shadow: 0 8px 22px rgba(15, 23, 42, 0.06);
}

.step-number {
width: 34px;
height: 34px;
border-radius: 999px;
background: var(--red);
color: #fff;
display: inline-flex;
align-items: center;
justify-content: center;
font-weight: 600;
flex-shrink: 0;
}

/* =========================
DEPOIMENTOS
========================= */
.testimonial {
background: #ffffff;
border-radius: 24px;
padding: 22px 24px 24px;
border: 1px solid #e5e7eb;
box-shadow: 0 12px 30px rgba(15, 23, 42, 0.10);
font-size: 0.95rem;
text-align: center;
position: relative;
}

.testimonial::before {
content: "❝";
font-size: 2.6rem;
color: var(--red);
display: block;
margin-bottom: 4px;
}

.testimonial-name {
display: block;
margin-top: 14px;
font-weight: 600;
color: var(--red-dark);
}

/* =========================
SOBRE / ABOUT
========================= */
.about-grid {
display: grid;
grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
gap: 40px;
align-items: center;
}

.section-title-left {
text-align: left;
}

.about-text p,
.about-reasons p {
font-size: 1.05rem;
line-height: 1.8;
color: var(--text-muted);
margin: 0 0 10px;
}

.about-box {
background: #ffffff;
border-radius: 24px;
border: 1px solid #e5e7eb;
padding: 22px 24px 24px;
box-shadow: 0 20px 40px rgba(15, 23, 42, 0.12);
display: flex;
flex-direction: column;
gap: 14px;
}

.about-box img {
border-radius: 18px;
width: 100%;
display: block;
}

.about-reasons {
margin-top: 60px;
}

/* =========================
HOSPITAIS CREDENCIADOS (se usar)
========================= */
.hospitals {
background: #f9fafb;
}

.hospitals-strip {
margin-top: 30px;
overflow: hidden;
display: flex;
justify-content: center;
}

.hospitals-track {
display: inline-flex;
align-items: center;
gap: 70px;
animation: scroll-logos 22s linear infinite;
padding-left: 20px;
}

.hospitals-track img {
height: 50px;
width: auto;
object-fit: contain;
filter: grayscale(0.1);
opacity: 0.95;
}

@keyframes scroll-logos {
from {
transform: translateX(0);
}
to {
transform: translateX(-50%);
}
}

/* =========================
CTA FINAL / BANNER
========================= */
.section-cta {
background: #4b4b4b;
color: #ffffff;
padding: 28px 0;
}

.section-cta .container {
display: flex;
flex-wrap: wrap;
align-items: center;
justify-content: center;
gap: 32px;
}

.banner-info h3 {
margin: 0 0 4px;
font-size: 1.4rem;
font-weight: 700;
}

.banner-info p {
margin: 0;
font-size: 0.98rem;
opacity: 0.9;
}

/* botões do banner */
.banner-buttons {
display: flex;
flex-wrap: wrap;
gap: 16px;
justify-content: center;
}

.btn-banner-whats {
background: #ef4444;
color: #ffffff;
padding: 14px 32px;
border-radius: 999px;
font-weight: 600;
box-shadow: 0 6px 16px rgba(0,0,0,0.25);
}

.btn-banner-phone {
background: #ffffff;
color: #ef4444;
padding: 14px 32px;
border-radius: 999px;
font-weight: 600;
border: 2px solid #ef4444;
box-shadow: 0 6px 16px rgba(0,0,0,0.25);
}

.btn-banner-whats:hover {
background: #d63c2e;
text-decoration: none;
}

.btn-banner-phone:hover {
background: #ffecec;
text-decoration: none;
}

/* =========================
FOOTER
========================= */
.site-footer {
background: #333333;
color: #e5e7eb;
padding: 24px 0;
font-size: 0.85rem;
}

.footer-inner {
text-align: center;
}

.footer-small {
margin-top: 6px;
color: #9ca3af;
}

/* =========================
FAQ
========================= */
.faq-section h3 {
font-size: 1.2rem;
margin-top: 20px;
margin-bottom: 8px;
color: var(--text-main);
font-weight: 600;
}

.faq-section p {
margin: 0 0 6px;
color: var(--text-muted);
font-size: 1.05rem;
line-height: 1.7;
}

/* =========================
RESPONSIVO
========================= */
@media (max-width: 960px) {
.hero {
background: url("img/hero-bg.webp") center center / cover no-repeat;
padding: 90px 0 100px;
}

.hero-text h1 {
font-size: 2.4rem;
}

.hero-list {
text-align: left;
max-width: 420px;
margin-left: auto;
margin-right: auto;
}

.grid-3 {
grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

.about-reasons {
margin-top: 40px;
}

.main-nav {
display: none; /* sem menu mobile ainda */
}

.header-inner {
padding-inline: 16px;
}

.hospitals-track {
gap: 40px;
animation-duration: 26s;
}

.hospitals-track img {
height: 40px;
}
}

@media (max-width: 640px) {
.hero {
padding: 70px 0 80px;
}

.hero-text h1 {
font-size: 2rem;
}

.section {
padding: 52px 0;
}

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

.header-cta .btn-outline {
padding: 8px 16px;
font-size: 0.78rem;
}

.section-cta .container {
align-items: flex-start;
}

.banner-info {
text-align: center;
}
}

/* =========================
   BANNER FINAL – FORÇA FUNDO CINZA
   ========================= */

/* cobre tanto <section class="section section-cta"> quanto <section class="banner-cta"> */
.section-cta,
.section.section-cta,
.banner-cta {
  background: #4b4b4b !important;
  color: #ffffff;
  padding: 28px 0;
}

/* conteúdo centralizado dentro do banner */
.section-cta .container,
.banner-cta .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;  /* centraliza tudo */
  gap: 32px;
}

.banner-info h3 {
  margin: 0 0 4px;
  font-size: 1.4rem;
  font-weight: 700;
}

.banner-info p {
  margin: 0;
  font-size: 0.98rem;
  opacity: 0.9;
}

/* botões do banner */
.banner-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.btn-banner-whats {
  background: #ef4444;
  color: #ffffff;
  padding: 14px 32px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 6px 16px rgba(0,0,0,0.25);
}

.btn-banner-phone {
  background: #ffffff;
  color: #ef4444;
  padding: 14px 32px;
  border-radius: 999px;
  font-weight: 600;
  border: 2px solid #ef4444;
  box-shadow: 0 6px 16px rgba(0,0,0,0.25);
}

.btn-banner-whats:hover {
  background: #d63c2e;
  text-decoration: none;
}

.btn-banner-phone:hover {
  background: #ffecec;
  text-decoration: none;
}

/* mobile */
@media (max-width: 640px) {
  .section-cta .container,
  .banner-cta .container {
    align-items: flex-start;
  }

  .banner-info {
    text-align: center;
  }
}

/* WRAPPER DO BLOCO DE BAIRROS NO FOOTER */
.footer-bairros-wrapper {
  margin-top: 10px;
  margin-bottom: 16px;
}

/* Título acima dos bairros */
.footer-title {
  margin: 0 0 10px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #e5e7eb;
}

/* GRID DE 5 COLUNAS */
.footer-bairros-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px 32px;
}

/* listas dentro do grid */
.footer-bairros-grid ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-bairros-grid li {
  margin-bottom: 4px;
}

/* links dos bairros dentro do footer escuro */
.footer-bairros-grid a {
  color: #e5e7eb;
  text-decoration: none;
  font-size: 0.85rem;
}

.footer-bairros-grid a:hover {
  text-decoration: underline;
}

/* LINHA DE BAIXO: COPYRIGHT + LINKS */
.footer-bottom {
  border-top: 1px solid rgba(156, 163, 175, 0.4);
  padding-top: 10px;
  margin-top: 4px;

  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-copy {
  margin: 0;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
}

.footer-links a {
  color: #e5e7eb;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-separator {
  color: #9ca3af;
}

/* RESPONSIVO FOOTER – quebra colunas no mobile */
@media (max-width: 960px) {
  .footer-bairros-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .footer-bairros-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* =========================
   FOOTER – BAIRROS EM 5 COLUNAS
   ========================= */

/* título acima dos bairros */
.site-footer .footer-bairros-wrapper {
  margin-top: 10px;
  margin-bottom: 16px;
  text-align: left; /* sobrescreve o footer-inner que é centralizado */
}

.site-footer .footer-title {
  margin: 0 0 10px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #e5e7eb;
}

/* GRID DE 5 COLUNAS */
.site-footer .footer-bairros-grid {
  display: grid !important;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px 32px;
}

/* remove as bolinhas e espaçamentos padrão */
.site-footer .footer-bairros-grid ul {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.site-footer .footer-bairros-grid li {
  margin-bottom: 4px;
}

/* links dos bairros */
.site-footer .footer-bairros-grid a {
  color: #e5e7eb;
  text-decoration: none;
  font-size: 0.85rem;
}

.site-footer .footer-bairros-grid a:hover {
  text-decoration: underline;
}

/* linha inferior: copyright + links */
.site-footer .footer-bottom {
  border-top: 1px solid rgba(156, 163, 175, 0.4);
  padding-top: 10px;
  margin-top: 8px;

  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.site-footer .footer-copy {
  margin: 0;
}

.site-footer .footer-links {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
}

.site-footer .footer-links a {
  color: #e5e7eb;
  text-decoration: none;
}

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

.site-footer .footer-separator {
  color: #9ca3af;
}

/* RESPONSIVO */
@media (max-width: 960px) {
  .site-footer .footer-bairros-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .site-footer .footer-bairros-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}


/* BOTÃO WHATSAPP — estilo base único */
.btn-whats,
.btn.btn-whats,
.btn-banner-whats,
.btn.btn-banner-whats {
  display: inline-flex;          /* ícone + texto lado a lado */
  align-items: center;           /* centraliza verticalmente */
  justify-content: center;       /* centraliza horizontalmente */
  gap: 8px;

  background-color: #25D366;     /* verde WhatsApp */
  color: #ffffff;
  padding: 12px 20px;
  border-radius: 8px;
  border: none;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1;                /* evita botão “alto demais” */
  cursor: pointer;
  transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.1s ease;
}

/* Botão dentro dos cards ocupa 100% da largura */
.card .btn-whats {
  width: 100%;
}

/* Hover */
.btn-whats:hover,
.btn-banner-whats:hover {
  background-color: #1ebe5d;
  text-decoration: none;
}

/* Ícone do WhatsApp — vale para <img>, <svg> ou <i> */
.btn-whats img,
.btn-whats svg,
.btn-whats i,
.btn-banner-whats img,
.btn-banner-whats svg,
.btn-banner-whats i {
  width: 20px;
  height: 20px;
  display: block;
  flex-shrink: 0;
}


  /* =========================
MENU HAMBÚRGUER (somente mobile)
========================= */

/* botão escondido no desktop */
.mobile-menu-toggle {
  display: none;
}

/* MOBILE */
@media (max-width: 960px) {

  /* mostra o botão hambúrguer */
  .mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;

    width: 32px;
    height: 28px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 50; /* garante que fica acima do menu */
  }

  .mobile-menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background: #111827;
    border-radius: 2px;
    transition: 0.3s ease;
  }

  /* animação para X quando aberto */
  .mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  /* MENU MOBILE – escondido por padrão */
  .main-nav {
    display: none !important;
    flex-direction: column;
    gap: 18px;

    width: 100%;
    text-align: center; /* deixa todos os links centralizados */
    padding: 18px 0;

    background: #ffffff;
    border-top: 1px solid #e5e7eb;
  }

  /* quando clicar no hambúrguer */
  .main-nav.active {
    display: flex !important;
  }

  /* alinhamento do header: logo à esquerda, hambúrguer à direita */
  .header-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  /* o CTA do header some no mobile */
  .header-cta {
    display: none;
  }
}
/* Ícone dentro do botão – centralizado */
.btn-whats .whats-icon,
.btn-banner-whats .whats-icon,
.btn-whats img,
.btn-banner-whats img,
.btn-whats svg,
.btn-banner-whats svg,
.btn-whats i,
.btn-banner-whats i {
  width: 20px;
  height: 20px;
  display: inline-block;
  vertical-align: middle;
  margin: 0;
  position: static;   /* mata qualquer position relative antigo */
  top: auto;          /* mata qualquer top: 12px antigo */
}
/* =========================
   STICKY WHATSAPP BAR (MOBILE)
========================= */

/* reserva espaço pra barra não cobrir conteúdo */
@media (max-width: 960px) {
  body {
    padding-bottom: 72px; /* altura da faixa */
  }
}

.mobile-sticky-bar {
  display: none;
}

@media (max-width: 960px) {
  .mobile-sticky-bar {
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;

    background: #1e7f4f; /* verde mais escuro */
    border-top: 1px solid rgba(255,255,255,0.15);
  }

  .mobile-sticky-bar__link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    padding: 16px 20px;
    color: #ffffff;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
  }

  .mobile-sticky-bar__link:hover {
    background: #166a41; /* hover sutil */
    text-decoration: none;
  }

  .mobile-sticky-bar__link img,
  .mobile-sticky-bar__link svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
  }
}

/* desktop: não aparece */
@media (min-width: 961px) {
  .mobile-sticky-bar {
    display: none !important;
  }
}
/* =========================
   WHATSAPP FLOAT – DESKTOP
========================= */

.whatsapp-float-desktop {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;

  width: 56px;
  height: 56px;
  border-radius: 999px;

  background: #25d366;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.25);

  display: flex;
  align-items: center;
  justify-content: center;

  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float-desktop img {
  width: 28px;
  height: 28px;
  display: block;
}

/* Hover desktop */
.whatsapp-float-desktop:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.3);
}

/* Esconde no mobile */
@media (max-width: 960px) {
  .whatsapp-float-desktop {
    display: none;
  }
}

/* Instagram no header – ícone puro */
.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  background: transparent;   /* sem fundo */
  border-radius: 0;          /* sem borda redonda */
  padding: 0;
}

/* tamanho do ícone */
.social-link img {
  width: 28px;               /* desktop */
  height: 28px;
  display: block;
}

/* hover sutil (opcional) */
.social-link:hover img {
  opacity: 0.8;
}

/* mobile */
@media (max-width: 960px) {
  .social-link img {
    width: 32px;
    height: 32px;
  }
}

