/* ============================================================
   ANGRIC — Plataforma Agroindustrial de Angola
   Folha de Estilos Principal
   ============================================================ */

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

/* ---------- CSS Variables ---------- */
:root {
  --green-dark: #1a4d2e;
  --green-mid: #2d7a4f;
  --green-light: #4caf80;
  --green-pale: #e8f5ee;
  --gold: #c8923a;
  --gold-light: #f0b860;
  --earth: #8b5e3c;
  --white: #ffffff;
  --off-white: #f8f9f6;
  --gray-100: #f2f4f1;
  --gray-200: #e0e4dc;
  --gray-400: #9aab96;
  --gray-600: #5a6657;
  --gray-800: #2c3329;
  --dark: #111814;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, .08);
  --shadow-md: 0 6px 24px rgba(0, 0, 0, .12);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, .16);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --transition: all .3s cubic-bezier(.4, 0, .2, 1);
  --font-main: 'Inter', sans-serif;
  --font-display: 'Playfair Display', serif;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-main);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* ---------- Typography ---------- */
h1,
h2,
h3,
h4,
h5 {
  line-height: 1.2;
  font-weight: 700;
}

h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
}

h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
}

h3 {
  font-size: clamp(1.2rem, 2vw, 1.6rem);
}

h4 {
  font-size: 1.15rem;
}

.display-font {
  font-family: var(--font-display);
}

.text-green {
  color: var(--green-mid);
}

.text-gold {
  color: var(--gold);
}

.text-white {
  color: var(--white);
}

.text-dark {
  color: var(--dark);
}

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

.text-muted {
  color: var(--gray-600);
}

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 96px 0;
}

.section-sm {
  padding: 64px 0;
}

.section-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  color: var(--dark);
  margin-bottom: 16px;
}

.section-sub {
  font-size: 1.1rem;
  color: var(--gray-600);
  max-width: 600px;
  margin-bottom: 48px;
}

.section-header {
  margin-bottom: 56px;
}

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

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

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

.flex {
  display: flex;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.gap-16 {
  gap: 16px;
}

.gap-24 {
  gap: 24px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: .95rem;
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background: var(--green-mid);
  color: var(--white);
  border: 2px solid var(--green-mid);
}

.btn-primary:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(45, 122, 79, .35);
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
  border: 2px solid var(--gold);
}

.btn-gold:hover {
  background: #b07828;
  border-color: #b07828;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200, 146, 58, .35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, .7);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, .12);
  border-color: var(--white);
  transform: translateY(-2px);
}

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

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

.btn-sm {
  padding: 9px 20px;
  font-size: .85rem;
}

.btn-lg {
  padding: 18px 40px;
  font-size: 1.05rem;
}

/* ============================================================
   NAVBAR
   ============================================================ */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: var(--transition);
  padding: 0;
}

#navbar.scrolled {
  background: rgba(255, 255, 255, .97);
  backdrop-filter: blur(16px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, .1);
}

#navbar.scrolled .nav-logo-text {
  color: var(--green-dark);
}

#navbar.scrolled .nav-link {
  color: var(--gray-800);
}

#navbar.scrolled .nav-link:hover {
  color: var(--green-mid);
}

#navbar.scrolled .nav-link.active {
  color: var(--green-mid);
}

#navbar.scrolled .nav-toggle span {
  background: var(--gray-800);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  max-width: 1280px;
  margin: 0 auto;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--green-mid), var(--green-dark));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: white;
  flex-shrink: 0;
}

.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  transition: var(--transition);
}

.nav-logo-sub {
  font-size: .65rem;
  font-weight: 500;
  letter-spacing: .08em;
  color: var(--gold-light);
  display: block;
  margin-top: -2px;
}

#navbar.scrolled .nav-logo-sub {
  color: var(--gold);
}

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

.nav-item {
  position: relative;
}

.nav-link {
  display: block;
  padding: 8px 14px;
  font-size: .88rem;
  font-weight: 500;
  color: rgba(255, 255, 255, .9);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--white);
  background: rgba(255, 255, 255, .12);
}

.nav-link i {
  font-size: .75rem;
  margin-left: 3px;
}

/* Dropdown */
.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: var(--transition);
  border: 1px solid var(--gray-200);
  overflow: hidden;
}

