.materials-overview {
  background: #f5f7f2;
  padding: 110px 0 120px;
  position: relative;
  z-index: 1;
  border-top: 4px solid #97c93a;
}

/* =========================================================
   MATERIALS OVERVIEW
   - 4 cards em linha no desktop
   - cards menores e mais abertos
   - mobile com carousel + dots
========================================================== */

.materials-overview {
  background: #f5f7f2;
  padding: 110px 0 120px;
  position: relative;
  z-index: 1;
}

/* abre mais a largura só dessa seção */
.materials-overview .container {
  max-width: 1460px;
  width: min(100% - 48px, 1460px);
  margin: 0 auto;
}

.materials-overview .section-heading {
  max-width: 860px;
  margin: 0 auto 64px;
  text-align: center;
}

/* PILL */
.materials-overview .pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #7db61c !important;
  line-height: 1;
}

.materials-overview .pill::before {
  content: "";
  display: inline-block;
  width: 36px;
  height: 1px;
  background: #7db61c;
}

.materials-overview .section-title,
.materials-overview #materialsTitle {
  margin: 0 0 18px;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: #111611 !important;
}

.materials-overview .section-subtitle {
  margin: 0 auto;
  max-width: 760px;
  font-size: 1.02rem;
  line-height: 1.8;
  color: rgba(17, 22, 17, 0.72) !important;
}

.materials-overview .materials-shell {
  position: relative;
}

.materials-overview .materials-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}

.materials-overview .material-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  border: 1px solid rgba(17, 22, 17, 0.10);
  background: #ffffff;
  box-shadow: 0 18px 45px rgba(16, 26, 16, 0.05);
  transition:
    transform var(--transition-medium),
    border-color var(--transition-medium),
    box-shadow var(--transition-medium);
}

.materials-overview .material-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 0;
  background: #111611;
  transition: width var(--transition-medium);
  z-index: 0;
}

.materials-overview .material-card:hover {
  transform: translateY(-8px);
  border-color: rgba(151, 201, 58, 0.42);
  box-shadow: 0 26px 60px rgba(10, 16, 10, 0.12);
}

.materials-overview .material-card:hover::before {
  width: 5px;
}

.materials-overview .material-card__media,
.materials-overview .material-card__body {
  position: relative;
  z-index: 1;
}

.materials-overview .material-card__media {
  position: relative;
  height: 210px;
  overflow: hidden;
  background: #111611;
}

.materials-overview .material-card__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-medium);
}

.materials-overview .material-card:hover .material-card__image {
  transform: scale(1.04);
}

.materials-overview .material-card__icon {
  position: absolute;
  left: 18px;
  bottom: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: #97c93a;
  color: #111611;
  border: 1px solid #97c93a;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
}

.materials-overview .material-card__icon svg {
  width: 22px;
  height: 22px;
}

.materials-overview .material-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px 20px 22px;
}

.materials-overview .material-card__title {
  margin: 0 0 12px;
  font-size: 1.05rem;
  line-height: 1.15;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #111611;
}

.materials-overview .material-card__text {
  margin: 0 0 16px;
  font-size: 0.90rem;
  line-height: 1.72;
  color: rgba(17, 22, 17, 0.78);
}

.materials-overview .material-card__list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.materials-overview .material-card__list li {
  position: relative;
  padding-left: 16px;
  font-size: 0.86rem;
  line-height: 1.62;
  color: rgba(17, 22, 17, 0.84);
}

.materials-overview .material-card__list li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 6px;
  height: 6px;
  background: #97c93a;
  transform: translateY(-50%);
}

.materials-overview .material-card__actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
  margin-top: auto;
  padding-top: 20px;
}

.materials-overview .material-card__actions .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 44px;
  padding: 0 14px;
  border-radius: 0 !important;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: none !important;
  transition:
    transform var(--transition-fast),
    background var(--transition-fast),
    border-color var(--transition-fast),
    color var(--transition-fast);
}

.materials-overview .material-card__actions .btn:hover {
  transform: translateY(-1px);
}

.materials-overview .material-card__actions .btn--cta {
  background: #97c93a !important;
  border: 1px solid #97c93a !important;
  color: #111611 !important;
}

.materials-overview .material-card__actions .btn--ghost {
  background: transparent !important;
  border: 1px solid rgba(17, 22, 17, 0.16) !important;
  color: #111611 !important;
}

