:root {
  --green-900: #1e352e;
  --green-800: #355e3b;
  --green-700: #4f7f3a;
  --sand-700: #7ca342;
  --sand-200: #dce8d1;
  --blue-600: #7ca342;
  --mist: #d8ded7;
  --paper: #f7f4ec;
  --white: #ffffff;
  --ink: #2b2b2b;
  --muted: #606963;
  --line: rgba(43, 43, 43, 0.14);
  --shadow: 0 24px 70px rgba(30, 53, 46, 0.16);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Montserrat, "Segoe UI", Inter, Aptos, Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px clamp(18px, 4vw, 54px);
  color: var(--white);
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  color: var(--green-900);
  background: rgba(247, 244, 236, 0.94);
  box-shadow: 0 14px 40px rgba(11, 51, 40, 0.1);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  font-weight: 800;
  letter-spacing: 0;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.9);
  object-fit: contain;
}

.brand span {
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav a {
  border-radius: var(--radius);
  padding: 10px 12px;
  font-size: 0.94rem;
  font-weight: 650;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(255, 255, 255, 0.16);
  outline: none;
}

.site-header.is-scrolled .site-nav a:hover,
.site-header.is-scrolled .site-nav a:focus-visible,
.site-header.is-open .site-nav a:hover,
.site-header.is-open .site-nav a:focus-visible {
  background: rgba(11, 51, 40, 0.08);
}

.nav-admin {
  color: var(--sand-700);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  border-radius: var(--radius);
  color: inherit;
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 82vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url("assets/media/aerogerador-0779-05.jpg");
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(7, 31, 25, 0.92), rgba(7, 31, 25, 0.66) 44%, rgba(7, 31, 25, 0.12)),
    linear-gradient(0deg, rgba(7, 31, 25, 0.78), rgba(7, 31, 25, 0.02) 50%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: 140px 0 82px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--sand-700);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 860px;
  margin: 0;
  font-size: clamp(2.5rem, 5.4vw, 5.15rem);
  line-height: 1.04;
  font-weight: 660;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero-identity {
  width: min(245px, calc(100vw - 54px));
  margin: 0 0 18px;
  opacity: 0.76;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.22));
}

.integrated-logo {
  display: grid;
  gap: 4px;
  width: 100%;
  color: var(--white);
}

.integrated-mark {
  position: relative;
  width: 220px;
  height: 104px;
}

.integrated-mark span {
  position: absolute;
  inset: auto auto 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 96px;
  font-weight: 850;
  line-height: 0.88;
  letter-spacing: -0.12em;
  text-transform: uppercase;
}

.integrated-mark svg {
  position: absolute;
  right: 3px;
  bottom: 2px;
  width: 142px;
  height: auto;
  overflow: visible;
}

.integrated-mark svg path:first-child {
  fill: #7ca342;
}

.integrated-mark svg path:nth-child(2) {
  fill: none;
  stroke: #183e35;
  stroke-width: 7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.integrated-mark svg path:nth-child(3) {
  fill: none;
  stroke: #7ca342;
  stroke-width: 8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.integrated-name {
  display: grid;
  gap: 1px;
  text-transform: uppercase;
}

.integrated-name span,
.integrated-name strong {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.18rem;
  font-weight: 520;
  line-height: 1;
  letter-spacing: 0.28em;
}

.integrated-name strong {
  color: rgba(124, 163, 66, 0.88);
  font-size: 0.96rem;
  letter-spacing: 0.36em;
}

.hero-copy {
  max-width: 720px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.08rem, 2vw, 1.38rem);
  line-height: 1.55;
}

.hero-actions,
.admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 12px 18px;
  font-weight: 760;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.button.primary {
  color: var(--green-900);
  background: var(--sand-700);
  box-shadow: 0 14px 34px rgba(201, 172, 106, 0.22);
}

.button.ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.08);
}

.button.ghost-dark {
  color: var(--green-900);
  border-color: rgba(11, 51, 40, 0.22);
  background: rgba(255, 255, 255, 0.5);
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: min(var(--max), calc(100% - 36px));
  margin: -36px auto 0;
  position: relative;
  z-index: 2;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
}

