/* ===== CSS VARIABLES ===== */
:root {
  --navy: #0a2240;
  --navy-light: #0e2d54;
  --navy-dark: #061628;
  --gold: #c9a84c;
  --gold-light: #e4c06e;
  --gold-dark: #a8843a;
  --white: #ffffff;
  --off-white: #f8f7f4;
  --gray: #6b7280;
  --gray-light: #f3f4f6;
  --text: #1a2332;
  --font-display: 'Sora', system-ui, sans-serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --shadow: 0 4px 24px rgba(10,34,64,0.10);
  --shadow-lg: 0 8px 40px rgba(10,34,64,0.16);
  --radius: 8px;
  --transition: 0.3s ease;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  font-size: 16px;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== UTILITIES ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 80px 0; }
.bg-light { background: var(--off-white); }
.center-btn { text-align: center; margin-top: 48px; }

.section-header {
  text-align: center;
  margin-bottom: 52px;
}
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--navy);
  margin: 8px 0 16px;
}
.section-tag {
  display: inline-block;
  background: rgba(201,168,76,0.12);
  color: var(--gold-dark);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
  border: 1px solid rgba(201,168,76,0.3);
}
.gold-bar {
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  margin: 0 auto;
}
.gold-bar.left { margin: 0; }

/* ===== BUTTONS ===== */
.btn-gold {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy-dark);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  padding: 14px 28px;
  border-radius: var(--radius);
  border: none; cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(201,168,76,0.35);
}
.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(201,168,76,0.45);
}
.btn-navy {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--navy);
  color: var(--white);
  font-weight: 700; font-size: 0.9rem;
  padding: 14px 28px;
  border-radius: var(--radius); border: none; cursor: pointer;
  transition: var(--transition);
}
.btn-navy:hover { background: var(--navy-light); transform: translateY(-2px); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 6px;
  border: 2px solid var(--navy);
  color: var(--navy); font-weight: 600; font-size: 0.85rem;
  padding: 10px 20px; border-radius: var(--radius);
  transition: var(--transition);
}
.btn-outline:hover {
  background: var(--navy); color: var(--white);
}
.full-width { width: 100%; justify-content: center; }

