/* ============================================================
   IBERFRUT — Design System & Global Styles
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --green-900: #0D3B20;
  --green-800: #1B5E38;
  --green-700: #256B42;
  --green-600: #2E8B57;
  --green-500: #3DAA6E;
  --green-400: #52B788;
  --green-300: #74C69D;
  --green-200: #B7E4C7;
  --green-100: #D8F3DC;
  --green-50:  #F0FAF3;

  --cream:     #FAFAF5;
  --white:     #FFFFFF;
  --dark:      #111827;
  --text:      #1F2937;
  --muted:     #6B7280;
  --border:    #E5E7EB;

  --gold:      #D4A84B;
  --gold-light:#F7E7B4;

  --font-head: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;

  --shadow-xs: 0 1px 2px rgba(0,0,0,.06);
  --shadow-sm: 0 2px 8px rgba(0,0,0,.08);
  --shadow-md: 0 6px 24px rgba(0,0,0,.10);
  --shadow-lg: 0 16px 48px rgba(0,0,0,.14);
  --shadow-xl: 0 32px 80px rgba(0,0,0,.18);

  --nav-h: 168px;
  --container: 1280px;
  --pad-x: clamp(1.25rem, 5vw, 3rem);

  --ease: cubic-bezier(.25,.46,.45,.94);
  --ease-spring: cubic-bezier(.34,1.56,.64,1);
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ── Utilities ──────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--pad-x);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--green-600);
  margin-bottom: 1rem;
}
.section-label::before {
  content: '';
  display: block;
  width: 24px; height: 2px;
  background: var(--green-400);
  border-radius: 1px;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--dark);
}

.section-body {
  font-size: 1.0625rem;
  color: var(--muted);
  line-height: 1.75;
  max-width: 52ch;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .875rem 2rem;
  border-radius: var(--radius-xl);
  font-size: .9375rem;
  font-weight: 600;
  letter-spacing: .01em;
  transition: all .25s var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: var(--green-800);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(27,94,56,.35);
}
.btn-primary:hover {
  background: var(--green-700);
  box-shadow: 0 6px 28px rgba(27,94,56,.5);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.6);
}
.btn-outline:hover {
  background: rgba(255,255,255,.15);
  border-color: var(--white);
  transform: translateY(-2px);
}
.btn-ghost {
  background: var(--green-50);
  color: var(--green-800);
  border: 2px solid var(--green-200);
}
.btn-ghost:hover {
  background: var(--green-100);
  border-color: var(--green-400);
  transform: translateY(-2px);
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ── Scroll Animations ──────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-left {
  opacity: 0;
  transform: translateX(-48px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal-left.visible {
  opacity: 1;
  transform: none;
}
.reveal-right {
  opacity: 0;
  transform: translateX(48px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal-right.visible {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }
.reveal-delay-5 { transition-delay: .5s; }

/* ════════════════════════════════════════════════════════════
   NAVBAR
   ════════════════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: all .3s var(--ease);
}
.navbar.transparent { background: transparent; }
.navbar.scrolled {
  background: var(--green-900);
  box-shadow: 0 2px 16px rgba(0,0,0,.25);
}
.navbar.scrolled .nav-logo img { filter: none; }
.navbar.scrolled .nav-links a { color: rgba(255,255,255,.9); }
.navbar.scrolled .nav-links a:hover,
.navbar.scrolled .nav-links a.active {
  color: var(--white);
  background: rgba(255,255,255,.15);
}
.navbar.transparent .nav-links a { color: rgba(255,255,255,.9); }
.navbar.transparent .nav-links a:hover,
.navbar.transparent .nav-links a.active {
  color: var(--white);
  background: rgba(255,255,255,.15);
}
.navbar.transparent .nav-cta { border-color: rgba(255,255,255,.6); color: var(--white); background: transparent; }
.navbar.transparent .nav-cta:hover { background: rgba(255,255,255,.2); border-color: var(--white); }

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav-logo img {
  height: 160px;
  width: auto;
  object-fit: contain;
  transition: filter .3s;
}
.navbar.scrolled .nav-logo img { filter: none; }

.nav-links {
  display: flex;
  align-items: center;
  gap: .25rem;
}
.nav-links a {
  position: relative;
  padding: .5rem .875rem;
  font-size: .9rem;
  font-weight: 500;
  color: var(--text);
  border-radius: var(--radius-sm);
  transition: color .2s, background .2s;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--green-700);
  background: var(--green-50);
}

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown > a::after {
  content: '';
  display: inline-block;
  width: 6px; height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  margin-left: .35rem;
  vertical-align: middle;
  transition: transform .2s;
}
.nav-dropdown:hover > a::after { transform: rotate(-135deg) translateY(-2px); }
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 230px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  padding: .75rem .5rem .5rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: all .2s var(--ease);
}
/* ponte invisível que cobre o gap entre o link e o menu */
.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -.75rem;
  left: 0;
  right: 0;
  height: .75rem;
}
.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}
.dropdown-menu a {
  display: flex;
  align-items: center;
  gap: .625rem;
  padding: .625rem 1rem;
  border-radius: var(--radius-sm);
  font-size: .875rem;
  color: var(--text) !important;
  background: transparent !important;
}
.dropdown-menu a:hover {
  background: var(--green-50) !important;
  color: var(--green-700) !important;
}
.dropdown-menu a .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green-400);
  flex-shrink: 0;
}

