/* =======================
   BASE / GERAL
   ======================= */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #f5f7f6;
  color: #28353a;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

.section {
  padding: 3rem 1.5rem;
}

.section-inner {
  max-width: 1120px;
  margin: 0 auto;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 1.8rem;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.section-header-left {
  align-items: flex-start;
}

.section-title {
  font-size: 1.6rem;
  color: #103822;
}

.section-title span {
  color: #2e7d32;
}

.section-subtitle {
  font-size: 0.95rem;
  color: #607d8b;
  max-width: 30rem;
}

/* Animação de surgimento */
.fade-section {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-section.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =======================
   HEADER
   ======================= */

.topbar {
  background: linear-gradient(to bottom, #0d3a1e 0%, #0c321c 55%, #4b341e 100%);
  padding: 10px 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
}

.topbar-container {
  width: 92%;
  max-width: 1280px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo RVR – recortado em círculo para sumir com a borda branca */
.logo-rvr {
  height: 48px;
  width: 48px;
  display: block;
  object-fit: cover;
  border-radius: 50%;
  clip-path: circle(50% at 50% 50%);
  background: transparent;
}

.main-menu a {
  margin-left: 28px;
  color: #ffffff;
  font-weight: 500;
  font-size: 1rem;
  position: relative;
  transition: 0.3s;
}

.main-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: #f2c94c;
  transition: width 0.25s ease;
}

.main-menu a:hover {
  color: #f2c94c;
}

.main-menu a:hover::after {
  width: 100%;
}

/* =======================
   HERO
   ======================= */

.hero {
  margin-top: 0;
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.55) saturate(1.1);
}

.hero-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(20, 35, 18, 0.5),
    rgba(20, 35, 18, 0.8)
  );
}

.hero-content {
  position: relative;
  text-align: center;
  padding: 90px 20px 0;
}

.hero-title {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.15;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.4);
}

