/* ===== Apex Soluções Estratégicas — Design System ===== */

:root {
  --black: #050505;
  --black-soft: #100e0e;
  --red: #FF0000;
  --red-deep: #A00909;
  --red-intense: #F80000;
  --white: #EFEDED;

  --font-display: 'Be Vietnam Pro', sans-serif;
  --font-body: 'Be Vietnam Pro', sans-serif;

  --cut: 14px;
  --container: 1180px;
  --ease: cubic-bezier(.16,.8,.24,1);
}

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

html {
  scrollbar-color: var(--red) var(--black);
  scrollbar-width: thin;
}
::-webkit-scrollbar { width: 11px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb {
  background: var(--red);
  border: 2px solid var(--black);
  border-radius: 6px;
}
::-webkit-scrollbar-thumb:hover { background: var(--red-intense); }

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.5;
  overflow-x: hidden;
}

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

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

.accent {
  color: var(--red);
  background: linear-gradient(90deg, var(--red-deep) 0%, var(--red) 50%, var(--red-intense) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.eyebrow {
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--red);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(21px, 2.6vw, 32px);
  line-height: 1.25;
  letter-spacing: -0.005em;
  margin-bottom: 32px;
}

.section { position: relative; padding: 120px 0; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 15px;
  text-decoration: none;
  padding: 16px 30px;
  border-radius: 10px;
  transition: transform .25s var(--ease), background .25s var(--ease), box-shadow .25s var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: var(--red);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--red-intense);
  box-shadow: 0 0 28px rgba(255,0,0,.45);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(239,237,237,.5);
}
.btn-outline:hover {
  border-color: var(--red);
  color: var(--red);
  transform: translateY(-2px);
}
.btn-large { font-size: 17px; padding: 20px 44px; }

.logo { display: flex; align-items: center; text-decoration: none; color: var(--white); }
.hero-logo { justify-content: center; margin-bottom: 28px; }
.logo-img { height: 50px; width: auto; display: block; }
.footer-logo .logo-img { height: 68px; }

/* ===== Hero ===== */
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.hero-bg { position: absolute; inset: 0; overflow: hidden; z-index: 0; will-change: opacity; }
.hero-video-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-video-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(5,5,5,.65) 0%, rgba(5,5,5,.52) 45%, rgba(5,5,5,.88) 100%);
}
.hero-glow {
  position: absolute;
  top: 50%; left: 50%;
  width: 900px; height: 900px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(160,9,9,.35) 0%, rgba(25,24,24,0) 65%);
  mix-blend-mode: screen;
}
.hero-content { position: relative; z-index: 1; max-width: 900px; padding: 0 24px; }
.hero-headline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 4.4vw, 54px);
  line-height: 1.18;
  letter-spacing: -0.01em;
}
.hero-sub {
  margin: 28px auto 0;
  max-width: 560px;
  font-size: 17px;
  font-weight: 300;
  color: rgba(239,237,237,.78);
}
.hero-ctas { display: flex; gap: 16px; justify-content: center; margin-top: 40px; flex-wrap: wrap; }

.scroll-cue {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  width: 1px; height: 54px; background: rgba(239,237,237,.25);
  overflow: hidden;
}
.scroll-cue span {
  position: absolute; top: -54px; left: 0; width: 100%; height: 54px;
  background: var(--red);
  animation: scrollCue 2.2s ease-in-out infinite;
}
@keyframes scrollCue {
  0% { top: -54px; }
  60% { top: 54px; }
  100% { top: 54px; }
}

