/* =========================================================
   META Centro Automotivo — Identidade visual oficial
   Paleta: azul ciano #00AEEF, preto, branco, cinzas
   ========================================================= */

:root {
  --azul: #00AEEF;
  --azul-escuro: #0085B3;
  --preto: #0E0E10;
  --cinza-900: #1A1A1D;
  --cinza-700: #3A3A40;
  --cinza-500: #6E6E76;
  --cinza-300: #C9C9CF;
  --cinza-100: #F2F3F5;
  --branco: #FFFFFF;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.06), 0 1px 3px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 6px 18px rgba(0, 0, 0, 0.08);
  --radius: 10px;
  --max-w: 1200px;
  --font: "Inter", "Segoe UI", system-ui, -apple-system, Arial, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--preto);
  background: var(--branco);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--azul-escuro); text-decoration: none; }
a:hover { color: var(--azul); }

h1, h2, h3, h4 {
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.2;
  color: var(--preto);
}
h1 { font-size: clamp(2rem, 4.4vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 2.6vw, 2.2rem); margin-bottom: .8rem; }
h3 { font-size: 1.2rem; }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 1.25rem; }

/* ===================== HEADER ===================== */
.header {
  background: var(--branco);
  border-bottom: 1px solid var(--cinza-100);
  position: sticky; top: 0; z-index: 50;
}
.header__inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: .8rem 0; gap: 1rem;
}
.logo {
  display: flex; align-items: center; gap: .6rem;
  color: var(--preto); flex-shrink: 0;
}
.logo img { height: 64px; width: auto; display: block; }
.logo__text { display: flex; flex-direction: column; line-height: 1; }
.logo__text strong { font-size: 1.4rem; color: var(--azul); font-weight: 900; letter-spacing: .03em; }
.logo__text span { font-size: .65rem; letter-spacing: .22em; color: var(--cinza-700); margin-top: 3px; font-weight: 600; }

.nav { display: flex; gap: 1.4rem; align-items: center; }
.nav a {
  color: var(--cinza-900); font-weight: 600; font-size: .92rem;
  padding: .4rem 0; position: relative; white-space: nowrap;
}
.nav a:hover, .nav a.is-active { color: var(--azul); }
.nav a.is-active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 2px; background: var(--azul); border-radius: 2px;
}

/* Hamburger — visível só em mobile */
.nav-toggle {
  display: none; background: transparent; border: 0; cursor: pointer;
  width: 44px; height: 44px; padding: 0; align-items: center; justify-content: center;
  color: var(--preto);
}
.nav-toggle svg { width: 28px; height: 28px; }