.materials-overview .material-card__actions .btn--cta:hover,
.materials-overview .material-card__actions .btn--ghost:hover {
  background: #111611 !important;
  border-color: #111611 !important;
  color: #ffffff !important;
}

/* CTA FINAL */
.materials-overview .section-cta {
  margin-top: 56px;
  padding: 32px 30px;
  border: 1px solid rgba(17, 22, 17, 0.10);
  background: #ffffff;
  text-align: center;
}

.materials-overview .section-cta__text {
  margin: 0 0 18px;
  font-size: 1.02rem;
  line-height: 1.7;
  font-weight: 700;
  color: #111611;
}

.materials-overview .section-cta__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.materials-overview .section-cta .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border-radius: 0 !important;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: none !important;
}

.materials-overview .section-cta .btn--cta {
  background: #97c93a !important;
  border: 1px solid #97c93a !important;
  color: #111611 !important;
}

.materials-overview .section-cta .btn--ghost {
  background: transparent !important;
  border: 1px solid rgba(17, 22, 17, 0.16) !important;
  color: #111611 !important;
}

.materials-overview .section-cta .btn--cta:hover,
.materials-overview .section-cta .btn--ghost:hover {
  background: #111611 !important;
  border-color: #111611 !important;
  color: #ffffff !important;
}

/* DOTS */
.materials-overview .materials-dots {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
}

.materials-overview .materials-dots__dot {
  width: 10px;
  height: 10px;
  min-width: 10px;
  min-height: 10px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(151, 201, 58, 0.32);
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  transition:
    transform var(--transition-fast),
    background var(--transition-fast),
    opacity var(--transition-fast);
}

.materials-overview .materials-dots__dot:hover {
  transform: scale(1.08);
}

.materials-overview .materials-dots__dot.is-active {
  background: #97c93a;
  transform: scale(1.15);
}

/* =========================================================
   RESPONSIVE
========================================================== */

@media (max-width: 1366px) {
  .materials-overview .container {
    width: min(100% - 40px, 1320px);
  }

  .materials-overview .materials-grid {
    gap: 18px;
  }

  .materials-overview .material-card__media {
    height: 195px;
  }

  .materials-overview .material-card__body {
    padding: 20px 18px;
  }
}

@media (max-width: 1199px) {
  .materials-overview {
    padding: 96px 0 104px;
  }

  .materials-overview .materials-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
  }

  .materials-overview .material-card__media {
    height: 230px;
  }

  .materials-overview .material-card__title {
    font-size: 1.3rem;
  }

  .materials-overview .material-card__text {
    font-size: 0.96rem;
  }

  .materials-overview .material-card__list li {
    font-size: 0.90rem;
  }

  .materials-overview .material-card__actions {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .materials-overview .material-card__actions .btn {
    width: auto;
    min-width: 160px;
    flex: 1 1 auto;
  }
}

@media (max-width: 991px) {
  .materials-overview {
    padding: 88px 0 96px;
  }

  .materials-overview .container {
    width: min(100% - 32px, 100%);
  }

  .materials-overview .materials-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }
}

@media (max-width: 767px) {
  .materials-overview {
    padding: 80px 0 90px;
  }

  .materials-overview .container {
    width: min(100% - 24px, 100%);
  }

  .materials-overview .section-heading {
    margin: 0 auto 42px;
    text-align: left;
  }

  .materials-overview .pill {
    margin-bottom: 16px;
    font-size: 0.76rem;
    letter-spacing: 0.14em;
  }

  .materials-overview .pill::before {
    width: 28px;
  }

  .materials-overview .section-title,
  .materials-overview #materialsTitle {
    margin-bottom: 14px;
  }

  .materials-overview .section-subtitle {
    max-width: 100%;
    font-size: 0.96rem;
    line-height: 1.7;
  }

  .materials-overview .materials-shell {
    overflow: hidden;
  }

  .materials-overview .materials-grid {
    display: flex;
    gap: 0;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0;
    margin: 0;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
    -ms-overflow-style: none;
    background: transparent !important;
    box-shadow: none !important;
  }

  .materials-overview .materials-grid::-webkit-scrollbar {
    display: none;
  }

  .materials-overview .material-card {
    flex: 0 0 100%;
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    min-height: auto;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    box-shadow: none !important;
    transform: none !important;
  }

  .materials-overview .material-card:hover {
    transform: none !important;
    box-shadow: none !important;
  }

  .materials-overview .material-card__media {
    height: 220px;
  }

  .materials-overview .material-card__body {
    padding: 24px 18px 20px;
  }

  .materials-overview .material-card__title {
    font-size: 1.24rem;
  }

  .materials-overview .material-card__text {
    font-size: 0.94rem;
    line-height: 1.68;
  }

  .materials-overview .material-card__list li {
    font-size: 0.88rem;
    line-height: 1.58;
  }

  .materials-overview .material-card__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .materials-overview .material-card__actions .btn {
    width: 100%;
  }

  .materials-overview .materials-dots {
    display: flex;
  }

  .materials-overview .section-cta {
    margin-top: 34px;
    padding: 24px 20px;
  }

  .materials-overview .section-cta__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .materials-overview .section-cta__actions .btn {
    width: 100%;
  }
}