.hero-subtitle {
  font-size: 1.2rem;
  margin-top: 16px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.btn-hero-primary {
  display: inline-block;
  margin-top: 28px;
  padding: 14px 30px;
  background: #e5b832bd;
  color: #133a1f;
  font-size: 1.05rem;
  border-radius: 12px;
  font-weight: 700;
  transition: 0.3s;
}

.btn-hero-primary:hover {
  background: #ffe089;
  transform: translateY(-3px);
}

/* =======================
   WHATSAPP FLUTUANTE
   ======================= */

.whatsapp-floating {
  position: fixed;
  right: 26px;
  bottom: 26px;
  width: 62px;
  height: 62px;
  background: transparent;
  border-radius: 100%;

  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.25s ease;
  z-index: 120;
}

.whatsapp-floating:hover {
  transform: scale(1.12) translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.wa-icon {
  width: 62px;
  height: 62px;
  background-image: url("../img/wa-modern-white.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 50%;
}

/* =======================
   PRODUTOS / PORTFÓLIO
   ======================= */

.section-portfolio {
  background: #eef3ef;
}

/* Grid principal – 4 colunas no desktop */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
  align-items: stretch;
}

/* Grid usado dentro das seções colapsáveis (mais fluido) */
.products-grid-collapse {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

/* Cards base */
.product-card {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #cfd8dc;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.05);
  padding: 0.8rem 0.9rem 0.9rem;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  text-align: left;
  font-size: 0.85rem;
  position: relative;
  overflow: hidden;
}

/* Linha colorida suave no topo do card */
.product-card::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
  background: linear-gradient(90deg, #0f7b32, #19b36a);
  opacity: 0.7;
}

/* Barra superior (caso use Ano todo / Seca / Águas) */
.product-bar {
  padding: 0.3rem 0.5rem;
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 10px 10px 0 0;
  margin: -0.8rem -0.9rem 0.4rem -0.9rem;
}

.product-ano-todo {
  background: #115827;
}

.product-seca {
  background: #e3a301;
}

.product-aguas {
  background: #1565c0;
}

.product-image-wrapper {
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.6rem;
}

.product-image-wrapper img {
  max-height: 100px;
  width: auto;
  object-fit: contain;
}

.product-name {
  font-size: 0.92rem;
  font-weight: 600;
  color: #103822;
  min-height: 2rem;
  display: flex;
  align-items: center;
  margin-bottom: 0.3rem;
}

.product-desc {
  font-size: 0.8rem;
  color: #546e7a;
  min-height: 2.4rem;
  margin-bottom: 0.6rem;
}

/* Botões gerais */
.product-btn {
  margin-top: auto;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  border: 1px solid #115827;
  background: #115827;
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: 0.25s;
  white-space: nowrap;
}

.product-btn:hover {
  background: #19733a;
  box-shadow: 0 8px 18px rgba(17, 88, 39, 0.35);
}

/* Botões lado a lado nos cards */
.product-actions {
  display: flex;
  gap: 0.5rem;
  margin-top: auto;
}

.product-actions .product-btn,
.product-actions .btn-saiba-mais {
  flex: 1;
}

/* Botão "Saiba mais" – secundário verde */
.btn-saiba-mais {
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  border: 1px solid #115827;
  background: #ffffffc9;
  color: #115827;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: 0.25s;
  white-space: nowrap;
}

.btn-saiba-mais:hover {
  background: #e8f5e9;
  box-shadow: 0 10px 22px rgba(17, 88, 39, 0.15);
}

/* Botão "Monte aqui" – destaque dourado */
.btn-monte-aqui {
  padding: 0.6rem 0.9rem;
  border-radius: 999px;
  border: 1px solid #e0b020;
  background: #f7d35a;
  color: #3b2b04;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  transition: 0.25s;
}

.btn-monte-aqui:hover {
  background: #ffe083;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.15);
}

/* ===== Produto destaque – ocupa 2 colunas (2 por linha) ===== */
.product-card-destaque {
  grid-column: span 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: linear-gradient(
    to bottom right,
    rgba(0, 40, 22, 0.96),
    rgba(0, 40, 22, 0.75)
  );
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.15);
}

.product-card-destaque::before {
  background: linear-gradient(90deg, #2ecc71, #f2c94c);
  opacity: 1;
}

.destaque-titulo {
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 0.6rem;
  text-align: left;
}

.destaque-titulo span {
  color: #f2c94c;
}

.destaque-main {
  display: grid;
  grid-template-columns: 190px 1fr; /* FIXO + FLUIDO (corrige proporção) */
  gap: 0.9rem;
  align-items: center;
  margin-bottom: 0.6rem;
}

.destaque-imagem-wrapper {
  width: 190px;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.destaque-imagem {
  width: 100%;
  height: 100%;
  object-fit: scale-down;   /* normaliza imagens com “folga” interna */
  transform: scale(0.92);   /* corrige visualmente produtos com PNG alto */
  display: block;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.45));
}


.destaque-conteudo {
  text-align: left;
  min-width: 0;
}

.destaque-sub {
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
  line-height: 1.45;
}

.destaque-lista,
.custom-list {
  list-style: none;
  font-size: 0.82rem;
  line-height: 1.45;
  margin-bottom: 0.4rem;
  padding-left: 0;
}

.destaque-lista li,
.custom-list li {
  margin-bottom: 0.18rem;
}

/* Card personalizado – usa o mesmo layout de destaque */
.product-card-custom {
  background: linear-gradient(
    to bottom right,
    rgba(3, 61, 33, 0.98),
    rgba(6, 90, 50, 0.8)
  );
}

.custom-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.4rem;
  text-align: left;
}

.custom-title span {
  color: #f2c94c;
}

.custom-sub {
  font-size: 0.9rem;
  color: #ffffff;
  margin-bottom: 0.5rem;
  text-align: left;
}

/* =======================
   CARDS DE CATEGORIA / COLAPSÁVEIS
   ======================= */

.product-collapse {
  margin-top: 2.5rem;
}

.product-collapse-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 1.1rem;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid #cfd8dc;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.04);
  margin-bottom: 1rem;
}

.product-collapse-header .product-band {
  grid-column: auto;
  border-radius: 999px;
  border: none;
  background: transparent;
  padding: 0;
  font-size: 0.92rem;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 700;
}

.product-collapse-toggle {
  padding: 0.5rem 1.3rem;
  border-radius: 999px;
  border: 1px solid #115827;
  background: #ffffff;
  color: #115827;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  transition: 0.2s ease;
}

.product-collapse-toggle::after {
  content: "▾";
  font-size: 0.8rem;
}

.product-collapse-toggle[aria-expanded="true"]::after {
  transform: rotate(180deg);
}

.product-collapse-toggle:hover {
  background: #e8f5e9;
  box-shadow: 0 8px 18px rgba(17, 88, 39, 0.18);
}

.product-collapse-body {
  padding: 0.3rem 0.2rem 0;
}

/* =======================
   MODAIS
   ======================= */