.nav-item:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  font-size: .87rem;
  color: var(--gray-800);
  transition: var(--transition);
}

.nav-dropdown a:hover {
  background: var(--green-pale);
  color: var(--green-mid);
  padding-left: 24px;
}

.nav-dropdown a i {
  color: var(--green-mid);
  width: 16px;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, .4);
  color: var(--white);
  font-size: .82rem;
  font-weight: 600;
  transition: var(--transition);
  cursor: pointer;
  background: rgba(255, 255, 255, .08);
}

.lang-btn:hover {
  background: rgba(255, 255, 255, .2);
}

#navbar.scrolled .lang-btn {
  border-color: var(--gray-200);
  color: var(--gray-800);
  background: transparent;
}

#navbar.scrolled .lang-btn:hover {
  background: var(--gray-100);
}

.nav-cta {
  background: var(--gold) !important;
  color: var(--white) !important;
  padding: 9px 20px !important;
  border-radius: 50px !important;
  font-size: .88rem !important;
  border: none !important;
}

.nav-cta:hover {
  background: #b07828 !important;
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--green-dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(10, 32, 18, .85) 0%, rgba(26, 77, 46, .6) 50%, rgba(15, 45, 30, .75) 100%);
  z-index: 1;
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  background-image:
    url('https://images.unsplash.com/photo-1625246333195-78d9c38ad449?w=1920&q=80');
  background-size: cover;
  background-position: center;
  z-index: 0;
  animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.06);
  }
}

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

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide:nth-child(1) {
  background-image: url('https://images.unsplash.com/photo-1625246333195-78d9c38ad449?w=1920&q=80');
}

.hero-slide:nth-child(2) {
  background-image: url('https://images.unsplash.com/photo-1500382017468-9049fed747ef?w=1920&q=80');
}

.hero-slide:nth-child(3) {
  background-image: url('https://images.unsplash.com/photo-1574943320219-553eb213f72d?w=1920&q=80');
}

.hero-slide:nth-child(4) {
  background-image: url('https://images.unsplash.com/photo-1586771107445-d3ca888129ff?w=1920&q=80');
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 0 80px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200, 146, 58, .2);
  border: 1px solid rgba(200, 146, 58, .4);
  color: var(--gold-light);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 28px;
}

.hero-title {
  font-family: var(--font-display);
  color: var(--white);
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero-title .accent {
  color: var(--gold-light);
}

.hero-title .line-break {
  display: block;
}

.hero-subtitle {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: rgba(255, 255, 255, .82);
  max-width: 620px;
  line-height: 1.7;
  margin-bottom: 40px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, .15);
  border-radius: var(--radius-md);
  overflow: hidden;
  max-width: 720px;
}

.hero-stat {
  background: rgba(0, 0, 0, .3);
  backdrop-filter: blur(8px);
  padding: 20px 24px;
  text-align: center;
}

.hero-stat-num {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 4px;
}

.hero-stat-label {
  font-size: .72rem;
  color: rgba(255, 255, 255, .7);
  text-transform: uppercase;
  letter-spacing: .06em;
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, .6);
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  animation: bounce 2s ease infinite;
}

.hero-scroll i {
  font-size: 1.2rem;
}

@keyframes bounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(8px);
  }
}

/* ============================================================
   TICKER / ANNOUNCEMENT BAR
   ============================================================ */
.ticker-bar {
  background: var(--green-dark);
  color: var(--white);
  padding: 12px 0;
  overflow: hidden;
}

.ticker-inner {
  display: flex;
  align-items: center;
  gap: 0;
}

.ticker-label {
  background: var(--gold);
  padding: 4px 16px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
  margin-right: 24px;
  border-radius: 4px;
}

.ticker-track {
  display: flex;
  gap: 48px;
  animation: tickerMove 30s linear infinite;
  white-space: nowrap;
}

.ticker-track:hover {
  animation-play-state: paused;
}

.ticker-item {
  font-size: .85rem;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, .85);
}

.ticker-item::before {
  content: '●';
  color: var(--gold);
  font-size: .5rem;
}