/* ===== Reveal on scroll ===== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* ===== Problema / Iceberg (glass scene) ===== */
.problema { overflow: hidden; }
.problema .eyebrow, .problema .section-title {
  text-align: center;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.problema-video-bg {
  position: absolute;
  top: 0; left: 50%;
  width: 100vw; height: 100%;
  transform: translateX(-50%);
  object-fit: cover;
  z-index: 0;
}
.problema-video-overlay {
  position: absolute;
  top: 0; left: 50%;
  width: 100vw; height: 100%;
  transform: translateX(-50%);
  background: linear-gradient(180deg, rgba(16,14,14,.55) 0%, rgba(16,14,14,.35) 45%, rgba(5,5,5,.97) 100%);
  z-index: 1;
}
.problema-fade {
  position: absolute;
  left: 50%; bottom: 0;
  width: 100vw; height: 380px;
  transform: translateX(-50%);
  z-index: 1;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 22% 100%, rgba(255,0,0,.16) 0%, transparent 50%),
    radial-gradient(circle at 82% 85%, rgba(160,9,9,.14) 0%, transparent 45%),
    linear-gradient(45deg, transparent 49%, rgba(239,237,237,.035) 49.6%, rgba(239,237,237,.035) 50.4%, transparent 51%),
    linear-gradient(-45deg, transparent 49%, rgba(239,237,237,.035) 49.6%, rgba(239,237,237,.035) 50.4%, transparent 51%),
    linear-gradient(180deg, transparent 0%, var(--black) 92%);
  background-size: auto, auto, 90px 90px, 90px 90px, 100% 100%;
}
.problema .container { position: relative; z-index: 2; }

.iceberg-scene {
  position: relative;
  margin-top: 24px;
  min-height: 640px;
  overflow: hidden;
}

.iceberg-seal {
  position: absolute; top: 50%; left: 50%;
  width: 140px; height: 140px;
  transform: translate(-50%, -50%);
  display: flex; align-items: center; justify-content: center;
  color: rgba(239,237,237,.55);
  z-index: 2;
}
.iceberg-seal-ring {
  position: absolute; inset: 0;
  text-transform: uppercase; font-family: var(--font-body);
  animation: sealSpin 24s linear infinite;
  z-index: 0;
}
.iceberg-seal-glass {
  position: absolute;
  width: 86px; height: 86px;
  border-radius: 50%;
  background: rgba(239,237,237,.1);
  border: 1px solid rgba(239,237,237,.28);
  backdrop-filter: blur(8px) saturate(150%);
  -webkit-backdrop-filter: blur(8px) saturate(150%);
  box-shadow: inset 0 0 18px rgba(255,255,255,.1), 0 8px 22px rgba(0,0,0,.4);
  z-index: 1;
}
.iceberg-seal-mark {
  position: absolute;
  width: 46px; height: auto;
  filter: drop-shadow(0 0 10px rgba(255,0,0,.55));
  animation: sealSpin 16s linear infinite;
  z-index: 2;
}
@keyframes sealSpin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

.glass-pill {
  position: absolute;
  left: var(--x); top: var(--y);
  z-index: 3;
  font-family: var(--font-body); font-weight: 500; font-size: 13px;
  white-space: nowrap;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(239,237,237,.08);
  border: 1px solid rgba(239,237,237,.22);
  backdrop-filter: blur(10px) saturate(140%);
  -webkit-backdrop-filter: blur(10px) saturate(140%);
  color: rgba(239,237,237,.55);
  transform: translateX(-50%);
  animation: pillFloat 6s ease-in-out infinite;
  animation-delay: var(--delay);
}
.pill-hidden {
  color: var(--white);
  font-weight: 700;
  background: rgba(255,0,0,.1);
  border-color: rgba(255,0,0,.4);
  box-shadow: 0 8px 24px rgba(255,0,0,.12);
}
@keyframes pillFloat {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-8px); }
}

@media (max-width: 900px) {
  .iceberg-scene { min-height: 780px; }
  .glass-pill {
    font-size: 11.5px; padding: 8px 12px;
    max-width: 44%;
    white-space: normal;
    text-align: center;
    line-height: 1.25;
  }
  .iceberg-seal { width: 84px; height: 84px; }
}
@media (max-width: 600px) {
  .iceberg-scene { min-height: 940px; }
}

/* ===== Jornada (glass cards over video) ===== */
.jornada { position: relative; overflow: hidden; }
.jornada-video-bg {
  position: absolute;
  top: 0; left: 50%;
  width: 100vw; height: 100%;
  transform: translateX(-50%);
  object-fit: cover;
  z-index: 0;
}
.jornada-video-overlay {
  position: absolute;
  top: 0; left: 50%;
  width: 100vw; height: 100%;
  transform: translateX(-50%);
  background: linear-gradient(180deg, rgba(5,5,5,.72) 0%, rgba(5,5,5,.6) 45%, rgba(5,5,5,.88) 100%);
  z-index: 1;
}
.jornada .container { position: relative; z-index: 2; }