.modal-overlay {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

.modal-overlay.is-open {
  display: flex;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.modal-box {
  position: relative;
  background: #f5f7f6;
  border-radius: 20px;
  max-width: 700px;
  width: 90%;
  padding: 1.6rem 1.8rem 1.8rem;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
  z-index: 1;
}

.modal-close {
  position: absolute;
  top: 0.6rem;
  right: 0.9rem;
  border: none;
  background: transparent;
  font-size: 1.6rem;
  cursor: pointer;
  color: #455a64;
}

.modal-close:hover {
  color: #1c313a;
}

/* Cabeçalho do modal de produto */
.modal-header-top {
  margin-bottom: 1rem;
}

.modal-title {
  font-size: 1.4rem;
  color: #103822;
  margin-bottom: 0.3rem;
}

.modal-epoch {
  display: inline-block;
  background: #115827;
  color: #ffffff;
  border-radius: 999px;
  padding: 0.35rem 0.9rem;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Layout interno */
.modal-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.6fr);
  gap: 1.6rem;
  align-items: flex-start;
  margin-top: 0.5rem;
}

.modal-image-wrapper {
  background: #ffffff;
  border-radius: 16px;
  padding: 1rem;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.08);
}

.modal-image-wrapper img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.modal-content {
  font-size: 0.9rem;
}

/* Acordeão */
.accordion {
  border-radius: 12px;
  background: #ffffff;
  border: 1px solid #dde5e1;
  overflow: hidden;
}

.accordion-item + .accordion-item {
  border-top: 1px solid #dde5e1;
}

.accordion-header {
  width: 100%;
  padding: 0.7rem 0.9rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f9fbfa;
  border: none;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 600;
  color: #103822;
}

.accordion-icon {
  font-size: 0.85rem;
  transition: transform 0.2s ease;
}

.accordion-body {
  padding: 0.7rem 0.9rem 0.9rem;
  font-size: 0.88rem;
  color: #455a64;
  display: none;
}

.accordion-item.open .accordion-body {
  display: block;
}

.accordion-item.open .accordion-icon {
  transform: rotate(180deg);
}

/* Botão de compra dentro do modal (verde) */
.modal-buy-btn {
  margin-top: 1.2rem;
  width: 100%;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  border: 1px solid #115827;
  background: #115827;
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: 0.25s;
}

.modal-buy-btn:hover {
  background: #19733a;
  box-shadow: 0 12px 26px rgba(17, 88, 39, 0.35);
}

/* Responsivo modais */
@media (max-width: 800px) {
  .modal-box {
    padding: 1.4rem 1.1rem 1.5rem;
  }

  .modal-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* =======================
   ZOO FLORA
   ======================= */

.section-zoo {
  background: #ffffff;
}

.zoo-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: center;
}

.zoo-text p {
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
}

.zoo-list {
  margin-top: 0.7rem;
  padding-left: 1.1rem;
  font-size: 0.9rem;
}

.zoo-list li {
  margin-bottom: 0.35rem;
}

.zoo-image-wrapper {
  text-align: center;
}

.zoo-image {
  border-radius: 16px;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.12);
}

/* =======================
   REPRESENTANTE
   ======================= */

.section-rep {
  background: #f7faf7;
}

.rep-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.4fr);
  gap: 2rem;
  align-items: center;
}

.rep-photo-card {
  display: flex;
  justify-content: center;
}

.rep-avatar-large {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.32);
  border: 4px solid #ffffff;
}

.rep-avatar-large img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rep-info p {
  font-size: 0.95rem;
  margin-bottom: 0.9rem;
}

.rep-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.5rem;
}

.rep-pill {
  padding: 0.3rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(15, 69, 40, 0.18);
  background: #e8f5e9;
  color: #2e7d32;
  font-size: 0.8rem;
}

/* =======================
   CONTATO
   ======================= */

.section-contato {
  background: #10331b;
  color: #ffffff;
}

.section-contato .section-title {
  color: #ffffff;
}

.section-contato .section-title span {
  color: #c8e6c9;
}

.section-contato .section-subtitle {
  color: rgba(255, 255, 255, 0.76);
}

.contato-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.1fr);
  gap: 2rem;
}

.contato-card {
  background: rgba(0, 0, 0, 0.18);
  border-radius: 16px;
  padding: 1.1rem 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 0.9rem;
}

.contato-list {
  list-style: none;
  margin-top: 0.7rem;
}

.contato-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.4rem;
}