.nav-cta {
  padding: .625rem 1.375rem;
  border-radius: var(--radius-xl);
  font-size: .875rem;
  font-weight: 600;
  color: var(--green-800);
  border: 2px solid var(--green-300);
  background: var(--green-50);
  transition: all .2s var(--ease);
}
.nav-cta:hover {
  background: var(--green-800);
  border-color: var(--green-800);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(27,94,56,.3);
}
.navbar.scrolled .nav-cta { color: var(--white); border-color: rgba(255,255,255,.6); background: transparent; }
.navbar.scrolled .nav-cta:hover { background: rgba(255,255,255,.15); border-color: var(--white); color: var(--white); }

/* Mobile menu toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px; height: 36px;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 100%; height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all .3s;
}
.navbar.transparent .nav-toggle span { background: var(--white); }
.navbar.scrolled .nav-toggle span { background: var(--white); }
/* quando o menu mobile está aberto o fundo é branco — botão X deve ser escuro */
.nav-toggle.open span { background: var(--dark) !important; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav drawer */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--white);
  padding: calc(var(--nav-h) + 2rem) var(--pad-x) 2rem;
  transform: translateX(100%);
  transition: transform .35s var(--ease);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: .25rem;
}
.mobile-nav.open { transform: none; }
.mobile-nav a {
  display: block;
  padding: .875rem 1rem;
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--text);
  border-radius: var(--radius-md);
  transition: background .2s, color .2s;
}
.mobile-nav a:hover { background: var(--green-50); color: var(--green-700); }
.mobile-nav .sub-links { padding-left: 1.5rem; }
.mobile-nav .sub-links a { font-size: .9375rem; color: var(--muted); padding: .5rem 1rem; }
.mobile-nav-cta {
  margin-top: 1.5rem;
  padding: 1rem 1.5rem;
  background: var(--green-800);
  color: var(--white) !important;
  border-radius: var(--radius-xl);
  text-align: center;
  font-weight: 600;
}