/* ===== TOP BAR ===== */
.topbar {
  background: var(--navy-dark);
  color: var(--white);
  font-size: 0.82rem;
  padding: 8px 0;
}
.topbar-inner {
  display: flex; align-items: center;
  justify-content: space-between; gap: 16px;
  flex-wrap: wrap;
}
.topbar-contacts { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.topbar-item {
  display: flex; align-items: center; gap: 7px;
  color: rgba(255,255,255,0.85);
  transition: color 0.2s;
}
.topbar-item:hover { color: var(--gold-light); }
.topbar-item svg { width: 14px; height: 14px; flex-shrink: 0; }
.topbar-whats { color: #4ade80; }
.topbar-whats:hover { color: #86efac; }
.topbar-dollar {
  color: var(--gold-light);
  font-weight: 600;
}
.topbar-dollar:hover {
  color: var(--white);
}
.topbar-dollar svg {
  color: var(--gold);
}

.topbar-social { display: flex; align-items: center; gap: 12px; }
.topbar-social a { color: rgba(255,255,255,0.6); transition: color 0.2s; }
.topbar-social a:hover { color: var(--gold); }
.topbar-social svg { width: 16px; height: 16px; }

/* ===== HEADER ===== */
.header {
  position: sticky; top: 0; z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 16px rgba(10,34,64,0.10);
  transition: box-shadow 0.3s;
}
.header-inner {
  display: flex; align-items: center;
  justify-content: space-between;
  padding-top: 16px; padding-bottom: 16px;
  gap: 16px;
}
.logo { display: flex; align-items: center; gap: 12px; }
.logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.logo-main {
  font-family: var(--font-display);
  font-size: 1.55rem; font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.logo-sub {
  font-size: 0.68rem; font-weight: 600;
  color: var(--gold-dark);
  letter-spacing: 0.1em; text-transform: uppercase;
}

.site-search {
  display: flex;
  align-items: center;
  width: min(270px, 24vw);
  min-width: 180px;
  margin-left: auto;
  border: 1px solid rgba(10,34,64,0.18);
  border-radius: 999px;
  background: var(--white);
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.site-search:focus-within {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.16);
}
.site-search input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--text);
  font: inherit;
  font-size: 0.78rem;
  padding: 10px 12px 10px 16px;
}
.site-search input::placeholder { color: var(--gray); }
.site-search button {
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  border: 0;
  background: var(--navy);
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.site-search button:hover { background: var(--navy-light); }
.site-search button svg { width: 17px; height: 17px; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span {
  width: 24px; height: 2px;
  background: var(--navy); border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav { display: flex; align-items: center; gap: 4px; }
.nav-link {
  font-weight: 600; font-size: 0.88rem;
  color: var(--navy); padding: 8px 14px;
  border-radius: 6px;
  transition: var(--transition);
  letter-spacing: 0.01em;
  position: relative;
}
.nav-link::after {
  content: ''; position: absolute;
  bottom: 4px; left: 14px; right: 14px;
  height: 2px; background: var(--gold);
  border-radius: 1px;
  transform: scaleX(0);
  transition: transform 0.25s;
}
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }
.nav-link:hover { color: var(--navy-light); }
.nav-cta {
  display: flex; align-items: center; gap: 7px;
  background: #25d366;
  color: var(--white);
  font-weight: 700; font-size: 0.82rem;
  padding: 10px 18px; border-radius: var(--radius);
  margin-left: 8px;
  transition: var(--transition);
}
.nav-cta:hover { background: #1ebe5c; transform: translateY(-1px); }

/* ===== PAGES ===== */
.page { display: none; }
.page.active { display: block; }

/* ===== BANNER SLIDER ===== */
.banner-slider {
  position: relative; overflow: hidden;
  height: 580px; background: var(--navy-dark);
}
.slider-track {
  display: flex; height: 100%;
  transition: transform 0.7s cubic-bezier(0.77, 0, 0.175, 1);
}
.gold {
  color: var(--gold);
}

.slide {
  min-width: 100%; height: 100%;
  background-size: cover; background-position: center;
  background-color: var(--navy); /* fallback quando sem imagem */
  position: relative; display: flex; align-items: center;
}
.slide-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(6,22,40,0.4) 40%, rgba(6,22,40,0.3) 100%);
}
.slide-content {
    position: absolute;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
  max-width: 650px;
}
@keyframes slideIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.slide-tag {
  display: inline-block;
  background: var(--gold);
  color: var(--navy-dark);
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 20px;
  margin-bottom: 20px;
}
.slide-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: var(--white);
  line-height: 1.2; margin-bottom: 16px;
}
.slide-content h2 span { color: var(--gold-light); }
.slide-content p {
  color: rgba(255,255,255,0.8);
  font-size: 1.05rem; margin-bottom: 32px;
}
.slider-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  width: 50px; height: 50px; border-radius: 50%;
  font-size: 1.8rem; cursor: pointer;
  transition: var(--transition); z-index: 10;
  display: flex; align-items: center; justify-content: center;
  line-height: 1;
}
.slider-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }
.slider-prev { left: 24px; }
.slider-next { right: 24px; }
.slider-dots {
  position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 8px; z-index: 10;
}
.slider-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.4); cursor: pointer;
  transition: var(--transition); border: none;
}
.slider-dot.active {
  background: var(--gold); width: 24px; border-radius: 4px;
}

