/*
  STYLE v 1.1;
  05/2023;
  João Diogo Pereira;
*/
:root {
  --darkhaki: #474924;
  --beige: #eeeecd;
  --white: #ffffff;
  --greenmenu: #7b7d3e;
  --black: #1D1D1F;
  --palmleaf: #A7A452;
  --olive: #7B7D3D;
  --olive-dark: #858642;
}

/*FONTS*/

@font-face {
  font-family: 'Conthrax';
  src: url(../fonts/Conthrax-SemiBold.ttf);
}

@font-face {
  font-family: 'Eurostar';
  src: url(../fonts/eurostar.ttf);
}

/*GERAL*/

html {
  overflow-x: hidden;
  scroll-padding-top: 108px;
}

.main-container {
  margin: 0 auto;
  width: 90%;
}

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
}

.row {
  margin: 0;
  padding: 0;
}

body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  min-height: 100vh;
}

main {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  background-color: #FEFEF6;
}

body:not(.home) main {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin-top: 107px;
  background-color: #FEFEF6;
}

.preloader {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 9999999;
  background-color: #fafafa;
  background-position: center center;
  background-repeat: no-repeat;
  background-image: url(../images/preloader.svg);
}

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

.font-primary {
  font-family: 'Conthrax', sans-serif;
}

.font-secondary {
  font-family: 'Eurostar', sans-serif;
}


/* ==========================================================================
   Secção "Da Semente à Palete" — Desktop
   ========================================================================== */

#intro {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: #eeeecd;
  transition: opacity 0.7s ease, transform 0.7s ease;
}

/* ----- Texto ----- */
.intro-text {
  position: absolute;
  top: 50%;
  left: 7%;
  transform: translateY(-50%);
  opacity: 0;
  transition: opacity 0.9s ease, top 1s ease;
  z-index: 999;
}

.intro-text.is-risen {
  top: 35%;
}

.intro-line-1,
.intro-line-2 {
  display: flex;
  align-items: baseline;
  gap: 14px;
}

.text-small {
  font-size: 48px;
  font-weight: 400;
  font-family: 'Conthrax';
  color: var(--darkhaki, #484826);
}

.text-big {
  font-size: 75px;
  font-weight: 700;
  font-family: 'Conthrax';
  color: var(--darkhaki, #484826);
}

.text-olive {
  background: linear-gradient(90deg, #A7A654, #7B7D3D);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ----- Ícone do ciclo ----- */
.intro-ciclos {
  position: absolute;
  top: 50%;
  right: 9%;
  width: 22%;
  max-width: 100%;
  opacity: 0;
  transform: translateY(-50%);
  transition: opacity 0.9s ease, top 1s ease;
  z-index: 110;
}

.intro-ciclos.is-risen {
  top: 35%;
}

/* ----- Terra ----- */
.intro-ground {
  position: absolute;
  top: 0;
  z-index: 100;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../images/ground.png) center / cover no-repeat;
  opacity: 0;
  transform: translateY(200px);
  transition: opacity 1.2s ease, transform 1.2s ease;
}

/* ----- Momento 1: árvores jovens ----- */
.saplings {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 95;
  pointer-events: none;
}

.saplings {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 95;
  pointer-events: none;
}

.sapling {
  position: absolute;
  bottom: 0;
  opacity: 0;
  transition: transform 1.1s ease, opacity 1.1s ease;
}

.sapling-1 {
  left: 10%;
  width: 12%;
  transform: translateY(60px);
}

.sapling-2 {
  left: 28%;
  width: 10%;
  transform: translateY(60px);
}

.sapling-3 {
  left: 45%;
  width: 13%;
  transform: translateY(60px);
}

.sapling-4 {
  left: 62%;
  width: 9%;
  transform: translateY(60px);
}

.sapling-5 {
  left: 78%;
  width: 9%;
  transform: translateY(60px);
}

/* ----- Momento 2: paletes (imagem única) ----- */
.pallets-img {
  position: absolute;
  top: 14%;
  left: 14%;
  width: 73%;
  max-width: 100%;
  opacity: 0;
  transform: translateY(50px);
  transition: transform 1.1s ease, opacity 1.1s ease;
  z-index: 120;
  pointer-events: none;
}

/* ----- Estados ativos (controlados via JS) ----- */
.intro-text.is-visible,
.intro-ciclos.is-visible {
  opacity: 1;
}

.intro-ground.is-visible {
  opacity: 1;
  transform: translateY(100px);
}

.intro-ground.is-hidden {
  opacity: 0;
  transform: translateY(50px);
}

.sapling-1.is-visible {
  opacity: 1;
  transform: translateY(-60px);
}

.sapling-2.is-visible {
  opacity: 1;
  transform: translateY(-80px);
}

.sapling-3.is-visible {
  opacity: 1;
  transform: translateY(-20px);
}

.sapling-4.is-visible {
  opacity: 1;
  transform: translateY(-55px);
}

.sapling-5.is-visible {
  opacity: 1;
  transform: translateY(-100px);
}

.sapling-1.is-hidden,
.sapling-2.is-hidden,
.sapling-3.is-hidden,
.sapling-4.is-hidden,
.sapling-5.is-hidden {
  opacity: 0;
  transform: translateY(50px);
}

.pallets-img.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ----- Scroll lock ----- */
body.lock-scroll {
  overflow: hidden;
  height: 100vh;
  touch-action: none;
  overscroll-behavior: none;
  position: fixed;
  width: 100%;
}

/* ----- Botão avançar ----- */
.btn-avancar {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  background: transparent;
  border: none;
  color: #fff;
  font-family: 'Conthrax';
  font-size: 14px;
  letter-spacing: 2px;
  cursor: pointer;
  z-index: 9999;
  opacity: 1;
  transition: opacity 0.5s ease;
}

.btn-avancar.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.btn-avancar::after {
  content: "";
  display: block;
  width: 40px;
  height: 1px;
  background: #fff;
  margin: 6px auto 0;
}

/* Cartões iniciais de processo */

.process-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
}


.process-title {
  font-size: 45px;
  font-weight: 600;
  background: linear-gradient(90deg, #474924, #7B7D3E);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  /* verde do design */
  margin-top: -10px;
  font-family: 'Conthrax';
}


.process-desc {
  font-size: 19px;
  line-height: 1.6;
  font-weight: 400;
  color: var(--black);
  font-family: 'Eurostar';
}


.process-img {
  width: 100%;
  height: 400px;
  /* ajusta como quiseres */
  object-fit: contain;
  object-position: center;
  border-radius: 10px;
  /* opcional */
}


.process-section .container {
  position: relative;
}


.process-card::before {
  content: "";
  width: 40px;
  height: 40px;
  background: var(--palmleaf);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%);
}

.process-card::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  z-index: 0;
  background-image: repeating-linear-gradient(to bottom,
      var(--palmleaf) 0px,
      var(--palmleaf) 6px,
      transparent 6px,
      transparent 30px);
}

.process-card:first-child::after {
  top: 50%;
  bottom: 0;
}

.process-card:last-child::after {
  top: 0;
  bottom: 50%;
}

/* Certificações */
.certificacoes-section h2 {
  font-size: 40px;
  font-weight: 600;
  background: linear-gradient(90deg, #A7A654, var(--olive));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: 'Conthrax';
  margin-bottom: 50px;

  /* Adiciona isto */
  display: flex;
  align-items: center;
  gap: 7rem;
}

.certificacoes-section h2::before,
.certificacoes-section h2::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, #A7A654, var(--olive));
}

.cert-logo {
  width: 160px;
  height: 120px;
  /* ajusta ao valor que preferires */
  object-fit: contain;
}

.cert-title {
  font-size: 22px;
  font-weight: 600;
  font-family: 'Eurostar';
}

.cert-desc {
  font-size: 18px;
  color: var(--black);
  line-height: 1.6;
  max-width: 90%;
  margin: 0 auto;
  font-family: 'Eurostar';
}

/* Produtos em Destaque */
.produtos-destaque-section {
  background-color: var(--greenmenu);
}

.produtos-destaque-section h2 {
  font-size: 40px;
  font-weight: 600;
  color: #fff;
  font-family: 'Conthrax';
  display: flex;
  align-items: center;
  gap: 6rem;
}

.produtos-destaque-section h2::before,
.produtos-destaque-section h2::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #fff;
}

