﻿/* ============================================================
   AGROMAIA — CSS Principal
   Agricultura Biológica & Biotecnologia Agrícola
   ============================================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,400&family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&family=Outfit:wght@700;800&display=swap');

/* --- Design Tokens --- */
:root {
  --green-primary: #4CBF2F;
  --green-dark: #0E5E2A;
  --green-deep: #083D1A;
  --green-mid: #1A8A42;
  --green-light: #A3D977;
  --green-pale: #D4EDDA;
  --bg-light: #F7F9F5;
  --bg-white: #FFFFFF;
  --text-dark: #1E1E1E;
  --text-mid: #3D4A3E;
  --text-muted: #6B7A6C;
  --border: #DCE8D8;
  --shadow-sm: 0 2px 8px rgba(14,94,42,0.08);
  --shadow-md: 0 8px 32px rgba(14,94,42,0.12);
  --shadow-lg: 0 24px 64px rgba(14,94,42,0.16);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --font-heading: 'Raleway', sans-serif;
  --font-body: 'Open Sans', sans-serif;
  --font-num: 'Outfit', sans-serif;
  --transition: 200ms ease;
  --transition-slow: 400ms ease;
  --nav-height: 80px;
  --topbar-height: 40px;
  --header-offset: calc(var(--nav-height) + var(--topbar-height));
  --z-nav: 1000;
  --z-modal: 2000;
  --z-overlay: 1500;
}

/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--bg-light);
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: var(--font-body);
}

ul, ol {
  list-style: none;
}

/* --- Reduced Motion --- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ============================================================
   NAVEGAÇÃO
   ============================================================ */

/* ============================================================
   TOPBAR
   ============================================================ */

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--topbar-height);
  background-color: var(--green-deep);
  z-index: calc(var(--z-nav) + 1);
  display: flex;
  align-items: center;
  padding: 0 2rem;
}

.topbar-inner {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.topbar-contact {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.topbar-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  transition: color var(--transition);
  cursor: pointer;
}

.topbar-link:hover {
  color: var(--green-light);
}

.topbar-link svg {
  width: 13px;
  height: 13px;
  stroke: currentColor;
  flex-shrink: 0;
}

.topbar-right {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.55);
  white-space: nowrap;
}

@media (max-width: 600px) {
  .topbar-right { display: none; }
  .topbar-contact { gap: 0.75rem; }
  .topbar-link { font-size: 0.72rem; }
}

@media (max-width: 480px) {
  :root {
    --topbar-height: 0px;
  }
  .topbar { display: none; }
}

/* ── NAV CART ICON ─────────────────────────────────────────── */
.nav-cart-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  color: var(--text-dark);
  transition: color var(--transition), background-color var(--transition);
  cursor: pointer;
  position: relative;
  margin-left: 0.25rem;
}

.nav-cart-icon svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
}

.nav-cart-icon:hover {
  color: var(--green-primary);
  background-color: rgba(76,191,47,0.08);
}

/* ============================================================
   NAVEGAÇÃO
   ============================================================ */

.navbar {
  position: fixed;
  top: var(--topbar-height);
  left: 0;
  right: 0;
  height: var(--nav-height);
  z-index: var(--z-nav);
  display: flex;
  align-items: center;
  padding: 0 2rem;
  background-color: #ffffff;
  box-shadow: 0 2px 12px rgba(14,94,42,0.10);
  transition: box-shadow var(--transition-slow);
}

.navbar.scrolled {
  box-shadow: 0 4px 20px rgba(14,94,42,0.15);
}

/* dark-bg mantido no markup mas agora igual ao claro */
.navbar.dark-bg {
  background-color: #ffffff;
}

.navbar.dark-bg.scrolled {
  background-color: #ffffff;
}

.nav-inner {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
  cursor: pointer;
}

.nav-logo img {
  height: 48px;
  width: auto;
}