/* ===== QUICK ACCESS ===== */
.quick-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.quick-card {
  background: var(--white); border-radius: 12px;
  padding: 36px 28px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(10,34,64,0.07);
  transition: var(--transition);
  display: block; position: relative; overflow: hidden;
}
.quick-card::before {
  content: ''; position: absolute;
  bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--navy), var(--navy-light));
  transform: scaleX(0); transition: transform 0.3s;
}
.quick-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.quick-card:hover::before { transform: scaleX(1); }
.quick-card-gold::before { background: linear-gradient(90deg, var(--gold-dark), var(--gold-light)); }
.quick-icon {
  width: 56px; height: 56px;
  background: rgba(10,34,64,0.07);
  border-radius: 12px; display: flex;
  align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.quick-icon svg { width: 26px; height: 26px; color: var(--navy); }
.quick-card-gold .quick-icon { background: rgba(201,168,76,0.15); }
.quick-card-gold .quick-icon svg { color: var(--gold-dark); }
.quick-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem; color: var(--navy); margin-bottom: 8px;
}
.quick-card p { color: var(--gray); font-size: 0.9rem; margin-bottom: 16px; }
.quick-arrow {
  font-size: 1.2rem; color: var(--gold-dark); font-weight: 700;
  transition: transform 0.2s;
}
.quick-card:hover .quick-arrow { transform: translateX(5px); }

/* ===== PRODUCTS ===== */
.products-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.product-card {
  background: var(--white); border-radius: 12px;
  box-shadow: var(--shadow);
  overflow: hidden;
  border: 1px solid rgba(10,34,64,0.06);
  transition: var(--transition);
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.product-card.search-highlight, .catalogo-card.search-highlight {
  outline: 4px solid var(--gold);
  outline-offset: 4px;
  box-shadow: 0 0 0 8px rgba(201,168,76,0.18), var(--shadow-lg);
}
.cat-header.category-highlight {
  border-radius: 8px;
  outline: 3px solid rgba(201,168,76,0.75);
  outline-offset: 10px;
  background: rgba(201,168,76,0.08);
  transition: background 0.3s, outline 0.3s;
}
.product-img-wrap {
  position: relative; overflow: hidden;
  background: var(--gray-light);
  height: 220px; display: flex; align-items: center; justify-content: center;
}
.product-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s ease;
}
.product-card:hover .product-img-wrap img { transform: scale(1.05); }
.product-img-placeholder {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  color: var(--gray); gap: 8px;
  font-size: 0.8rem; text-align: center; padding: 16px;
}
.product-img-placeholder svg { width: 40px; height: 40px; opacity: 0.4; }
.no-img .product-img-placeholder { display: flex !important; }
.product-badge {
  position: absolute; top: 12px; left: 12px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy-dark);
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 20px;
}
.product-info { padding: 24px; }
.product-info h3 {
  font-family: var(--font-display);
  font-size: 1.1rem; color: var(--navy); margin-bottom: 8px;
}
.product-info p { color: var(--gray); font-size: 0.88rem; margin-bottom: 20px; line-height: 1.6; }

/* ===== DIFERENCIAIS ===== */
.diferenciais { background: var(--navy); }
.diferenciais-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.diferenciais-text .section-tag { background: rgba(201,168,76,0.2); color: var(--gold-light); border-color: rgba(201,168,76,0.4); }
.diferenciais-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--white); margin: 12px 0 20px; line-height: 1.25;
}
.diferenciais-text p { color: rgba(255,255,255,0.75); margin-bottom: 16px; font-size: 0.95rem; }
.diferenciais-text strong { color: var(--white); }
.diferenciais-items { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 28px 0 36px; }
.dif-item { display: flex; align-items: center; gap: 10px; }
.dif-dot {
  width: 8px; height: 8px; flex-shrink: 0;
  background: var(--gold); border-radius: 50%;
}
.dif-item span { color: rgba(255,255,255,0.85); font-size: 0.88rem; font-weight: 500; }
.diferenciais-img-wrap {
  position: relative; border-radius: 16px; overflow: hidden;
}
.diferenciais-img-wrap img { width: 100%; height: 480px; object-fit: cover; border-radius: 16px; }
.agronomo-placeholder {
  width: 100%; height: 480px;
  background: rgba(255,255,255,0.07);
  border: 2px dashed rgba(255,255,255,0.2);
  border-radius: 16px;
  flex-direction: column; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.4); gap: 12px;
}
.agronomo-placeholder svg { width: 64px; height: 64px; }
.dif-badge {
  position: absolute; bottom: 24px; right: 24px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy-dark);
  padding: 16px 20px; border-radius: 12px; text-align: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}