.produtos-slider {
  overflow: hidden;
}

.produtos-card {
  background: #fff;
  border-radius: 16px;
  padding: 3rem;
  gap: 2rem;
}

.produtos-info {
  flex: 1;
}

.produtos-title {
  font-family: 'Conthrax';
  font-size: 25px;
  background: linear-gradient(90deg, #7B7D3E, #474924);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
}

.produtos-desc {
  font-size: 15px;
  color: var(--black);
  margin-bottom: 1rem;
  font-family: 'Eurostar';
}

.produtos-ref {
  font-size: 12px;
  color: #999;
  font-family: 'Eurostar';
}

.produtos-imagem {
  flex: 1;
  text-align: right;
}

.produtos-imagem img {
  max-height: 180px;
  object-fit: contain;
}


.produtos-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2rem;
  position: relative;
}

.btn-ver-todos {
  border: 1px solid #fff;
  background-color: white;
  color: var(--greenmenu);
  padding: 0.4rem 1.5rem;
  border-radius: 20px;
  text-decoration: none;
  font-size: 14px;
  font-family: 'Eurostar';
  transition: all .3s ease-in-out;
}

.btn-ver-todos:hover {
  background: transparent;
  color: white;
}

.produtos-arrows {
  position: absolute;
  right: 0;
  display: flex;
  gap: 1rem;
}

.arrow-prev,
.arrow-next {
  background: transparent;
  border: none;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
}

.produtos-slider .owl-stage-outer {
  border-radius: 16px;
}

.produtos-slider .owl-item {
  display: flex;
}

.produtos-slider .produtos-card {
  width: 100%;
}

.produtos-slider .owl-stage {
  display: flex;
  align-items: stretch;
}

.produtos-slider .owl-item {
  display: flex;
  flex: 1;
}

.produtos-slider .produtos-card {
  width: 100%;
  flex: 1;
}

/* Notícias */
.noticias-linha {
  border: none;
  border-top: 1px solid #c8b97a;
  margin: 0 0 2rem 0;
  opacity: 1;
  width: 30%;
}

