/* ============================================
   JC AGRICULTURA — DESIGN SYSTEM
   R2 Agência Digital
============================================ */

:root {
  --green-primary: #4a8c2a;
  --green-dark: #2d5a1a;
  --green-light: #6aad3d;
  --green-pale: #e8f5e0;
  --green-bg: #5a7c3a;
  --orange-accent: #c0561a;
  --gold: #d4a017;
  --white: #ffffff;
  --off-white: #f7f9f4;
  --text-dark: #1a2010;
  --text-mid: #3d5025;
  --text-light: #7a9060;
  --gray-100: #f5f5f2;
  --gray-200: #e8e8e2;
  --gray-400: #aaa;
  --dark-bg: #1a2010;
  --border: rgba(255,255,255,0.1);
  --shadow-sm: 0 2px 8px rgba(26,32,16,0.08);
  --shadow-md: 0 8px 30px rgba(26,32,16,0.12);
  --shadow-lg: 0 20px 60px rgba(26,32,16,0.18);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', sans-serif;
  --font-ui: 'DM Sans', sans-serif;
}

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

/* TYPOGRAPHY */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.5rem); }
em { font-style: normal; color: var(--green-light); }

/* UTILITIES */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-padding { padding: 80px 0; }
.bg-green { background: var(--green-bg); }
.bg-dark { background: var(--dark-bg); }

.section-tag {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green-light);
  background: rgba(106,173,61,0.12);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.section-tag.light {
  color: #b8e890;
  background: rgba(255,255,255,0.12);
}

.section-header {
  display: flex;
  flex-direction: column;
  margin-bottom: 48px;
}
.section-header.center { align-items: center; text-align: center; }
.section-header h2 { color: var(--white); }
.section-header .btn-ghost { margin-top: 16px; align-self: flex-start; }

/* BUTTONS */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-primary);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 100px;
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  transition: var(--transition);
  border: 2px solid transparent;
}
.btn-primary:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(74,140,42,0.35);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  padding: 12px 30px;
  border-radius: 100px;
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 0.9rem;
  border: 2px solid rgba(255,255,255,0.5);
  transition: var(--transition);
}
.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.1);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  color: var(--green-primary);
  padding: 10px 20px;
  border-radius: 100px;
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 0.85rem;
  border: 2px solid var(--green-primary);
  transition: var(--transition);
}
.btn-ghost:hover {
  background: var(--green-primary);
  color: var(--white);
}

.btn-outline-dark {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: transparent;
  color: rgba(255,255,255,0.7);
  padding: 12px 28px;
  border-radius: 100px;
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: 0.875rem;
  border: 1px solid rgba(255,255,255,0.2);
  transition: var(--transition);
  margin-top: 12px;
}
.btn-outline-dark:hover {
  border-color: rgba(255,255,255,0.5);
  color: var(--white);
}

.btn-whatsapp {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: var(--white);
  padding: 14px 32px;
  border-radius: 100px;
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition);
  width: 100%;
}
.btn-whatsapp:hover {
  background: #1da851;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37,211,102,0.35);
}

/* ============================================
   HEADER
============================================ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: var(--transition);
}

.header-top {
  background: var(--green-dark);
  color: rgba(255,255,255,0.85);
  font-size: 0.8rem;
  padding: 8px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 100%;
}

.social-icons {
  display: flex;
  gap: 14px;
}
.social-icons a {
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
}
.social-icons a:hover { color: var(--white); }

.navbar {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.header.scrolled .header-top { display: none; }
.header.scrolled .navbar { box-shadow: var(--shadow-md); }

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.logo img { height: 40px; width: auto; }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-link {
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-mid);
  padding: 8px 14px;
  border-radius: 8px;
  transition: var(--transition);
  position: relative;
}
.nav-link:hover, .nav-link.active {
  color: var(--green-primary);
  background: var(--green-pale);
}

.nav-link.nav-cta {
  background: var(--green-primary);
  color: var(--white);
  padding: 9px 20px;
  border-radius: 100px;
}
.nav-link.nav-cta:hover {
  background: var(--green-dark);
  color: var(--white);
}

/* Dropdown */
.dropdown { position: relative; }
.dropdown-toggle { display: flex; align-items: center; gap: 4px; cursor: pointer; }

