/* =========================================================
   BASE
   ========================================================= */
:root {
  --bg: #fbfaff;
  --surface: rgba(255, 255, 255, .88);
  --surface-strong: #ffffff;
  --text: #10132d;
  --muted: #62647a;
  --line: #ebe8f5;
  --purple: #7047ee;
  --purple-2: #8e5cff;
  --pink: #f252a0;
  --blue: #4976f5;
  --shadow: 0 18px 55px rgba(75, 55, 120, .09);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 8% 12%, rgba(128, 85, 255, .07), transparent 18%),
    radial-gradient(circle at 94% 21%, rgba(242, 82, 160, .06), transparent 20%),
    var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

.section {
  padding: 38px 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: #7c5ad8;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .04em;
}

.section-title {
  margin: 0 0 28px;
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-weight: 850;
}

.centered {
  text-align: center;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* =========================================================
   BOTÕES
   ========================================================= */
.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: .92rem;
  font-weight: 750;
  transition: transform .2s ease, box-shadow .2s ease, opacity .2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--purple), var(--purple-2));
  box-shadow: 0 10px 24px rgba(112, 71, 238, .22);
}

.button-secondary {
  background: rgba(255,255,255,.8);
  border-color: #bdb7ce;
}

/* =========================================================
   PLACEHOLDERS DE IMAGEM
   Substitua posteriormente pelo <img> real.
   ========================================================= */
.media-placeholder {
  position: relative;
  min-height: 240px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 5px;
  overflow: hidden;
  border: 1px dashed #b9addd;
  border-radius: var(--radius-xl);
  color: #6f5bb0;
  background:
    linear-gradient(135deg, rgba(124, 90, 216, .08), rgba(242, 82, 160, .07)),
    repeating-linear-gradient(
      45deg,
      rgba(255,255,255,.5) 0,
      rgba(255,255,255,.5) 12px,
      rgba(112,71,238,.035) 12px,
      rgba(112,71,238,.035) 24px
    );
  text-align: center;
  font-size: .8rem;
  font-weight: 850;
  letter-spacing: .04em;
}

.media-placeholder small {
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0;
}

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 250, 255, .84);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(235, 232, 245, .65);
}

.header-inner {
  min-height: 96px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  line-height: .9;
  min-width: max-content;
}

/* Logo em imagem no header */
.brand-logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  line-height: normal;
  min-width: 0;
}