/* ════════════════════════════════════════════════════════════
   HERO
   ════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  max-height: 960px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--green-900);
}
.hero-bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.hero-bg.loaded { transform: scale(1); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(11,40,20,.78) 0%,
    rgba(27,94,56,.55) 60%,
    rgba(11,40,20,.20) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.3);
  color: var(--white);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .5rem 1.125rem;
  border-radius: var(--radius-xl);
  margin-bottom: 1.5rem;
  animation: fadeDown .8s var(--ease) both;
}
.hero-badge .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green-300);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(.8); }
}
.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.75rem, 6vw, 5.5rem);
  font-weight: 800;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 1.5rem;
  animation: fadeUp .9s .1s var(--ease) both;
}
.hero-title em {
  font-style: normal;
  color: var(--green-300);
}
.hero-subtitle {
  font-size: clamp(1.0625rem, 2vw, 1.25rem);
  color: rgba(255,255,255,.82);
  line-height: 1.65;
  margin-bottom: 2.5rem;
  max-width: 520px;
  animation: fadeUp .9s .2s var(--ease) both;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  animation: fadeUp .9s .3s var(--ease) both;
}
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  color: rgba(255,255,255,.6);
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  animation: fadeUp 1s .8s var(--ease) both;
}
.hero-scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,.6), transparent);
  animation: scrollPulse 2s infinite;
}
@keyframes scrollPulse {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: none; }
}
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-16px); }
  to   { opacity: 1; transform: none; }
}

/* ════════════════════════════════════════════════════════════
   STATS BAR
   ════════════════════════════════════════════════════════════ */
.stats-bar {
  background: var(--green-800);
  padding: 2.5rem 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  text-align: center;
}
.stat-item { display: flex; flex-direction: column; align-items: center; gap: .375rem; }
.stat-number {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.stat-number span { color: var(--green-300); }
.stat-label {
  font-size: .875rem;
  font-weight: 500;
  color: rgba(255,255,255,.7);
  letter-spacing: .03em;
}

/* ════════════════════════════════════════════════════════════
   SERVICES SECTION
   ════════════════════════════════════════════════════════════ */
.services {
  padding: 6rem 0;
  background: var(--cream);
}
.services-header {
  text-align: center;
  margin-bottom: 4rem;
}
.services-header .section-label { justify-content: center; }
.services-header .section-label::before { display: none; }
.services-header .section-label::after {
  content: '';
  display: block;
  width: 24px; height: 2px;
  background: var(--green-400);
  border-radius: 1px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all .35s var(--ease);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green-500), var(--green-300));
  transform: scaleX(0);
  transition: transform .35s var(--ease);
  transform-origin: left;
}
.service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-6px); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 72px; height: 72px;
  border-radius: var(--radius-lg);
  background: var(--green-50);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: background .3s;
}
.service-icon img {
  width: 40px; height: 40px;
  object-fit: contain;
}
.service-card:hover .service-icon { background: var(--green-100); }
.service-title {
  font-family: var(--font-head);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: .75rem;
}
.service-text { font-size: .9375rem; color: var(--muted); line-height: 1.7; }
.service-link {
  display: inline-flex;
  align-items: center;
  gap: .375rem;
  margin-top: 1.25rem;
  font-size: .875rem;
  font-weight: 600;
  color: var(--green-700);
  transition: gap .2s;
}
.service-link:hover { gap: .625rem; }
.service-link svg { width: 16px; height: 16px; }

/* ════════════════════════════════════════════════════════════
   WHY IBERFRUT
   ════════════════════════════════════════════════════════════ */
.why {
  padding: 7rem 0;
  background: var(--white);
  overflow: hidden;
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.why-image-wrap {
  position: relative;
}
.why-image-wrap img {
  width: 100%;
  border-radius: var(--radius-xl);
  object-fit: cover;
  height: 500px;
  box-shadow: var(--shadow-xl);
}
.why-image-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--green-800);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.75rem;
  box-shadow: var(--shadow-lg);
  text-align: center;
}
.why-image-badge .big-number {
  font-family: var(--font-head);
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1;
  color: var(--green-300);
}
.why-image-badge .label { font-size: .8rem; font-weight: 500; opacity: .85; margin-top: .25rem; }
.why-list { margin: 2rem 0; display: flex; flex-direction: column; gap: 1rem; }
.why-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.125rem 1.25rem;
  border-radius: var(--radius-md);
  background: var(--cream);
  border: 1px solid transparent;
  transition: all .25s var(--ease);
}
.why-item:hover { background: var(--green-50); border-color: var(--green-200); }
.why-item-icon {
  flex-shrink: 0;
  width: 36px; height: 36px;
  border-radius: var(--radius-sm);
  background: var(--green-100);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: .1rem;
}
.why-item-icon svg { width: 18px; height: 18px; color: var(--green-700); }
.why-item-text { font-size: .9375rem; color: var(--text); line-height: 1.6; }
.why-item-text strong { color: var(--dark); font-weight: 600; }