.nav-logo-svg {
  height: 48px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-link {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 0.5rem 0.875rem;
  border-radius: var(--radius-sm);
  color: var(--text-dark);
  transition: color var(--transition), background-color var(--transition);
  cursor: pointer;
}

.navbar.dark-bg .nav-link {
  color: var(--text-dark);
}

.nav-link:hover {
  color: var(--green-primary);
  background-color: rgba(76,191,47,0.08);
}

.navbar.dark-bg .nav-link:hover {
  color: var(--green-primary);
  background-color: rgba(76,191,47,0.08);
}

.nav-link.active {
  color: var(--green-dark);
  font-weight: 600;
}

.navbar.dark-bg .nav-link.active {
  color: var(--green-dark);
}

.nav-cta {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.625rem 1.25rem;
  border-radius: var(--radius-sm);
  background-color: var(--green-primary);
  color: #fff;
  transition: background-color var(--transition), transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
  cursor: pointer;
  display: inline-block;
}

.nav-cta:hover {
  background-color: var(--green-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(76,191,47,0.35);
}

/* ── NAV DROPDOWN ──────────────────────────────────────────── */
.nav-item-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 0.5rem 0.875rem;
  border-radius: var(--radius-sm);
  color: var(--text-dark);
  background: none;
  border: none;
  cursor: pointer;
  transition: color var(--transition), background-color var(--transition);
}

.nav-dropdown-toggle svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  transition: transform 0.22s ease;
  flex-shrink: 0;
}

.nav-item-dropdown.open .nav-dropdown-toggle svg {
  transform: rotate(180deg);
}

.navbar.dark-bg .nav-dropdown-toggle {
  color: var(--text-dark);
}

.nav-dropdown-toggle:hover,
.nav-item-dropdown.open .nav-dropdown-toggle {
  color: var(--green-primary);
  background-color: rgba(76,191,47,0.08);
}

.navbar.dark-bg .nav-dropdown-toggle:hover {
  color: var(--green-dark);
  background-color: rgba(76,191,47,0.10);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 230px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: 0 16px 48px rgba(14,94,42,0.14);
  padding: 0.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
  z-index: calc(var(--z-nav) + 1);
}

.nav-item-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-link {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.6rem 0.875rem;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-dark);
  transition: background-color var(--transition), color var(--transition);
  cursor: pointer;
}

.nav-dropdown-link:hover {
  background-color: rgba(76,191,47,0.08);
  color: var(--green-dark);
}

.nav-dropdown-link .dd-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green-primary);
  flex-shrink: 0;
}

.nav-dropdown-divider {
  height: 1px;
  background: var(--border);
  margin: 0.35rem 0.5rem;
}

/* ── LOGO NOVO: isotipo + texto ──────────────────────────── */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
  cursor: pointer;
  text-decoration: none;
}

.nav-logo-isotipo {
  height: 58px;
  width: 58px;
  display: block;
  flex-shrink: 0;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.nav-logo-texts {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.nav-logo-name {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.6rem;
  letter-spacing: -0.02em;
  color: var(--green-dark);
  line-height: 1;
}

.nav-logo-sub {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.01em;
  white-space: nowrap;
  line-height: 1.3;
  margin-top: 2px;
}

/* ── FOOTER LOGO ─────────────────────────────────────────── */
.footer-brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-isotipo {
  height: 52px;
  width: 52px;
  object-fit: contain;
  flex-shrink: 0;
  mix-blend-mode: screen;
}

/* Logo PNG no navbar: fundo branco some sobre navbar branca */
.nav-logo-isotipo {
  mix-blend-mode: multiply;
}

.footer-brand-texts {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.footer-brand-name {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  color: #fff;
  line-height: 1;
}

.footer-brand-razao {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.5);
  margin-top: 3px;
  line-height: 1.4;
}

/* Responsive logo */
@media (max-width: 1180px) {
  .nav-logo-sub { display: none; }
}

@media (max-width: 480px) {
  .nav-logo-isotipo { height: 36px; width: 36px; }
  .nav-logo-name { font-size: 1.05rem; }
}

/* Mobile dropdown */
.nav-mobile-dropdown {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-left: 0.75rem;
  border-left: 2px solid var(--green-pale);
  margin-left: 0.5rem;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease, opacity 0.3s ease;
  opacity: 0;
}

.nav-mobile-dropdown.open {
  max-height: 400px;
  opacity: 1;
}

.nav-mobile-dropdown-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1rem;
  font-weight: 500;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  color: var(--text-dark);
  border-bottom: 1px solid var(--border);
  transition: color var(--transition);
  cursor: pointer;
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
  width: 100%;
  text-align: left;
  font-family: var(--font-body);
}

.nav-mobile-dropdown-toggle svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  transition: transform 0.22s ease;
}