.header-logo {
  display: block;
  width: 180px;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.brand-name {
  font-size: 1.55rem;
  font-weight: 900;
  letter-spacing: -.045em;
}

.brand-sub {
  margin-top: 6px;
  color: var(--purple);
  font-size: .62rem;
  font-weight: 850;
  text-align: center;
  letter-spacing: .04em;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 30px;
  font-size: .88rem;
  font-weight: 650;
}

.main-nav a:hover,
.footer-column a:hover {
  color: var(--purple);
}

.header-cta {
  min-height: 44px;
  padding-inline: 20px;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  padding: 8px;
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 6px 0;
  background: var(--text);
  border-radius: 3px;
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  padding-top: 26px;
  padding-bottom: 20px;
}

.hero-grid {
  min-height: 500px;
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  align-items: center;
  gap: 36px;
}

.hero-copy h1 {
  max-width: 590px;
  margin: 0;
  font-size: clamp(2.7rem, 5.2vw, 5rem);
  line-height: 1.02;
  letter-spacing: -.055em;
}

.gradient-text {
  color: transparent;
  background: linear-gradient(90deg, var(--purple), var(--pink));
  background-clip: text;
  -webkit-background-clip: text;
}

.gradient-text.alt {
  background-image: linear-gradient(90deg, var(--pink), var(--blue));
}

.lead {
  max-width: 560px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero-media {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: visible;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

/* =========================================================
   STATS
   ========================================================= */
.stats-section {
  padding-top: 4px;
}

.stats-panel {
  padding: 24px 28px 28px;
  border: 1px solid rgba(235, 232, 245, .85);
  border-radius: 24px;
  background: rgba(255,255,255,.92);
  box-shadow: var(--shadow);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.stat-card {
  min-width: 0;
  display: grid;
  grid-template-columns: 50px 1fr;
  align-items: center;
  gap: 14px;
  padding: 10px 22px;
  border-right: 1px solid var(--line);
}

.stat-card:first-child {
  padding-left: 0;
}

.stat-card:last-child {
  padding-right: 0;
  border-right: 0;
}

.stat-card strong {
  display: block;
  font-size: 1.55rem;
  line-height: 1.1;
}

.stat-card span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: .78rem;
}

.icon-placeholder {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--purple);
  background: #f0ecff;
  font-size: 1.2rem;
}

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.testimonials {
  padding-top: 34px;
  padding-bottom: 44px;
}

.testimonials .section-title {
  margin-bottom: 30px;
  color: var(--text);
  font-size: clamp(1.15rem, 2.1vw, 1.65rem);
  font-weight: 900;
  letter-spacing: .01em;
}

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

.testimonial-card {
  position: relative;
  min-height: 430px;
  display: flex;
  flex-direction: column;
  padding: 24px 26px 22px;
  overflow: hidden;
  border: 1px solid rgba(220, 216, 236, .85);
  border-radius: 26px;
  box-shadow: 0 16px 42px rgba(66, 48, 112, .07);
}

/* Fundos pastel: menos branco, mantendo o visual leve do site */
.testimonial-card--green {
  background:
    radial-gradient(circle at 18% 10%, rgba(118, 205, 120, .14), transparent 34%),
    linear-gradient(180deg, #f6fff4 0%, #f3fbed 100%);
}

.testimonial-card--blue {
  background:
    radial-gradient(circle at 18% 10%, rgba(112, 89, 255, .12), transparent 34%),
    linear-gradient(180deg, #f4f4ff 0%, #f0f3ff 100%);
}

.testimonial-card--pink {
  background:
    radial-gradient(circle at 18% 10%, rgba(255, 83, 153, .12), transparent 34%),
    linear-gradient(180deg, #fff5f8 0%, #fff0f5 100%);
}

/* Cabeçalho do personagem */
.testimonial-character {
  display: grid;
  grid-template-columns: 112px 1fr;
  align-items: center;
  gap: 18px;
  min-height: 118px;
  margin-bottom: 6px;
}

.testimonial-character-image {
  width: 112px;
  height: 112px;
  display: block;
  object-fit: contain;
  object-position: center;
}

.testimonial-character-info {
  min-width: 0;
}

.testimonial-character-info strong {
  display: block;
  margin-bottom: 3px;
  font-size: 1.25rem;
  line-height: 1.1;
  font-weight: 850;
}

.testimonial-character-info span {
  display: block;
  color: var(--muted);
  font-size: .86rem;
  font-weight: 650;
}

.testimonial-card--green .testimonial-character-info strong,
.testimonial-card--green .quote-mark {
  color: #169447;
}

.testimonial-card--blue .testimonial-character-info strong,
.testimonial-card--blue .quote-mark {
  color: #6849e8;
}

.testimonial-card--pink .testimonial-character-info strong,
.testimonial-card--pink .quote-mark {
  color: #f0448e;
}

.quote-mark {
  margin-top: 6px;
  font-size: 3rem;
  font-weight: 950;
  line-height: .65;
}

.testimonial-text {
  flex: 1;
  margin: 14px 0 20px;
  color: #25273a;
  font-size: .96rem;
  line-height: 1.62;
}

.stars {
  margin-bottom: 20px;
  color: #ffb02e;
  letter-spacing: .12em;
  font-size: .92rem;
}

.testimonial-card--green .stars {
  color: #169447;
}

.testimonial-card--blue .stars {
  color: #6849e8;
}

.testimonial-card--pink .stars {
  color: #f0448e;
}

.testimonial-user {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: 16px;
  border-top: 1px solid rgba(112, 105, 135, .14);
}

.testimonial-user strong {
  color: var(--text);
  font-size: .94rem;
  font-weight: 800;
}

.testimonial-user span {
  color: var(--muted);
  font-size: .78rem;
}

/* Mantido por compatibilidade caso algum card antigo ainda exista */
.person-line {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
}

.person-line strong,
.person-line span {
  display: block;
}

.person-line span {
  color: var(--muted);
  font-size: .72rem;
}

.avatar-placeholder {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #eeeaf9;
  color: #8374ab;
  font-size: .6rem;
  font-weight: 800;
}

.logo-placeholder {
  color: #8c849f;
  font-size: .7rem;
  font-weight: 900;
}

.section-link {
  margin-top: 18px;
  text-align: center;
  color: #493985;
  font-size: .86rem;
}

/* =========================================================
   CANDIDATO.AI
   ========================================================= */
.product-highlight {
  padding-top: 12px;
  padding-bottom: 34px;
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr .85fr;
  align-items: center;
  gap: 42px;
}

.phone-media,
.voting-media {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
  border: 0;
}

.product-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.product-copy h2,
.collections-copy h2,
.team-copy h2 {
  margin: 0 0 16px;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
  letter-spacing: -.045em;
}

.product-copy > p:not(.eyebrow),
.collections-copy > p,
.team-copy > p {
  color: var(--muted);
}

.accent-pink {
  color: var(--pink);
}

.feature-mini-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 26px 0;
}

.feature-mini {
  display: grid;
  gap: 8px;
  text-align: center;
  color: #2b2c43;
}

.feature-mini > span {
  font-size: 1.4rem;
}

.feature-mini small {
  font-size: .7rem;
  line-height: 1.35;
}

/* =========================================================
   COLLECTIONS / CAROUSEL
   ========================================================= */
.collections {
  border-top: 1px solid rgba(235, 232, 245, .75);
  border-bottom: 1px solid rgba(235, 232, 245, .75);
  background: rgba(255,255,255,.36);
}

.collections-grid {
  display: grid;
  grid-template-columns: .72fr 1.7fr;
  gap: 44px;
  align-items: center;
}

.collections-copy .compact {
  margin: 24px 0;
}

.carousel-shell {
  min-width: 0;
}

.carousel-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.carousel-heading h3 {
  margin: 0;
  font-size: clamp(1.45rem, 2.7vw, 2.2rem);
  line-height: 1.08;
}

.carousel-controls {
  display: flex;
  gap: 8px;
}

.carousel-button {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
}

.cards-carousel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(170px, 1fr);
  gap: 14px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: inline mandatory;
  scrollbar-width: none;
}

.cards-carousel::-webkit-scrollbar {
  display: none;
}

.collection-card {
  scroll-snap-align: start;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 25px rgba(61, 45, 100, .06);
}

.collection-image {
  width: 100%;
  aspect-ratio: 4 / 5;
  display: block;
  object-fit: cover;
  object-position: center;
  border: 0;
}

.collection-card-copy {
  padding: 14px 14px 16px;
}

.collection-card-copy h4 {
  margin: 0;
  font-size: .98rem;
  line-height: 1.2;
}

.collection-card-copy small {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: .72rem;
  line-height: 1.35;
}

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

.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #d9d2ea;
}

.dot.active {
  width: 20px;
  border-radius: 999px;
  background: var(--purple);
}

/* =========================================================
   BENEFITS / PERSONAGENS
   ========================================================= */
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.benefit-card {
  min-height: 250px;
  display: grid;
  grid-template-columns: 53% 47%;
  align-items: stretch;
  overflow: hidden;
  border: 1px solid rgba(225, 220, 238, .82);
  border-radius: 24px;
  box-shadow: 0 10px 28px rgba(64, 48, 105, .045);
}

/* Fundos pastel alinhados ao mockup */
.benefit-card--purple {
  background: #f6f0ff;
}

.benefit-card--blue {
  background: #eef6ff;
}

.benefit-card--pink {
  background: #fff1f5;
}

.benefit-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 28px 8px 26px 26px;
}

.benefit-copy h3 {
  margin: 0 0 16px;
  color: #173b77;
  font-size: 1.08rem;
  font-weight: 800;
  line-height: 1.25;
}

.benefit-card--pink .benefit-copy h3 {
  color: #17203c;
}

.benefit-copy p {
  margin: 0;
  color: #5e6177;
  font-size: .84rem;
  line-height: 1.65;
}

.benefit-image-wrap {
  position: relative;
  min-width: 0;
  min-height: 250px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}

.benefit-character-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
}