.noticias-title {
  font-family: 'Conthrax';
  font-size: 35px;
  font-weight: 600;
  background: linear-gradient(90deg, #A7A654, var(--olive));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.2;
}

.btn-ver-todas {
  display: inline-block;
  border: 1px solid var(--olive);
  color: var(--olive);
  background: transparent;
  padding: 0.4rem 1.2rem;
  border-radius: 20px;
  text-decoration: none;
  font-size: 14px;
  width: fit-content;
  font-family: 'Eurostar';
  transition: all .3s ease-in-out;
}

.btn-ver-todas:hover {
  background: var(--olive);
  color: #fff;
}

.noticia-card {
  border-radius: 8px;
  overflow: hidden;
  height: 100%;
}

.noticia-imagem img {
  height: 180px;
  object-fit: cover;
}

.noticia-titulo {
  font-family: 'Conthrax';
  font-size: 20px;
  color: var(--olive);
  margin-bottom: 0.5rem;
}

.noticia-data {
  font-size: 14px;
  color: var(--darkhaki);
  margin-bottom: 0.75rem;
  display: block;
  font-family: 'Eurostar';
}

.noticia-desc {
  font-size: 14px;
  color: var(--black);
  margin-bottom: 1rem;
  font-family: 'Eurostar';
}

.btn-saber-mais {
  display: inline-block;
  background: var(--olive);
  color: #fff;
  padding: 0.5rem 1.2rem;
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;
  width: fit-content;
  font-family: 'Eurostar';
  transition: all .3s ease-in-out;
}

.btn-saber-mais:hover {
  background: #5a5c2c;
  color: #fff;
}

/* Newsletter */
.newsletter-section {
  background-image: url('../images/newsletterfundo.jpg');
  background-size: cover;
  background-position: center;
  border-radius: 16px;
  margin: 2rem auto;
  overflow: hidden;
}

.newsletter-overlay {
  padding: 5rem 2rem;
}

.newsletter-titulo {
  font-family: 'Conthrax';
  font-size: 36px;
  color: #fff;
  margin-bottom: 2rem;
  line-height: 1.3;
}

/* Remove estilos do wrapper principal */
.noptin-optin-form-wrapper {
  all: unset !important;
  display: block !important;
  width: 100% !important;
}

/* Remove layout interno do Noptin */
.noptin-optin-form,
.noptin-form-fields {
  all: unset !important;
  display: contents !important;
}

.noptin-form-field-wrapper,
.noptin-field-email {
  all: unset !important;
  display: flex !important;
  flex: 1 !important;
  min-width: 0 !important;
}

.noptin-form-field-wrapper.noptin-form-field-submit {
  flex: 0 !important;
}

/* Remove labels */
.noptin-label {
  display: none !important;
}

/* Remove nota de privacidade do Noptin */
.noptin-form-note {
  display: none !important;
}

/* Remove margens e blocos automáticos */
.noptin-optin-main-wrapper,
.noptin-inpost-main-wrapper {
  all: unset !important;
}


.noptin-custom-wrapper form,
.noptin-custom-wrapper .noptin-form-footer {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  width: 100% !important;
  padding: 0 !important;
}


#noptin-form-1__field-email {
  flex: 1 !important;
  min-width: 0 !important;
  border: none !important;
  outline: none !important;
  background: transparent !important;
  padding: 0.6rem 1.2rem !important;
  font-size: 14px !important;
  font-family: 'Eurostar' !important;
  box-shadow: none !important;
  height: auto !important;
  width: 100% !important;
  margin-bottom: 0 !important;
}

#noptin-form-1__field-email::placeholder,
#noptin-form-1__field-email.noptin-form-field__has-no-placeholder::placeholder {
  color: #999 !important;
  opacity: 1 !important;
  font-family: 'Eurostar' !important;
}


#noptin-form-1__submit {
  flex-shrink: 0 !important;
  background: var(--olive) !important;
  color: #fff !important;
  border-radius: 50px !important;
  padding: 0.4rem 1.2rem !important;
  /* padding vertical menor, horizontal maior */
  font-size: 14px !important;
  font-family: 'Eurostar' !important;
  border: none !important;
  white-space: nowrap !important;
  cursor: pointer !important;
  height: auto !important;
  line-height: 1.5 !important;
  min-width: 180px !important;
  /* garante largura mínima do botão */
  text-align: center !important;
}

#noptin-form-1__submit:hover {
  background: #5a5c2c !important;
}

/* Esconde apenas o aviso de erro */
.noptin-alert.noptin-error {
  display: none !important;
}

/* Sucesso visível */
.noptin-alert.noptin-success {
  background: #ffefef !important;
  color: #b30000 !important;
  border: 1px solid #ffb3b3 !important;
  padding: 8px 12px !important;
  border-radius: 16px !important;
  font-size: 13px !important;
  font-family: 'Eurostar' !important;
  display: inline-block !important;
}

@media only screen and (min-width: 993px) {
  .noptin-alert.noptin-success {
    position: absolute !important;
    top: 50%;
    left: .5rem;
    transform: translateY(-50%);
    margin: 0;
  }
}

.newsletter-input-group {
  max-width: 550px;
  width: 100%;
  background: #fff;
  border-radius: 50px;
  overflow: hidden;
  padding: 4px;
  display: flex;
  align-items: center;
}

.newsletter-aviso {
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  font-family: 'Eurostar';
}

/* Rodapé */
.site-footer {
  background: #FEFEF6;
  position: relative;
}

.footer-logo {
  max-height: 60px;
}

.footer-titulo {
  font-family: 'Conthrax';
  background: linear-gradient(90deg, #474924, #7B7D3E);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 16px;
  margin-bottom: 1rem;
}

.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-menu li {
  margin-bottom: 0.5rem;
}

.footer-menu li a {
  color: var(--black);
  font-family: 'Eurostar';
  text-decoration: none;
  font-size: 16px;
  transition: all .3s ease-in-out;
}

.footer-menu li a:hover,
.footer-menu.footer-docs li a:hover {
  color: var(--olive);
}

.footer-menu.footer-docs li a {
  color: var(--black);
  font-family: 'Eurostar';
  text-decoration: none;
  font-size: 12px;
  transition: all .3s ease-in-out;
}

.footer-desc {
  font-size: 14px;
  color: var(--black);
  font-family: 'Eurostar';
  margin-bottom: 0.75rem;
}

.footer-legal-desc {
  font-size: 14px;
  color: var(--white);
  font-family: 'Eurostar';
  margin-bottom: 0.75rem;
}

.footer-legal-desc strong {
  letter-spacing: 1px;
}

.btn-newsletter-footer {
  display: inline-block;
  font-family: 'Eurostar';
  background: var(--darkhaki);
  color: #fff;
  padding: 0.4rem 1rem;
  border-radius: 14px;
  font-size: 12px;
  text-decoration: none;
  transition: all .3s ease-in-out;
}

.btn-newsletter-footer:hover {
  background: #5a5c2c;
  color: #fff;
}

.footer-label {
  font-size: 15px;
  font-family: 'Eurostar';
  color: #999;
  margin-bottom: 0.1rem;
}

.footer-value,
.footer-value a {
  font-size: 15px;
  font-family: 'Eurostar';
  color: var(--black);
  margin-bottom: 0.25rem;
  transition: all .3s ease-in-out;
  text-decoration: none;
}

.footer-value a:hover {
  color: var(--olive);
}

.footer-small {
  font-size: 12px;
  font-family: 'Eurostar';
  color: #aaa;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social img {
  width: 28px;
  height: 28px;
}

.footer-logos-bottom img {
  max-width: 85%;
  height: 100%;
}

/* Scroll to top */
.btn-scroll-top {
  position: absolute;
  bottom: 100px;
  right: 2rem;
  background: var(--palmleaf);
  color: var(--white);
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  font-size: 16px;
  cursor: pointer;
}

/* Barra inferior */
.footer-bottom {
  background: var(--darkhaki);
  color: var(--white);
}

.footer-copy {
  font-size: 14px;
  color: var(--white);
  font-family: 'Eurostar';
}

.footer-celeuma {
  color: var(--white);
  font-family: 'Eurostar';
  font-weight: 600;
  text-decoration: none;
  position: relative;
  display: inline-block;
  transition: color .3s ease-in-out;
}

/* underline animado */
.footer-celeuma::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background-color: var(--white);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .3s ease-in-out;
}