.contato-badge {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  border: 1px solid rgba(5, 130, 1, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
}

.contato-text {
  margin-top: 0.8rem;
  font-size: 0.87rem;
}

.contato-form {
  display: grid;
  gap: 0.7rem;
}

.contato-form label {
  font-size: 0.8rem;
  margin-bottom: 0.15rem;
  display: block;
}

.contato-form input,
.contato-form textarea {
  width: 100%;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(0, 0, 0, 0.28);
  color: #ffffff;
  padding: 0.55rem 0.7rem;
  font-size: 0.86rem;
  outline: none;
}

.contato-form input::placeholder,
.contato-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.contato-form textarea {
  resize: vertical;
  min-height: 80px;
}

/* Linha "Já é cliente Zoo Flora?" */
.form-row-inline {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  flex-wrap: wrap;
  margin-top: 0.4rem;
}

.radio-label {
  font-size: 0.82rem;
}

/* Toggle Sim/Não */
.toggle-group {
  align-items: flex-start;
}

.toggle-options {
  display: inline-flex;
  align-items: center;
  gap: 0;
  padding: 4px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.25);
}

.toggle-option {
  position: relative;
  cursor: pointer;
}

.toggle-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.toggle-option span {
  display: inline-block;
  padding: 0.25rem 0.9rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.8rem;
}

.toggle-option + .toggle-option {
  margin-left: 6px;
  padding-left: 6px;
  border-left: 1px solid rgba(255, 255, 255, 0.25);
}

.toggle-option input:checked + span {
  color: #037a1d;
  border-color: #1b9449;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2);
}

.toggle-option input:focus-visible + span {
  outline: 2px solid #f2c94c;
  outline-offset: 2px;
}

.form-row-hidden {
  display: none;
}

/* Botão WhatsApp do formulário */
.btn-whatsapp-form {
  margin-top: 0.6rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1.6rem;
  border-radius: 999px;
  border: #ffffff;
  background: linear-gradient(135deg, #24d36752, #1b944944);
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
  transition: 0.25s;
  line-height: 1;
}

.btn-whatsapp-form:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.3);
}

.wa-form-icon {
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  background-image: url("../img/wa-modern-white.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 50%;
}

.contato-observacao {
  margin-top: 0.6rem;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.78);
}

/* =======================
   FOOTER
   ======================= */

.footer {
  background: #0b2414;
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  padding: 0.9rem 1rem;
  font-size: 0.8rem;
}

.footer span {
  color: #c8e6c9;
}

/* =======================
   RESPONSIVO
   ======================= */

@media (max-width: 900px) {
  .main-menu {
    display: none;
  }

  .hero {
    height: 80vh;
  }

  .section {
    padding: 2.5rem 1.2rem;
  }

  .zoo-grid,
  .rep-grid,
  .contato-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .product-card-destaque {
    grid-column: auto;
  }

  .destaque-titulo {
    font-size: 1.05rem;
    line-height: 1.15;
  }

  .destaque-sub {
    font-size: 0.82rem;
    line-height: 1.35;
  }

  .destaque-lista {
    font-size: 0.78rem;
    line-height: 1.3;
  }

  .destaque-main {
    grid-template-columns: 130px 1fr;
    gap: 12px;
    align-items: center;
    text-align: left;
  }

  .destaque-imagem-wrapper {
    width: 130px;
    height: 180px;
  }

  .destaque-imagem {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .product-collapse-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .product-collapse-toggle {
    align-self: flex-start;
  }

  .destaque-conteudo {
    min-width: 0;
  }

  .destaque-lista li {
    white-space: normal;
    overflow-wrap: anywhere;
  }
}

@media (max-width: 600px) {
  .hero-title {
    font-size: 2.3rem;
  }

  .hero-subtitle {
    font-size: 1.05rem;
  }

  .section-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .form-row-inline {
    align-items: flex-start;
  }
}

@media (max-width: 420px) {
  .destaque-main {
    grid-template-columns: 1fr;
  }

  .destaque-imagem-wrapper {
    width: 100%;
    height: auto;
  }

  .destaque-imagem {
    max-width: 170px;
    margin: 0 auto;
  }
}

/* =========================================================
   PORTFÓLIO – CABEÇALHO MAIS PREMIUM (byline + versículo)
   ========================================================= */

.section-portfolio .portfolio-head {
  max-width: 920px;
}

.section-portfolio .portfolio-byline {
  margin: 8px 0 14px;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  color: rgba(11, 61, 32, 0.72);
}

.section-portfolio .portfolio-byline .by-brand {
  font-weight: 700;
  opacity: 0.9;
}

.section-portfolio .portfolio-verse {
  margin: 0 0 16px;
  padding: 14px 16px;
  border-left: 3px solid rgba(11, 61, 32, 0.35);
  background: rgba(11, 61, 32, 0.04);
  border-radius: 12px;
}

.section-portfolio .portfolio-verse-text {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.55;
  color: rgba(16, 27, 20, 0.9);
}

.section-portfolio .portfolio-verse-ref {
  display: inline-block;
  margin-top: 10px;
  font-size: 0.92rem;
  font-style: normal;
  font-weight: 700;
  color: rgba(11, 61, 32, 0.78);
}

/* Liga o cabeçalho à grade de produtos (o “tempero”) */
.section-portfolio .section-header {
  position: relative;
  padding-bottom: 22px;
  margin-bottom: 18px;
}

.section-portfolio .section-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: rgba(11, 61, 32, 0.18);
}