.proof-strip div {
  padding: 28px;
  border-right: 1px solid var(--line);
}

.proof-strip div:last-child {
  border-right: 0;
}

.proof-strip strong {
  display: block;
  color: var(--green-900);
  font-size: 1.02rem;
}

.proof-strip span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.45;
}

.section {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: 96px 0;
}

.section.muted {
  width: 100%;
  max-width: none;
  padding: 96px max(18px, calc((100vw - var(--max)) / 2));
  background: #edf1ed;
}

.section-heading {
  max-width: 860px;
  margin-bottom: 36px;
}

.section-heading h2,
.split-copy h2,
.renewables-copy h2,
.mentorship h2,
.contact-copy h2 {
  margin: 0;
  color: var(--green-900);
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.04;
  font-weight: 800;
  letter-spacing: 0;
}

.section-heading p:not(.eyebrow),
.split-copy p,
.renewables-copy p,
.mentorship p,
.contact-copy p {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.65;
}

.intro-grid,
.client-grid,
.service-grid,
.product-grid,
.mentorship-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.intro {
  position: relative;
}

.intro::before {
  content: "";
  position: absolute;
  inset: 26px auto auto 58%;
  width: min(420px, 36vw);
  aspect-ratio: 1;
  background: url("assets/mr-padrao-folhas-clean.svg") center / cover no-repeat;
  opacity: 0.055;
  pointer-events: none;
}

.intro > * {
  position: relative;
  z-index: 1;
}

.intro-grid article,
.client-grid article,
.service-card,
.product-card,
.mentorship-options article,
.method-track article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.7);
}

.intro-grid article,
.client-grid article,
.service-card,
.mentorship-options article {
  padding: 26px;
}

.intro-grid h3,
.client-grid h3,
.service-card h3,
.product-card h3,
.mentorship-options h3,
.method-track h3 {
  margin: 0;
  color: var(--green-900);
  font-size: 1.25rem;
  line-height: 1.18;
}

.intro-grid p,
.client-grid p,
.service-card p,
.product-card p,
.mentorship-options p,
.method-track p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.brand-values-board {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: 28px 0 0;
  border-radius: var(--radius);
  border: 1px solid rgba(124, 163, 66, 0.18);
  background:
    linear-gradient(135deg, rgba(7, 31, 25, 0.96), rgba(30, 53, 46, 0.94)),
    url("assets/mr-padrao-folhas-clean.svg") right center / 460px;
  box-shadow: var(--shadow);
  color: var(--white);
}

.brand-values-board article {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 210px;
  padding: 30px 26px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.brand-values-board article:last-child {
  border-right: 0;
}

.brand-values-board svg {
  width: 44px;
  height: 44px;
  fill: none;
  stroke: var(--sand-700);
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand-values-board h3 {
  margin: 4px 0 0;
  color: #8fb952;
  font-size: 0.88rem;
  line-height: 1.2;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-values-board p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.95rem;
  line-height: 1.55;
}

.service-card {
  position: relative;
  min-height: 230px;
}

.service-card::before {
  content: attr(data-index);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 24px;
  border-radius: var(--radius);
  color: var(--green-900);
  background: var(--sand-200);
  font-weight: 800;
}

.service-card ul {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.service-card li {
  position: relative;
  padding-left: 16px;
  color: var(--green-800);
  font-size: 0.95rem;
  line-height: 1.4;
}

.service-card li::before {
  content: "";
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sand-700);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.capability-list,
.contact-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.capability-list span,
.contact-facts span,
.product-badge {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  border: 1px solid rgba(18, 63, 74, 0.18);
  border-radius: var(--radius);
  padding: 8px 10px;
  color: var(--green-800);
  background: rgba(255, 255, 255, 0.6);
  font-weight: 700;
}

.field-panel {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--green-900);
}

.field-panel img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.visual-section {
  padding-top: 84px;
  padding-bottom: 56px;
}

.image-mosaic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 190px;
  gap: 14px;
}

.image-mosaic img {
  width: 100%;
  height: 100%;
  min-height: 0;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: 0 20px 54px rgba(11, 51, 40, 0.12);
}

.image-mosaic .mosaic-wide {
  grid-column: span 2;
  grid-row: span 2;
}

.image-mosaic .mosaic-tall {
  grid-column: span 1;
}

.method {
  width: 100%;
  max-width: none;
  padding: 96px max(18px, calc((100vw - var(--max)) / 2));
  color: var(--white);
  background: var(--green-900);
}

.method .eyebrow,
.method .section-heading h2 {
  color: var(--white);
}

.method-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.method-track article {
  min-height: 240px;
  padding: 24px;
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
}

.method-track span {
  color: var(--sand-700);
  font-weight: 800;
}

.method-track h3 {
  margin-top: 24px;
  color: var(--white);
}

.method-track p {
  color: rgba(255, 255, 255, 0.72);
}

#servicos {
  padding-top: 84px;
  padding-bottom: 72px;
}