@media (max-width: 576px) {
  .materials-overview .material-card__media {
    height: 200px;
  }

  .materials-overview .material-card__icon {
    left: 16px;
    bottom: 16px;
    width: 50px;
    height: 50px;
  }

  .materials-overview .material-card__icon svg {
    width: 22px;
    height: 22px;
  }

  .materials-overview .material-card__body {
    padding: 22px 16px 18px;
  }

  .materials-overview .material-card__title {
    font-size: 1.12rem;
  }

  .materials-overview .material-card__text {
    font-size: 0.90rem;
  }
}
/* =========================================================
   APPLICATIONS
   - heading alinhado à esquerda
   - pill verde com linha à esquerda
   - CTA verde no padrão da marca
   - 6 cards
   - carousel no mobile com dots
========================================================== */

.applications {
  position: relative;
  margin-top: 18px;
}

.applications .section-heading {
  max-width: 1180px;
  margin: 0 0 28px;
  text-align: left;
}

.applications .pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #97c93a !important;
  line-height: 1;
}

.applications .pill::before {
  content: "";
  display: inline-block;
  width: 36px;
  height: 1px;
  background: #97c93a;
}

.applications .section-title {
  margin: 0 0 16px;
  max-width: 1180px;
  color: #ffffff;
}

.applications .section-subtitle {
  margin: 0;
  max-width: 720px;
  color: rgba(255, 255, 255, 0.76);
}

.applications-shell {
  position: relative;
}

.applications-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.application-card {
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(151, 201, 58, 0.14);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.14);
  transition:
    transform var(--transition-medium),
    border-color var(--transition-medium),
    box-shadow var(--transition-medium);
}

.application-card:hover {
  transform: translateY(-8px);
  border-color: rgba(151, 201, 58, 0.42);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
}

.application-card__image {
  display: block;
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.application-card__body {
  padding: 24px;
}

.application-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 16px;
  background: rgba(151, 201, 58, 0.14);
  border: 1px solid rgba(151, 201, 58, 0.26);
  color: #567a17;
}

.application-card__icon svg {
  width: 22px;
  height: 22px;
}

.application-card__title {
  margin: 0 0 12px;
  font-size: 1.28rem;
  line-height: 1.08;
  font-weight: 900;
  color: #111611;
}

.application-card__text {
  margin: 0 0 18px;
  font-size: 0.96rem;
  line-height: 1.72;
  color: rgba(17, 22, 17, 0.78);
}

.application-card .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 0 !important;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: none !important;
}

.application-card .btn--ghost {
  background: transparent !important;
  border: 1px solid rgba(17, 22, 17, 0.16) !important;
  color: #111611 !important;
}

.application-card .btn--ghost:hover {
  background: #111611 !important;
  border-color: #111611 !important;
  color: #ffffff !important;
}

/* CTA VERDE */
.applications .section-cta--green {
  margin-top: 56px;
  margin-bottom: 34px;
  padding: 34px 34px;
  border: 1px solid rgba(17, 22, 17, 0.18);
  background: #97c93a;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.14);
  text-align: center;
}

.applications .section-cta--green .section-cta__text {
  margin: 0 0 18px;
  font-size: 1.04rem;
  line-height: 1.7;
  font-weight: 800;
  color: #111611;
}

.applications .section-cta--green .section-cta__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.applications .section-cta--green .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border-radius: 0 !important;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: none !important;
}

.applications .section-cta--green .btn--cta {
  background: #111611 !important;
  border: 1px solid #111611 !important;
  color: #ffffff !important;
}

.applications .section-cta--green .btn--ghost {
  background: transparent !important;
  border: 1px solid rgba(17, 22, 17, 0.42) !important;
  color: #111611 !important;
}