@keyframes tickerMove {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ============================================================
   NUMBERS / STATS SECTION
   ============================================================ */
#stats {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-mid) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

#stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  position: relative;
  z-index: 1;
}

.stat-card {
  text-align: center;
  padding: 32px 16px;
  border-right: 1px solid rgba(255, 255, 255, .12);
}

.stat-card:last-child {
  border-right: none;
}

.stat-icon {
  font-size: 2rem;
  color: var(--gold-light);
  margin-bottom: 12px;
}

.stat-number {
  font-size: clamp(1.8rem, 2.5vw, 2.6rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-suffix {
  font-size: 1.2rem;
}

.stat-label {
  font-size: .78rem;
  color: rgba(255, 255, 255, .7);
  text-transform: uppercase;
  letter-spacing: .06em;
  line-height: 1.4;
}

/* ============================================================
   AREAS DE ACTUAÇÃO CARDS
   ============================================================ */
#areas {
  background: var(--off-white);
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.area-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  cursor: pointer;
}

.area-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.area-card-img {
  height: 220px;
  overflow: hidden;
  position: relative;
}

.area-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.area-card:hover .area-card-img img {
  transform: scale(1.08);
}

.area-card-img .area-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--green-mid);
  color: var(--white);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
}

.area-card-body {
  padding: 24px;
}

.area-card-icon {
  width: 48px;
  height: 48px;
  background: var(--green-pale);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--green-mid);
  margin-bottom: 16px;
}

.area-card-body h3 {
  font-size: 1.15rem;
  color: var(--dark);
  margin-bottom: 10px;
}

.area-card-body p {
  font-size: .88rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 20px;
}

.area-card-body .btn {
  width: 100%;
  justify-content: center;
}

/* ============================================================
   ABOUT / MODELO DE ACTUAÇÃO
   ============================================================ */
#about {
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-img-wrap {
  position: relative;
}

.about-img-main {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius-xl);
}

.about-img-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--green-mid);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
  box-shadow: var(--shadow-md);
}

.about-img-badge .badge-num {
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1;
}

.about-img-badge .badge-txt {
  font-size: .75rem;
  opacity: .85;
  margin-top: 4px;
}

.about-img-float {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 140px;
  height: 140px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 4px solid var(--white);
  box-shadow: var(--shadow-md);
}

.about-text .section-label {
  margin-top: 8px;
}

.chain-model {
  display: flex;
  align-items: center;
  gap: 0;
  margin: 32px 0;
  flex-wrap: wrap;
}

.chain-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
}

.chain-step-icon {
  width: 56px;
  height: 56px;
  background: var(--green-pale);
  border: 2px solid var(--green-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--green-mid);
}

.chain-step-label {
  font-size: .72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--gray-600);
}

.chain-arrow {
  font-size: 1.2rem;
  color: var(--gold);
  padding: 0 8px;
  margin-top: -28px;
}

.about-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 24px;
}

.pillar-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: var(--off-white);
  border-radius: var(--radius-md);
  font-size: .88rem;
  font-weight: 500;
  color: var(--gray-800);
}

.pillar-item i {
  color: var(--green-mid);
  font-size: 1rem;
}

/* ============================================================
   MAP SECTION
   ============================================================ */
#map-section {
  background: var(--dark);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

#map-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 77, 46, .4), rgba(0, 0, 0, .6));
}

.map-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: center;
}

.map-text .section-label {
  color: var(--gold-light);
}

.map-text .section-title {
  color: var(--white);
}

.map-text .section-sub {
  color: rgba(255, 255, 255, .7);
}

.map-legend {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .88rem;
  color: rgba(255, 255, 255, .8);
}

.legend-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  flex-shrink: 0;
}

.legend-dot.fazenda {
  background: var(--gold);
}

.legend-dot.industrial {
  background: #4fc3f7;
}

.legend-dot.fomento {
  background: var(--green-light);
}

.legend-dot.logistica {
  background: #ff8a65;
}

.map-container {
  position: relative;
}

#angola-map {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  filter: drop-shadow(0 24px 48px rgba(0, 0, 0, .5));
}

.map-marker {
  position: absolute;
  transform: translate(-50%, -50%);
  cursor: pointer;
  z-index: 10;
}

.map-marker-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 3px solid var(--white);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, .2);
  position: relative;
  transition: var(--transition);
}