.nav-mobile-dropdown-toggle.open svg {
  transform: rotate(180deg);
}

.nav-mobile-dropdown a {
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.5rem 0.75rem;
  color: var(--text-muted);
  border-radius: var(--radius-sm);
  display: block;
  transition: color var(--transition);
  cursor: pointer;
}

.nav-mobile-dropdown a:hover {
  color: var(--green-dark);
}

/* ─────────────────────────────────────────────────────────── */
.nav-mobile-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  color: var(--text-dark);
  transition: background-color var(--transition);
  cursor: pointer;
}

.navbar.dark-bg .nav-mobile-toggle {
  color: var(--text-dark);
}

.nav-mobile-toggle:hover {
  background-color: rgba(76,191,47,0.1);
}

.nav-mobile-toggle svg {
  width: 24px;
  height: 24px;
}

.nav-mobile-menu {
  position: fixed;
  top: var(--header-offset);
  left: 0;
  right: 0;
  background-color: rgba(255,255,255,0.98);
  backdrop-filter: blur(20px);
  padding: 1rem 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  box-shadow: var(--shadow-md);
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
  transition: transform var(--transition-slow), opacity var(--transition-slow);
  z-index: calc(var(--z-nav) - 1);
}

.nav-mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}

.nav-mobile-link {
  font-size: 1rem;
  font-weight: 500;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  color: var(--text-dark);
  border-bottom: 1px solid var(--border);
  transition: color var(--transition), background-color var(--transition);
  cursor: pointer;
  display: block;
}

.nav-mobile-link:last-child {
  border-bottom: none;
}

.nav-mobile-link:hover {
  color: var(--green-dark);
  background-color: var(--green-pale);
}

.nav-mobile-cta {
  margin-top: 0.75rem;
  display: inline-block;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.875rem 1.5rem;
  background-color: var(--green-primary);
  color: #fff;
  border-radius: var(--radius-sm);
  text-align: center;
  transition: background-color var(--transition);
  cursor: pointer;
}

.nav-mobile-cta:hover {
  background-color: var(--green-dark);
}

/* ============================================================
   HERO
   ============================================================ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* ---- Hero Estático ---- */
.hero-static {
  min-height: 100vh;
}

.hero-bg-static {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}


/* Legacy .hero-bg — mantido por compatibilidade */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(8,61,26,0.55) 0%,
    rgba(14,94,42,0.40) 50%,
    rgba(8,61,26,0.30) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: calc(var(--header-offset) + 4rem) 2rem 5rem;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: rgba(76,191,47,0.18);
  border: 1px solid rgba(76,191,47,0.35);
  color: var(--green-light);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.375rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}

.hero-badge span {
  width: 6px;
  height: 6px;
  background-color: var(--green-primary);
  border-radius: 50%;
  display: inline-block;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: #fff;
  max-width: 820px;
  margin-bottom: 1.5rem;
}

.hero-title em {
  font-style: normal;
  color: var(--green-light);
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255,255,255,0.78);
  max-width: 600px;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(255,255,255,0.15);
}

.hero-stat-value {
  font-family: var(--font-num);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--green-light);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.825rem;
  color: rgba(255,255,255,0.6);
  margin-top: 0.375rem;
  letter-spacing: 0.03em;
}

/* ============================================================
   BOTÕES
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  cursor: pointer;
  line-height: 1;
  letter-spacing: 0.01em;
  min-height: 44px;
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--green-primary);
  color: #fff;
  border-color: var(--green-primary);
}

.btn-primary:hover {
  background-color: var(--green-dark);
  border-color: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(76,191,47,0.35);
}

.btn-secondary {
  background-color: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.5);
}

.btn-secondary:hover {
  background-color: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.8);
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  color: var(--green-dark);
  border-color: var(--green-dark);
}

.btn-outline:hover {
  background-color: var(--green-dark);
  color: #fff;
  transform: translateY(-2px);
}

/* Para usar sobre fundos escuros/verdes */
.btn-outline-light {
  background-color: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.6);
}

.btn-outline-light:hover {
  background-color: rgba(255,255,255,0.12);
  border-color: #fff;
  color: #fff;
  transform: translateY(-2px);
}