.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  min-width: 180px;
  padding: 8px 0;
  border: 1px solid var(--gray-200);
  z-index: 100;
}
.dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu li a {
  display: block;
  padding: 10px 18px;
  font-size: 0.88rem;
  color: var(--text-mid);
  transition: background 0.2s;
}
.dropdown-menu li a:hover {
  background: var(--green-pale);
  color: var(--green-primary);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: var(--transition);
}

/* ============================================
   HERO SLIDESHOW
============================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  margin-top: 106px; /* header height */
  background: var(--green-dark);
}

.slides-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-color: var(--green-dark);
  opacity: 0;
  transition: opacity 1s ease;
  will-change: opacity;
}
.slide.active { opacity: 1; }

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(20,35,10,0.85) 0%, rgba(20,35,10,0.4) 60%, rgba(20,35,10,0.2) 100%);
}

.slide-content {
  position: absolute;
  bottom: 15%;
  left: 0;
  padding: 0 80px;
  max-width: 760px;
  color: var(--white);
}
.slide-tag {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #b8e890;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  padding: 6px 16px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.2);
  margin-bottom: 20px;
}
.slide-content h1 {
  font-size: clamp(2.2rem, 5.5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.slide-content h1 strong { color: #b8e890; font-weight: 800; }
.slide-content p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 32px;
  max-width: 520px;
  line-height: 1.7;
}
.slide-btns { display: flex; gap: 16px; flex-wrap: wrap; }

.slide-controls {
  position: absolute;
  bottom: 32px;
  left: 80px;
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 10;
}
.slide-btn {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--white);
  width: 40px; height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  transition: var(--transition);
  backdrop-filter: blur(8px);
}
.slide-btn:hover { background: var(--green-primary); border-color: var(--green-primary); }

.slide-dots { display: flex; gap: 8px; }
.dot {
  width: 8px; height: 8px;
  border-radius: 100px;
  background: rgba(255,255,255,0.4);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}
.dot.active { background: var(--white); width: 24px; }

.hero-scroll {
  position: absolute;
  right: 40px;
  bottom: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.6);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-family: var(--font-ui);
}
.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.5; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

/* ============================================
   STATS BAR
============================================ */
.stats-bar {
  background: var(--green-primary);
  padding: 28px 0;
}
.stats-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 8px 48px;
}
.stat-num {
  font-family: var(--font-ui);
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.75);
  margin-top: 4px;
  text-align: center;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.2);
}

/* ============================================
   ABOUT HOME
============================================ */
.about-home { background: var(--off-white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-text .section-tag { margin-bottom: 20px; }
.about-text h2 { color: var(--text-dark); margin-bottom: 20px; }
.about-text p { color: var(--text-light); line-height: 1.8; margin-bottom: 16px; }
.about-actions { display: flex; gap: 16px; margin-top: 32px; flex-wrap: wrap; }

.about-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
}
.about-img-wrap img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--green-primary);
  color: var(--white);
  padding: 20px 24px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-md);
}
.about-badge strong {
  display: block;
  font-family: var(--font-ui);
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1;
}
.about-badge span { font-size: 0.8rem; opacity: 0.85; }