.map-marker:hover .map-marker-dot {
  transform: scale(1.4);
}

.map-marker-dot::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  animation: mapPulse 2s ease infinite;
}

@keyframes mapPulse {
  0% {
    box-shadow: 0 0 0 0 currentColor;
    opacity: .8;
  }

  100% {
    box-shadow: 0 0 0 16px currentColor;
    opacity: 0;
  }
}

.map-marker-dot.fazenda {
  background: var(--gold);
  color: rgba(200, 146, 58, .4);
}

.map-marker-dot.industrial {
  background: #4fc3f7;
  color: rgba(79, 195, 247, .3);
}

.map-marker-dot.fomento {
  background: var(--green-light);
  color: rgba(76, 175, 128, .3);
}

.map-tooltip {
  position: absolute;
  bottom: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  color: var(--dark);
  font-size: .78rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.map-marker:hover .map-tooltip {
  opacity: 1;
}

/* ============================================================
   IMPACTO SOCIAL
   ============================================================ */
#impact {
  background: var(--green-pale);
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.impact-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border-bottom: 4px solid transparent;
}

.impact-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-bottom-color: var(--green-mid);
}

.impact-card-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.impact-card-icon.green {
  background: var(--green-pale);
  color: var(--green-mid);
}

.impact-card-icon.gold {
  background: rgba(200, 146, 58, .1);
  color: var(--gold);
}

.impact-card-icon.blue {
  background: rgba(79, 195, 247, .1);
  color: #0288d1;
}

.impact-card-icon.earth {
  background: rgba(139, 94, 60, .1);
  color: var(--earth);
}

.impact-card-icon.purple {
  background: rgba(156, 39, 176, .1);
  color: #7b1fa2;
}

.impact-card-icon.teal {
  background: rgba(0, 150, 136, .1);
  color: #00695c;
}

.impact-card h3 {
  font-size: 1.1rem;
  color: var(--dark);
  margin-bottom: 10px;
}

.impact-card p {
  font-size: .88rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 16px;
}

.impact-metric {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--green-mid);
}

.impact-metric span {
  font-size: .8rem;
  font-weight: 500;
  color: var(--gray-600);
  display: block;
}

/* ============================================================
   INVESTIMENTOS / PROJETOS
   ============================================================ */
#investments {
  background: var(--white);
}

.invest-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: start;
}

.invest-projects {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.invest-project-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 24px;
  background: var(--off-white);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--green-mid);
  transition: var(--transition);
  cursor: pointer;
}

.invest-project-card:hover {
  background: var(--green-pale);
  transform: translateX(6px);
}

.invest-project-card.gold {
  border-left-color: var(--gold);
}

.invest-project-card.blue {
  border-left-color: #0288d1;
}

.invest-project-icon {
  width: 48px;
  height: 48px;
  background: var(--white);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}

.invest-project-info h4 {
  font-size: 1rem;
  color: var(--dark);
  margin-bottom: 4px;
}

.invest-project-info p {
  font-size: .83rem;
  color: var(--gray-600);
}

.invest-project-status {
  margin-top: 8px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.invest-project-status::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}

.invest-project-status.active::before {
  background: var(--green-light);
}

.invest-project-status.active {
  color: var(--green-mid);
}

.invest-project-status.progress::before {
  background: var(--gold);
}

.invest-project-status.progress {
  color: var(--gold);
}

.invest-cta-box {
  background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
  border-radius: var(--radius-xl);
  padding: 40px;
  color: var(--white);
  position: sticky;
  top: 100px;
}

.invest-cta-box h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.invest-cta-box p {
  font-size: .9rem;
  opacity: .85;
  line-height: 1.7;
  margin-bottom: 24px;
}

.invest-highlights {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.invest-highlight {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .85rem;
  opacity: .9;
}

.invest-highlight i {
  color: var(--gold-light);
}

/* ============================================================
   PARCEIROS
   ============================================================ */
#partners {
  background: var(--gray-100);
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 48px;
}

.partner-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  text-align: center;
}

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

.partner-logo {
  width: 60px;
  height: 60px;
  background: var(--green-pale);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--green-mid);
}