.jornada-track {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.jornada-card {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  gap: 12px;
  padding: 30px 14px;
  background: rgba(239,237,237,.07);
  border: 1px solid rgba(239,237,237,.18);
  backdrop-filter: blur(14px) saturate(150%);
  -webkit-backdrop-filter: blur(14px) saturate(150%);
  border-radius: 18px;
  transition: transform .25s var(--ease), border-color .25s var(--ease);
}
.jornada-card:hover { transform: translateY(-4px); border-color: rgba(255,0,0,.4); }
.jornada-card-icon {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(255,0,0,.12);
  border: 1px solid rgba(255,0,0,.35);
  color: var(--red);
}
.jornada-card-icon svg { width: 22px; height: 22px; }
.jornada-card-num {
  font-family: var(--font-display); font-weight: 700; font-size: 11px;
  color: rgba(239,237,237,.4);
}
.jornada-card-name {
  font-family: var(--font-body); font-weight: 600; font-size: 13px;
  text-transform: uppercase; letter-spacing: .04em;
}
.channels { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 56px; }
.channel-chip {
  font-size: 12px; font-weight: 500; letter-spacing: .08em; text-transform: uppercase;
  padding: 10px 18px;
  border: 1px solid rgba(239,237,237,.25);
  color: rgba(239,237,237,.75);
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
}

/* ===== Serviços (glass cards) ===== */
.servicos-grid-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 72px 32px;
  margin-top: 56px;
}
.servico-glass-card { position: relative; }

.servico-glass-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--black-soft);
  border: 1px solid rgba(239,237,237,.16);
  border-radius: 18px;
  margin: 0 24px -56px;
  box-shadow: 0 24px 44px rgba(0,0,0,.5);
  z-index: 2;
}
.servico-glass-media:not(.has-content) { border: 1.5px dashed rgba(239,237,237,.22); }
.servico-glass-media img,
.servico-glass-media iframe {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  border: none;
}
.servico-glass-media.mockup {
  background: none;
  border: none;
  box-shadow: none;
  overflow: visible;
}
.servico-glass-media.mockup img {
  object-fit: contain;
  padding: 0;
  filter: drop-shadow(0 24px 28px rgba(0,0,0,.55));
}
.servico-glass-media:not(.has-content)::before {
  content: '';
  position: absolute; top: 44%; left: 50%; transform: translate(-50%, -50%);
  width: 28px; height: 21px;
  border: 1.5px solid rgba(239,237,237,.3);
  border-radius: 2px;
}
.servico-glass-media:not(.has-content)::after {
  content: 'Imagem aguardando';
  position: absolute; top: 58%; left: 50%; transform: translateX(-50%);
  width: 100%;
  text-align: center; padding: 0 12px;
  font-family: var(--font-body); font-size: 11.5px; letter-spacing: .03em;
  color: rgba(239,237,237,.4);
}

.servico-glass-body {
  position: relative;
  z-index: 1;
  background: rgba(239,237,237,.06);
  border: 1px solid rgba(239,237,237,.14);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  border-radius: 22px;
  padding: 72px 26px 30px;
}
.servico-glass-num {
  display: block;
  font-family: var(--font-display); font-weight: 700;
  font-size: 13px; color: var(--red);
  margin-bottom: 10px;
}
.servico-glass-title {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.25;
  margin-bottom: 12px;
}
.servico-glass-desc {
  font-size: 14.5px; line-height: 1.6;
  color: rgba(239,237,237,.75);
}


/* ===== Velocidade / Selo ===== */
.velocidade { padding: 90px 0; text-align: center; }
.velocidade-badge {
  display: inline-block;
  font-family: var(--font-display); font-weight: 800;
  text-transform: uppercase; font-size: clamp(16px, 2.4vw, 24px);
  letter-spacing: .01em;
  padding: 20px 36px;
  border: 1px solid var(--red);
  clip-path: polygon(var(--cut) 0, 100% 0, 100% calc(100% - var(--cut)), calc(100% - var(--cut)) 100%, 0 100%, 0 var(--cut));
}