/* ============================================
   VALUES
============================================ */
.values .section-header h2 { color: var(--white); }
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.value-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  color: var(--white);
  transition: var(--transition);
  backdrop-filter: blur(8px);
}
.value-card:hover {
  background: rgba(255,255,255,0.15);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.value-icon {
  width: 64px; height: 64px;
  background: rgba(106,173,61,0.2);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: #b8e890;
}
.value-card h3 { margin-bottom: 12px; font-size: 1.2rem; }
.value-card p { color: rgba(255,255,255,0.75); line-height: 1.7; font-size: 0.9rem; }

/* ============================================
   PRODUCTS HOME
============================================ */
.products-home { background: var(--white); }
.section-header { display: flex; flex-direction: column; margin-bottom: 48px; }
.section-header h2 { color: var(--text-dark); margin-bottom: 4px; }

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.product-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  background: var(--white);
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.product-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover .product-img img { transform: scale(1.06); }
.product-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,32,16,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}
.product-card:hover .product-overlay { opacity: 1; }
.product-link {
  background: var(--white);
  color: var(--green-primary);
  padding: 10px 24px;
  border-radius: 100px;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 0.85rem;
  transition: var(--transition);
}
.product-link:hover { background: var(--green-primary); color: var(--white); }
.product-info { padding: 20px; }
.product-info h3 { font-size: 1rem; margin-bottom: 6px; color: var(--text-dark); }
.product-info p { font-size: 0.85rem; color: var(--text-light); line-height: 1.5; }

/* ============================================
   MISSION BANNER
============================================ */
.mission-banner { position: relative; overflow: hidden; }
.mission-bg {
  min-height: 440px;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  position: relative;
}
.mission-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(20,40,10,0.9) 0%, rgba(45,90,26,0.75) 100%);
}
.mission-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  padding: 80px;
  color: var(--white);
}
.mission-content h2 { color: var(--white); margin-bottom: 16px; }
.mission-content h2 em { color: #b8e890; }
.mission-content p { color: rgba(255,255,255,0.8); margin-bottom: 28px; line-height: 1.7; }

/* ============================================
   QUICK LINKS
============================================ */
.quick-links { background: var(--off-white); }
.ql-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.ql-card {
  display: flex;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}
.ql-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.ql-img {
  width: 240px;
  flex-shrink: 0;
  overflow: hidden;
}
.ql-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.ql-card:hover .ql-img img { transform: scale(1.06); }
.ql-body {
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.ql-body h3 { font-size: 1.1rem; margin-bottom: 10px; color: var(--text-dark); }
.ql-body p { font-size: 0.88rem; color: var(--text-light); line-height: 1.6; margin-bottom: 16px; }
.ql-more {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--green-primary);
  transition: gap 0.2s;
}
.ql-card:hover .ql-more { gap: 8px; }

/* ============================================
   CONTACT HOME
============================================ */
.contact-home .section-header { margin-bottom: 0; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.contact-text .section-tag.light { display: inline-block; margin-bottom: 16px; }
.contact-text h2 { color: var(--white); margin-bottom: 16px; }
.contact-text h2 em { color: #b8e890; }
.contact-text p { color: rgba(255,255,255,0.7); margin-bottom: 32px; line-height: 1.8; }
.contact-info { display: flex; flex-direction: column; gap: 16px; }
.ci-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
}
.ci-item svg { flex-shrink: 0; color: var(--green-light); margin-top: 2px; }
.ci-item a { color: rgba(255,255,255,0.7); transition: color 0.2s; }
.ci-item a:hover { color: var(--white); }

.whatsapp-box {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  backdrop-filter: blur(8px);
}
.wa-icon { margin-bottom: 20px; display: flex; justify-content: center; }
.whatsapp-box h3 { color: var(--white); font-size: 1.3rem; margin-bottom: 10px; }
.whatsapp-box p { color: rgba(255,255,255,0.65); font-size: 0.9rem; margin-bottom: 24px; line-height: 1.6; }

/* ============================================
   FOOTER
============================================ */
.footer { background: var(--dark-bg); color: rgba(255,255,255,0.7); }
.footer-main { padding: 64px 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr 1.5fr;
  gap: 48px;
}
.footer-brand img { margin-bottom: 16px; filter: brightness(10); opacity: 0.9; }
.footer-brand p { font-size: 0.88rem; line-height: 1.7; margin-bottom: 20px; }
.footer-socials { display: flex; gap: 12px; }
.footer-socials a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}
.footer-socials a:hover { background: var(--green-primary); color: var(--white); }

.footer-nav h4, .footer-contact h4, .footer-newsletter h4 {
  font-family: var(--font-ui);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-nav ul li { margin-bottom: 10px; }
.footer-nav ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.footer-nav ul li a:hover { color: var(--green-light); }

.fc-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 0.85rem;
  line-height: 1.6;
}
.fc-item svg { flex-shrink: 0; color: var(--green-light); margin-top: 2px; }
.fc-item a { color: rgba(255,255,255,0.6); transition: color 0.2s; }
.fc-item a:hover { color: var(--green-light); }

.footer-newsletter p { font-size: 0.85rem; margin-bottom: 16px; }
.nl-form {
  display: flex;
  gap: 0;
  background: rgba(255,255,255,0.08);
  border-radius: 100px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
}
.nl-form input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  padding: 12px 18px;
  color: var(--white);
  font-size: 0.85rem;
  font-family: var(--font-body);
}
.nl-form input::placeholder { color: rgba(255,255,255,0.4); }
.nl-form button {
  background: var(--green-primary);
  border: none;
  padding: 12px 18px;
  color: var(--white);
  cursor: pointer;
  transition: background 0.2s;
}
.nl-form button:hover { background: var(--green-light); }

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

