:root {
  --bg: #010101;
  --surface: #311722;
  --surface-soft: #505050;
  --text: #fdfdfd;
  --text-muted: #d9d9d9;
  --primary: #f4020e;
  --primary-strong: #a80007;
  --accent: #f4020e;
  --border: #505050;
  --bonus-accent: #f4020e;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --container: 1120px;
  --shadow-soft: 0 14px 38px rgba(0, 0, 0, 0.22);
  --shadow-card: 0 16px 50px rgba(244, 2, 14, 0.2);
  --glow: 0 0 0 1px rgba(244, 2, 14, 0.4), 0 0 22px rgba(244, 2, 14, 0.45),
    0 0 60px rgba(244, 2, 14, 0.2);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: radial-gradient(circle at top right, #311722 0%, var(--bg) 56%);
  color: var(--text);
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  line-height: 1.5;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.section {
  padding: 5rem 0;
}

.section-title {
  margin: 0 0 1rem;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  line-height: 1.2;
}

.section-subtitle {
  margin: 0;
  max-width: 760px;
  color: var(--text-muted);
}

.section-heading {
  margin-bottom: 2rem;
}

.card {
  background: linear-gradient(160deg, rgba(26, 31, 54, 0.86), rgba(19, 23, 41, 0.9));
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

.grid {
  display: grid;
  gap: 1rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border: 1px solid #505050;
  background: rgba(49, 23, 34, 0.8);
  border-radius: 999px;
  color: #fdfdfd;
  font-size: 0.83rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 0.42rem 0.9rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 1px solid transparent;
  border-radius: 10px;
  padding: 0.88rem 1.3rem;
  font-size: 0.95rem;
  font-weight: 800;
  transition: 0.2s ease;
  cursor: pointer;
}

.btn-small {
  padding: 0.65rem 1rem;
  font-size: 0.86rem;
  font-weight: 800;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-strong));
  color: #fff;
  box-shadow: var(--shadow-card);
}

.btn-outline {
  border-color: #505050;
  background: transparent;
  color: #fdfdfd;
}

.btn-outline:hover {
  border-color: #f4020e;
  background: rgba(49, 23, 34, 0.95);
}

.btn-glow {
  box-shadow: var(--shadow-card), var(--glow);
}

.btn-glow:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
  box-shadow: var(--shadow-card), 0 0 0 1px rgba(111, 125, 255, 0.42), 0 0 28px rgba(111, 125, 255, 0.7),
    0 0 82px rgba(0, 212, 169, 0.22);
}

.center {
  text-align: center;
}

.topbar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 20;
  background: transparent;
  border: 0;
  backdrop-filter: none;
}

.topbar-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
}

.logo-slot {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.logo-mark {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: radial-gradient(circle at 30% 30%, rgba(244, 2, 14, 0.95), rgba(49, 23, 34, 0.9));
  box-shadow: 0 10px 24px rgba(244, 2, 14, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.logo-text {
  text-transform: uppercase;
  font-size: 0.95rem;
}

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-bg-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.95) contrast(1.05);
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 25%, rgba(244, 2, 14, 0.2), rgba(244, 2, 14, 0)),
    linear-gradient(180deg, rgba(8, 10, 18, 0.35), rgba(8, 10, 18, 0.92));
  z-index: 1;
}

.hero-center {
  padding: 5.5rem 0 4rem;
  text-align: center;
  position: relative;
  z-index: 2;
  max-width: 920px;
}

.hero-title {
  margin: 1rem 0 0rem;
  color: #500e0e;
  font-size: clamp(2.2rem, 6vw, 5rem);
  line-height: 1.0;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}