.benefit-card--purple .benefit-image-wrap {
  background: #f6f0ff;
}

.benefit-card--blue .benefit-image-wrap {
  background: #eef6ff;
}

.benefit-card--pink .benefit-image-wrap {
  background: #fff1f5;
}

/* =========================================================
   TEAM
   ========================================================= */
.team-section {
  padding-bottom: 0;
}

.team-grid {
  display: grid;
  grid-template-columns: .72fr 1.65fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px 24px 0 0;
  background: #fff;
}

.team-copy {
  padding: 38px;
}

.team-copy h2 {
  font-size: clamp(2rem, 3vw, 2.7rem);
}

.team-media {
  min-height: 0;
  overflow: hidden;
  border: 0;
  border-radius: 0;
}

.team-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  padding: 42px 0 24px;
  border-top: 1px solid var(--line);
  background: rgba(255,255,255,.8);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr repeat(4, .8fr) 1.2fr;
  gap: 28px;
}

.footer-brand p {
  color: var(--muted);
  font-size: .8rem;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
}

/* Avatares dos personagens no footer */
.social-links a.character-social {
  position: relative;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: block;
  overflow: hidden;
  border: 1px solid #e6def6;
  border-radius: 50%;
  background: #f3effb;
  box-shadow: 0 4px 12px rgba(90, 70, 140, .08);
  transition:
    transform .2s ease,
    box-shadow .2s ease,
    border-color .2s ease;
}