/* ════════════════════════════════════════════════════════════
   PRODUCTS PREVIEW
   ════════════════════════════════════════════════════════════ */
.products-preview {
  padding: 6rem 0;
  background: var(--green-900);
}
.products-preview .section-title { color: var(--white); }
.products-preview .section-body { color: rgba(255,255,255,.7); }
.products-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3.5rem;
  gap: 2rem;
  flex-wrap: wrap;
}
.products-header .section-label { color: var(--green-300); }
.products-header .section-label::before { background: var(--green-500); }
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.product-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--green-800);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
  cursor: pointer;
}
.product-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); }
.product-card-bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: transform .5s var(--ease);
}
.product-card:hover .product-card-bg { transform: scale(1.08); }
.product-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11,40,20,.92) 0%, rgba(11,40,20,.2) 60%, transparent 100%);
}
.product-card-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.75rem 1.5rem;
  transition: transform .3s var(--ease);
}
.product-card-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.product-card-icon img { width: 28px; height: 28px; object-fit: contain; }
.product-card-title {
  font-family: var(--font-head);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: .375rem;
}
.product-card-count {
  font-size: .8125rem;
  color: var(--green-300);
  font-weight: 500;
}
.product-card-arrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-top: .875rem;
  font-size: .875rem;
  font-weight: 600;
  color: rgba(255,255,255,.0);
  transition: color .3s, gap .3s;
}
.product-card:hover .product-card-arrow {
  color: var(--green-300);
  gap: .75rem;
}
.product-card-arrow svg { width: 16px; height: 16px; }

/* Placeholder bg for product cards */
.product-card-plain { background: var(--green-700); }
.product-card-plain .product-card-overlay {
  background: linear-gradient(135deg, rgba(11,40,20,.85) 0%, rgba(27,94,56,.4) 100%);
}

/* ════════════════════════════════════════════════════════════
   ABOUT TEASER
   ════════════════════════════════════════════════════════════ */
.about-teaser {
  padding: 7rem 0;
  background: var(--cream);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-image-stack {
  position: relative;
}
.about-image-main {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}
.about-image-accent {
  position: absolute;
  bottom: -2rem;
  left: -2rem;
  width: 60%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--white);
}
.about-chips {
  display: flex;
  flex-wrap: wrap;
  gap: .625rem;
  margin-top: 2rem;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: .375rem;
  padding: .4375rem 1rem;
  border-radius: var(--radius-xl);
  font-size: .8125rem;
  font-weight: 600;
  background: var(--green-100);
  color: var(--green-800);
  border: 1px solid var(--green-200);
}
.chip svg { width: 14px; height: 14px; }

/* ════════════════════════════════════════════════════════════
   CLIENTS SECTION
   ════════════════════════════════════════════════════════════ */