.applications .section-cta--green .btn--cta:hover {
  background: #ffffff !important;
  border-color: #ffffff !important;
  color: #111611 !important;
}

.applications .section-cta--green .btn--ghost:hover {
  background: #111611 !important;
  border-color: #111611 !important;
  color: #ffffff !important;
}

/* DOTS */
.applications-dots {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
}

.applications-dots__dot {
  width: 10px;
  height: 10px;
  min-width: 10px;
  min-height: 10px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(151, 201, 58, 0.32);
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  transition:
    transform var(--transition-fast),
    background var(--transition-fast),
    opacity var(--transition-fast);
}

.applications-dots__dot.is-active {
  background: #97c93a;
  transform: scale(1.15);
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .applications-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .applications .section-heading {
    max-width: 100%;
    margin: 0 0 42px;
    text-align: left;
  }

  .applications .pill {
    margin-bottom: 16px;
    font-size: 0.76rem;
    letter-spacing: 0.14em;
  }

  .applications .pill::before {
    width: 28px;
  }

  .applications .section-subtitle {
    max-width: 100%;
  }

  .applications-shell {
    overflow: hidden;
  }

  .applications-grid {
    display: flex;
    gap: 0;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0;
    margin: 0;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .applications-grid::-webkit-scrollbar {
    display: none;
  }

  .application-card {
    flex: 0 0 100%;
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  .application-card:hover {
    transform: none;
  }

  .application-card__image {
    height: 220px;
  }

  .applications-dots {
    display: flex;
  }

  .applications .section-cta--green {
    margin-top: 34px;
    margin-bottom: 24px;
    padding: 24px 20px;
  }

  .applications .section-cta--green .section-cta__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .applications .section-cta--green .section-cta__actions .btn {
    width: 100%;
  }
}

@media (max-width: 576px) {
  .application-card__image {
    height: 200px;
  }

  .application-card__body {
    padding: 22px 16px 18px;
  }

  .application-card__title {
    font-size: 1.12rem;
  }

  .application-card__text {
    font-size: 0.90rem;
  }

  .application-card .btn {
    width: 100%;
  }
}
/* =========================================================
   COMPARISON
   - sem foto
   - fundo claro
   - heading alinhado à esquerda
   - tabela premium
   - CTA verde/preto
   - mobile adaptado
========================================================== */

.materials-comparison {
  background: #f5f7f2;
  position: relative;
  padding-top: 24px;
  padding-bottom: 110px;
}

.materials-comparison .section-heading {
  max-width: 980px;
  margin: 0 0 28px;
  text-align: left;
}

.materials-comparison .pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #97c93a !important;
  line-height: 1;
}

.materials-comparison .pill::before {
  content: "";
  display: inline-block;
  width: 36px;
  height: 1px;
  background: #97c93a;
}

.materials-comparison .section-title {
  margin: 0 0 16px;
  max-width: 980px;
  color: #111611;
}

.materials-comparison .section-subtitle {
  margin: 0;
  max-width: 860px;
  color: rgba(17, 22, 17, 0.72);
}

/* WRAP */
.comparison-table-wrap {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.comparison-table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}

/* TABELA */
.comparison-table {
  display: grid;
  min-width: 920px;
  border: 1px solid rgba(17, 22, 17, 0.10);
  background: #ffffff;
  box-shadow: 0 18px 45px rgba(16, 26, 16, 0.06);
}

.comparison-table__head,
.comparison-table__body {
  display: grid;
}

.comparison-table__row {
  display: grid;
  grid-template-columns: minmax(160px, 0.8fr) minmax(240px, 1.1fr) minmax(180px, 0.8fr) minmax(240px, 1.1fr);
}

.comparison-table__cell {
  display: flex;
  align-items: center;
  padding: 20px 18px;
  font-size: 0.95rem;
  line-height: 1.66;
  color: rgba(17, 22, 17, 0.78);
  border-right: 1px solid rgba(17, 22, 17, 0.08);
  border-bottom: 1px solid rgba(17, 22, 17, 0.08);
}

.comparison-table__cell:last-child {
  border-right: 0;
}

.comparison-table__row:last-child .comparison-table__cell {
  border-bottom: 0;
}

.comparison-table__cell--head {
  background: #111611;
  color: #ffffff;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.comparison-table__body .comparison-table__row:nth-child(even) .comparison-table__cell {
  background: #fbfcf9;
}

.comparison-badge {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(151, 201, 58, 0.28);
  background: rgba(151, 201, 58, 0.12);
  color: #111611;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* TEXTO ABAIXO DA TABELA */
.comparison-note {
  padding: 18px 20px;
  border: 1px solid rgba(17, 22, 17, 0.10);
  background: #ffffff;
}

.comparison-note p {
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.72;
  color: rgba(17, 22, 17, 0.76);
}

/* CTA VERDE */
.materials-comparison .section-cta--green {
  margin-top: 34px;
  margin-bottom: 24px;
  padding: 34px;
  border: 1px solid rgba(17, 22, 17, 0.18);
  background: #97c93a;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.10);
  text-align: center;
}

.materials-comparison .section-cta--green .section-cta__text {
  margin: 0 0 18px;
  font-size: 1.04rem;
  line-height: 1.7;
  font-weight: 800;
  color: #111611;
}

.materials-comparison .section-cta--green .section-cta__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.materials-comparison .section-cta--green .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border-radius: 0 !important;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: none !important;
}

.materials-comparison .section-cta--green .btn--cta {
  background: #111611 !important;
  border: 1px solid #111611 !important;
  color: #ffffff !important;
}

.materials-comparison .section-cta--green .btn--ghost {
  background: transparent !important;
  border: 1px solid rgba(17, 22, 17, 0.42) !important;
  color: #111611 !important;
}

.materials-comparison .section-cta--green .btn--cta:hover {
  background: #ffffff !important;
  border-color: #ffffff !important;
  color: #111611 !important;
}

.materials-comparison .section-cta--green .btn--ghost:hover {
  background: #111611 !important;
  border-color: #111611 !important;
  color: #ffffff !important;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .materials-comparison {
    padding-bottom: 96px;
  }

  .materials-comparison .section-heading,
  .materials-comparison .section-title,
  .materials-comparison .section-subtitle {
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  .materials-comparison {
    padding-top: 18px;
    padding-bottom: 88px;
  }

  .materials-comparison .section-heading {
    margin: 0 0 24px;
    text-align: left;
  }

  .materials-comparison .pill {
    margin-bottom: 16px;
    font-size: 0.76rem;
    letter-spacing: 0.14em;
  }

  .materials-comparison .pill::before {
    width: 28px;
  }

  .materials-comparison .section-title {
    margin: 0 0 14px;
  }

  .comparison-table {
    min-width: 760px;
  }

  .comparison-table__cell {
    padding: 16px 14px;
    font-size: 0.90rem;
  }

  .comparison-note {
    padding: 16px;
  }

  .comparison-note p {
    font-size: 0.92rem;
    line-height: 1.68;
  }

  .materials-comparison .section-cta--green {
    margin-top: 28px;
    margin-bottom: 18px;
    padding: 24px 20px;
  }

  .materials-comparison .section-cta--green .section-cta__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .materials-comparison .section-cta--green .section-cta__actions .btn {
    width: 100%;
  }
}

@media (max-width: 576px) {
  .comparison-table {
    min-width: 680px;
  }

  .comparison-badge {
    min-height: 34px;
    padding: 0 12px;
    font-size: 0.74rem;
  }
}

/* =========================================================
   PROCESS
   - fundo black
   - heading no padrão Material Comparison
   - textos do título como antes
   - mais espaço entre texto e cards
   - sem ícones
   - CTA branco com detalhes verde/preto
   - carousel mobile com dots
========================================================== */

.process {
  background: #111611;
  position: relative;
  padding-top: 24px;
  padding-bottom: 110px;
}

.process .section-heading {
  max-width: 980px;
  margin: 0 0 40px;
  text-align: left;
}

.process .pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #97c93a !important;
  line-height: 1;
}