.btn-ghost {
  background-color: transparent;
  color: var(--green-dark);
  border-color: transparent;
}

.btn-ghost:hover {
  background-color: var(--green-pale);
  color: var(--green-dark);
}

.btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1rem;
  min-height: 52px;
}

/* ============================================================
   SEÇÕES GERAIS
   ============================================================ */

.section {
  padding: 6rem 2rem;
}

.section-sm {
  padding: 4rem 2rem;
}

.section-dark {
  background-color: var(--green-deep);
  color: #fff;
}

.section-green {
  background-color: var(--green-dark);
  color: #fff;
}

.section-light {
  background-color: var(--bg-light);
}

.section-white {
  background-color: var(--bg-white);
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green-primary);
  margin-bottom: 1rem;
}

.section-dark .section-label,
.section-green .section-label {
  color: var(--green-light);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.section-dark .section-title,
.section-green .section-title {
  color: #fff;
}

.section-desc {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-muted);
  max-width: 600px;
  margin-bottom: 3rem;
}

.section-dark .section-desc,
.section-green .section-desc {
  color: rgba(255,255,255,0.7);
}

.section-header {
  margin-bottom: 3.5rem;
}

.section-header-center {
  text-align: center;
}

.section-header-center .section-desc {
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
   CARDS
   ============================================================ */

.card {
  background-color: var(--bg-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: default;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.card-img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  display: block;
}

.card-body {
  padding: 1.5rem;
}

.card-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--green-pale);
  color: var(--green-dark);
  margin-bottom: 1rem;
  flex-shrink: 0;
}

.card-icon svg {
  width: 24px;
  height: 24px;
}

.card-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.card-text {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--text-muted);
}

.card-dark {
  background-color: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.1);
}

.card-dark .card-title {
  color: #fff;
}

.card-dark .card-text {
  color: rgba(255,255,255,0.65);
}

.card-dark .card-icon {
  background-color: rgba(76,191,47,0.15);
  color: var(--green-light);
}

/* ============================================================
   GRID
   ============================================================ */

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

/* ============================================================
   FEATURES (Inicio)
   ============================================================ */

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.feature-card {
  background-color: var(--bg-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  padding: 2rem;
  transition: transform var(--transition), box-shadow var(--transition);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.feature-card.dark {
  background-color: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.1);
}

.feature-card.dark:hover {
  background-color: rgba(255,255,255,0.07);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

/* ============================================================
   SPLIT SECTION
   ============================================================ */

.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.split-section.reverse {
  direction: rtl;
}

.split-section.reverse > * {
  direction: ltr;
}

.split-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}

.split-img img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-slow);
}

.split-img:hover img {
  transform: scale(1.03);
}

.vplit-img-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background-color: rgba(8,61,26,0.92);
  backdrop-filter: blur(8px);
  color: #fff;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nsplit-img-badge-icon {
  width: 36px;
  height: 36px;
  background-color: var(--green-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.split-img-badge-icon svg {
  width: 18px;
  height: 18px;
  color: #fff;
}

.split-img-badge-text {
  font-size: 0.825rem;
  font-weight: 600;
  line-height: 1.3;
}

.split-img-badge-sub {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.65);
}

.split-text ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.split-text ul li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.split-text ul li::before {
  content: '';
  width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%234CBF2F'%3E%3Cpath fill-rule='evenodd' d='M10 18a8 8 0 100-16 8 8 0 000 16zm3.707-9.293a1 1 0 00-1.414-1.414L9 10.586 7.707 9.293a1 1 0 00-1.414 1.414l2 2a1 1 0 001.414 0l4-4z' clip-rule='evenodd'/%3E%3C/svg%3E");
  background-size: cover;
  flex-shrink: 0;
  margin-top: 2px;
}

.split-text.dark ul li {
  color: rgba(255,255,255,0.7);
}

/* ============================================================
   NUMBERS / STATS
   ============================================================ */

.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1px;
  background-color: var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
}

.stat-item {
  background-color: var(--bg-white);
  padding: 2.5rem 2rem;
  text-align: center;
}


.section-dark .stats-row,
.section-green .stats-row {
  background-color: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.1);
}

.section-dark .stat-item,
.section-green .stat-item {
  background-color: rgba(255,255,255,0.04);
}