.hero-kicker {
  margin-top: 0.0rem;
  margin-bottom: 0.0rem;
  color: #500e0e;
  font-size: clamp(1.5rem, 2.2vw, 2.15rem);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-desc-strong {
  margin-top: 0.7rem;
  color: #ffffffc4;
  font-weight: 800;
}

.hero-desc {
  margin: 0.2rem auto 0;
  max-width: 720px;
  letter-spacing: -0.05em;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
}

.hero-cta {
  margin-top: 1.8rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.hero-cta-center {
  justify-content: center;
}

.hero-social-row {
  margin-top: 1.6rem;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  color: rgba(247, 249, 255, 0.82);
}

.hero-social-item {
  display: grid;
  gap: 0.35rem;
  justify-items: center;
}

.hero-social-strong {
  font-weight: 800;
  font-size: 0.95rem;
}

.hero-social-sep {
  opacity: 0.55;
}

.hero-social-note {
  font-size: 0.85rem;
  color: rgba(217, 217, 217, 0.95);
}

.btn-inline-hero {
  padding: 0.65rem 1rem;
  font-size: 0.85rem;
}

.stars {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* CAROUSELS */
.social-proof-strip {
  padding: 1.2rem 0;
  border-top: 1px solid rgba(80, 80, 80, 0.45);
  border-bottom: 1px solid rgba(80, 80, 80, 0.45);
  background: rgba(8, 10, 18, 0.65);
}

.aggregator-section {
  padding-top: 4.2rem;
  padding-bottom: 4.2rem;
}

.carousel {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}

.aggregator-section .carousel {
  mask-image: none;
}

.carousel-track {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 0.2rem 0;
}

.carousel-track::-webkit-scrollbar {
  display: none;
}

.mini-slide-card {
  flex: 0 0 auto;
  width: 148px;
  display: grid;
  gap: 0.35rem;
  justify-items: center;
  scroll-snap-align: start;
}

.mini-slide-card span {
  font-size: 0.72rem;
  color: #d9d9d9;
  text-align: center;
}

.mini-slide-media {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 14px;
  border: 1px solid #505050;
  background:
    linear-gradient(180deg, rgba(244, 2, 14, 0.18), rgba(1, 1, 1, 0.5)),
    linear-gradient(160deg, #311722, #010101);
}

.mini-slide-media.alt-1 {
  background:
    linear-gradient(180deg, rgba(217, 217, 217, 0.18), rgba(1, 1, 1, 0.5)),
    linear-gradient(160deg, #311722, #010101);
}

.mini-slide-media.alt-2 {
  background:
    linear-gradient(180deg, rgba(80, 80, 80, 0.28), rgba(1, 1, 1, 0.5)),
    linear-gradient(160deg, #311722, #010101);
}

.mini-slide-media.alt-3 {
  background:
    linear-gradient(180deg, rgba(244, 2, 14, 0.12), rgba(1, 1, 1, 0.62)),
    linear-gradient(160deg, #311722, #010101);
}

/* AGREGADOR (SECTION 2) */
.links-track {
  align-items: flex-start;
  gap: 2rem;
  padding: 0.5rem 0;
}

.aggregator-grid {
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 220px;
  gap: 1.1rem 1.2rem;
  align-items: start;
}

.aggregator-grid .link-square {
  width: 100%;
  max-width: none;
  height: 100%;
}

.aggregator-grid .link-square.tall .link-square-media {
  aspect-ratio: auto;
}

.aggregator-grid .link-square.medium .link-square-media {
  aspect-ratio: auto;
}

.aggregator-grid .link-square.large .link-square-media {
  aspect-ratio: auto;
}

.link-copy {
  border: 1px solid rgba(80, 80, 80, 0.55);
  border-radius: 12px;
  background: rgba(1, 1, 1, 0.55);
  height: 100%;
  padding: 1rem;
  display: grid;
  align-content: center;
  gap: 0.5rem;
}

.link-copy strong {
  font-size: 1.05rem;
  color: #fdfdfd;
}

.link-copy p {
  margin: 0;
  color: #d9d9d9;
  font-size: 0.9rem;
}

.link-square {
  flex: 0 0 auto;
  width: 100%;
  border: 1px solid rgba(80, 80, 80, 0.85);
  border-radius: 22px;
  background: rgba(1, 1, 1, 0.8);
  padding: 0.7rem;
  display: grid;
  gap: 0.55rem;
  color: #fdfdfd;
  scroll-snap-align: start;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.link-square:hover {
  transform: translateY(-3px);
  border-color: rgba(244, 2, 14, 0.9);
}

.link-square strong {
  font-size: 1rem;
}

.link-square span {
  color: #d9d9d9;
  font-size: 0.85rem;
}

.link-square-media {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 16px;
  border: 1px solid rgba(80, 80, 80, 0.75);
  background:
    linear-gradient(180deg, rgba(244, 2, 14, 0.14), rgba(1, 1, 1, 0.6)),
    linear-gradient(160deg, #311722, #010101);
}

.link-square-media.alt-1 {
  background:
    linear-gradient(180deg, rgba(217, 217, 217, 0.12), rgba(1, 1, 1, 0.64)),
    linear-gradient(160deg, #311722, #010101);
}

.link-square-media.alt-2 {
  background:
    linear-gradient(180deg, rgba(80, 80, 80, 0.2), rgba(1, 1, 1, 0.64)),
    linear-gradient(160deg, #311722, #010101);
}

.link-square-media.alt-3 {
  background:
    linear-gradient(180deg, rgba(244, 2, 14, 0.22), rgba(1, 1, 1, 0.62)),
    linear-gradient(160deg, #311722, #010101);
}

.link-square-media.alt-4 {
  background:
    linear-gradient(180deg, rgba(217, 217, 217, 0.08), rgba(1, 1, 1, 0.6)),
    linear-gradient(160deg, #311722, #010101);
}

.link-square-media.alt-5 {
  background:
    linear-gradient(180deg, rgba(244, 2, 14, 0.1), rgba(1, 1, 1, 0.68)),
    linear-gradient(160deg, #311722, #010101);
}

.link-square-media.alt-6 {
  background:
    linear-gradient(180deg, rgba(80, 80, 80, 0.26), rgba(1, 1, 1, 0.68)),
    linear-gradient(160deg, #311722, #010101);
}

.aggregator-grid .link-square .link-square-media {
  height: 100%;
}

.aggregator-grid .link-square.tall .link-square-media,
.aggregator-grid .link-square.medium .link-square-media,
.aggregator-grid .link-square.large .link-square-media {
  aspect-ratio: auto;
}

/* BONUS + PARCEIROS RESTAURADOS */
.bonus-band {
  padding: 3rem 0;
  background: #010101;
  border-top: 1px solid rgba(80, 80, 80, 0.45);
  border-bottom: 1px solid rgba(80, 80, 80, 0.45);
}

.bonus-band-wrap {
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 0.95rem;
}

.bonus-title {
  margin: 0;
  color: #f4020e;
  font-size: clamp(2.2rem, 6.2vw, 4rem);
  line-height: 0.92;
  letter-spacing: 0.0em;
  font-weight: 1000;
}

.bonus-subtitle {
  margin: 0;
  color: #d9d9d9;
  font-size: clamp(1.2rem, 2.5vw, 2.2rem);
  font-weight: 800;
}

.bonus-cta {
  margin-top: 0.3rem;
  background: #010101;
  color: #f4020e;
  border: 1px solid rgba(244, 2, 14, 0.5);
  box-shadow: 0 0 0 1px rgba(244, 2, 14, 0.22), 0 0 26px rgba(244, 2, 14, 0.35);
}

.partner-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.partners-track {
  align-items: stretch;
  gap: 1rem;
  padding: 0.35rem 0;
  overflow-x: hidden; /* evita “miragem” das cópias no swipe */
  scroll-snap-type: none; /* snap brigava com o auto-scroll */
  touch-action: pan-y; /* bloqueia arraste horizontal no mobile */
}

.partner-card {
  flex: 0 0 auto;
  width: min(360px, 86vw);
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(80, 80, 80, 0.8);
  background: #0a0c16;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.3);
}

.partner-media {
  position: relative;
  min-height: 330px;
  background:
    linear-gradient(180deg, rgba(244, 2, 14, 0.12), rgba(1, 1, 1, 0.75)),
    linear-gradient(160deg, #311722, #010101);
}

.partner-icon {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 26px;
  height: 26px;
  border-radius: 6px;
  border: 2px solid #a5ff00;
  box-shadow: 0 0 0 1px rgba(165, 255, 0, 0.18), 0 0 18px rgba(165, 255, 0, 0.18);
}

.partner-overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1.2rem;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.9) 45%);
  display: grid;
  gap: 0.45rem;
}

.partner-overlay h3 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 900;
}

.partner-overlay p {
  margin: 0;
  color: #d9d9d9;
  font-size: 0.92rem;
}

.chip-row {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.chip {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.62rem;
  border-radius: 8px;
  border: 1px solid rgba(80, 80, 80, 0.8);
  background: rgba(1, 1, 1, 0.55);
  color: #d9d9d9;
  font-size: 0.78rem;
  font-weight: 700;
}

.chip-accent {
  border-color: rgba(165, 255, 0, 0.42);
  color: #b8ff49;
}

/* PRODUCTS */
.product-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.product-card {
  padding: 1.6rem;
  position: relative;
}

.product-card h3 {
  margin: 0 0 0.6rem;
  font-size: 1.25rem;
}

.tier {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
  font-weight: 900;
}

.tier span {
  font-size: 0.9rem;
  font-weight: 800;
  color: #d9d9d9;
}

.tier-bronze {
  color: #cd7f32;
  text-shadow: 0 0 18px rgba(205, 127, 50, 0.45);
}

.tier-prata {
  color: #d9d9d9;
  text-shadow: 0 0 18px rgba(217, 217, 217, 0.3);
}

.tier-ouro {
  color: #d4af37;
  text-shadow: 0 0 18px rgba(212, 175, 55, 0.45);
}

.product-price {
  margin: 0;
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: 0.01em;
}

.product-price small {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-weight: 700;
}

.product-desc {
  margin: 0.9rem 0 1.4rem;
  color: rgba(167, 175, 204, 0.95);
}

.product-bonus {
  margin-top: -0.6rem;
  color: rgba(217, 217, 217, 0.95);
}

.product-idea {
  margin-top: -0.8rem;
  color: #fdfdfd;
  font-weight: 800;
}

.product-featured {
  border-color: rgba(244, 2, 14, 0.65);
}

.popular-label {
  position: absolute;
  top: -11px;
  right: 14px;
  background: var(--accent);
  color: #07131b;
  font-size: 0.77rem;
  font-weight: 900;
  border-radius: 999px;
  padding: 0.25rem 0.65rem;
}

/* SECTION METODO */
.metodo-section {
  padding-top: 0rem;
}

.metodo-section .container {
  width: max(100% - 0rem, var(--container));
  margin-inline: auto;
  padding-inline: 0;
}

.metodo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid rgba(80, 80, 80, 0.7);
  overflow: hidden;
  background: #010101;
  margin-inline: 0;
}

.metodo-media {
  min-height: 480px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 30% 30%, rgba(80, 80, 80, 0.22), rgba(1, 1, 1, 0.25)),
    linear-gradient(150deg, #1f1f1f, #070707);
}

.metodo-copy {
  padding: 2.6rem;
  display: grid;
  align-content: center;
}

.metodo-copy h2 {
  margin: 0 0 1.2rem;
  font-size: clamp(1.8rem, 3.2vw, 2.8rem);
  line-height: 1.1;
  color: #fdfdfd;
}

.metodo-copy h2 span {
  color: #f4020e;
}

.metodo-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.8rem;
}

.metodo-list li {
  color: #d9d9d9;
  font-size: 1rem;
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
}

.metodo-list li::before {
  content: "✦";
  color: #f4020e;
  font-size: 0.9rem;
  margin-top: 0.1rem;
}

/* SOCIAL PROOF CARDS */
.cards-carousel {
  margin-top: 1.2rem;
}

.cards-track {
  padding: 0.4rem 0;
}

.review-visual-card {
  flex: 0 0 auto;
  width: min(340px, 86vw);
  height: 560px;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(43, 50, 85, 0.9);
  background: #0a0c16;
  position: relative;
  scroll-snap-align: start;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
}

.review-photo {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.before-after {
  background: linear-gradient(160deg, #e9d6b7, #9d9d9d);
}

.before-after.after {
  background: linear-gradient(160deg, #d7d7d7, #b1b1b1);
}

.review-overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1.2rem 1.2rem 1.35rem;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.86) 28%, rgba(0, 0, 0, 0.93));
  display: grid;
  gap: 0.8rem;
}

.review-top {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.review-score {
  font-weight: 900;
  color: rgba(247, 249, 255, 0.95);
}

.stars.small svg {
  transform: scale(0.78);
  transform-origin: left center;
}

.review-quote {
  margin: 0;
  font-size: 1.25rem;
  line-height: 1.25;
  font-weight: 800;
}

.review-name {
  font-weight: 800;
  color: rgba(167, 175, 204, 0.95);
}

.cta-row {
  margin-top: 2.2rem;
  display: flex;
  justify-content: center;
}

/* FOOTER */
.footer {
  border-top: 1px solid #505050;
  padding: 1.4rem 0 2rem;
  color: var(--text-muted);
  font-size: 0.87rem;
}

.footer-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-info {
  display: grid;
  gap: 0.1rem;
}

.footer-info p {
  margin: 0;
}

.footer-link {
  color: rgba(217, 217, 217, 0.95);
  font-weight: 800;
}

.footer-link:hover {
  color: rgba(247, 249, 255, 0.9);
}

.footer-actions {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
}

.footer-instagram {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.footer-instagram svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.whatsapp-popup {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: transparent;
  border: 0;
  box-shadow: none;
  color: #f4020e;
}

.whatsapp-popup svg {
  width: 44px;
  height: 44px;
  fill: currentColor;
}

.whatsapp-tooltip {
  position: absolute;
  right: 58px;
  bottom: 50%;
  transform: translateY(50%);
  background: rgba(1, 1, 1, 0.9);
  border: 1px solid rgba(80, 80, 80, 0.7);
  color: #fdfdfd;
  padding: 0.45rem 0.65rem;
  border-radius: 10px;
  font-size: 0.82rem;
  font-weight: 800;
  opacity: 0;
  pointer-events: none;
  transition: opacity 200ms ease, transform 200ms ease;
  white-space: nowrap;
}

.whatsapp-popup.show-tooltip .whatsapp-tooltip {
  opacity: 1;
  transform: translateY(50%) translateX(-2px);
}

.whatsapp-popup:hover {
  filter: brightness(1.1);
}

@media (max-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .partner-card {
    width: min(320px, 84vw);
  }

  .metodo-grid {
    grid-template-columns: 1fr;
  }

  .metodo-media {
    min-height: 370px;
  }

  .metodo-section .container {
    width: min(100% - 4rem, var(--container));
  }
}

@media (max-width: 760px) {
  .topbar-wrap,
  .footer-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-actions {
    gap: 0.7rem;
  }

  .whatsapp-popup {
    right: 12px;
    bottom: 12px;
    width: 46px;
    height: 46px;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .partner-grid {
    grid-template-columns: 1fr;
  }

  .partner-card {
    width: min(280px, 82vw);
  }

  .metodo-section .container {
    width: min(100% - 2rem, var(--container));
  }

  .aggregator-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 200px;
    gap: 1rem;
  }

  .aggregator-grid .link-square,
  .aggregator-grid .link-copy {
    grid-column: auto;
    grid-row: auto;
  }

  .hero-center {
    padding-top: 5.2rem;
  }

  .hero-social-row {
    gap: 0.7rem;
  }

  .hero-social-sep {
    display: none;
  }

  .review-visual-card {
    height: 520px;
  }
}