.process .pill::before {
  content: "";
  display: inline-block;
  width: 36px;
  height: 1px;
  background: #97c93a;
}

.process .section-title {
  margin: 0 0 16px;
  max-width: 980px;
  color: #ffffff;
}

.process .section-subtitle {
  margin: 0;
  max-width: 860px;
  color: rgba(255, 255, 255, 0.76);
}

.process-shell {
  position: relative;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.process-step {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 30px 26px 26px;
  background: #ffffff;
  border: 1px solid rgba(17, 22, 17, 0.08);
  box-shadow: 0 18px 45px rgba(16, 26, 16, 0.06);
  transition:
    transform var(--transition-medium),
    border-color var(--transition-medium),
    box-shadow var(--transition-medium);
}

.process-step:hover {
  transform: translateY(-8px);
  border-color: rgba(151, 201, 58, 0.40);
  box-shadow: 0 24px 60px rgba(10, 16, 10, 0.12);
}

.process-step__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 34px;
  margin-bottom: 18px;
  padding: 0 12px;
  background: rgba(151, 201, 58, 0.12);
  border: 1px solid rgba(151, 201, 58, 0.26);
  font-size: 0.78rem;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.18em;
  color: #567a17;
  text-transform: uppercase;
}

/* ícone removido */
.process-step__icon {
  display: none !important;
}