.stat-number {
  font-family: var(--font-num);
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--green-dark);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.section-dark .stat-number,
.section-green .stat-number {
  color: #ffffff;
  font-style: normal;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-weight: 500;
}

.section-dark .stat-label,
.section-green .stat-label {
  color: rgba(255,255,255,0.6);
}

/* ============================================================
   TIMELINE
   ============================================================ */

.timeline {
  position: relative;
  padding-left: 2rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(to bottom, var(--green-primary), var(--green-dark));
  border-radius: 2px;
}

.timeline-item {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 2.5rem;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -2.5rem;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--green-primary);
  border: 3px solid var(--bg-white);
  box-shadow: 0 0 0 2px var(--green-primary);
}

.timeline-year {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--green-primary);
  text-transform: uppercase;
  margin-bottom: 0.375rem;
}

.timeline-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.375rem;
}

.timeline-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ============================================================
   TABELAS DE PRODUTOS
   ============================================================ */

.table-wrapper {
  overflow-x: auto;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}

.table-bio {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}

.table-bio thead {
  background-color: var(--green-dark);
  color: #fff;
}

.table-bio th {
  padding: 1rem 1.25rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
}

.table-bio td {
  padding: 0.875rem 1.25rem;
  border-bottom: 1px solid var(--border);
  color: var(--text-mid);
  line-height: 1.5;
  vertical-align: top;
}

.table-bio tbody tr:last-child td {
  border-bottom: none;
}

.table-bio tbody tr:nth-child(even) {
  background-color: var(--bg-light);
}

.table-bio tbody tr:hover {
  background-color: var(--green-pale);
}

.table-tag {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  background-color: var(--green-pale);
  color: var(--green-dark);
}

/* ============================================================
   PRODUTOS
   ============================================================ */

.shop-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 2.5rem;
  align-items: start;
}

.shop-sidebar {
  position: sticky;
  top: calc(var(--header-offset) + 1.5rem);
}

.ushop-sidebar-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  margin-bottom: 1rem;
}

.ushop-sidebar-title {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dark);
  margin-bottom: 1rem;
  padding-bottom: 0.625rem;
  border-bottom: 1px solid var(--border);
}

.filter-option {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.5rem 0;
  cursor: pointer;
  min-height: 44px;
  transition: color var(--transition);
}

.filter-option:hover {
  color: var(--green-dark);
}

.filter-option input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--green-primary);
  cursor: pointer;
  flex-shrink: 0;
}

.filter-option label {
  font-size: 0.9rem;
  color: var(--text-mid);
  cursor: pointer;
  line-height: 1.4;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}

/* ── PRODUTOS CATEGORY PILLS ────────────────────────────── */
.cat-pill {
  padding: 0.4rem 1rem;
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 600;
  border: 1px solid var(--border);
  background: var(--bg-white);
  color: var(--text-muted);
  cursor: pointer;
  transition: background 0.18s, color 0.18s, border-color 0.18s;
  white-space: nowrap;
}
.cat-pill:hover { border-color: var(--green-primary); color: var(--green-dark); }
.cat-pill.active { background: var(--green-dark); border-color: var(--green-dark); color: #fff; }
.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; }

/* ── PRODUCTS GRID ───────────────────────────────────── */
.product-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.product-img-wrap {
  position: relative;
  background-color: var(--bg-light);
  aspect-ratio: 4/3;
  overflow: hidden;
}

.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.product-card:hover .product-img-wrap img {
  transform: scale(1.05);
}

.product-category-tag {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.625rem;
  border-radius: 100px;
  background-color: var(--green-dark);
  color: #fff;
}

.product-body {
  padding: 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-name {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.375rem;
  line-height: 1.3;
}

.product-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 1rem;
}

.product-actions {
  display: flex;
  gap: 0.625rem;
}

.product-actions .btn {
  flex: 1;
  justify-content: center;
  font-size: 0.8rem;
  padding: 0.625rem 0.75rem;
}

/* ============================================================
   FORMULÁRIO DE CONTATO
   ============================================================ */

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}

.contact-info-block {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background-color: var(--green-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-dark);
  flex-shrink: 0;
}

.contact-icon-wrap svg {
  width: 22px;
  height: 22px;
}

.contact-info-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-primary);
  margin-bottom: 0.25rem;
}