.clients {
  padding: 6rem 0;
  background: var(--white);
}
.clients-header { text-align: center; margin-bottom: 3.5rem; }
.clients-header .section-label { justify-content: center; }
.clients-header .section-label::before { display: none; }
.clients-header .section-label::after {
  content: '';
  display: block;
  width: 24px; height: 2px;
  background: var(--green-400);
  border-radius: 1px;
}
.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}
.client-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .875rem;
  padding: 2rem 1.5rem;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  background: var(--cream);
  text-align: center;
  transition: all .3s var(--ease);
}
.client-card:hover {
  background: var(--green-50);
  border-color: var(--green-200);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.client-card-icon {
  width: 60px; height: 60px;
  border-radius: var(--radius-lg);
  background: var(--green-100);
  display: flex;
  align-items: center;
  justify-content: center;
}
.client-card-icon svg { width: 28px; height: 28px; color: var(--green-700); }
.client-card-name {
  font-size: .9375rem;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.3;
}

/* ════════════════════════════════════════════════════════════
   CTA SECTION
   ════════════════════════════════════════════════════════════ */
.cta-section {
  padding: 7rem 0;
  background: linear-gradient(135deg, var(--green-900) 0%, var(--green-700) 100%);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: rgba(255,255,255,.04);
}
.cta-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,.03);
}
.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.cta-content .section-label { justify-content: center; color: var(--green-300); }
.cta-content .section-label::before { background: var(--green-400); }
.cta-content .section-label::after {
  content: '';
  display: block;
  width: 24px; height: 2px;
  background: var(--green-400);
  border-radius: 1px;
}
.cta-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.25rem;
  line-height: 1.2;
}
.cta-text { font-size: 1.0625rem; color: rgba(255,255,255,.75); margin-bottom: 2.5rem; }
.cta-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 1rem; }
.btn-white {
  background: var(--white);
  color: var(--green-800);
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(0,0,0,.2);
}
.btn-white:hover {
  background: var(--green-50);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,0,0,.25);
}
.btn-whatsapp {
  background: #25D366;
  color: var(--white);
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(37,211,102,.35);
}
.btn-whatsapp:hover {
  background: #1ebe5b;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(37,211,102,.5);
}

/* ════════════════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,.7);
}
.footer-main {
  padding: 5rem 0 3rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
}
.footer-brand img {
  height: 64px;
  margin-bottom: 1.25rem;
}
.footer-brand p {
  font-size: .9rem;
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 1.5rem;
}
.footer-social {
  display: flex;
  gap: .75rem;
}
.footer-social a {
  width: 40px; height: 40px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.7);
  transition: all .2s var(--ease);
}
.footer-social a:hover {
  background: var(--green-700);
  color: var(--white);
  transform: translateY(-3px);
}
.footer-social a svg { width: 18px; height: 18px; }
.footer-col h4 {
  font-size: .875rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.25rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: .625rem; }
.footer-col ul li a {
  font-size: .875rem;
  color: rgba(255,255,255,.6);
  transition: color .2s;
}
.footer-col ul li a:hover { color: var(--green-300); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  font-size: .875rem;
  margin-bottom: .875rem;
}
.footer-contact-item svg {
  width: 16px; height: 16px;
  color: var(--green-400);
  flex-shrink: 0;
  margin-top: .2rem;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 1.75rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: .8125rem;
  color: rgba(255,255,255,.4);
}
.footer-bottom a { color: rgba(255,255,255,.5); }
.footer-bottom a:hover { color: var(--green-300); }

/* ════════════════════════════════════════════════════════════
   PAGE HERO (inner pages)
   ════════════════════════════════════════════════════════════ */
.page-hero {
  padding-top: var(--nav-h);
  background: var(--green-900);
  padding-bottom: 5rem;
  padding-top: calc(var(--nav-h) + 4rem);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(ellipse at 80% 50%, rgba(46,139,87,.35) 0%, transparent 70%);
}
.page-hero-content { position: relative; z-index: 1; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .8125rem;
  color: rgba(255,255,255,.5);
  margin-bottom: 1.25rem;
}
.breadcrumb a { color: rgba(255,255,255,.6); }
.breadcrumb a:hover { color: var(--green-300); }
.breadcrumb-sep { color: rgba(255,255,255,.3); }
.breadcrumb-current { color: var(--green-300); }
.page-title {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: .875rem;
}
.page-subtitle { font-size: 1.0625rem; color: rgba(255,255,255,.7); max-width: 520px; }

/* ════════════════════════════════════════════════════════════
   ABOUT PAGE
   ════════════════════════════════════════════════════════════ */
.about-section { padding: 7rem 0; }
.about-section:nth-child(even) { background: var(--cream); }
.about-section:nth-child(odd) { background: var(--white); }
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.two-col.reverse { }
.col-image img {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  object-fit: cover;
  max-height: 480px;
}
.location-map img {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}
.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}
.highlight-item {
  padding: 1.25rem;
  border-radius: var(--radius-md);
  background: var(--green-50);
  border: 1px solid var(--green-100);
}
.highlight-item .number {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  color: var(--green-700);
  line-height: 1;
  margin-bottom: .25rem;
}
.highlight-item .desc { font-size: .875rem; color: var(--muted); }