.dif-num { display: block; font-family: var(--font-display); font-size: 2rem; font-weight: 700; line-height: 1; }
.dif-badge span:last-child { font-size: 0.75rem; font-weight: 600; }

/* ===== CTA ===== */
.cta-section {
  position: relative; overflow: hidden;
  background: var(--navy-dark);
}
.cta-bg {
  position: absolute; inset: 0;
  background: url('imagens/cta-bg.jpg') center/cover no-repeat;
  opacity: 0.18;
  /* TROQUE A IMAGEM DE FUNDO DO CTA: mude url('imagens/cta-bg.jpg') acima */
}
.cta-inner { position: relative; z-index: 1; }
.cta-text { max-width: 640px; }
.cta-text .section-tag.light { background: rgba(201,168,76,0.2); color: var(--gold-light); border-color: rgba(201,168,76,0.4); }
.cta-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--white); margin: 12px 0 16px; line-height: 1.25;
}
.cta-text p { color: rgba(255,255,255,0.7); margin-bottom: 32px; }

/* ===== PAGE HERO ===== */
.page-hero {
  height: 280px; position: relative;
  background: var(--navy) center/cover no-repeat;
  display: flex; align-items: center;
}
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(6,22,40,0.85) 50%, rgba(6,22,40,0.5));
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: var(--white); margin-bottom: 8px;
}
.page-hero p { color: rgba(255,255,255,0.7); font-size: 1rem; }

/* ===== EMPRESA PAGE ===== */
.empresa-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.empresa-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--navy); margin: 12px 0 20px;
}
.empresa-text p { color: var(--gray); margin-bottom: 16px; }
.empresa-img-wrap img { width: 100%; height: 440px; object-fit: cover; border-radius: 12px; }
.img-placeholder {
  width: 100%; height: 440px;
  background: var(--gray-light);
  border: 2px dashed #d1d5db;
  border-radius: 12px;
  align-items: center; justify-content: center;
  color: var(--gray); font-size: 0.9rem;
}
.empresa-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 32px 0;
}
.stat-item {
  text-align: center; padding: 20px 12px;
  background: var(--off-white); border-radius: 10px;
  border-top: 3px solid var(--gold);
}
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem; font-weight: 700;
  color: var(--navy);
}
.stat-label { font-size: 0.8rem; color: var(--gray); font-weight: 600; }

.mvv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.mvv-card {
  background: var(--white); padding: 36px 28px;
  border-radius: 12px; box-shadow: var(--shadow);
  border-top: 4px solid var(--navy);
}
.mvv-gold { border-top-color: var(--gold); }
.mvv-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  overflow: hidden;
}
.mvv-icon img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.mvv-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem; color: var(--navy); margin-bottom: 12px;
}
.mvv-card p { color: var(--gray); font-size: 0.9rem; }

/* ===== PRODUTOS PAGE ===== */
.cat-header { margin-bottom: 32px; }
.cat-header h2 {
  font-family: var(--font-display);
  font-size: 1.8rem; color: var(--navy); margin-bottom: 12px;
}