/* ============================================
   WHATSAPP FLOAT
============================================ */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  background: #25D366;
  color: var(--white);
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  z-index: 999;
  transition: var(--transition);
  animation: waPulse 2.5s ease-in-out infinite;
}
.wa-float:hover { background: #1da851; transform: scale(1.1); }
@keyframes waPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 30px rgba(37,211,102,0.65); }
}

/* ============================================
   INNER PAGES — HERO BANNER
============================================ */
.page-hero {
  margin-top: 106px;
  background-size: cover;
  background-position: center;
  min-height: 320px;
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(20,40,10,0.88) 0%, rgba(45,90,26,0.6) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 1;
  padding: 56px 0 48px;
  color: var(--white);
}
.page-hero-content .section-tag { margin-bottom: 12px; }
.page-hero-content h1 { font-size: clamp(1.8rem, 4vw, 3.2rem); color: var(--white); }
.page-hero-content h1 em { color: #b8e890; }
.breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-top: 12px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
}
.breadcrumb a { color: rgba(255,255,255,0.6); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { color: rgba(255,255,255,0.4); }

/* ============================================
   QUEM SOMOS PAGE
============================================ */
.qs-intro { background: var(--white); }
.qs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 80px;
}
.qs-text h2 { color: var(--text-dark); margin-bottom: 20px; }
.qs-text p { color: var(--text-light); line-height: 1.8; margin-bottom: 16px; }
.qs-img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.qs-subtitle { font-family: var(--font-display); font-size: 1.8rem; font-weight: 700; color: var(--text-dark); margin-bottom: 24px; }
.qs-subtitle em { color: var(--green-primary); }
.qs-body p { color: var(--text-light); line-height: 1.9; margin-bottom: 16px; }

/* MISSÃO SECTION dentro do Quem Somos */
.missao-section {
  background: var(--off-white);
  padding: 80px 0;
  scroll-margin-top: 120px;
}
.missao-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.missao-text h2 { color: var(--text-dark); margin-bottom: 20px; }
.missao-text p { color: var(--text-light); line-height: 1.8; }
.missao-img img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

/* ============================================
   PRODUTOS PAGE
============================================ */
.products-page { background: var(--white); }
.products-filter {
  display: flex;
  gap: 12px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.filter-btn {
  padding: 8px 22px;
  border-radius: 100px;
  border: 1.5px solid var(--gray-200);
  background: none;
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-mid);
  cursor: pointer;
  transition: var(--transition);
}
.filter-btn.active, .filter-btn:hover {
  background: var(--green-primary);
  color: var(--white);
  border-color: var(--green-primary);
}
.products-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* ============================================
   TALENTOS PAGE