.partner-name {
  font-weight: 700;
  font-size: .9rem;
  color: var(--dark);
}

.partner-type {
  font-size: .73rem;
  color: var(--gray-600);
  text-transform: uppercase;
  letter-spacing: .06em;
}

/* ============================================================
   NOTÍCIAS
   ============================================================ */
#news {
  background: var(--white);
}

.news-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 24px;
}

.news-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

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

.news-card-img {
  overflow: hidden;
  position: relative;
}

.news-card-img img {
  width: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.news-card:hover .news-card-img img {
  transform: scale(1.06);
}

.news-card.featured .news-card-img img {
  height: 300px;
}

.news-card:not(.featured) .news-card-img img {
  height: 180px;
}

.news-cat {
  position: absolute;
  top: 14px;
  left: 14px;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 50px;
  color: var(--white);
}

.news-cat.producao {
  background: var(--green-mid);
}

.news-cat.exportacao {
  background: var(--gold);
}

.news-cat.industria {
  background: #0288d1;
}

.news-cat.parceria {
  background: #7b1fa2;
}

.news-cat.evento {
  background: #e53935;
}

.news-card-body {
  padding: 20px;
}

.news-date {
  font-size: .75rem;
  color: var(--gray-400);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.news-card-body h3 {
  font-size: 1rem;
  color: var(--dark);
  margin-bottom: 8px;
  line-height: 1.4;
}

.news-card.featured .news-card-body h3 {
  font-size: 1.3rem;
}

.news-card-body p {
  font-size: .85rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 16px;
}

.news-read-more {
  font-size: .83rem;
  font-weight: 600;
  color: var(--green-mid);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.news-read-more:hover {
  gap: 10px;
  color: var(--green-dark);
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-mid) 60%, var(--gold) 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M0 0h40v40H0V0zm40 40h40v40H40V40zm0-40h2l-2 2V0zm0 4l4-4h2l-6 6V4zm0 4l8-8h2L40 10V8zm0 4L52 0h2L40 14v-2zm0 4L56 0h2L40 18v-2zm0 4L60 0h2L40 22v-2zm0 4L64 0h2L40 26v-2zm0 4L68 0h2L40 30v-2zm0 4L72 0h2L40 34v-2zm0 4L76 0h2L40 38v-2zm0 4L80 0v2L42 40h-2zm4 0L80 4v2L46 40h-2zm4 0L80 8v2L50 40h-2zm4 0L80 12v2L54 40h-2zm4 0L80 16v2L58 40h-2zm4 0L80 20v2L62 40h-2zm4 0L80 24v2L66 40h-2zm4 0L80 28v2L70 40h-2zm4 0L80 32v2L74 40h-2zm4 0L80 36v2L78 40h-2zm4 0L80 40v0h-2v-2zm-4 0v2h-2l2-2z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-banner h2 {
  font-family: var(--font-display);
  color: var(--white);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  margin-bottom: 16px;
  position: relative;
}

.cta-banner p {
  color: rgba(255, 255, 255, .85);
  font-size: 1.1rem;
  margin-bottom: 32px;
  position: relative;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  position: relative;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--dark);
  color: var(--white);
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.footer-brand .nav-logo {
  margin-bottom: 20px;
}

.footer-desc {
  font-size: .88rem;
  color: rgba(255, 255, 255, .55);
  line-height: 1.7;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.social-btn {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, .08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .7);
  font-size: .9rem;
  transition: var(--transition);
}

.social-btn:hover {
  background: var(--green-mid);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-col h4 {
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: .85rem;
  color: rgba(255, 255, 255, .55);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links a:hover {
  color: var(--white);
  padding-left: 4px;
}

.footer-links a i {
  font-size: .7rem;
  color: var(--green-light);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: .85rem;
  color: rgba(255, 255, 255, .55);
}

.footer-contact-item i {
  color: var(--gold-light);
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  font-size: .78rem;
  color: rgba(255, 255, 255, .35);
}

.footer-bottom a {
  color: rgba(255, 255, 255, .5);
}

.footer-bottom a:hover {
  color: var(--white);
}

/* ============================================================
   PAGE HERO (internas)
   ============================================================ */
.page-hero {
  padding: 140px 0 80px;
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-mid) 100%);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1500382017468-9049fed747ef?w=1920&q=30') center/cover no-repeat;
  opacity: .18;
}

.page-hero-content {
  position: relative;
  z-index: 1;
}

.page-hero .breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .82rem;
  color: rgba(255, 255, 255, .6);
  margin-bottom: 20px;
}

.page-hero .breadcrumb a:hover {
  color: var(--white);
}

.page-hero .breadcrumb i {
  font-size: .6rem;
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: 16px;
}

.page-hero p {
  color: rgba(255, 255, 255, .8);
  font-size: 1.15rem;
  max-width: 680px;
}

/* ============================================================
   CARDS GENÉRICOS
   ============================================================ */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

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

.card-body {
  padding: 28px;
}

.card-header-img {
  height: 200px;
  overflow: hidden;
}

.card-header-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.card:hover .card-header-img img {
  transform: scale(1.06);
}

/* ============================================================
   TABLE INDUSTRIAL
   ============================================================ */
.industrial-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.industrial-table thead tr {
  background: var(--green-dark);
  color: var(--white);
}

.industrial-table th {
  padding: 16px 20px;
  text-align: left;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.industrial-table tbody tr:nth-child(even) {
  background: var(--gray-100);
}

.industrial-table tbody tr {
  transition: var(--transition);
}

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

.industrial-table td {
  padding: 14px 20px;
  font-size: .9rem;
  color: var(--gray-800);
  border-bottom: 1px solid var(--gray-200);
}

.cap-badge {
  background: var(--green-pale);
  color: var(--green-dark);
  font-weight: 700;
  font-size: .82rem;
  padding: 4px 10px;
  border-radius: 50px;
}

/* ============================================================
   FOMENTO INFOGRÁFICO
   ============================================================ */
.fomento-steps {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
  padding: 0 20px;
  margin-top: 48px;
}

.fomento-steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 60px;
  right: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--green-light), var(--gold));
}