.process-step__title {
  margin: 0 0 12px;
  font-size: 1.32rem;
  line-height: 1.08;
  font-weight: 900;
  color: #111611;
}

.process-step__text {
  margin: 0 0 22px;
  font-size: 0.96rem;
  line-height: 1.74;
  color: rgba(17, 22, 17, 0.78);
}

.process-step__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 46px;
  margin-top: auto;
  padding: 0 18px;
  border: 1px solid rgba(17, 22, 17, 0.16);
  background: transparent;
  color: #111611;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition:
    background var(--transition-fast),
    border-color var(--transition-fast),
    color var(--transition-fast),
    transform var(--transition-fast);
}

.process-step__link:hover {
  background: #111611;
  border-color: #111611;
  color: #ffffff;
  transform: translateY(-1px);
}

/* CTA BRANCO */
.process .section-cta--white {
  margin-top: 56px;
  margin-bottom: 24px;
  padding: 34px;
  border: 1px solid rgba(151, 201, 58, 0.24);
  background: #ffffff;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.process .section-cta--white .section-cta__text {
  margin: 0 0 18px;
  font-size: 1.04rem;
  line-height: 1.7;
  font-weight: 800;
  color: #111611;
}

.process .section-cta--white .section-cta__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.process .section-cta--white .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border-radius: 0 !important;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: none !important;
}

.process .section-cta--white .btn--cta {
  background: #97c93a !important;
  border: 1px solid #97c93a !important;
  color: #111611 !important;
}

.process .section-cta--white .btn--ghost {
  background: transparent !important;
  border: 1px solid rgba(17, 22, 17, 0.26) !important;
  color: #111611 !important;
}

.process .section-cta--white .btn--cta:hover,
.process .section-cta--white .btn--ghost:hover {
  background: #111611 !important;
  border-color: #111611 !important;
  color: #ffffff !important;
}

/* DOTS */
.process-dots {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
}

.process-dots__dot {
  width: 10px;
  height: 10px;
  min-width: 10px;
  min-height: 10px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(151, 201, 58, 0.32);
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  transition:
    transform var(--transition-fast),
    background var(--transition-fast),
    opacity var(--transition-fast);
}

.process-dots__dot.is-active {
  background: #97c93a;
  transform: scale(1.15);
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .process {
    padding-bottom: 96px;
  }

  .process .section-heading,
  .process .section-title,
  .process .section-subtitle {
    max-width: 100%;
  }

  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .process {
    padding-top: 18px;
    padding-bottom: 88px;
  }

  .process .section-heading {
    margin: 0 0 24px;
    text-align: left;
  }

  .process .pill {
    margin-bottom: 16px;
    font-size: 0.76rem;
    letter-spacing: 0.14em;
  }

  .process .pill::before {
    width: 28px;
  }

  .process .section-title {
    margin: 0 0 14px;
  }

  .process-shell {
    overflow: hidden;
  }

  .process-grid {
    display: flex;
    gap: 0;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0;
    margin: 0;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .process-grid::-webkit-scrollbar {
    display: none;
  }

  .process-step {
    flex: 0 0 100%;
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  .process-step:hover {
    transform: none;
  }

  .process-dots {
    display: flex;
  }

  .process .section-cta--white {
    margin-top: 30px;
    margin-bottom: 18px;
    padding: 24px 20px;
  }

  .process .section-cta--white .section-cta__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .process .section-cta--white .section-cta__actions .btn {
    width: 100%;
  }
}

@media (max-width: 576px) {
  .process-step {
    padding: 24px 18px 20px;
  }

  .process-step__title {
    font-size: 1.14rem;
  }

  .process-step__text {
    font-size: 0.90rem;
  }

  .process-step__link {
    width: 100%;
  }
}

/* =========================================================
   FAQ
   - versão ajustada para ficar como no print 1
   - sem depender de variáveis globais
========================================================== */

.faq-section {
  padding: 120px 0;
  background: #f5f7f2;
  border-bottom: 2px solid #97c93a;
}

#faq .faqGrid {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.45fr);
  gap: 56px;
  align-items: start;
}

#faq .faqLeft .section-label,
#faq .faqLeft .section-title,
#faq .faqLeft .section-subtitle {
  color: #111611;
}