============================================ */
.talentos-section { background: var(--off-white); }
.talentos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.talentos-text { padding-top: 8px; }
.talentos-text h2 { color: var(--text-dark); margin-bottom: 20px; }
.talentos-text p { color: var(--text-light); line-height: 1.8; margin-bottom: 16px; }

.benefits-list { margin-top: 28px; display: flex; flex-direction: column; gap: 14px; }
.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text-mid);
}
.benefit-item svg { flex-shrink: 0; color: var(--green-primary); margin-top: 2px; }

.talent-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
}
.form-title { font-size: 1.2rem; margin-bottom: 28px; color: var(--text-dark); }

.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-mid);
  margin-bottom: 6px;
  font-family: var(--font-ui);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  transition: border-color 0.2s;
  outline: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--green-primary); }
.form-group textarea { resize: vertical; min-height: 120px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-check-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.82rem;
  color: var(--text-light);
  cursor: pointer;
}
.form-check-label input { width: auto; margin-top: 2px; }
.form-check-label a { color: var(--green-primary); }

.file-upload-area {
  border: 2px dashed var(--gray-200);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.2s;
  margin-bottom: 20px;
}
.file-upload-area:hover { border-color: var(--green-primary); }
.file-upload-area p { font-size: 0.85rem; color: var(--text-light); }
.file-upload-area span { color: var(--green-primary); font-weight: 600; }
.file-upload-area input { display: none; }

.btn-submit {
  width: 100%;
  padding: 14px;
  background: var(--green-primary);
  color: var(--white);
  border: none;
  border-radius: 100px;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  margin-top: 8px;
}
.btn-submit:hover { background: var(--green-dark); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(74,140,42,0.3); }

/* ============================================
   CONTATO PAGE
============================================ */
.contato-section { background: var(--white); }
.contato-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contato-info h2 { color: var(--text-dark); margin-bottom: 16px; }
.contato-info > p { color: var(--text-light); line-height: 1.8; margin-bottom: 36px; }

.ci-cards { display: flex; flex-direction: column; gap: 16px; margin-bottom: 36px; }
.ci-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: var(--off-white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
}
.ci-icon {
  width: 48px; height: 48px;
  background: var(--green-pale);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-primary);
  flex-shrink: 0;
}
.ci-text span { display: block; font-size: 0.75rem; color: var(--text-light); margin-bottom: 2px; font-weight: 600; font-family: var(--font-ui); text-transform: uppercase; letter-spacing: 0.08em; }
.ci-text a, .ci-text p { font-size: 0.9rem; color: var(--text-dark); margin: 0; }
.ci-text a:hover { color: var(--green-primary); }

.wa-cta-box {
  background: linear-gradient(135deg, var(--green-primary), var(--green-dark));
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--white);
}
.wa-cta-box svg { flex-shrink: 0; }
.wa-cta-box h4 { font-size: 0.95rem; margin-bottom: 4px; }
.wa-cta-box p { font-size: 0.82rem; opacity: 0.8; margin: 0; }
.wa-cta-link {
  margin-left: auto;
  flex-shrink: 0;
  background: var(--white);
  color: var(--green-primary);
  padding: 10px 20px;
  border-radius: 100px;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 0.82rem;
  white-space: nowrap;
  transition: var(--transition);
}
.wa-cta-link:hover { background: var(--green-pale); }