#know-how {
  padding-top: 72px;
  padding-bottom: 82px;
}

.renewables-section {
  display: grid;
  grid-template-columns: minmax(360px, 1.08fr) minmax(0, 0.92fr);
  gap: clamp(28px, 5vw, 58px);
  align-items: center;
}

.renewables-media {
  min-height: 520px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--green-900);
  box-shadow: var(--shadow);
}

.renewables-media img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.renewables-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.renewables-list span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  border: 1px solid rgba(18, 63, 74, 0.18);
  border-radius: var(--radius);
  padding: 8px 10px;
  color: var(--green-800);
  background: rgba(255, 255, 255, 0.7);
  font-weight: 700;
}

.product-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.filter {
  min-height: 40px;
  border: 1px solid rgba(11, 51, 40, 0.18);
  border-radius: var(--radius);
  padding: 8px 12px;
  color: var(--green-900);
  background: rgba(255, 255, 255, 0.68);
  cursor: pointer;
}

.filter.active {
  color: var(--white);
  border-color: var(--green-900);
  background: var(--green-900);
}

.product-card {
  position: relative;
  display: grid;
  align-content: space-between;
  min-height: 330px;
  padding: 24px;
  background: var(--white);
}

.product-card.featured {
  border-color: rgba(201, 172, 106, 0.72);
  box-shadow: 0 18px 46px rgba(201, 172, 106, 0.18);
}

.product-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 26px;
}

.product-price {
  color: var(--green-900);
  font-size: 1.55rem;
  font-weight: 800;
}

.product-status {
  color: var(--blue-600);
  font-size: 0.9rem;
  font-weight: 800;
}

.product-actions {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}

.mentorship {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: 42px;
  align-items: start;
}

.mentorship-options {
  grid-template-columns: 1fr;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1.15fr);
  gap: 46px;
  align-items: start;
}

.lead-form,
.product-form {
  display: grid;
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  background: rgba(255, 255, 255, 0.72);
}

label {
  display: grid;
  gap: 8px;
  color: var(--green-900);
  font-weight: 740;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(11, 51, 40, 0.18);
  border-radius: var(--radius);
  padding: 12px 13px;
  color: var(--ink);
  background: var(--white);
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--blue-600);
  outline: 3px solid rgba(47, 128, 163, 0.15);
}

.lead-output {
  display: none;
  border-radius: var(--radius);
  padding: 16px;
  color: var(--green-900);
  background: #e6efe9;
  line-height: 1.55;
  white-space: pre-wrap;
}

.lead-output.is-visible {
  display: block;
}

.admin-section {
  width: 100%;
  max-width: none;
  padding: 96px max(18px, calc((100vw - var(--max)) / 2));
  background:
    linear-gradient(0deg, rgba(7, 31, 25, 0.9), rgba(7, 31, 25, 0.9)),
    url("assets/mr-padrao-folhas-clean.svg") center / 520px;
  color: var(--white);
}

.admin-section .section-heading h2,
.admin-section .section-heading p {
  color: var(--white);
}

.admin-layout {
  display: grid;
  grid-template-columns: minmax(360px, 0.92fr) minmax(0, 1.08fr);
  gap: 24px;
}

.product-form {
  grid-template-columns: repeat(2, 1fr);
  color: var(--ink);
  background: var(--paper);
}

.product-form .wide,
.product-form .check,
.product-form button {
  grid-column: 1 / -1;
}