/* label FAQ verde com traço */
#faq .faqLeft .section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  color: #97c93a;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1;
}

#faq .faqLeft .section-label::before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 2px;
  background: #97c93a;
  flex: 0 0 30px;
}

#faq .faqLeft .section-title {
  margin: 0 0 18px;
  max-width: 420px;
  font-size: clamp(2.6rem, 5vw, 5rem);
  line-height: 0.94;
  font-weight: 900;
  letter-spacing: -0.05em;
  color: #111611;
}

#faq .faqLeft .section-subtitle {
  margin: 0;
  max-width: 420px;
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(17, 22, 17, 0.76);
}

#faq .faqHelp {
  margin-top: 18px;
}

#faq .underLink {
  display: inline-block;
  margin-top: 0;
  color: #97c93a;
  font-weight: 900;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 2px solid #97c93a;
  padding-bottom: 8px;
  transition: color 0.25s ease, border-color 0.25s ease;
}

#faq .underLink:hover {
  color: #111611;
  border-color: #111611;
}

#faq .faqRight {
  padding: 0;
  background: transparent;
  border: none;
}

#faq .faqItem {
  border-bottom: 1px solid rgba(151, 201, 58, 0.6);
}

#faq .faqItem:first-child {
  border-top: 1px solid rgba(151, 201, 58, 0.6);
}

#faq .faqQ {
  width: 100%;
  padding: 24px 0;
  background: transparent;
  border: none;
  color: #111611;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  cursor: pointer;
  text-align: left;
}

#faq .faqQ span:first-child {
  font-size: 1rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1.35;
  color: #111611;
}

#faq .faqIcon {
  flex: 0 0 auto;
  font-size: 1.6rem;
  line-height: 1;
  color: #97c93a;
  transition: transform 0.25s ease, color 0.25s ease;
}

#faq .faqQ[aria-expanded="true"] .faqIcon {
  color: #97c93a;
  transform: rotate(45deg);
}

#faq .faqA {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.28s ease;
}

#faq .faqA p {
  margin: 0 0 24px;
  color: rgba(17, 22, 17, 0.72);
  font-size: 0.98rem;
  line-height: 1.85;
  max-width: 760px;
}

#faq .faqA .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 0 !important;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: none !important;
}

#faq .faqA .btn--ghost {
  background: transparent !important;
  border: 1px solid rgba(17, 22, 17, 0.16) !important;
  color: #111611 !important;
  text-decoration: none;
}

#faq .faqA .btn--ghost:hover {
  background: #111611 !important;
  border-color: #111611 !important;
  color: #ffffff !important;
}

#faq .faqA.open {
  max-height: 400px;
}

/* =========================================================
   FAQ RESPONSIVE
========================================================== */
@media (max-width: 980px) {
  #faq .faqGrid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  #faq .faqLeft .section-title,
  #faq .faqLeft .section-subtitle {
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  .faq-section {
    padding: 96px 0;
  }

  #faq .faqGrid {
    gap: 28px;
  }

  #faq .faqLeft {
    text-align: left;
  }

  #faq .faqLeft .section-label,
  #faq .faqLeft .section-title,
  #faq .faqLeft .section-subtitle {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
  }

  #faq .faqLeft .section-label {
    justify-content: flex-start;
  }

  #faq .faqLeft .section-title {
    font-size: clamp(2.2rem, 10vw, 3.8rem);
    line-height: 0.96;
  }

  #faq .faqQ {
    padding: 20px 0;
    gap: 14px;
  }

  #faq .faqQ span:first-child {
    font-size: 0.95rem;
  }

  #faq .faqA p {
    font-size: 0.95rem;
    line-height: 1.75;
    margin-bottom: 20px;
  }

  #faq .faqA .btn {
    width: 100%;
  }
}

@media (max-width: 576px) {
  .faq-section {
    padding: 84px 0;
  }

  #faq .faqQ span:first-child {
    font-size: 0.9rem;
  }

  #faq .faqIcon {
    font-size: 1.3rem;
  }

  #faq .faqA p {
    font-size: 0.92rem;
  }
}