/* ════════════════════════════════════════════════════════════
   PRODUCTS PAGE
   ════════════════════════════════════════════════════════════ */
.products-section { padding: 5rem 0; }
.products-section .section-label { margin-bottom: .75rem; }
.product-list-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: .75rem;
  margin-top: 2.5rem;
}
.product-tag {
  display: flex;
  align-items: center;
  gap: .625rem;
  padding: .75rem 1rem;
  border-radius: var(--radius-md);
  background: var(--cream);
  border: 1px solid var(--border);
  font-size: .9rem;
  color: var(--text);
  font-weight: 500;
  transition: all .2s var(--ease);
}
.product-tag::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green-400);
  flex-shrink: 0;
}
.product-tag:hover {
  background: var(--green-50);
  border-color: var(--green-300);
  color: var(--green-800);
  transform: translateX(4px);
}
.categories-nav {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-bottom: 4rem;
}
.category-pill {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.5rem;
  border-radius: var(--radius-xl);
  font-size: .9rem;
  font-weight: 600;
  background: var(--cream);
  color: var(--text);
  border: 2px solid var(--border);
  transition: all .25s var(--ease);
}
.category-pill:hover, .category-pill.active {
  background: var(--green-800);
  color: var(--white);
  border-color: var(--green-800);
  box-shadow: 0 4px 16px rgba(27,94,56,.3);
}

/* ════════════════════════════════════════════════════════════
   CONTACT PAGE
   ════════════════════════════════════════════════════════════ */
.contact-section { padding: 6rem 0; background: var(--cream); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}
.contact-info-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 3rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
}
.contact-info-item:last-child { border-bottom: none; }
.contact-info-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-md);
  background: var(--green-50);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info-icon svg { width: 22px; height: 22px; color: var(--green-700); }
.contact-info-label { font-size: .8125rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); margin-bottom: .25rem; }
.contact-info-value { font-size: 1rem; font-weight: 500; color: var(--dark); line-height: 1.5; }
.contact-info-value a { color: var(--green-700); }
.contact-map {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-top: 2rem;
}
.contact-map img { width: 100%; height: 300px; object-fit: cover; }
.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 3rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
.contact-form-card h2 {
  font-family: var(--font-head);
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: .5rem;
}
.contact-form-card p { color: var(--muted); margin-bottom: 2rem; font-size: .9375rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: .875rem; font-weight: 600; color: var(--text); margin-bottom: .5rem; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .875rem 1rem;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--border);
  background: var(--cream);
  font-family: var(--font-body);
  font-size: .9375rem;
  color: var(--text);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green-500);
  box-shadow: 0 0 0 3px rgba(52,170,110,.12);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-submit {
  width: 100%;
  padding: 1rem;
  border-radius: var(--radius-xl);
  background: var(--green-800);
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all .25s var(--ease);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  margin-top: .5rem;
}
.form-submit:hover {
  background: var(--green-700);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(27,94,56,.4);
}
.form-submit svg { width: 18px; height: 18px; }

/* ════════════════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid, .about-grid, .two-col { grid-template-columns: 1fr; gap: 3rem; }
  .why-image-wrap img { height: 380px; }
  .why-image-badge { right: 1rem; bottom: -1rem; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .about-image-accent { display: none; }
}

@media (max-width: 768px) {
  :root { --nav-h: 88px; }
  .nav-logo img { height: 72px; }
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; margin-right: 1rem; }
  .products-grid { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .clients-grid { grid-template-columns: repeat(2, 1fr); }
  .two-col.reverse { direction: ltr; }
  .footer-main { grid-template-columns: 1fr; gap: 2.5rem; padding: 3rem 0 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .form-row { grid-template-columns: 1fr; }
  .about-highlights { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .clients-grid { grid-template-columns: 1fr; }
  .product-list-grid { grid-template-columns: repeat(2, 1fr); }
}