.fomento-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  position: relative;
  z-index: 1;
  flex: 1;
}

.fomento-step-num {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--green-mid);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
}

.fomento-step-num i {
  font-size: 1.5rem;
  color: var(--green-mid);
}

.fomento-step-label {
  font-size: .8rem;
  font-weight: 600;
  color: var(--gray-700);
  max-width: 90px;
  line-height: 1.3;
}

.fomento-step:last-child .fomento-step-num {
  border-color: var(--gold);
}

.fomento-step:last-child .fomento-step-num i {
  color: var(--gold);
}

/* ============================================================
   ESG / SUSTAINABILITY INDICATORS
   ============================================================ */
.esg-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.esg-card {
  text-align: center;
  padding: 32px 20px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

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

.esg-letter {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 900;
  margin: 0 auto 16px;
  color: var(--white);
}

.esg-e {
  background: var(--green-mid);
}

.esg-s {
  background: var(--gold);
}

.esg-g {
  background: #0288d1;
}

/* ============================================================
   PRODUTOS
   ============================================================ */
.product-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 40px;
  border-bottom: 2px solid var(--gray-200);
  padding-bottom: 0;
}

.product-tab {
  padding: 12px 24px;
  font-size: .9rem;
  font-weight: 600;
  color: var(--gray-600);
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  cursor: pointer;
  transition: var(--transition);
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
}

.product-tab.active {
  color: var(--green-mid);
  border-bottom-color: var(--green-mid);
  background: var(--green-pale);
}

.product-tab:hover:not(.active) {
  color: var(--gray-800);
  background: var(--gray-100);
}

.product-panel {
  display: none;
}