/* ===== Provas / Cases ===== */
.cases-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.case-card {
  position: relative;
  background: var(--black-soft);
  border: 1px solid rgba(239,237,237,.1);
  padding: 32px 26px;
  clip-path: polygon(var(--cut) 0, 100% 0, 100% 100%, 0 100%);
  display: flex; flex-direction: column; gap: 8px;
  overflow: hidden;
}
.case-card-photo::before {
  content: '';
  position: absolute; inset: 0;
  background-image: var(--case-bg);
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.case-card-photo::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(16,14,14,.74) 0%, rgba(16,14,14,.62) 30%, rgba(16,14,14,.9) 68%, rgba(16,14,14,.97) 100%);
  z-index: 0;
}
.case-card-photo > * { position: relative; z-index: 1; }
.case-card-lt2fit::before { background-position: center 28%; }
.case-card-aquavida::before { background-position: center 18%; }
.case-card-brilhar::before { background-position: center 15%; }
.case-tag {
  align-self: flex-start;
  font-size: 11px; font-weight: 500; letter-spacing: .08em; text-transform: uppercase;
  color: var(--red);
  border: 1px solid rgba(255,0,0,.4);
  padding: 5px 10px;
  margin-bottom: 10px;
}
.case-number {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(30px, 3.4vw, 40px);
  line-height: 1;
}
.case-context { font-size: 13px; color: rgba(239,237,237,.5); margin-bottom: 14px; }
.case-client { font-family: var(--font-display); font-weight: 700; font-size: 18px; text-transform: uppercase; }
.case-segment { font-size: 12px; color: rgba(239,237,237,.5); margin-bottom: 10px; }
.case-quote { font-size: 14px; color: rgba(239,237,237,.8); line-height: 1.55; }

.trust-bar { margin-top: 64px; text-align: center; }
.trust-bar-heading {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(17px, 1.8vw, 21px);
  line-height: 1.4;
  color: rgba(239,237,237,.85);
  max-width: 520px;
  margin: 0 auto 18px;
}
.trust-bar-label {
  font-size: 12px; letter-spacing: .12em; text-transform: uppercase;
  color: rgba(239,237,237,.45); margin-bottom: 24px;
}
.trust-bar-logos { display: flex; justify-content: center; align-items: center; flex-wrap: wrap; row-gap: 18px; }
.trust-logo-chip {
  display: flex; align-items: center; justify-content: center;
  width: 76px; height: 76px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--black);
  padding: 12px;
  margin-left: -20px;
  position: relative;
  opacity: 0;
  transform: translateY(18px) scale(.85);
  transition: opacity .5s var(--ease), transform .5s var(--ease), z-index 0s;
  transition-delay: calc(var(--i) * 70ms);
}
.trust-logo-chip:first-child { margin-left: 0; }
.trust-logo-chip.in-view { opacity: 1; transform: translateY(0) scale(1); }
.trust-logo-chip:hover { z-index: 5; transform: translateY(-6px) scale(1.08); }
.trust-logo-chip img {
  max-width: 100%; max-height: 100%;
  width: auto; height: auto;
  object-fit: contain;
  border-radius: 50%;
}