.social-links a.character-social:hover {
  transform: translateY(-2px) scale(1.04);
  border-color: #cbbcf1;
  box-shadow: 0 8px 18px rgba(90, 70, 140, .16);
}

.social-links a.character-social:focus-visible {
  outline: 3px solid rgba(112, 71, 238, .22);
  outline-offset: 3px;
}

.social-links a.character-social img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: .78rem;
}

.footer-column h3 {
  margin: 4px 0 6px;
  color: #746b93;
  font-size: .68rem;
  letter-spacing: .04em;
}

.footer-column span,
.footer-column a {
  color: #474a5e;
}

.contact-column .button {
  width: max-content;
  margin-top: 8px;
  color: #fff;
}

.footer-bottom {
  display: flex;
  justify-content: center;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: #8a8598;
}

/* =========================================================
   RESPONSIVO
   ========================================================= */
@media (max-width: 1040px) {
  .header-inner {
    grid-template-columns: auto auto 1fr;
  }

  .main-nav {
    gap: 16px;
  }

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

  .stat-card {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .stat-card:last-child {
    grid-column: 1 / -1;
    border-bottom: 0;
  }

  .product-grid {
    grid-template-columns: 1fr 1.25fr;
  }

  .voting-media {
    display: none;
  }

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

@media (max-width: 820px) {
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-card {
    min-height: 0;
  }

  .testimonial-character {
    grid-template-columns: 96px 1fr;
    min-height: 100px;
  }

  .testimonial-character-image {
    width: 96px;
    height: 96px;
  }


  .header-inner {
    position: relative;
    grid-template-columns: auto 1fr auto;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
    order: 2;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #fff;
    box-shadow: var(--shadow);
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    padding: 12px;
  }

  .header-cta {
    display: none;
  }

  .hero-grid,
  .product-grid,
  .collections-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-bottom: 0;
  }

  .hero-grid {
    min-height: auto;
    gap: 20px;
  }

  .hero-media {
    min-height: 0;
    height: auto;
    margin: 0;
    padding: 0;
  }

  .hero-image {
    width: 100%;
    height: auto;
    display: block;
  }

  .stats-section {
    padding-top: 20px;
  }

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

  .benefit-card {
    grid-template-columns: 55% 45%;
    min-height: 230px;
  }

  .benefit-image-wrap {
    min-height: 230px;
  }

  .phone-media {
    order: 2;
  }

  .product-copy {
    order: 1;
  }

  .product-image {
    width: min(100%, 520px);
    margin-inline: auto;
  }

  .voting-media {
    order: 3;
  }

  .collection-image {
    aspect-ratio: 4 / 5;
  }

  .team-media {
    min-height: 0;
  }
}

@media (max-width: 560px) {
  .social-links {
    gap: 8px;
  }

  .social-links a.character-social {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
  }


  .testimonial-card {
    padding: 20px;
    border-radius: 22px;
  }

  .testimonial-character {
    grid-template-columns: 82px 1fr;
    gap: 14px;
    min-height: 86px;
  }

  .testimonial-character-image {
    width: 82px;
    height: 82px;
  }

  .testimonial-character-info strong {
    font-size: 1.08rem;
  }

  .testimonial-text {
    font-size: .9rem;
  }


  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .section {
    padding: 28px 0;
  }

  .header-inner {
    min-height: 78px;
  }

  .header-logo {
    width: 140px;
  }

  .brand-name {
    font-size: 1.28rem;
  }

  .hero-grid {
    min-height: 0;
  }

  .hero-copy h1 {
    font-size: clamp(2.55rem, 12vw, 3.5rem);
  }

  .button-row,
  .button-row .button {
    width: 100%;
  }

  .stats-panel {
    padding: 20px;
  }

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

  .stat-card,
  .stat-card:first-child,
  .stat-card:last-child {
    grid-column: auto;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
  }

  .stat-card:last-child {
    border-bottom: 0;
  }

  .feature-mini-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cards-carousel {
    grid-auto-columns: 72%;
  }

  .collection-card-copy {
    padding: 12px 13px 14px;
  }

  .benefit-card {
    grid-template-columns: 56% 44%;
    min-height: 220px;
  }

  .benefit-copy {
    padding: 22px 4px 22px 20px;
  }

  .benefit-copy h3 {
    font-size: .98rem;
  }

  .benefit-copy p {
    font-size: .76rem;
    line-height: 1.5;
  }

  .benefit-image-wrap {
    min-height: 220px;
  }

  .team-copy {
    padding: 28px 22px;
  }

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

  .footer-brand,
  .contact-column {
    grid-column: 1 / -1;
  }
}