/* ===== CATÁLOGO PAGE ===== */
.catalogo-container { max-width: 900px; }
.catalogo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.catalogo-card {
  background: var(--white); border-radius: 12px;
  box-shadow: var(--shadow); overflow: hidden;
  transition: var(--transition);
}
.catalogo-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.catalogo-cover {
  height: 280px; background: var(--gray-light);
  overflow: hidden; display: flex; align-items: center; justify-content: center;
}
.catalogo-cover img { width: 100%; height: 100%; object-fit: cover; }
.catalogo-placeholder {
  width: 100%; height: 100%;
  flex-direction: column; align-items: center; justify-content: center;
  color: var(--gray); gap: 12px; font-size: 0.85rem;
}
.catalogo-placeholder svg { width: 48px; height: 48px; opacity: 0.4; }
.catalogo-info { padding: 24px; }
.catalogo-info h3 {
  font-family: var(--font-display);
  font-size: 1.1rem; color: var(--navy); margin-bottom: 8px;
}
.catalogo-info p { color: var(--gray); font-size: 0.85rem; margin-bottom: 20px; }
.catalogo-cta {
  text-align: center; margin-top: 52px;
  padding: 36px; background: var(--off-white);
  border-radius: 12px;
}
.catalogo-cta p { color: var(--gray); margin-bottom: 20px; font-size: 1rem; }

/* ===== CONTATO PAGE ===== */
.contato-container {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px;
}
.contato-info h2 {
  font-family: var(--font-display);
  font-size: 1.8rem; color: var(--navy); margin: 12px 0 20px;
}
.contato-items { margin: 32px 0; display: flex; flex-direction: column; gap: 20px; }
.contato-item { display: flex; align-items: flex-start; gap: 16px; }
.contato-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: rgba(10,34,64,0.07);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
}
.contato-icon.green { background: rgba(37,211,102,0.12); }
.contato-icon svg { width: 20px; height: 20px; color: var(--navy); }
.contato-icon.green svg { color: #25d366; }
.contato-item h4 { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--gold-dark); margin-bottom: 4px; }
.contato-item a, .contato-item p { color: var(--text); font-size: 0.9rem; transition: color 0.2s; }
.contato-item a:hover { color: var(--navy); text-decoration: underline; }
.pagamento-section { border-top: 1px solid var(--gray-light); padding-top: 24px; margin-top: 8px; }
.pagamento-section h4 { font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--navy); margin-bottom: 12px; }
.pagamento-section ul { display: flex; flex-direction: column; gap: 6px; }
.pagamento-section li { color: var(--gray); font-size: 0.88rem; }
.pagamento-section li::before { content: '✓ '; color: var(--gold-dark); font-weight: 700; }

.contato-form-wrap {
  background: var(--off-white);
  border-radius: 16px; padding: 40px;
}
.contato-form-wrap h3 {
  font-family: var(--font-display);
  font-size: 1.5rem; color: var(--navy); margin-bottom: 28px;
}
.contato-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 0.82rem; font-weight: 700; color: var(--navy); letter-spacing: 0.03em; }
.form-group input, .form-group select, .form-group textarea {
  padding: 12px 16px; border: 2px solid #e5e7eb;
  border-radius: var(--radius); font-family: var(--font-body); font-size: 0.9rem;
  color: var(--text); background: var(--white);
  transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--navy);
}
.form-group textarea { resize: vertical; }
.form-note { font-size: 0.78rem; color: var(--gray); text-align: center; }
.contato-form .form-success { color: #15803d; font-weight: 600; }
.contato-form .form-error { color: #b91c1c; font-weight: 600; }

.mapa-wrap { border-top: 4px solid var(--gold); }
.mapa-wrap iframe { display: block; }

/* ===== FOOTER ===== */
.footer { background: var(--navy-dark); color: var(--white); }
.footer-top { padding: 64px 0 48px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; }
.footer-logo { margin-bottom: 16px; }
.footer-logo .logo-main { font-size: 1.4rem; }
.footer-logo .logo-sub { color: var(--gold); }
.footer-desc { color: rgba(255,255,255,0.55); font-size: 0.88rem; line-height: 1.7; margin-bottom: 24px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--gold); border-color: var(--gold); }
.footer-social svg { width: 18px; height: 18px; }
.footer-col h4 {
  font-size: 0.82rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--gold); margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { color: rgba(255,255,255,0.6); font-size: 0.88rem; transition: color 0.2s; }
.footer-col ul a:hover { color: var(--gold-light); }
.footer-contact { display: flex; flex-direction: column; gap: 10px; }
.footer-contact a, .footer-contact p { color: rgba(255,255,255,0.6); font-size: 0.85rem; transition: color 0.2s; }
.footer-contact a:hover { color: var(--gold-light); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
}
.footer-bottom-inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 8px;
}
.footer-bottom p { color: rgba(255,255,255,0.4); font-size: 0.8rem; }
.footer-bottom a { color: var(--gold-light); }