/* ============================================
   REVEAL ANIMATIONS
============================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1 !important;
  transform: translateY(0) !important;
}
/* Fallback: if JS never fires, show content after CSS animation */
@keyframes revealFallback {
  to { opacity: 1; transform: translateY(0); }
}
.reveal {
  animation: revealFallback 0.01s 3s forwards;
}
.delay-1 { transition-delay: 0.15s !important; }
.delay-2 { transition-delay: 0.3s !important; }
.delay-3 { transition-delay: 0.45s !important; }

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 1024px) {
  .about-grid, .qs-grid, .missao-grid, .talentos-grid, .contact-grid, .contato-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-img-wrap { order: -1; }
  .about-badge { bottom: 16px; right: 16px; }
  .products-grid, .products-full-grid, .values-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .ql-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .hero { margin-top: 106px; }
}

@media (max-width: 768px) {
  .header-top { display: none; }
  .hero { margin-top: 70px; height: calc(100vh - 70px); min-height: 520px; }
  .nav-container { height: 70px; }

  .menu-toggle { display: flex; }
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    box-shadow: var(--shadow-lg);
    gap: 4px;
  }
  .nav-menu.open { display: flex; }
  .nav-link { padding: 12px 16px; border-radius: 8px; }
  .dropdown-menu { position: static; box-shadow: none; border: none; padding: 0 0 0 16px; display: none; }
  .dropdown.open .dropdown-menu { display: block; }

  .slide-content { padding: 0 24px; bottom: 18%; }
  .slide-controls { left: 24px; bottom: 20px; }
  .hero-scroll { display: none; }

  .stats-container { flex-wrap: wrap; gap: 0; }
  .stat-item { padding: 16px 24px; width: 50%; }
  .stat-divider { display: none; }

  .section-padding { padding: 56px 0; }
  .products-grid, .products-full-grid, .values-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .ql-card { flex-direction: column; }
  .ql-img { width: 100%; height: 200px; }
  .mission-content { padding: 40px 24px; }
  .wa-cta-box { flex-direction: column; text-align: center; }
  .wa-cta-link { margin: 0; }
  .form-row { grid-template-columns: 1fr; }
  .talent-form { padding: 24px 20px; }
}

@media (max-width: 480px) {
  .slide-content h1 { font-size: 1.8rem; }
  .slide-btns { flex-direction: column; }
  .slide-btns .btn-primary, .slide-btns .btn-outline { text-align: center; justify-content: center; }
  h2 { font-size: 1.5rem; }
}

/* ── PLAYFAIR DISPLAY REFINEMENTS ── */
h1 em, h2 em { font-style: italic; font-weight: 700; }
.slide-content h1 { letter-spacing: -0.02em; }
.about-text h2, .qs-text h2, .missao-text h2,
.talentos-text h2, .contato-info h2 { line-height: 1.25; }

/* ── MISSION TWO-COLUMN ── */
.mission-two-col {
  background: var(--green-bg);
  padding: 80px 0;
}
.mission-two-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.mission-two-text .section-tag { margin-bottom: 20px; }
.mission-two-text h2 { color: var(--white); margin-bottom: 16px; }
.mission-two-text h2 em { color: #b8e890; font-style: italic; }
.mission-two-text p { color: rgba(255,255,255,0.8); line-height: 1.8; margin-bottom: 32px; }
.mission-two-img {
  display: flex;
  align-items: center;
  justify-content: center;
}
.mission-two-img img {
  width: 100%;
  max-width: 480px;
  height: auto;
  border-radius: var(--radius-lg);
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.3));
}

@media (max-width: 1024px) {
  .mission-two-grid { grid-template-columns: 1fr; gap: 40px; }
  .mission-two-img { display: none; }
}

/* Slide 3 visual treatment */
.slide.slide-3 {
  filter: saturate(1.2) brightness(0.75);
}
.slide.slide-3 .slide-overlay {
  background: linear-gradient(135deg, rgba(10,30,5,0.92) 0%, rgba(20,60,10,0.5) 100%) !important;
}
/* Slide 2 treatment */
.slide.slide-2 {
  filter: hue-rotate(5deg) saturate(1.1);
}