.contact-info-value {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.6;
}

.contact-info-value a {
  color: var(--green-dark);
  font-weight: 500;
  transition: color var(--transition);
  cursor: pointer;
}

.contact-info-value a:hover {
  color: var(--green-primary);
}

.contact-form-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  margin-bottom: 1rem;
}

.form-group:last-child {
  margin-bottom: 0;
}

.form-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
}

.form-label .required {
  color: #E53E3E;
  margin-left: 2px;
}

.form-input,
.form-textarea,
.form-select {
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background-color: var(--bg-light);
  color: var(--text-dark);
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
  min-height: 44px;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--green-primary);
  box-shadow: 0 0 0 3px rgba(76,191,47,0.18);
  background-color: var(--bg-white);
}

.form-input.error,
.form-textarea.error {
  border-color: #E53E3E;
  box-shadow: 0 0 0 3px rgba(229,62,62,0.12);
}

.form-error-msg {
  font-size: 0.8rem;
  color: #E53E3E;
  display: none;
  margin-top: 0.25rem;
}

.form-error-msg.visible {
  display: block;
}

.form-textarea {
  min-height: 140px;
  resize: vertical;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
  tab-index: -1;
}

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  margin: 1.25rem 0;
}

.form-consent input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--green-primary);
  flex-shrink: 0;
  margin-top: 2px;
  cursor: pointer;
}

.form-consent label {
  font-size: 0.825rem;
  color: var(--text-muted);
  line-height: 1.5;
  cursor: pointer;
}

.form-submit {
  width: 100%;
  justify-content: center;
}

.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
}

.form-success.visible {
  display: block;
}

.form-success-icon {
  width: 64px;
  height: 64px;
  background-color: var(--green-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--green-dark);
}

.form-success-icon svg {
  width: 32px;
  height: 32px;
}

.form-rate-limit-msg {
  font-size: 0.825rem;
  color: #E53E3E;
  text-align: center;
  padding: 0.75rem;
  background-color: #FFF5F5;
  border-radius: var(--radius-sm);
  border: 1px solid #FED7D7;
  display: none;
}

.form-rate-limit-msg.visible {
  display: block;
}

.map-embed {
  width: 100%;
  height: 320px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  margin-top: 2rem;
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* ============================================================
   PAGE HERO (páginas internas)
   ============================================================ */

.page-hero {
  position: relative;
  padding: calc(var(--header-offset) + 6rem) 2rem 5rem;
  background-color: var(--green-deep);
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(76,191,47,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
}

.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
}

.page-hero-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.page-hero-label::before {
  content: '';
  width: 24px;
  height: 2px;
  background-color: var(--green-primary);
  display: inline-block;
}

.page-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.75rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #fff;
  max-width: 700px;
  margin-bottom: 1rem;
}

.page-hero-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  max-width: 580px;
  line-height: 1.7;
}

/* ============================================================
   MICRO-ORGANISMOS CARDS
   ============================================================ */

.bio-tag-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.bio-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 0.875rem;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  font-style: italic;
  background-color: var(--green-pale);
  color: var(--green-deep);
  border: 1px solid rgba(14,94,42,0.15);
  cursor: default;
  transition: background-color var(--transition);
}

.bio-tag:hover {
  background-color: #c8e8b3;
}

.bio-tag.dark {
  background-color: rgba(76,191,47,0.12);
  color: var(--green-light);
  border-color: rgba(76,191,47,0.2);
}

/* ============================================================
   CTA BANNER
   ============================================================ */

.cta-banner {
  position: relative;
  background: linear-gradient(135deg, var(--green-deep) 0%, var(--green-dark) 100%);
  border-radius: var(--radius-xl);
  padding: 4rem 3rem;
  overflow: hidden;
  text-align: center;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(76,191,47,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.cta-banner-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.cta-banner-desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.72);
  max-width: 540px;
  margin: 0 auto 2rem;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.cta-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  position: relative;
  z-index: 1;
}

/* ============================================================
   WHATSAPP BUTTON
   ============================================================ */

.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  z-index: calc(var(--z-nav) - 5);
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
}

.whatsapp-float:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,0.55);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
}

.whatsapp-tooltip {
  position: absolute;
  right: calc(100% + 0.75rem);
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--green-deep);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0.375rem 0.75rem;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
}