.product-panel.active {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

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

.product-card-img {
  height: 180px;
  overflow: hidden;
}

.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

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

.product-card-body {
  padding: 20px;
}

.product-card-body h3 {
  font-size: .95rem;
  margin-bottom: 6px;
}

.product-card-body p {
  font-size: .82rem;
  color: var(--gray-600);
  margin-bottom: 12px;
}

.product-origin {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .75rem;
  color: var(--green-mid);
  font-weight: 600;
}

/* ============================================================
   FORM / CONTACTOS
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-icon {
  width: 48px;
  height: 48px;
  background: var(--green-pale);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--green-mid);
  flex-shrink: 0;
}

.contact-info-item h4 {
  font-size: .85rem;
  color: var(--gray-600);
  margin-bottom: 4px;
}

.contact-info-item p {
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-md);
  font-family: var(--font-main);
  font-size: .93rem;
  color: var(--dark);
  transition: var(--transition);
  background: var(--white);
}

.form-control:focus {
  outline: none;
  border-color: var(--green-mid);
  box-shadow: 0 0 0 4px rgba(45, 122, 79, .1);
}

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

select.form-control {
  appearance: none;
  cursor: pointer;
}

/* ============================================================
   LANGUAGE SWITCHER BADGE
   ============================================================ */
.lang-active {
  font-weight: 700;
  color: var(--gold) !important;
}

/* ============================================================
   SCROLLBAR
   ============================================================ */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--gray-100);
}

::-webkit-scrollbar-thumb {
  background: var(--green-mid);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--green-dark);
}

/* ============================================================
   UTILITY / ANIMATION
   ============================================================ */
.fade-in {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s ease, transform .7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  transform: translateX(-32px);
}

.fade-in-right {
  transform: translateX(32px);
}

.fade-in-left.visible,
.fade-in-right.visible {
  transform: translateX(0);
}

.delay-1 {
  transition-delay: .1s;
}

.delay-2 {
  transition-delay: .2s;
}

.delay-3 {
  transition-delay: .3s;
}

.delay-4 {
  transition-delay: .4s;
}

.delay-5 {
  transition-delay: .5s;
}

.delay-6 {
  transition-delay: .6s;
}

.bg-green-pale {
  background: var(--green-pale);
}

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

.bg-dark {
  background: var(--dark);
}

.mt-8 {
  margin-top: 8px;
}

.mt-16 {
  margin-top: 16px;
}

.mt-24 {
  margin-top: 24px;
}

.mt-32 {
  margin-top: 32px;
}

.mb-8 {
  margin-bottom: 8px;
}

.mb-16 {
  margin-bottom: 16px;
}

.mb-24 {
  margin-bottom: 24px;
}

.mb-32 {
  margin-bottom: 32px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .stat-card:nth-child(4) {
    border-right: none;
  }

  .areas-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .news-grid {
    grid-template-columns: 1fr 1fr;
  }

  .news-grid .news-card.featured {
    grid-column: span 2;
  }

  .partners-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .esg-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {

  .nav-menu,
  .nav-right {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .invest-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .map-inner {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .fomento-steps {
    flex-wrap: wrap;
    gap: 24px;
  }

  .fomento-steps::before {
    display: none;
  }

  .product-panel.active {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .section {
    padding: 64px 0;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .areas-grid {
    grid-template-columns: 1fr;
  }

  .impact-grid {
    grid-template-columns: 1fr;
  }

  .news-grid {
    grid-template-columns: 1fr;
  }

  .news-grid .news-card.featured {
    grid-column: span 1;
  }

  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .chain-model {
    gap: 0;
  }

  .about-pillars {
    grid-template-columns: 1fr;
  }

  .product-panel.active {
    grid-template-columns: 1fr;
  }

  .esg-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ============================================================
   MOBILE MENU
   ============================================================ */
#mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  z-index: 999;
  transform: translateX(100%);
  transition: transform .4s cubic-bezier(.4, 0, .2, 1);
  overflow-y: auto;
  padding: 80px 24px 40px;
}

#mobile-menu.open {
  transform: translateX(0);
}

.mobile-nav-item {
  border-bottom: 1px solid var(--gray-200);
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--dark);
}

.mobile-nav-link:hover {
  color: var(--green-mid);
}

.mobile-sub {
  display: none;
  padding: 8px 0 16px 20px;
}

.mobile-sub.open {
  display: block;
}

.mobile-sub a {
  display: block;
  padding: 8px 0;
  font-size: .93rem;
  color: var(--gray-600);
}

.mobile-sub a:hover {
  color: var(--green-mid);
}

.mobile-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-100);
  border-radius: 50%;
  font-size: 1.2rem;
  color: var(--gray-800);
  cursor: pointer;
  transition: var(--transition);
}

.mobile-close:hover {
  background: var(--green-pale);
  color: var(--green-mid);
}