/* ===== Depoimentos (prints de clientes) ===== */
.depoimentos .eyebrow, .depoimentos .section-title {
  text-align: center;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.depoimentos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.depoimento-slot {
  position: relative;
  aspect-ratio: 9 / 17;
  background: var(--black-soft);
  overflow: hidden;
  opacity: 0;
  transform: translateY(40px) scale(.94);
  transition: opacity .55s var(--ease), transform .55s var(--ease);
  transition-delay: calc(var(--i) * 80ms);
}
.depoimento-slot.in-view { opacity: 1; transform: translateY(0) scale(1); }
.depoimento-slot:hover { transform: translateY(-4px) scale(1); transition-delay: 0s; }
.depoimento-slot img,
.depoimento-slot video {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.depoimento-slot-video video { background: var(--black); }
.depoimento-slot--empty {
  border: 1.5px dashed rgba(239,237,237,.22);
}
.depoimento-slot--empty::before {
  content: '';
  position: absolute; top: 44%; left: 50%; transform: translate(-50%, -50%);
  width: 26px; height: 20px;
  border: 1.5px solid rgba(239,237,237,.3);
  border-radius: 2px;
}
.depoimento-slot--empty::after {
  content: 'Print aguardando';
  position: absolute; top: 58%; left: 50%; transform: translateX(-50%);
  width: 100%;
  text-align: center; padding: 0 12px;
  font-family: var(--font-body); font-size: 11.5px; letter-spacing: .03em;
  color: rgba(239,237,237,.4);
}

/* ===== Fundador / Quem está por trás ===== */
.fundador-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
}
.fundador-photo {
  position: relative;
  aspect-ratio: 1672 / 941;
  width: 100%;
  overflow: hidden;
  background: var(--black-soft);
}
.fundador-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.fundador-role {
  font-family: var(--font-body); font-weight: 500; font-size: 13px;
  text-transform: uppercase; letter-spacing: .08em;
  color: var(--red);
  margin-bottom: 22px;
}
.fundador-bio {
  font-size: 16px; line-height: 1.7;
  color: rgba(239,237,237,.8);
  max-width: 46ch;
}
.fundador-bio + .fundador-bio { margin-top: 16px; }

/* ===== Footer ===== */
.footer {
  padding: 48px 32px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 20px;
  border-top: 1px solid rgba(239,237,237,.1);
}
.footer-logo { display: flex; align-items: center; gap: 10px; }
.footer-copy { font-size: 12px; color: rgba(239,237,237,.4); }

/* ===== WhatsApp Widget (floating) ===== */
.whatsapp-widget {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 90;
  display: flex; align-items: center; gap: 12px;
  padding: 11px 13px;
  background: rgba(5,5,5,.7);
  border: 1px solid rgba(239,237,237,.14);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  clip-path: polygon(var(--cut) 0, 100% 0, 100% calc(100% - var(--cut)), calc(100% - var(--cut)) 100%, 0 100%, 0 var(--cut));
  text-decoration: none;
  color: var(--white);
  box-shadow: 0 10px 34px rgba(0,0,0,.5);
  transition: transform .25s var(--ease), border-color .25s var(--ease);
}
.whatsapp-widget:hover { transform: translateY(-3px); border-color: rgba(255,0,0,.5); }
.whatsapp-widget-mark {
  width: 26px; height: auto; flex-shrink: 0;
  filter: drop-shadow(0 0 6px rgba(255,0,0,.55));
}
.whatsapp-widget-text { display: flex; flex-direction: column; gap: 2px; }
.whatsapp-widget-text strong {
  font-family: var(--font-display); font-weight: 700; font-size: 13px;
  text-transform: uppercase; letter-spacing: .01em; color: var(--white);
}
.whatsapp-widget-text small {
  font-family: var(--font-body); font-weight: 300; font-size: 11px;
  color: rgba(239,237,237,.55);
}
.whatsapp-widget-cta {
  display: flex; align-items: center; gap: 7px;
  font-family: var(--font-body); font-weight: 500; font-size: 12px;
  background: var(--red); color: var(--white);
  padding: 10px 16px;
  border-radius: 8px;
  white-space: nowrap;
  transition: background .25s var(--ease);
}
.whatsapp-widget:hover .whatsapp-widget-cta { background: var(--red-intense); }

@media (max-width: 600px) {
  .whatsapp-widget-text { display: none; }
  .whatsapp-widget { padding: 9px; gap: 9px; bottom: 16px; right: 16px; }
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .cases-grid { grid-template-columns: 1fr; }
  .jornada-track { grid-template-columns: repeat(3, 1fr); }
  .depoimentos-grid { grid-template-columns: repeat(2, 1fr); }
  .fundador-inner { grid-template-columns: 1fr; gap: 32px; }
  .servicos-grid-cards { grid-template-columns: 1fr; gap: 64px; }
}

@media (max-width: 600px) {
  .section { padding: 80px 0; }
  .container { padding: 0 20px; }
  .hero-ctas { flex-direction: column; width: 100%; }
  .hero-ctas .btn { width: 100%; }
  .jornada-track { grid-template-columns: repeat(2, 1fr); }
  .depoimentos-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}