.section-portfolio .section-header::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 220px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(11, 61, 32, 0),
    rgba(11, 61, 32, 0.65),
    rgba(11, 61, 32, 0)
  );
}

/* =========================================================
   FAIXAS DE SEÇÃO – PADRÃO CLEAN GLOBAL (todas .product-band)
   ========================================================= */

.product-band {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 16px;

  margin: 38px 0 20px;
  padding: 0;

  background: none;
  border-radius: 0;

  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;

  color: #1f4d2b;
}

/* Linha contínua após o texto */
.product-band::after {
  content: "";
  flex: 1;
  height: 2px;
  background-color: #d8e6dc;
}

/* Destaque usa o MESMO padrão (sem “pílula”) */
.product-band-destaque {
  background: none;
  padding: 0;
  color: #1f4d2b;
}

/* =========================================================
   CARD "DEMAIS PRODUTOS" COMO ITEM NORMAL DO GRID
   ========================================================= */

.product-card-more {
  grid-column: auto !important;
  border: 1px solid rgba(31, 77, 43, 0.18);
  background: #ffffff;
}

.product-more-content {
  text-align: left;
  padding: 18px;
  width: 100%;
}

.product-more-title {
  margin: 0 0 8px;
  font-size: 1.05rem;
  font-weight: 800;
  color: #1f4d2b;
}

.product-more-desc {
  margin: 0 0 14px;
  font-size: 0.92rem;
  color: #4a6b57;
  line-height: 1.45;
}

.product-more-btn {
  width: 100%;
  border-radius: 999px;
  padding: 10px 14px;
}

/* =========================================================
   COLAPSÁVEL – header mais clean (sem repetir faixa grande)
   ========================================================= */

.product-collapse {
  margin-top: 14px;
}

.product-collapse-header {
  padding: 0;
  border: none;
  background: transparent;
  box-shadow: none;
  margin-bottom: 12px;
}

/* mantém o “Demais produtos” como título simples no header */
.product-collapse-header .product-band {
  margin: 0;
  text-transform: none;
  letter-spacing: 0;
  font-size: 1rem;
}

/* =========================================================
   RESPONSIVO: garante faixas e cards “more” ok em mobile
   ========================================================= */

@media (max-width: 900px) {
    
.destaque-imagem {
  width: 100%;
  height: 100%;
  object-fit: scale-down;
  transform: scale(0.92);
}

    
  .product-band {
    margin: 28px 0 14px;
    font-size: 1rem;
  }
}

.portfolio-byline {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  color: #2b3a33;
}

/* “Representação” bem leve */
.by-label {
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.65;
}

/* detalhe premium: mini “traço” antes */
.by-brand {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: linear-gradient(90deg, #0d3a1e, #2e7d32, #614900d0);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: 0.85;
}

.portfolio-signature {
  margin-top: 6px;
  font-size: 0.85rem;
  font-style: italic;
  color: #4e6f5b;
}

.verse-highlight {
  font-weight: 600;
  color: #1f6b3a;
  letter-spacing: 0.02em;
}

/* =======================
   BLOG CALL (HOME)
   ======================= */

.section-blog-call{
  background:#ffffff;
}

.btn-blog-all{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 16px;
  border-radius:999px;
  border:1px solid rgba(16,56,34,.22);
  background:rgba(255,255,255,.7);
  color:#103822;
  font-weight:700;
  font-size:.9rem;
  transition:.2s ease;
  white-space:nowrap;
}

.btn-blog-all:hover{
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(0,0,0,.06);
}

.blog-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.blog-card{
  border:1px solid rgba(16,56,34,.14);
  border-radius:18px;
  overflow:hidden;
  background:#fff;
  box-shadow: 0 10px 22px rgba(0,0,0,.05);
}

.blog-card-link{
  display:block;
}

.blog-thumb{
  height: 160px;
  background:#eef3ef;
  overflow:hidden;
}

.blog-thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
  transform: scale(1.03);
}