/* ===== WHATSAPP FLOAT ===== */
.whats-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 58px; height: 58px;
  background: #25d366;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.4);
  transition: var(--transition);
  animation: pulse 2.5s infinite;
}
.whats-float:hover { transform: scale(1.1); box-shadow: 0 8px 32px rgba(37,211,102,0.5); }
.whats-float img {  width: 60px;  height: 60px;  object-fit: contain; }
@keyframes pulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 6px 32px rgba(37,211,102,0.7), 0 0 0 10px rgba(37,211,102,0.08); }
}

/* ===== SCROLLED HEADER ===== */
.header.scrolled { box-shadow: 0 4px 24px rgba(10,34,64,0.15); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .diferenciais-inner, .empresa-inner { grid-template-columns: 1fr; gap: 40px; }
  .diferenciais-img-wrap img { height: 360px; }
  .agronomo-placeholder { height: 360px; }
}
@media (max-width: 768px) {
  .topbar-social { display: none; }
  .hamburger { display: flex; }
  .nav {
    display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: var(--navy-dark); z-index: 998;
    flex-direction: column; align-items: center; justify-content: center; gap: 20px;
  }
  .nav.open { display: flex; }
  .nav-link { font-size: 1.2rem; color: var(--white); padding: 12px 24px; }
  .nav-link::after { display: none; }
  .nav-cta { margin-left: 0; font-size: 1rem; padding: 14px 28px; }
  .banner-slider { height: 420px; }
  .slide-content { padding: 0 32px; }
  .slide-content h2 { font-size: 1.6rem; }
  .quick-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .contato-container { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .catalogo-grid { grid-template-columns: 1fr; }
  .mvv-grid { grid-template-columns: 1fr; }
  .empresa-stats { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .diferenciais-items { grid-template-columns: 1fr; }
  .section-pad { padding: 52px 0; }
  .header-inner { padding-top: 14px; padding-bottom: 14px; }
}
@media (max-width: 480px) {
  .topbar-contacts { gap: 12px; }
  .topbar-item { font-size: 0.75rem; }
  .banner-slider { height: 360px; }
  .slide-content { padding: 0 20px; }
  .slider-btn { width: 38px; height: 38px; font-size: 1.4rem; }
}

/* ===== RESPONSIVIDADE REFORÇADA ===== */
html, body { max-width: 100%; overflow-x: hidden; }
.container { width: 100%; }
.logo img { width: auto; max-width: 160px; height: auto; }
.slide-content { width: min(650px, calc(100% - 48px)); }
.product-img-wrap img, .diferenciais-img-wrap img, .empresa-img-wrap img,
.catalogo-cover img { max-width: none; }
.form-group input, .form-group select, .form-group textarea { width: 100%; min-width: 0; }

@media (max-width: 1100px) {
  .container { padding-left: 20px; padding-right: 20px; }
  .header-inner { gap: 12px; }
  .site-search { width: min(240px, 25vw); min-width: 160px; }
  .nav-link { padding-left: 10px; padding-right: 10px; }
  .nav-cta { padding-left: 12px; padding-right: 12px; }
  .diferenciais-inner, .empresa-inner, .contato-container { gap: 32px; }
  .footer-grid { gap: 24px; }
}

@media (max-width: 900px) {
  .topbar-inner { justify-content: center; }
  .topbar-contacts { justify-content: center; gap: 14px 20px; }
  .topbar-social { display: none; }
  .nav { gap: 0; }
  .nav-link { font-size: 0.82rem; padding-left: 8px; padding-right: 8px; }
  .nav-cta { font-size: 0.76rem; margin-left: 4px; }
  .products-grid, .catalogo-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .quick-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
  .quick-card { padding: 28px 20px; }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 768px) {
  .topbar { padding: 7px 0; }
  .topbar-contacts { width: 100%; gap: 6px 14px; }
  .topbar-item { font-size: 0.74rem; }
  .topbar-item:nth-child(3) { max-width: 100%; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .header-inner { min-height: 68px; padding-top: 12px; padding-bottom: 12px; }
  .logo { min-width: 0; }
  .logo-main img { max-width: 132px !important; }
  .site-search { width: min(230px, 42vw); min-width: 150px; margin-left: auto; }
  .site-search input { font-size: 0.74rem; padding-left: 12px; }
  .logo-sub { font-size: 0.55rem; letter-spacing: 0.06em; }
  .hamburger { display: flex; flex-shrink: 0; position: relative; z-index: 1001; }
  .nav {
    display: none;
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100dvh;
    padding: 96px 24px 32px;
    background: var(--navy-dark);
    z-index: 1000;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    overflow-y: auto;
  }
  .nav.open { display: flex; }
  .nav-link { width: min(320px, 100%); text-align: center; font-size: 1.1rem; color: var(--white); padding: 13px 20px; }
  .nav-cta { width: min(320px, 100%); justify-content: center; margin: 12px 0 0; font-size: 0.95rem; padding: 13px 20px; }
  .banner-slider { height: clamp(360px, 62vw, 500px); min-height: 360px; }
  .slide { background-position: center; }
  .slide-content { left: 0; width: 100%; max-width: 560px; padding: 0 32px; }
  .slide-content h2 { font-size: clamp(1.65rem, 6vw, 2.35rem); }
  .slide-content p { font-size: 0.95rem; margin-bottom: 22px; max-width: 420px; }
  .slider-btn { width: 42px; height: 42px; }
  .slider-prev { left: 12px; }
  .slider-next { right: 12px; }
  .section-pad { padding: 56px 0; }
  .section-header { margin-bottom: 34px; }
  .quick-grid, .products-grid, .catalogo-grid, .mvv-grid { grid-template-columns: 1fr; }
  .quick-card { padding: 28px 24px; }
  .product-img-wrap { height: clamp(190px, 48vw, 250px); }
  .diferenciais-inner, .empresa-inner, .contato-container { grid-template-columns: 1fr; gap: 34px; }
  .diferenciais-img-wrap img, .agronomo-placeholder { height: clamp(280px, 62vw, 380px); }
  .empresa-img-wrap img, .img-placeholder { height: clamp(260px, 58vw, 380px); }
  .empresa-stats { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; }
  .stat-item { padding: 16px 8px; }
  .stat-num { font-size: 1.55rem; }
  .stat-label { font-size: 0.7rem; }
  .diferenciais-items { grid-template-columns: 1fr 1fr; }
  .contato-form-wrap { padding: 28px 22px; }
  .form-row { grid-template-columns: 1fr; gap: 16px; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-top { padding: 48px 0 36px; }
  .whats-float { width: 52px; height: 52px; right: 18px; bottom: 18px; }
  .whats-float img { width: 52px; height: 52px; }
}

@media (max-width: 480px) {
  .container { padding-left: 16px; padding-right: 16px; }
  .topbar-contacts { justify-content: flex-start; }
  .topbar-item { font-size: 0.7rem; }
  .topbar-item svg { width: 12px; height: 12px; }
  .logo-sub { display: none; }
  .site-search { width: 150px; min-width: 0; }
  .site-search input { padding-left: 10px; padding-right: 6px; }
  .site-search input::placeholder { font-size: 0.68rem; }
  .site-search button { flex-basis: 34px; width: 34px; height: 34px; }
  .site-search button svg { width: 15px; height: 15px; }
  .banner-slider { height: 360px; min-height: 360px; }
  .slide-content { padding: 0 42px 0 22px; }
  .slide-tag { font-size: 0.62rem; margin-bottom: 12px; }
  .slide-content h2 { font-size: 1.7rem; line-height: 1.12; margin-bottom: 10px; }
  .slide-content p { font-size: 0.86rem; margin-bottom: 18px; }
  .btn-gold, .btn-navy { font-size: 0.78rem; padding: 11px 16px; }
  .slider-btn { width: 34px; height: 34px; font-size: 1.25rem; }
  .slider-prev { left: 8px; }
  .slider-next { right: 8px; }
  .section-pad { padding: 44px 0; }
  .section-header h2 { font-size: 1.65rem; }
  .diferenciais-items { grid-template-columns: 1fr; }
  .empresa-stats { grid-template-columns: 1fr; }
  .stat-item { display: flex; align-items: center; justify-content: center; gap: 8px; padding: 13px 10px; }
  .stat-num { font-size: 1.35rem; }
  .stat-label { font-size: 0.72rem; }
  .product-info, .catalogo-info { padding: 20px; }
  .contato-form-wrap { padding: 24px 16px; }
  .footer-bottom-inner { align-items: flex-start; text-align: left; }
}

.reveal-item {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.reveal-item.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== AJUSTES FINAIS PARA TODAS AS TELAS ===== */
.diferenciais-inner > *, .empresa-inner > *, .contato-container > *,
.footer-grid > *, .products-grid > *, .catalogo-grid > *, .mvv-grid > * { min-width: 0; }
.page-hero { min-height: 300px; height: auto; padding: 56px 0; }
.cat-header { scroll-margin-top: 100px; }
.product-card, .catalogo-card, .quick-card, .mvv-card { min-width: 0; }
.product-info h3, .product-info p, .catalogo-info h3, .catalogo-info p { overflow-wrap: anywhere; }

@media (max-width: 600px) {
  .header-inner { flex-wrap: wrap; }
  .logo { flex: 0 1 auto; }
  .site-search { order: 3; flex: 1 1 100%; width: 100%; max-width: none; margin: 4px 0 0; }
  .site-search input { padding-top: 9px; padding-bottom: 9px; }
  .hamburger { margin-left: auto; }
  .page-hero { min-height: 190px; padding: 42px 0; }
  .page-hero h1 { font-size: clamp(1.65rem, 8vw, 2.25rem); }
  .page-hero p { font-size: 0.88rem; }
  .cat-header { margin-top: 42px !important; }
  .cat-header h2 { font-size: 1.45rem; line-height: 1.2; }
  .contato-item { gap: 10px; }
  .contato-item a, .contato-item p { overflow-wrap: anywhere; }
}

@media (max-width: 360px) {
  .container { padding-left: 12px; padding-right: 12px; }
  .header-inner { min-height: 60px; }
  .logo-main img { max-width: 112px !important; }
  .hamburger { padding: 2px; }
  .hamburger span { width: 22px; }
  .topbar-item:nth-child(1), .topbar-item:nth-child(2) { font-size: 0.66rem; }
  .slide-content { padding-left: 18px; padding-right: 36px; }
  .slide-content h2 { font-size: 1.48rem; }
  .slide-content p { font-size: 0.78rem; }
  .btn-gold, .btn-navy { width: 100%; justify-content: center; }
  .contato-form-wrap { padding-left: 14px; padding-right: 14px; }
}