/* ============================================================
   FOOTER
   ============================================================ */

.footer {
  background-color: var(--green-deep);
  color: rgba(255,255,255,0.75);
  padding: 5rem 2rem 0;
}

.footer-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.75;
  max-width: 300px;
  margin: 1.25rem 0 1.5rem;
  color: rgba(255,255,255,0.6);
}

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

.footer-social-link {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background-color: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: background-color var(--transition), color var(--transition);
  cursor: pointer;
}

.footer-social-link:hover {
  background-color: var(--green-primary);
  color: #fff;
}

.footer-social-link svg {
  width: 18px;
  height: 18px;
}

.footer-col-title {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.25rem;
  letter-spacing: 0.03em;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.footer-link {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition), padding-left var(--transition);
  cursor: pointer;
  display: inline-block;
}

.footer-link:hover {
  color: var(--green-light);
  padding-left: 6px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  margin-bottom: 0.875rem;
  font-size: 0.875rem;
  line-height: 1.6;
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  color: var(--green-primary);
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-contact-item a {
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
  cursor: pointer;
}

.footer-contact-item a:hover {
  color: var(--green-light);
}

.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  transition: color var(--transition);
  cursor: pointer;
}

.footer-bottom-links a:hover {
  color: rgba(255,255,255,0.7);
}

/* ============================================================
   TAGS / BADGES
   ============================================================ */

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.3rem 0.8rem;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.badge-green {
  background-color: var(--green-pale);
  color: var(--green-dark);
}

.badge-dark {
  background-color: rgba(76,191,47,0.15);
  color: var(--green-light);
}

/* ============================================================
   UTILITIES
   ============================================================ */

.text-center { text-align: center; }
.text-left { text-align: left; }
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }
.gap-4 { gap: 2rem; }
.w-full { width: 100%; }
.relative { position: relative; }
.overflow-hidden { overflow: hidden; }
.opacity-0 { opacity: 0; }

/* Divider */
.divider {
  height: 1px;
  background-color: var(--border);
  margin: 0;
}

.divider-dark {
  background-color: rgba(255,255,255,0.1);
}

/* ============================================================
   ANIMAÇÕES GSAP (estado inicial)
   ============================================================ */

.gsap-fade-up {
  opacity: 0;
  transform: translateY(32px);
}

.gsap-fade-in {
  opacity: 0;
}

.gsap-scale-up {
  opacity: 0;
  transform: scale(0.94);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

  .split-section {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .split-section.reverse {
    direction: ltr;
  }

  .shop-layout {
    grid-template-columns: 1fr;
  }

  .shop-sidebar {
    position: static;
  }
}

@media (max-width: 1180px) {
  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-mobile-toggle {
    display: flex;
  }
}

@media (max-width: 768px) {
  :root {
    --nav-height: 70px;
  }

  .section {
    padding: 4rem 1.25rem;
  }

  .section-sm {
    padding: 3rem 1.25rem;
  }

  .hero-content {
    padding: calc(var(--header-offset) + 3rem) 1.25rem 4rem;
  }

  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }
.contact-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .cta-banner {
    padding: 3rem 1.5rem;
  }

  .hero-stats {
    gap: 1.5rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .split-img img {
    height: 300px;
  }

  .page-hero {
    padding: calc(var(--header-offset) + 2.5rem) 1.25rem 3rem;
  }

  .navbar {
    padding: 0 1.25rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .stats-row {
    grid-template-columns: 1fr 1fr;
  }

  .whatsapp-float {
    bottom: 1.25rem;
    right: 1.25rem;
  }

  /* Footer mobile */
  .footer-brand-logo {
    flex-wrap: wrap;
  }

  .footer-brand-name {
    font-size: 1.2rem;
  }

  /* Seções com padding menor */
  .section {
    padding: 3rem 1rem;
  }

  .section-sm {
    padding: 2rem 1rem;
  }

  /* Cards e grids */
  .card {
    padding: 1.25rem;
  }

  /* Botões de texto nunca cortados */
  .btn {
    white-space: normal;
    text-align: center;
  }

  /* Page hero em mobile */
  .page-hero {
    padding: calc(var(--header-offset) + 2rem) 1rem 2.5rem;
  }

  .page-hero-title {
    font-size: 1.75rem;
  }
}