/* =========================================================
   FINAL CTA
========================================================== */
.final-cta {
  overflow: hidden;
}

.final-cta__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: 28px;
  align-items: stretch;
}

.final-cta__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 56px 52px;
  background: #181f18;
  border: 1px solid rgba(151, 201, 58, 0.16);
}

.final-cta__title {
  margin: 14px 0 16px;
  font-size: clamp(2rem, 3.4vw, 3.2rem);
  line-height: 0.98;
  font-weight: 900;
  letter-spacing: -0.045em;
  text-transform: uppercase;
  color: #ffffff;
}

.final-cta__text {
  margin: 0 0 24px;
  max-width: 680px;
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
}

.final-cta__actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.final-cta__media {
  overflow: hidden;
  border: 1px solid rgba(151, 201, 58, 0.16);
  background: #0f140f;
}

.final-cta__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* =========================================================
   RESPONSIVE
========================================================== */
@media (max-width: 1200px) {
  .applications-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .comparison-layout,
  .final-cta__layout {
    grid-template-columns: 1fr;
  }

  .comparison-layout__image {
    min-height: 420px;
  }

  .final-cta__media {
    min-height: 360px;
  }
}

@media (max-width: 992px) {
  .section {
    padding: 96px 0;
  }

  .materials-grid,
  .applications-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .comparison-table__row {
    grid-template-columns: 1fr;
  }

  .comparison-table__cell--head {
    display: none;
  }

  .comparison-table__body .comparison-table__row {
    border-bottom: 1px solid rgba(17, 22, 17, 0.08);
    padding: 6px 0;
  }

  .comparison-table__body .comparison-table__row:last-child {
    border-bottom: 0;
  }

  .comparison-table__body .comparison-table__cell {
    padding: 12px 16px;
    border-bottom: 0;
  }

  .final-cta__content {
    padding: 42px 34px;
  }
}

@media (max-width: 767px) {
  .section {
    padding: 86px 0;
  }

  .section-heading {
    margin-bottom: 38px;
  }

  .section-title {
    font-size: clamp(1.75rem, 8vw, 2.7rem);
    line-height: 1;
  }

  .section-subtitle {
    font-size: 0.96rem;
    line-height: 1.72;
  }

  .materials-grid,
  .applications-grid,
  .process-grid,
  .comparison-points,
  .faq-list {
    gap: 18px;
  }

  .material-card__media {
    height: 220px;
  }

  .application-card__image {
    height: 210px;
  }

  .material-card__body,
  .application-card__body,
  .process-step,
  .faq-item__question,
  .faq-item__answer,
  .section-cta {
    padding-left: 20px;
    padding-right: 20px;
  }

  .material-card__actions,
  .section-cta__actions,
  .final-cta__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .material-card__actions .btn,
  .application-card .btn,
  .section-cta .btn,
  .faq-item__answer .btn,
  .final-cta__actions .btn,
  .comparison-layout .btn,
  .process-step__link {
    width: 100%;
  }

  .final-cta__content {
    padding: 34px 24px;
  }

  .final-cta__media {
    min-height: 280px;
  }
}

@media (max-width: 576px) {
  .section {
    padding: 78px 0;
  }

  .pill {
    min-height: 38px;
    padding: 0 14px;
    font-size: 0.62rem;
    letter-spacing: 0.1em;
  }

  .section-title {
    font-size: clamp(1.6rem, 9vw, 2.2rem);
    letter-spacing: -0.04em;
  }

  .section-subtitle,
  .material-card__text,
  .application-card__text,
  .comparison-point p,
  .process-step__text,
  .faq-item__answer p,
  .final-cta__text {
    font-size: 0.92rem;
  }

  .material-card__title,
  .application-card__title,
  .process-step__title {
    font-size: 1.18rem;
  }

  .material-card__media {
    height: 200px;
  }

  .application-card__image {
    height: 190px;
  }

  .comparison-layout__image {
    min-height: 280px;
  }

  .material-card__body,
  .application-card__body,
  .process-step {
    padding: 22px 18px 20px;
  }

  .faq-item__question {
    padding: 20px 18px;
    font-size: 0.92rem;
  }

  .faq-item__answer {
    padding: 0 18px 20px;
  }

  .section-cta {
    padding: 22px 18px;
  }

  .final-cta__content {
    padding: 30px 18px;
  }

  .final-cta__media {
    min-height: 240px;
  }
}