.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--azul); color: var(--branco);
  font-weight: 700; padding: .85rem 1.4rem; border-radius: var(--radius);
  border: 0; cursor: pointer; transition: background .2s, transform .2s;
  text-decoration: none; font-size: .95rem;
}
.btn:hover { background: var(--azul-escuro); color: #fff; transform: translateY(-1px); }
.btn--ghost { background: transparent; color: var(--azul); border: 2px solid var(--azul); }
.btn--ghost:hover { background: var(--azul); color: #fff; }
.btn--whatsapp { background: #25D366; }
.btn--whatsapp:hover { background: #1DA851; }

/* ===================== HERO ===================== */
.hero {
  position: relative;
  background: linear-gradient(135deg, #002F45 0%, #00527A 60%, #0078A3 100%);
  color: #fff;
  overflow: hidden;
  padding: clamp(3rem, 7vw, 5.5rem) 0 clamp(3rem, 6vw, 5rem);
}
.hero::after {
  content: ""; position: absolute; right: -120px; top: -120px;
  width: 480px; height: 480px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,174,239,.35), transparent 60%);
  pointer-events: none;
}
.hero__grid {
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 3rem; align-items: center;
  position: relative; z-index: 1;
}
.hero__eyebrow {
  display: inline-block; font-size: .8rem; letter-spacing: .2em;
  text-transform: uppercase; color: #8FDDFF; font-weight: 700;
  background: rgba(0,174,239,.12); border: 1px solid rgba(143,221,255,.4);
  padding: .35rem .75rem; border-radius: 999px; margin-bottom: 1rem;
}
.hero h1 { color: #fff; margin-bottom: 1rem; }
.hero h1 .accent { color: var(--azul); }
.hero p.lead { font-size: 1.1rem; color: #D6ECF5; max-width: 560px; margin-bottom: 1.6rem; }
.hero__cta { display: flex; gap: .8rem; flex-wrap: wrap; }
.hero__photo {
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md);
  border: 4px solid rgba(255,255,255,.08);
}
.hero__photo img { width: 100%; height: 380px; object-fit: cover; transition: opacity .3s ease; }

/* ===================== SEÇÕES GERAIS ===================== */
section { padding: clamp(3rem, 5vw, 5rem) 0; }
.section--alt { background: var(--cinza-100); }
.section__head { text-align: center; max-width: 720px; margin: 0 auto 2.5rem; }
.section__head .eyebrow {
  display: inline-block; font-size: .8rem; letter-spacing: .22em;
  color: var(--azul-escuro); font-weight: 700; text-transform: uppercase;
  margin-bottom: .6rem;
}
.section__head p { color: var(--cinza-700); margin-top: .6rem; }

/* ===================== BLOCO SEO (texto abaixo do hero) ===================== */
.seo-block {
  background: #fff; border: 1px solid var(--cinza-100);
  border-left: 4px solid var(--azul);
  border-radius: var(--radius); padding: 1.4rem 1.5rem; margin: 2.5rem 0;
  color: var(--cinza-700); font-size: 1rem;
}
.seo-block strong { color: var(--preto); }

/* ===================== GRID DE SERVIÇOS ===================== */
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.2rem;
}
.service-card {
  display: block; background: #fff; border: 1px solid var(--cinza-100);
  border-radius: var(--radius); padding: 1.5rem;
  transition: transform .2s, box-shadow .2s, border-color .2s;
  color: var(--preto);
}
.service-card:hover {
  transform: translateY(-3px); box-shadow: var(--shadow-md);
  border-color: var(--azul);
}
.service-card__icon {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--azul); color: #fff;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}
.service-card__icon svg { width: 26px; height: 26px; }
.service-card h3 { color: var(--azul-escuro); margin-bottom: .4rem; }
.service-card p { color: var(--cinza-700); font-size: .95rem; }
.service-card .arrow { color: var(--azul); font-weight: 700; margin-top: .8rem; display: inline-block; }

/* ===================== DIFERENCIAIS ===================== */
.diffs { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 1.4rem; }
.diff {
  text-align: center; padding: 1.5rem 1rem;
  background: #fff; border-radius: var(--radius);
  border: 1px solid var(--cinza-100);
}
.diff__num {
  font-size: 2.2rem; font-weight: 900; color: var(--azul); line-height: 1;
}
.diff h3 { margin: .6rem 0 .3rem; }
.diff p { font-size: .9rem; color: var(--cinza-700); }

/* ===================== GALERIA ===================== */
.gallery {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}
.gallery img { border-radius: var(--radius); aspect-ratio: 4/3; object-fit: cover; }

/* ===================== UNIDADES ===================== */
.units { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 1.5rem; }
.unit {
  background: #fff; border: 1px solid var(--cinza-100);
  border-radius: var(--radius); padding: 1.6rem; box-shadow: var(--shadow-sm);
}
.unit h3 { color: var(--azul-escuro); margin-bottom: .6rem; }
.unit p { color: var(--cinza-700); margin-bottom: .3rem; }
.unit a.btn { margin-top: .8rem; }

/* ===================== FAQ ===================== */
.faq-item {
  background: #fff; border: 1px solid var(--cinza-100);
  border-radius: var(--radius); margin-bottom: .8rem; overflow: hidden;
}
.faq-item summary {
  padding: 1.1rem 1.3rem; font-weight: 700; cursor: pointer;
  list-style: none; position: relative; padding-right: 3rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; position: absolute; right: 1.3rem; top: 50%;
  transform: translateY(-50%); font-size: 1.4rem; color: var(--azul);
  font-weight: 800; transition: transform .2s;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item p { padding: 0 1.3rem 1.2rem; color: var(--cinza-700); }

/* ===================== FORMULÁRIO ===================== */
.form {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
  background: #fff; padding: 1.8rem; border-radius: var(--radius);
  border: 1px solid var(--cinza-100);
}
.form .full { grid-column: 1 / -1; }
.form label { display: block; font-size: .85rem; font-weight: 600; margin-bottom: .3rem; color: var(--cinza-900); }
.form input, .form select, .form textarea {
  width: 100%; padding: .75rem .9rem; font: inherit; color: var(--preto);
  background: var(--cinza-100); border: 1px solid transparent;
  border-radius: 8px; transition: border-color .2s, background .2s;
}
.form input:focus, .form select:focus, .form textarea:focus {
  outline: 0; border-color: var(--azul); background: #fff;
}
.form textarea { min-height: 120px; resize: vertical; }

/* ===================== FOOTER ===================== */
.footer { background: var(--cinza-900); color: #C9C9CF; padding: 3rem 0 1.5rem; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2rem; }
.footer h4 { color: #fff; font-size: .95rem; margin-bottom: 1rem; text-transform: uppercase; letter-spacing: .1em; }
.footer ul { list-style: none; }
.footer li { margin-bottom: .5rem; }
.footer a { color: #C9C9CF; }
.footer a:hover { color: var(--azul); }
.footer__bottom {
  border-top: 1px solid #2a2a30; margin-top: 2.5rem; padding-top: 1.2rem;
  font-size: .85rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
}
.footer__logo {
  background: #fff; padding: .4rem .6rem; border-radius: 8px;
  display: inline-block; border-top: 3px solid var(--azul);
  box-shadow: 0 2px 6px rgba(0,0,0,.2);
}
.footer__logo img { height: 42px; width: auto; }
.footer__logo strong { color: var(--azul); }

/* ===================== BLOG CARDS ===================== */
.posts { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 1.5rem; }
.post-card {
  background: #fff; border: 1px solid var(--cinza-100);
  border-radius: var(--radius); overflow: hidden; display: block;
  color: var(--preto); transition: transform .2s, box-shadow .2s;
}
.post-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.post-card img { aspect-ratio: 16/9; object-fit: cover; }
.post-card__body { padding: 1.2rem 1.3rem 1.4rem; }
.post-card__meta { font-size: .8rem; color: var(--cinza-500); margin-bottom: .4rem; }
.post-card h3 { color: var(--azul-escuro); margin-bottom: .4rem; }
.post-card p { color: var(--cinza-700); font-size: .92rem; }

/* ===================== ARTIGO ===================== */
.article { max-width: 760px; margin: 0 auto; }
.article h1 { margin-bottom: .5rem; }
.article__meta { color: var(--cinza-500); margin-bottom: 1.5rem; font-size: .9rem; }
.article p, .article li { color: var(--cinza-700); margin-bottom: 1rem; }
.article h2 { margin-top: 2.2rem; color: var(--azul-escuro); }
.article h3 { margin-top: 1.4rem; }
.article ul, .article ol { padding-left: 1.4rem; margin-bottom: 1rem; }
.article blockquote {
  border-left: 4px solid var(--azul); padding: .5rem 1rem;
  background: var(--cinza-100); margin: 1.2rem 0; color: var(--cinza-900);
}

/* ===================== BREADCRUMB ===================== */
.breadcrumb { background: var(--cinza-100); padding: .7rem 0; font-size: .85rem; color: var(--cinza-500); }
.breadcrumb a { color: var(--cinza-700); }
.breadcrumb a:hover { color: var(--azul); }

/* ===================== CTA BAR ===================== */
.cta-bar {
  background: var(--azul); color: #fff; padding: 2.5rem 1rem; text-align: center;
}
.cta-bar h2 { color: #fff; }
.cta-bar p { color: #DFF4FC; margin: .6rem 0 1.4rem; }
.cta-bar .btn { background: #fff; color: var(--azul); border: 2px solid #fff; }
.cta-bar .btn:hover { background: var(--cinza-100); color: var(--azul-escuro); border-color: var(--cinza-100); }

/* ===================== BOTÕES WHATSAPP DAS UNIDADES ===================== */
.cta-unidades{
  background: linear-gradient(180deg, #fff 0%, var(--cinza-100) 100%);
  padding: 1.4rem 0;
  border-bottom: 1px solid var(--cinza-100);
}
.cta-unidades__wrap{
  display: flex; justify-content: center; align-items: center;
  gap: 1rem; flex-wrap: wrap;
}
.btn-unidade{
  display: inline-flex; align-items: center; gap: .55rem;
  background: linear-gradient(180deg, #00AEEF 0%, #0085B3 100%);
  color: #fff; text-decoration: none;
  padding: .9rem 1.6rem; border-radius: 999px;
  font-weight: 800; font-size: 1rem; letter-spacing: .04em;
  box-shadow: 0 4px 14px rgba(0, 174, 239, .35), inset 0 1px 0 rgba(255,255,255,.3);
  border: 2px solid rgba(255,255,255,.4);
  transition: transform .15s, box-shadow .15s;
  text-shadow: 0 1px 2px rgba(0,0,0,.25);
}
.btn-unidade:hover{
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(0, 174, 239, .5);
  color: #fff;
}
.btn-unidade:active{ transform: translateY(0); }
.btn-unidade .ico{
  display: inline-flex; align-items: center; justify-content: center;
  width: 26px; height: 26px; border-radius: 50%;
  background: rgba(255,255,255,.18);
  flex-shrink: 0;
}
.btn-unidade .ico svg{ width: 16px; height: 16px; fill: #fff; }
.btn-unidade .meta{ color: #fff; font-weight: 800; }
.btn-unidade .unidade{ color: #FFD700; font-weight: 800; }
.btn-unidade .cidade{
  display: block; font-size: .72rem; font-weight: 600;
  letter-spacing: .15em; color: #fff; opacity: .85; margin-top: 1px;
}
@media (max-width: 480px){
  .btn-unidade{ padding: .8rem 1.2rem; font-size: .9rem; }
  .btn-unidade .cidade{ font-size: .65rem; }
}

/* ===================== BLOCO PORTO SEGURO ===================== */
.porto-seguro-bar{
  background: linear-gradient(90deg, #001E50 0%, #002F8A 100%);
  color: #fff; padding: 1.4rem 0; text-align: center;
  border-top: 3px solid var(--azul);
  border-bottom: 3px solid var(--azul);
}
.porto-seguro-bar .wrap{
  display: flex; align-items: center; justify-content: center;
  gap: 1.2rem; flex-wrap: wrap; max-width: 1100px; margin: 0 auto; padding: 0 1.25rem;
}
.porto-seguro-bar .badge{
  display: inline-flex; align-items: center; gap: .5rem;
  background: #fff; color: #001E50;
  padding: .45rem 1rem; border-radius: 999px;
  font-weight: 800; font-size: .85rem; letter-spacing: .04em;
  box-shadow: 0 2px 8px rgba(0,0,0,.2);
}
.porto-seguro-bar .badge::before{
  content: "✓"; color: #00AEEF; font-weight: 900; font-size: 1.1rem;
}
.porto-seguro-bar .text{
  font-size: 1.05rem; font-weight: 600; line-height: 1.4;
}
.porto-seguro-bar .text strong{ color: #FFD700; font-weight: 800; }
.porto-seguro-bar .text small{ display: block; font-size: .82rem; opacity: .85; font-weight: 500; margin-top: 2px; }

.porto-card{
  background: linear-gradient(135deg, #002F8A 0%, #00AEEF 100%);
  color: #fff; border-radius: var(--radius);
  padding: 2rem 1.6rem; margin: 2rem 0;
  display: grid; grid-template-columns: auto 1fr auto;
  align-items: center; gap: 1.4rem;
  box-shadow: var(--shadow-md);
}
.porto-card .icon{
  width: 60px; height: 60px; border-radius: 14px;
  background: #fff; color: #001E50;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; box-shadow: 0 2px 8px rgba(0,0,0,.15);
}
.porto-card .icon svg{ width: 32px; height: 32px; }
.porto-card h3{ color: #fff; font-size: 1.3rem; margin-bottom: .4rem; }
.porto-card p{ color: #DDEEFF; font-size: .95rem; }
.porto-card .check{
  display: inline-flex; align-items: center; gap: .4rem;
  background: rgba(255,255,255,.15); padding: .25rem .7rem; border-radius: 999px;
  font-size: .8rem; font-weight: 700; margin-right: .4rem;
}
@media (max-width: 720px){
  .porto-card{ grid-template-columns: 1fr; text-align: center; }
  .porto-card .icon{ margin: 0 auto; }
}

/* ===================== CARROSSEL (Swiper customizado) ===================== */
.carrossel-section{ position: relative; }
.carrossel-wrap{
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.swiper{ width: 100%; height: 460px; }
.swiper-slide{ position: relative; overflow: hidden; }
.swiper-slide img{ width: 100%; height: 100%; object-fit: cover; display: block; }
.swiper-slide .slide-caption{
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 1.4rem 1.6rem;
  background: linear-gradient(0deg, rgba(0,0,0,.85) 0%, rgba(0,0,0,0) 100%);
  color: #fff;
}
.swiper-slide .slide-caption strong{
  display: block; font-size: 1.2rem; font-weight: 800; margin-bottom: .25rem;
  text-shadow: 0 1px 4px rgba(0,0,0,.6);
}
.swiper-slide .slide-caption span{
  font-size: .9rem; opacity: .9;
  text-shadow: 0 1px 4px rgba(0,0,0,.6);
}
/* Paginação (bolinhas) */
.swiper-pagination-bullet{ background: #fff; opacity: .5; }
.swiper-pagination-bullet-active{ background: var(--azul); opacity: 1; }
/* Setas */
.swiper-button-next, .swiper-button-prev{
  color: #fff; background: rgba(0,0,0,.35);
  width: 44px; height: 44px; border-radius: 50%;
  backdrop-filter: blur(6px);
}
.swiper-button-next::after, .swiper-button-prev::after{ font-size: 18px; font-weight: 900; }
.swiper-button-next:hover, .swiper-button-prev:hover{ background: var(--azul); }

@media (max-width: 720px){
  .swiper{ height: 320px; }
  .swiper-slide .slide-caption{ padding: 1rem 1.1rem; }
  .swiper-slide .slide-caption strong{ font-size: 1rem; }
  .swiper-slide .slide-caption span{ font-size: .8rem; }
  .swiper-button-next, .swiper-button-prev{ display: none; }
}

/* ===================== WHATSAPP FLUTUANTE ===================== */
.fab-whatsapp{
  position: fixed; right: 1.2rem; bottom: 1.2rem; z-index: 60;
  display: inline-flex; align-items: center; justify-content: center;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25D366; color: #fff; text-decoration: none;
  box-shadow: 0 6px 18px rgba(37,211,102,.45), 0 2px 6px rgba(0,0,0,.2);
  border: 0; cursor: pointer; transition: transform .15s, box-shadow .15s;
}
.fab-whatsapp:hover{ transform: scale(1.05); background:#1DA851; color:#fff; }
.fab-whatsapp svg{ width: 30px; height: 30px; fill: #fff; display:block; }
.fab-whatsapp::before{
  content: ""; position: absolute; inset: -6px;
  border-radius: 50%; border: 2px solid rgba(37,211,102,.5);
  animation: fab-pulse 2.4s ease-out infinite;
  pointer-events: none;
}
@keyframes fab-pulse{
  0%   { transform: scale(.9); opacity: .8; }
  80%  { transform: scale(1.5); opacity: 0; }
  100% { transform: scale(1.5); opacity: 0; }
}
@media (prefers-reduced-motion: reduce){
  .fab-whatsapp::before{ animation: none; }
}

/* ===================== RESPONSIVO ===================== */
@media (max-width: 960px) {
  .nav { gap: 1rem; }
  .nav a { font-size: .88rem; }
  .header .btn { display: none; }
  .hero__grid { grid-template-columns: 1fr; gap: 2rem; }
  .hero__photo img { height: 280px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .form { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  /* Menu vira hamburger */
  .header__inner { padding: .5rem 0; gap: .6rem; }
  .nav-toggle { display: inline-flex; }
  .nav {
    position: fixed; top: 60px; left: 0; right: 0;
    background: var(--branco); flex-direction: column;
    padding: 1.2rem 1.25rem 1.5rem;
    border-bottom: 1px solid var(--cinza-100);
    box-shadow: var(--shadow-md);
    transform: translateY(-150%);
    transition: transform .25s ease;
    z-index: 49; align-items: stretch; gap: 0;
  }
  .nav.is-open { transform: translateY(0); }
  .nav a { padding: .9rem 0; font-size: 1rem; border-bottom: 1px solid var(--cinza-100); }
  .nav a:last-child { border-bottom: 0; }
  .nav a.is-active::after { display: none; }
  .nav a.is-active { color: var(--azul); }

  /* Logo bem menor no mobile para não ficar pesado no cabeçalho fixo */
  .logo img { height: 36px; max-width: 180px; object-fit: contain; }
  .logo__text strong { font-size: 1.15rem; }
  .logo__text span { font-size: .6rem; }

  /* Tipografia responsiva */
  h1 { font-size: clamp(1.7rem, 7vw, 2.3rem); }
  h2 { font-size: 1.4rem; }
  section { padding: 2.5rem 0; }
  .container { padding: 0 1rem; }

  /* Botão agendar agora centralizado */
  .hero__cta { align-items: center; justify-content: center; }
  .hero__cta .btn { text-align: center; justify-content: center; }
  .cta-bar .btn { text-align: center; justify-content: center; }
  .porto-card a.btn { margin: .8rem auto 0; display: flex; justify-content: center; }

  /* Footer em 1 coluna */
  .footer__grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer__bottom { flex-direction: column; gap: .4rem; text-align: center; font-size: .8rem; }
}

@media (max-width: 480px) {
  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__cta .btn { justify-content: center; padding: 1rem; font-size: 1rem; }
  .btn { padding: .95rem 1.2rem; font-size: .95rem; }
  .gallery { grid-template-columns: 1fr 1fr; }
  .gallery img { aspect-ratio: 1/1; }
  .services-grid, .diffs, .units, .posts { gap: 1rem; }
}