/* hover */
.footer-celeuma:hover {
  color: var(--white);
}

.footer-celeuma:hover::after {
  transform: scaleX(1);
}


.footer-col-bar {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.footer-barra {
  position: absolute;
  width: 1px;
  height: 100%;
  max-height: 165px;
  background: linear-gradient(180deg, #474924, #7B7D3E);
  border-radius: 20px;
  margin-top: 4px;
}

.footer-col-content {
  flex: 1;
}

.footer-doc-icon img {
  width: 35px;
  height: 35px;
  margin-right: 6px;
  fill: var(--darkhaki);
}

/* ===== About ===== */

.section-title {
  font-family: 'Conthrax';
  font-size: 32px;
  font-weight: 700;
  background: linear-gradient(90deg, #7B7D3E, #474924);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.mvv-card {
  background: var(--olive-dark);
  padding: 30px;
  border-radius: 10px;
  box-shadow: #00000040 0px 4px 12px;
  height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  text-align: center;
}

.mvv-title {
  font-family: 'Conthrax', sans-serif;
  font-size: 34px;
  font-weight: 700;
  color: #c3c4a2;
  margin-bottom: 15px;
  height: 60px;
  /* altura fixa para alinhar */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}


.mvv-content {
  font-family: 'Eurostar';
  font-size: 20px;
  color: #fff;
  line-height: 1.5;
}


.timeline {
  position: relative;
  margin: 80px auto;
  padding: 0 20px;
}

/* Linha vertical */
.timeline::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  transform: translateX(-50%);
  background-image: repeating-linear-gradient(to bottom,
      var(--palmleaf) 0px,
      var(--palmleaf) 6px,
      transparent 6px,
      transparent 26px);
}


.contain {
  position: relative;
  width: 50%;
  padding: 30px;
}

.content h2 {
  display: inline-block;
  font-size: 44px;
  font-weight: 700;
  font-family: 'Conthrax';
  background: linear-gradient(90deg, #7B7D3E, #474924);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
}

.content p,
.content {
  margin: 0;
  font-size: 20px;
  line-height: 1.6;
  color: var(--black);
  font-family: 'Eurostar';
}

.left {
  left: 0;
}

.right {
  left: 50%;
}

.contain::after {
  content: "";
  position: absolute;
  top: 25px;
  width: 22px;
  height: 22px;
  background: var(--palmleaf);
  border: 4px solid var(--palmleaf);
  border-radius: 50%;
  z-index: 10;
}

.left::after {
  right: -12px;
}

.right::after {
  left: -12px;
}


/* Ícones */
.icone-card {
  position: relative;
  text-align: center;
  padding: 20px;
  cursor: pointer;
  transition: opacity .3s ease;
}

.icone-img {
  width: 80px;
  height: auto;
  transition: opacity .3s ease;
}

/* Quando o rato entra na secção, todos os ícones ficam apagados */
.sobre-nos-icones:hover .icone-card {
  opacity: 0.3;
}

/* O ícone hover volta a 100% */
.sobre-nos-icones .icone-card:hover {
  opacity: 1;
}

.sobre-nos-icones {
  position: relative;
  padding-bottom: 120px;
  /* espaço reservado para a descrição */
}

/* Descrição global */
.icone-descricao {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 20px;
  font-size: 20px;
  color: var(--black);
  min-height: 40px;
  transition: opacity .3s ease;
  opacity: 0;
  font-family: 'Eurostar';
}

.sobre-nos-video .video-wrapper {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
}

.sobre-nos-video__element {
  width: 100%;
  height: auto;
  display: block;
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
}

.video-wrapper:hover .video-overlay {
  background: rgba(0, 0, 0, 0.4);
}

.video-play-icon {
  width: 80px;
  height: 80px;
  background: white;
  mask: url('data:image/svg+xml;utf8,<svg fill="black" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M8 5v14l11-7z"/></svg>') center/60% no-repeat;
  border-radius: 50%;
  opacity: 0.9;
}

/* PRODUTOS */

/* .produto-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
  display: flex;
  flex-direction: column;
  transition: box-shadow .3s ease-in-out, transform .3s ease-in-out, height .3s ease-in-out;
}

.produto-card.is-hidden{
  height: 100%;
  overflow: hidden;
  position: relative;
  z-index: 1;
  width: 100%;
}

.produto-card:not(.is-hidden){
  position: absolute;
  overflow: visible;
  height: fit-content;
  z-index: 98;
  width: calc(100% - var(--bs-gutter-x));
} */

.produto-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
  padding: 2rem 3rem;
  display: flex;
  flex-direction: column;
  position: relative;
  min-height: 618px;
  transition:
    box-shadow .3s ease-in-out,
    transform .3s ease-in-out;
}

.produto-card.is-open {
  position: absolute;
  overflow: visible;
  height: fit-content;
  z-index: 98;
  width: calc(100% - var(--bs-gutter-x));
}

.produto-card.is-closing {
  position: absolute;
  z-index: 98;
  overflow: visible;
  width: calc(100% - var(--bs-gutter-x));
}

.produto-card__img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.produto-card__body {
  padding: 24px 0px 8px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.produto-card__title {
  font-size: 1.2rem;
  font-weight: 700;
  font-family: 'Eurostar';
  color: var(--black);
  margin-bottom: 10px;
}

.produto-card__excerpt {
  font-size: 0.85rem;
  font-family: 'Eurostar';
  color: #777;
  line-height: 1.6;
  margin-bottom: 8px;
  flex: 1;
}

.produto-card__full-content {
  font-size: 0.875rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 8px;
  font-family: 'Eurostar';
  opacity: 1;
  max-height: 200vh;
  overflow: hidden;
  transition: opacity 0.3s ease-in-out, max-height 0.4s ease-in-out;
}

.produto-card__full-content.is-hidden {
  max-height: 0;
  opacity: 0;
  margin-bottom: 0;
}

.produto-card__full-content table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1rem;
}

/* Células base */
.produto-card__full-content table td {
  border: 1px solid #ddd;
  padding: 8px 12px;
  background: var(--white);
  color: var(--black);
}

/* Primeira linha */
.produto-card__full-content table tr:first-child td {
  background: var(--greenmenu);
  color: var(--white);
  font-weight: 600;
}

.produtos-pagination {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
}

.produtos-pagination ul.page-numbers {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.produtos-pagination .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border-radius: 50px;
  font-family: 'Eurostar';
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--black, #333);
  background: #fff;
  border: 1px solid #e3e3e3;
  text-decoration: none;
  transition: background .2s ease-in-out, color .2s ease-in-out, border-color .2s ease-in-out;
}

.produtos-pagination a.page-numbers:hover {
  background: #f4f4ec;
  border-color: #c9c9a8;
}

.produtos-pagination .page-numbers.current {
  background: #4b4f24;
  /* tom verde-oliva usado nos botões "I'm interested" */
  border-color: #4b4f24;
  color: #fff;
}

.produtos-pagination .page-numbers.dots {
  border: none;
  background: transparent;
}

.produtos-pagination .page-numbers.prev,
.produtos-pagination .page-numbers.next {
  font-size: 1.1rem;
}


.ver-mais-btn {
  background: none;
  border: none;
  color: var(--palmleaf);
  font-size: 0.85rem;
  cursor: pointer;
  padding: 0;
  font-family: 'Eurostar';
  text-decoration: underline;
  text-underline-offset: 3px;
  display: inline-block;
  margin-bottom: 8px;
  align-self: flex-end;
  margin-top: auto;
  transition: all 0.3s ease-in-out;
}

.ver-mais-btn:hover {
  opacity: 0.7;
}

.produto-card__footer {
  padding: 16px 0px 24px;
}

.btn-interesse {
  display: block;
  width: 100%;
  padding: 10px;
  background: var(--darkhaki);
  font-family: 'Eurostar';
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  letter-spacing: 0.02em;
}

.btn-interesse:hover {
  background: color-mix(in srgb, var(--palmleaf) 85%, black);
}

.cat-nav__line {
  all: unset;
  display: block;
  width: 70%;
  margin: 0 auto;
  border-top: 1.5px solid var(--palmleaf);
}


.cat-nav {
  display: flex;
  flex-wrap: nowrap;
  gap: 20px;
  padding-bottom: 4px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.cat-nav::-webkit-scrollbar {
  display: none;
}

.cat-nav a,
.cat-nav span {
  flex: 0 0 auto;
  display: block;
  padding: 10px 20px;
  font-size: 20px;
  color: var(--black);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -1.5px;
  transition: color 0.2s, border-color 0.2s;
  font-family: 'Eurostar';
  white-space: nowrap;
}

.cat-nav a:hover {
  color: var(--palmleaf);
}


.cat-nav .active {
  color: var(--palmleaf);
  pointer-events: none;
  cursor: default;
}

/* ============================================================
   IberBlock — categoria especial (category-10.php)
   ============================================================ */

.iberblock-col {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.iberblock-col--right {
  text-align: right;
}

.iberblock-feature__title {
  font-family: 'Conthrax';
  font-size: 32px;
  color: #E1E0C0;
  font-weight: 600;
  margin-bottom: 8px;
}

.iberblock-feature__content {
  font-family: 'Eurostar';
  font-size: 20px;
  color: var(--black);
}

.iberblock-feature__content p {
  margin: 0 0 4px;
}

.iberblock-feature__content p:last-child {
  margin-bottom: 0;
}

.iberblock-central-img {
  margin: auto;
}

/* ----- Botões toggle (Durabilidade / Qualidade / Ambiente / Fungos) ----- */
.iberblock-toggle-nav {
  margin-top: 3rem;
}

.iberblock-toggle-btn {
  font-family: 'Conthrax';
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #8A8B60;
  background: #EEEECC;
  border: 2px solid #EEEECC;
  border-radius: 999px;
  padding: 12px 28px;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease, opacity 0.3s ease;
}

.iberblock-toggle-btn:hover {
  opacity: 0.85;
}

.iberblock-toggle-btn:not(.is-active) {
  background: transparent;
  color: #7B7D3C;
}

.iberblock-toggle-sep {
  display: inline-block;
  width: 24px;
  border-top: 2px dashed #7B7D3C;
  opacity: 0.6;
}

/* ----- Botão Ver brochura ----- */
.btn-brochura {
  display: inline-block;
  font-family: 'Eurostar';
  font-weight: 500;
  font-size: 18px;
  color: var(--white);
  background: #7B7D3E;
  border: 2px solid #7B7D3E;
  border-radius: 999px;
  padding: 12px 32px;
  text-decoration: none;
  transition: all .3s ease-in-out;
}

.btn-brochura:hover {
  background: transparent;
  color: #7B7D3E;
}

/* =============================================
   FORMULÁRIO INTERESSE — OVERLAY
   ============================================= */

/* ================================
   OVERLAY BASE
================================ */
.interesse-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.97);
  z-index: 9999;
  overflow-y: auto;
  padding: 60px 20px;
  font-family: 'Eurostar', sans-serif;
}

.interesse-overlay.is-open {
  display: flex;
  align-items: center;
  justify-content: center;
}

.interesse-overlay__inner {
  max-width: 640px;
  margin: 0 auto;
  position: relative;
}

/* ================================
   BOTÃO FECHAR
================================ */
.interesse-overlay__close {
  position: fixed;
  top: 24px;
  right: 28px;
  background: none;
  border: none;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  color: #aaa;
  transition: color 0.2s;
  z-index: 10000;
}

.interesse-overlay__close:hover {
  color: #333;
}

/* ================================
   TÍTULOS
================================ */
.interesse-overlay__subtitle {
  font-size: 14px;
  color: var(--olive);
  margin-bottom: 6px;
  font-family: 'Eurostar';
}

.interesse-overlay__title {
  font-size: 2.2rem;
  font-weight: 700;
  font-family: 'Conthrax', sans-serif;
  margin-bottom: 32px;
  background: linear-gradient(90deg, #7d7f3f, #4a4c2a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ================================
   CAMPOS DO FORMULÁRIO
================================ */
.interesse-form-final {
  padding: 40px 20px;
  max-width: 80%;
  margin: 0 auto;
}

.interesse-overlay .form-control,
.interesse-form-final .form-control {
  border: 1.5px solid var(--olive);
  border-radius: 6px;
  padding: 14px 16px;
  font-size: 0.9rem;
  font-family: 'Eurostar';
  color: var(--black);
  background: #fafaf8;
  width: 100%;
  transition: border-color 0.2s, background 0.2s;
  box-sizing: border-box;
}

.interesse-overlay .form-control::placeholder,
.interesse-form-final .form-control::placeholder {
  color: var(--olive);
  opacity: 1;
}


.interesse-overlay .form-control:focus,
.interesse-form-final .form-control:focus {
  outline: none;
  border-color: var(--palmleaf);
  background: #fff;
}

.interesse-overlay .form-control[readonly] {
  background: #f0ede4;
  color: #666;
  cursor: default;
}

.interesse-overlay textarea.form-control,
.interesse-form-final textarea.form-control {
  resize: vertical;
  min-height: 130px;
}

/* ================================
   FOOTER — BOTÃO + CHECKBOX
================================ */
.interesse-overlay__form-footer {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.btn-send {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 14px 32px;
  background: var(--palmleaf);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 400;
  font-family: 'Eurostar';
  cursor: pointer;
  transition: background 0.2s ease;
  overflow: hidden;
}

/* Texto */
.btn-send .btn-text {
  display: inline-block;
  transition: transform 0.25s ease;
}

/* Seta da direita (visível por defeito) */
.btn-send::after {
  content: "\2192";
  margin-left: 8px;
  display: inline-block;
  transform: translateX(0);
  opacity: 1;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

/* Seta da esquerda (escondida por defeito) */
.btn-send::before {
  content: "\2192";
  position: absolute;
  left: 16px;
  transform: translateX(-12px);
  opacity: 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

/* HOVER — anima tudo */
.btn-send:hover .btn-text {
  transform: translateX(10px);
  /* texto acompanha a seta */
}

.btn-send:hover::after {
  transform: translateX(12px);
  opacity: 0;
}

.btn-send:hover::before {
  transform: translateX(0);
  opacity: 1;
}

/* CHECKBOX GDPR */
.interesse-overlay .container-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.78rem;
  color: #666;
  cursor: pointer;
  line-height: 1.4;
  font-family: 'Eurostar';
  max-width: 420px;
  /* igual ao da imagem, texto não fica demasiado largo */
}

.interesse-form-final .container-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: #666;
  cursor: pointer;
  line-height: 1.4;
  font-family: 'Eurostar';
}

.interesse-overlay .container-check input[type="checkbox"],
.interesse-form-final .container-check input[type="checkbox"] {
  width: auto;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--palmleaf);
}

.interesse-overlay .container-check a,
.interesse-form-final .container-check a {
  color: var(--palmleaf);
  text-decoration: underline;
}

.owl-noticias .owl-dots,
.owl-produtos .owl-dots {
  text-align: center;
  margin-top: 32px;
}

.owl-noticias .owl-dots .owl-dot span,
.owl-produtos .owl-dots .owl-dot span {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ccc;
  margin: 0 5px;
  transition: background 0.3s ease;
}

.owl-noticias .owl-dots .owl-dot.active span,
.owl-produtos .owl-dots .owl-dot.active span {
  background: #1a5c3a;
}

.noticia-single-titulo {
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(90deg, #7d7f3f, #4a4c2a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 8px;
  font-family: 'Conthrax', sans-serif;
}

.noticia-single-excerpt {
  color: var(--black);
  font-size: 0.95rem;
  line-height: 1.7;
  font-family: 'Eurostar';
}

.noticia-single-imagem img {
  border-radius: 8px;
}

.noticia-single-corpo {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--black);
  margin-bottom: 1.2rem;
  font-family: 'Eurostar';
}


.noticia-separador {
  border: none;
  border-top: 1px solid var(--greenmenu);
  width: 15%;
  margin: 40px auto;
}

/* Contactos */
.contactos-info__titulo {
  font-family: 'Conthrax';
  font-size: 20px;
  font-weight: 600;
  background: linear-gradient(90deg, #858642, #4C4E27);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
}

.contactos-info__conteudo {
  font-size: 16px;
  font-weight: 400;
  color: var(--greenmenu);
  font-family: 'Eurostar';
}

.contactos-info__conteudo a {
  position: relative;
  color: var(--greenmenu);
  text-decoration: none;
  transition: color .3s ease-in-out;
}

.contactos-info__conteudo a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0%;
  height: 1px;
  background: var(--olive);
  transition: width .3s ease-in-out;
}

.contactos-info__conteudo a:hover {
  color: var(--olive);
}

.contactos-info__conteudo a:hover::after {
  width: 100%;
}

.alert-success {
  color: var(--palmleaf);
  font-family: 'Eurostar';
}

/* ── OWL NAV WRAPPER ─────────────────────────────────── */
.owl-theme .owl-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
}

/* ── BOTÕES BASE ─────────────────────────────────────── */
.owl-theme .owl-nav [class*='owl-'] {
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  transition: opacity 0.25s ease;
}

.owl-theme .owl-nav [class*='owl-'] span {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* SVGs dentro dos botões */
.owl-theme .owl-nav [class*='owl-'] svg,
.owl-theme .owl-nav [class*='owl-'] img {
  width: 25px;
  height: 25px;
  fill: var(--greenmenu);
  color: var(--greenmenu);
  transition: fill 0.25s ease, color 0.25s ease, opacity 0.25s ease;
}

/* ── ESTADO ATIVO (tem item à frente) ────────────────── */
.owl-theme .owl-nav .owl-prev:not(.disabled),
.owl-theme .owl-nav .owl-next:not(.disabled) {
  opacity: 1;
  pointer-events: auto;
}

.owl-theme .owl-nav .owl-prev:not(.disabled) svg,
.owl-theme .owl-nav .owl-next:not(.disabled) svg {
  fill: var(--greenmenu);
  color: var(--greenmenu);
}

/* ── ESTADO DESATIVADO (primeiro/último item) ─────────── */
.owl-theme .owl-nav .owl-prev.disabled,
.owl-theme .owl-nav .owl-next.disabled {
  opacity: 1;
  pointer-events: none;
  cursor: default;
}

.owl-theme .owl-nav .owl-prev.disabled svg,
.owl-theme .owl-nav .owl-next.disabled svg {
  fill: #EEEECD;
  color: #EEEECD;
}

/* ── HOVER (só quando ativo) ─────────────────────────── */
.owl-theme .owl-nav .owl-prev:not(.disabled):hover svg,
.owl-theme .owl-nav .owl-next:not(.disabled):hover svg {
  opacity: 0.75;
}

.owl-theme .owl-nav [class*=owl-]:hover {
  background: transparent !important;
  color: transparent !important;
  text-decoration: none;
}

.page-title {
  display: inline-block;
  font-size: 44px;
  font-weight: 700;
  font-family: 'Conthrax';
  background: linear-gradient(90deg, #7B7D3E, #474924);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
}

.page-content h2 {
  /* display: inline-block; */
  font-size: 30px;
  margin-top: 1rem;
  font-weight: 700;
  font-family: 'Conthrax';
  background: linear-gradient(90deg, #7B7D3E, #474924);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
}

.page-content {
  font-family: 'Eurostar';
}

.page-content a {
  position: relative;
  color: var(--black);
  text-decoration: none;
  transition: color .3s ease-in-out;
}

.page-content a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0%;
  height: 1px;
  color: var(--black);
  background: var(--black);
  transition: width .3s ease-in-out;
}

.page-content a:hover {
  color: var(--black);
}

.page-content a:hover::after {
  width: 100%;
}

.page-content ul li {
  list-style-type: disc;
}

.footer-value sup {
  font-size: 0.6em;
}

@keyframes mpt-spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

@media only screen and (max-width: 991px) {

  /* Texto intro menor */
  .text-small {
    font-size: 23px;
  }

  .text-big {
    font-size: 50px;
  }

  .intro-line-1,
  .intro-line-2 {
    align-items: center;
    display: flex;
    justify-content: center;
  }

  /* Texto deixa de estar centrado verticalmente, passa a empilhar por cima */
  .intro-text {
    top: 30%;
    left: 50%;
    right: 50%;
    transform: none;
  }

  .intro-text.is-risen {
    top: 26%;
  }

  /* Ícone pequeno do topo (só existe em mobile) */
  .intro-favicon {
    position: absolute;
    top: 17%;
    left: 50%;
    width: 60px;
    transform: translateX(-50%);
    opacity: 1;
    transition: opacity 0.9s ease;
    z-index: 999;
  }

  .intro-favicon img {
    width: 100%;
    display: block;
  }

  .intro-ciclos {
    top: 70%;
    left: 50%;
    right: auto;
    width: 46%;
    max-width: 220px;
    transform: translate(-50%, -50%);
  }

  .intro-ciclos.is-risen {
    top: 52%;
  }

  .intro-ciclos.is-faded {
    opacity: 0;
  }

  /* Só 3 árvores em mobile — escondem-se a 4ª e 5ª */
  .sapling-4,
  .sapling-5 {
    display: none;
  }

  /* Posições iniciais — valores de partida, ajustar depois */
  .sapling-1 {
    left: 2%;
    width: 25%;
  }

  .sapling-1.is-visible {
    opacity: 1;
    transform: translateY(-45px);
  }

  .sapling-2 {
    left: 38%;
    width: 27%;
  }

  .sapling-2.is-visible {
    opacity: 1;
    transform: translateY(-6px);
  }

  .sapling-3 {
    left: 72%;
    width: 26%;
  }

  /* Paletes maiores e mais centradas para o ecrã estreito */
  .pallets-img {
    top: 50%;
    left: 0;
    width: 100%;
  }

  body.lock-scroll {
    overflow: hidden;
    height: 100vh;
    touch-action: none;
    overscroll-behavior: none;
  }

  .btn-avancar {
    bottom: .5rem;
    right: 1rem;
    font-size: 11px;
  }

  .process-title {
    font-size: 25px;
  }

  .process-desc {
    font-size: 14px;
  }

  .process-section .container::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    border-left: 2px dashed #a0a0a0;
    z-index: 0;
  }

  .process-card::before {
    display: none;
  }

  .process-card::after {
    top: auto !important;
    bottom: auto !important;
  }

  .certificacoes-section h2,
  .produtos-destaque-section h2 {
    font-size: 24px;
    gap: 1rem;
  }

  .noticias-linha {
    width: 50%;
  }

  .newsletter-input-group {
    border-radius: 16px !important;
    flex-direction: column !important;
    padding: 6px !important;
    gap: 6px !important;
  }

  .noptin-custom-wrapper form,
  .noptin-custom-wrapper .noptin-form-footer {
    flex-direction: column !important;
    width: 100% !important;
  }

  .noptin-form-field-wrapper,
  .noptin-field-email {
    width: 100% !important;
    flex: unset !important;
  }

  .noptin-form-field-wrapper.noptin-form-field-submit {
    width: 100% !important;
    flex: unset !important;
  }

  #noptin-form-1__field-email {
    width: 100% !important;
    text-align: center !important;
  }

  #noptin-form-1__field-email::placeholder,
  #noptin-form-1__field-email.noptin-form-field__has-no-placeholder::placeholder {
    text-align: center !important;
  }

  #noptin-form-1__submit {
    width: 100% !important;
    min-width: unset !important;
  }

  .icone-descricao {
    bottom: -20px;
    font-size: 16px;
  }

  .btn-scroll-top {
    bottom: 190px;
  }

  .footer-col-bar {
    position: relative;
    padding-left: 14px;
    /* espaço para a barra */
  }

  .footer-barra {
    display: none;
  }

  .footer-col-content h4 {
    margin-top: 0;
  }

  .process-card {
    padding: 40px 30px;
  }

  .footer-doc-icon img {
    width: 20px;
    height: 20px;
  }

  .timeline::after {
    left: 20px;
  }

  .contain {
    width: 100%;
    padding-left: 60px;
    padding-right: 20px;
  }

  .contain::after {
    left: -10px;
  }

  .right {
    left: 0;
  }

  .content h2 {
    font-size: 30px;
  }

  .content p {
    font-size: 16px;
  }

  .cert-logo {
    height: 100px;
  }

  .cert-logo {
    font-size: 18px;
  }

  .cert-desc {
    font-size: 16px;
  }

  body:not(.home) main {
    margin-top: 72px;
  }

  .section-title {
    font-size: 30px;
  }

  .cat-nav {
    overflow-x: auto;
    justify-content: flex-start;
    align-items: center;
  }

  .cat-nav a,
  .cat-nav span {
    font-size: 16px;
  }

  .interesse-form-final {
    max-width: 100%;
  }

  .newsletter-titulo {
    font-size: 25px;
  }

  .iberblock-central-img {
    width: 225px;
    margin: auto;
  }

  .iberblock-col--left,
  .iberblock-col--right {
    text-align: center;
  }

  .iberblock-col {
    gap: 24px;
  }

  .iberblock-feature__title {
    font-size: 26px;
  }

  .iberblock-feature__content {
    font-size: 17px;
  }

  .iberblock-toggle-nav {
    gap: 10px !important;
    margin-top: 2rem;
  }

  .iberblock-toggle-sep {
    display: none;
  }

  .iberblock-toggle-btn {
    font-size: 14px;
    padding: 10px 18px;
  }

  .btn-brochura {
    font-size: 14px;
    padding: 10px 24px;
  }
}

@media only screen and (max-width: 991px) and (orientation: landscape) {

  /* ----- Favicon (ícone do topo) ----- */
  .intro-favicon {
    top: 18%;
    width: 40px;
  }

  /* ----- Texto "Da Semente / à Palete" ----- */
  .intro-text {
    top: 28%;
    left: 50%;
    transform: none;
  }

  .intro-text.is-risen {
    top: 28%;
  }

  /* tamanho da fonte — landscape tem menos altura, por isso reduz */
  .intro-text .text-small {
    font-size: 22px;
    /* ← tamanho do "Da" / "à" */
  }

  .intro-text .text-big {
    font-size: 44px;
    /* ← tamanho do "Semente" / "Palete" */
  }

  /* ----- Círculo (ciclos.png) ----- */
  .intro-ciclos {
    top: 73%;
    left: 50%;
    width: 34%;
    max-width: 140px;
    transform: translate(-50%, -50%);
  }

  .intro-ciclos.is-risen {
    top: 42%;
    /* ↑↓ posição depois de subir (1º scroll) */
  }

  .intro-ciclos.is-faded {
    opacity: 0;
  }

  /* ----- Árvores (só 3 em landscape, igual a portrait) ----- */
  .sapling-4,
  .sapling-5 {
    display: none;
  }

  .sapling-1 {
    left: 5%;
    width: 16%;
  }

  .sapling-1.is-visible {
    opacity: 1;
    transform: translateY(-30px);
  }

  .sapling-2 {
    left: 44%;
    width: 14%;
  }

  .sapling-2.is-visible {
    opacity: 1;
    transform: translateY(-6px);
  }

  .sapling-3 {
    left: 76%;
    width: 18%;
    /* ← largura */
  }

  /* ----- Paletes (paletes.png) ----- */
  .pallets-img {
    top: 45%;
    left: 23%;
    width: 55%;
  }

  /* ----- Terra (ground.png) ----- */
  .intro-ground.is-visible {
    transform: translateY(40px);
    /* ↑↓ quanto a terra sobe (px) */
  }
}

@media (min-width: 991px) {
  .cat-nav {
    overflow-x: visible;
    justify-content: center;
    align-items: center;
  }
}

@media only screen and (max-width: 425px) {
  .tree-center {
    width: 100%;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .btn-newsletter-footer {
    font-size: 10px;
  }

  .cat-nav a,
  .cat-nav span {
    font-size: 16px;
  }
}

@media (min-width: 993px) and (max-width: 1919px) {
  .sapling-1.is-visible {
    opacity: 1;
    transform: translateY(-80px);
  }

  .sapling-2.is-visible {
    opacity: 1;
    transform: translateY(-62px);
  }

  .sapling-3.is-visible {
    opacity: 1;
    transform: translateY(-10px);
  }

  .sapling-4.is-visible {
    opacity: 1;
    transform: translateY(-35px);
  }

  .sapling-5.is-visible {
    opacity: 1;
    transform: translateY(-55px);
  }
}