.blog-body{
  padding: 14px 14px 16px;
}

.blog-meta{
  font-size:.78rem;
  letter-spacing:.08em;
  text-transform:uppercase;
  color: rgba(16,56,34,.68);
  margin-bottom: 6px;
}

.blog-title{
  font-size: 1.05rem;
  line-height:1.25;
  color:#103822;
  margin-bottom: 8px;
  font-weight: 800;
}

.blog-excerpt{
  font-size: .9rem;
  color:#546e7a;
  line-height:1.45;
  margin-bottom: 12px;
}

.blog-read{
  display:inline-block;
  font-weight:800;
  color:#1f6b3a;
  font-size:.92rem;
}

/* CTA */
.blog-cta{
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(16,56,34,.12);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.blog-cta-card{
  flex: 1 1 420px;
}

.blog-cta-title{
  font-weight: 900;
  color:#103822;
  margin-bottom: 4px;
}

.blog-cta-sub{
  color:#546e7a;
  font-size:.92rem;
}

.blog-cta-actions{
  display:flex;
  gap:10px;
  flex: 0 0 auto;
}

.btn-blog-outline,
.btn-blog-primary{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 11px 16px;
  border-radius: 999px;
  font-weight: 800;
  font-size: .9rem;
  white-space: nowrap;
  transition: .2s ease;
}

.btn-blog-outline{
  border:1px solid rgba(16,56,34,.22);
  color:#103822;
  background:#fff;
}

.btn-blog-outline:hover{
  background:#eef3ef;
}

.btn-blog-primary{
  border:1px solid #115827;
  background:#115827;
  color:#fff;
}

.btn-blog-primary:hover{
  background:#19733a;
  box-shadow: 0 12px 26px rgba(17, 88, 39, 0.25);
}

/* Responsivo */
@media (max-width: 900px){
  .blog-grid{
    grid-template-columns: 1fr;
  }
  .blog-thumb{
    height: 170px;
  }
  .btn-blog-all{
    width:100%;
  }
  .blog-cta-actions{
    width:100%;
  }
  .btn-blog-outline,
  .btn-blog-primary{
    flex:1;
    width:100%;
  }
}

/* ===== MENU MOBILE (hamburger) ===== */

/* garante topo acima de tudo */
.topbar{
  position: sticky;
  top: 0;
  z-index: 9999;
}

/* o container precisa permitir posicionamento do dropdown */
.topbar-container{
  position: relative;
}

/* botão hamburger (escondido no desktop) */
.menu-toggle{
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
  color: inherit;
}

.menu-toggle span{
  display:block;
  height: 2px;
  margin: 7px 0;
  background: currentColor;
  border-radius: 2px;
}

/* ===== mobile ===== */
@media (max-width: 768px){
  /* mostra botão */
  .menu-toggle{
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  /* esconde menu por padrão */
  .main-menu{
    display: none; /* ✅ */
    position: absolute;
    top: calc(100% + 10px);
    left: 12px;
    right: 12px;
    padding: 12px;
    border-radius: 14px;
    z-index: 9999;

    /* ajuste de cor para combinar com seu tema */
    background: rgba(10, 20, 26, 0.96);
    border: 1px solid rgba(255,255,255,0.08);
  }

  /* quando abrir */
  .main-menu.is-open{
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .main-menu a{
    display: block;
    padding: 10px 10px;
    border-radius: 10px;
    text-decoration: none;
  }
}
/* ===== HAMBURGER VISÍVEL NO MOBILE ===== */
@media (max-width: 768px){
  .menu-toggle{
    display: inline-flex !important;
    align-items: center;
    justify-content: center;

    width: 44px;
    height: 44px;

    border: 0;
    background: transparent;
    padding: 0;
    cursor: pointer;

    /* garante que fica visível por cima */
    position: relative;
    z-index: 10001;

    /* cor do ícone (troque se seu header for claro) */
    color: #ffffff;
  }

  .menu-toggle span{
    display: block !important;
    width: 22px;
    height: 2px;
    margin: 6px 0;
    background: currentColor !important;
    border-radius: 2px;
    opacity: 1 !important;
    visibility: visible !important;
  }
}

/* ===== MENU MOBILE CLEAN (CANTO SUPERIOR) ===== */
@media (max-width: 768px){
  /* o container precisa ser referência pro dropdown */
  .topbar{ z-index: 10000; position: sticky; top: 0; }
  .topbar-container{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }

  /* Se o seu menu atual está virando "modal no meio", isso sobrescreve */
  .main-menu{
    /* 🔥 mata qualquer layout antigo de modal/centro */
    position: absolute !important;
    left: auto !important;
    right: 12px !important;
    top: calc(100% + 10px) !important;
    transform: none !important;
    margin: 0 !important;

    /* tamanho clean */
    width: min(82vw, 320px) !important;

    /* visual padrão site (clean) */
    display: none;
    flex-direction: column;
    gap: 8px;
    padding: 10px;
    border-radius: 14px;

    background: rgba(10, 20, 26, 0.96);
    border: 1px solid rgba(255,255,255,0.10);
    box-shadow: 0 12px 30px rgba(0,0,0,0.35);

    z-index: 10000;
  }

  .main-menu.is-open{ display: flex !important; }

  .main-menu a{
    display: block;
    padding: 10px 12px;
    border-radius: 10px;
    text-decoration: none;
    color: #fff;
  }

  .main-menu a:active{
    opacity: 0.9;
  }

  /* opcional: esconde o menu "desktop" caso você tenha regras conflitantes */
  /* (não use se isso quebrar desktop) */
}

/* ===== HEADER sempre acima e clicável ===== */
.topbar{
  position: sticky;
  top: 0;
  z-index: 10000;
}

/* garante layout do topo no mobile */
.topbar-container{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  position: relative;
}

/* ===== BOTÃO HAMBURGER ===== */
.menu-toggle{
  display: none;              /* desktop: escondido */
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;

  /* CRÍTICO: garantir clique */
  pointer-events: auto;
  position: relative;
  z-index: 10002;

  /* cor do ícone */
  color: #fff;
}

@media (max-width: 768px){
  .menu-toggle{ display: inline-flex; align-items:center; justify-content:center; }
}

/* ===== DROPDOWN DO MENU (canto superior direito) ===== */
@media (max-width: 768px){
  .main-menu{
    display: none; /* fechado */
    flex-direction: column;
    gap: 8px;

    position: absolute;
    right: 12px;
    top: calc(100% + 10px);
    width: min(78vw, 320px);

    padding: 10px;
    border-radius: 14px;

    background: rgba(10, 20, 26, 0.96);
    border: 1px solid rgba(255,255,255,0.10);
    box-shadow: 0 12px 30px rgba(0,0,0,0.35);

    z-index: 10001;
  }

  .main-menu.is-open{
    display: flex;
  }

  .main-menu a{
    display:block;
    padding: 10px 12px;
    border-radius: 10px;
    text-decoration: none;
    color: #fff;
  }
}

/* (Opcional) se algum overlay estiver por cima do header */
.hero, .hero * { z-index: 0; }

/* ===== MENU MOBILE: DROPDOWN DISCRETO NO CANTO ===== */
@media (max-width: 768px){

  /* garante referência para o dropdown */
  .topbar-container{ position: relative; }

  /* MENU: mata qualquer estilo de modal/centralização anterior */
  .main-menu{
    /* posicionamento no canto */
    position: absolute !important;
    top: calc(100% + 8px) !important;
    right: 12px !important;
    left: auto !important;

    /* remove centralização */
    transform: none !important;
    margin: 0 !important;

    /* tamanho discreto */
    width: min(72vw, 180px) !important;
    max-width: 240px !important;

    /* visual */
    padding: 10px !important;
    border-radius: 14px !important;

    display: none !important;
    flex-direction: column !important;
    gap: 6px !important;

    background: rgba(10, 20, 26, 0.96) !important;
    border: 1px solid rgba(255,255,255,0.10) !important;
    box-shadow: 0 12px 24px rgba(0,0,0,0.35) !important;

    z-index: 10001 !important;
  }

  .main-menu.is-open{ display: flex !important; }

  .main-menu a{
    padding: 10px 10px !important;
    border-radius: 10px !important;
    font-size: 14px !important;
    line-height: 1.1 !important;
    text-align: left !important;
  }
}

/* ===== FORCE: cards horizontais no mobile (imagem esquerda / texto direita) ===== */
@media (max-width: 768px){

  /* seletor super específico pra ganhar de qualquer regra antiga */
  html body #portfolio .section-inner .products-grid article.product-card:not(.product-card-destaque):not(.product-card-more){
    /* mata flex antigo */
    display: grid !important;
    flex: none !important;
    flex-direction: unset !important;
    align-items: unset !important;

    /* layout do exemplo */
    grid-template-columns: 104px 1fr !important;
    grid-template-rows: auto auto !important;
    column-gap: 12px !important;
    row-gap: 6px !important;

    padding: 12px !important;
    border-radius: 16px !important;

    /* mantenha cores do seu tema; aqui está neutro */
    background: #fff !important;
    border: 1px solid rgba(0,0,0,0.10) !important;
  }

  /* imagem fixa à esquerda (coluna 1, linha 1-2) */
  html body #portfolio .section-inner .products-grid article.product-card:not(.product-card-destaque):not(.product-card-more) .product-image-wrapper{
    grid-column: 1 !important;
    grid-row: 1 / 3 !important;

    width: 104px !important;
    height: 104px !important;
    border-radius: 14px !important;
    overflow: hidden !important;

    background: #f3f5f6 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  html body #portfolio .section-inner .products-grid article.product-card:not(.product-card-destaque):not(.product-card-more) .product-image-wrapper img{
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
  }

  /* título à direita */
  html body #portfolio .section-inner .products-grid article.product-card:not(.product-card-destaque):not(.product-card-more) .product-name{
    grid-column: 2 !important;
    grid-row: 1 !important;

    margin: 0 !important;
    font-size: 15px !important;
    line-height: 1.2 !important;
    font-weight: 800 !important;
    color: #0b1a22 !important;
  }

  /* descrição à direita */
  html body #portfolio .section-inner .products-grid article.product-card:not(.product-card-destaque):not(.product-card-more) .product-desc{
    grid-column: 2 !important;
    grid-row: 2 !important;

    margin: 0 !important;
    font-size: 12.8px !important;
    line-height: 1.35 !important;
    color: rgba(11,26,34,0.75) !important;

    /* 3 linhas como no exemplo */
    display: -webkit-box !important;
    -webkit-line-clamp: 3 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
  }

  /* botões embaixo ocupando largura total */
 html body #portfolio .section-inner .products-grid article.product-card:not(.product-card-destaque):not(.product-card-more) .product-desc{
  grid-column: 2 !important;
  grid-row: 2 !important;

  margin: 0 !important;
  font-size: 12.8px !important;
  line-height: 1.45 !important;
  padding-bottom: 2px !important;
  color: rgba(11,26,34,0.75) !important;

  display: -webkit-box !important;
  -webkit-line-clamp: 4 !important;   /* ✅ aqui */
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
}


  html body #portfolio .section-inner .products-grid article.product-card:not(.product-card-destaque):not(.product-card-more) .product-actions button,
  html body #portfolio .section-inner .products-grid article.product-card:not(.product-card-destaque):not(.product-card-more) .product-actions a{
    height: 40px !important;
    border-radius: 999px !important;
  }
}