.check {
  display: flex;
  align-items: center;
  gap: 10px;
}

.check input {
  width: 18px;
  height: 18px;
}

.admin-products {
  display: grid;
  align-content: start;
  gap: 16px;
}

.export-box {
  min-height: 150px;
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--white);
  background: rgba(0, 0, 0, 0.18);
  resize: vertical;
}

.export-box[hidden] {
  display: none;
}

.export-status {
  min-height: 22px;
  margin: -4px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.9rem;
}

.admin-list {
  display: grid;
  gap: 12px;
}

.admin-item {
  display: grid;
  gap: 6px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  padding: 16px;
  background: rgba(255, 255, 255, 0.08);
}

.admin-item strong {
  font-size: 1rem;
}

.admin-item span {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.45;
}

.admin-item button {
  justify-self: start;
  min-height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  padding: 6px 10px;
  color: var(--white);
  background: transparent;
  cursor: pointer;
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
}

summary {
  cursor: pointer;
  padding: 18px 20px;
  color: var(--green-900);
  font-weight: 800;
}

details p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
  line-height: 1.6;
}

.site-footer {
  display: grid;
  gap: 12px;
  padding: 42px max(18px, calc((100vw - var(--max)) / 2));
  color: rgba(255, 255, 255, 0.72);
  background:
    linear-gradient(0deg, rgba(7, 31, 25, 0.94), rgba(7, 31, 25, 0.94)),
    url("assets/mr-padrao-folhas-clean.svg") right center / 360px;
}

.site-footer div {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
}

.site-footer img {
  width: 42px;
  height: 42px;
  border-radius: 4px;
  background: var(--white);
  object-fit: contain;
}

.site-footer p {
  margin: 0;
}

.site-footer span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.95rem;
}

@media (max-width: 980px) {
  .nav-toggle {
    display: inline-block;
  }

  .site-nav {
    position: fixed;
    top: 66px;
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 10px;
    color: var(--green-900);
    background: var(--paper);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .proof-strip,
  .intro-grid,
  .client-grid,
  .service-grid,
  .product-grid,
  .method-track,
  .image-mosaic,
  .renewables-section,
  .split,
  .mentorship,
  .contact-section,
  .admin-layout {
    grid-template-columns: 1fr;
  }

  .proof-strip div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .proof-strip div:last-child {
    border-bottom: 0;
  }

  .field-panel,
  .field-panel img,
  .renewables-media,
  .renewables-media img {
    min-height: 420px;
  }

  .image-mosaic {
    grid-auto-rows: 240px;
  }

  .image-mosaic .mosaic-wide,
  .image-mosaic .mosaic-tall {
    grid-column: auto;
    grid-row: auto;
  }

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

  .brand-values-board {
    grid-template-columns: repeat(2, 1fr);
  }

  .brand-values-board article:nth-child(2) {
    border-right: 0;
  }

  .brand-values-board article:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .intro::before {
    inset: auto 0 12px auto;
    width: min(260px, 70vw);
  }
}

@media (max-width: 640px) {
  .site-header {
    padding-inline: 14px;
  }

  .brand span {
    max-width: 220px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .hero {
    min-height: 86vh;
  }

  .hero-media {
    background-position: 58% center;
  }

  .hero-content {
    width: min(100% - 28px, var(--max));
    padding-bottom: 58px;
  }

  .hero-identity {
    width: min(190px, calc(100vw - 40px));
    opacity: 0.68;
    margin-bottom: 14px;
  }

  .integrated-mark {
    width: 178px;
    height: 84px;
  }

  .integrated-mark span {
    font-size: 78px;
  }

  .integrated-mark svg {
    width: 116px;
  }

  .integrated-name span,
  .integrated-name strong {
    font-size: 0.9rem;
  }

  .integrated-name strong {
    font-size: 0.76rem;
  }

  .hero-actions,
  .admin-actions,
  .product-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .section,
  .section.muted,
  .visual-section,
  .method,
  .admin-section {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .image-mosaic {
    grid-auto-rows: 190px;
  }

  .brand-values-board {
    grid-template-columns: 1fr;
  }

  .brand-values-board article {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .brand-values-board article:last-child {
    border-bottom: 0;
  }
}