.logistica-frota{
padding:40px 0;
}

.logistica-box{

background:#eef2ef;

border-radius:18px;

padding:28px;

border:1px solid rgba(0,0,0,0.06);

box-shadow:0 10px 20px rgba(0,0,0,0.04);

position:relative;

}

/* barra lateral */

.logistica-box::before{

content:"";

position:absolute;

left:0;

top:18px;

bottom:18px;

width:4px;

background:#5a8a6f;

border-radius:4px;

}

.logistica-header{

display:flex;

align-items:center;

justify-content:space-between;

gap:20px;

}

.logistica-kicker{

font-size:12px;

letter-spacing:2px;

text-transform:uppercase;

color:#6b8576;

display:block;

margin-bottom:6px;

}

.logistica-texto h2{

font-size:26px;

margin-bottom:6px;

color:#163826;

}

.logistica-texto p{

font-size:15px;

color:#4b5d52;

max-width:700px;

}

.logistica-toggle{

background:#e4ebe6;

border:1px solid rgba(0,0,0,0.06);

padding:10px 18px;

border-radius:20px;

font-size:14px;

cursor:pointer;

display:flex;

align-items:center;

gap:6px;

transition:all .25s;

}

.logistica-toggle:hover{

background:#dde6df;

}

.logistica-cidades{

max-height:0;

overflow:hidden;

transition:max-height .35s ease;

}

.logistica-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(200px,1fr));

gap:30px;

padding-top:20px;

}

.logistica-grid h4{

color:#2e5a3e;

margin-bottom:8px;

}

.logistica-grid ul{

list-style:none;

padding:0;

margin:0;

}

.logistica-grid li{

font-size:14px;

margin-bottom:6px;

color:#425348;

}

.seta{

transition:transform .3s;

}

.logistica-aberta .seta{

transform:rotate(180deg);

}