:root {
  --color-primary: #97af48;
  --color-primary-dark: #7a8f3a;
  --color-secondary: #2b4e73;
  --color-secondary-light: #3a6a9a;
  --color-navy: #263248;
  --color-muted-olive: #74733a;
  --color-bg: #ffffff;
  --color-text: #1a1a1a;
  --color-text-light: #6b7280;
  --color-border: #e5e7eb;
  --color-section-alt: #f8faf6;
  --color-accent-gold: #c9a84c;
  --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
  --font-heading: 'Georgia', 'Times New Roman', serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
  --shadow-xl: 0 24px 60px rgba(0,0,0,0.15);
  --radius: 12px;
  --radius-lg: 20px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: var(--font-body);
  color: var(--color-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  background: var(--color-bg);
  min-height: 100vh;
}
img { max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* Header */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: #fff;
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}
.header.scrolled {
  border-bottom-color: var(--color-border);
  box-shadow: 0 1px 8px rgba(0,0,0,0.05);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.logo { display: flex; align-items: center; gap: 10px; }
.logo img { height: 50px; width: auto; }
.logo span {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-navy);
  letter-spacing: -0.3px;
}
.nav { display: flex; align-items: center; gap: 24px; }
.nav a {
  color: var(--color-text);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 4px 0;
  position: relative;
  transition: var(--transition);
}
.nav a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--color-primary);
  transition: var(--transition);
  border-radius: 1px;
}
.nav a:hover { color: var(--color-primary); }
.nav a:hover::after { width: 100%; }

.lang-selector { display: flex; gap: 3px; margin-left: 8px; }
.lang-btn {
  background: none; border: 1px solid var(--color-border);
  padding: 3px 7px; font-size: 0.7rem; font-weight: 700;
  cursor: pointer; border-radius: 4px; transition: var(--transition);
  text-transform: uppercase; color: var(--color-text-light);
  letter-spacing: 0.5px;
}
.lang-btn:hover { border-color: var(--color-primary); color: var(--color-primary); }
.lang-btn.active { background: var(--color-primary); color: #fff; border-color: var(--color-primary); }

.menu-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.menu-toggle span { width: 22px; height: 2px; background: var(--color-navy); transition: var(--transition); border-radius: 2px; }

/* Hero */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  position: relative; background: var(--color-navy);
  overflow: clip;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0.35; z-index: 0;
  background-color: var(--color-navy);
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg,
    rgba(38,50,72,0.92) 0%,
    rgba(38,50,72,0.6) 50%,
    rgba(38,50,72,0.85) 100%);
  z-index: 1;
}
#rainCanvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  z-index: 1;
  pointer-events: none;
  opacity: 0.3;
}
.hero-particles {
  position: absolute; inset: 0; z-index: 1;
  overflow: hidden;
}
.hero-particles span {
  position: absolute; width: 4px; height: 4px;
  background: rgba(151,175,72,0.3); border-radius: 50%;
  animation: float 20s infinite;
}
.hero-particles span:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.hero-particles span:nth-child(2) { top: 60%; left: 80%; animation-delay: -3s; width: 6px; height: 6px; }
.hero-particles span:nth-child(3) { top: 30%; left: 60%; animation-delay: -6s; }
.hero-particles span:nth-child(4) { top: 70%; left: 20%; animation-delay: -9s; width: 5px; height: 5px; }
.hero-particles span:nth-child(5) { top: 15%; left: 85%; animation-delay: -12s; }
.hero-particles span:nth-child(6) { top: 80%; left: 40%; animation-delay: -15s; width: 3px; height: 3px; }
@keyframes float {
  0%,100% { transform: translateY(0) translateX(0); opacity: 0.3; }
  25% { transform: translateY(-30px) translateX(15px); opacity: 0.6; }
  50% { transform: translateY(-60px) translateX(-10px); opacity: 0.3; }
  75% { transform: translateY(-30px) translateX(20px); opacity: 0.5; }
}

.hero .container { position: relative; z-index: 2; text-align: center; }
.hero-logo { height: 131px; margin-bottom: 28px; filter: brightness(0) invert(1); opacity: 0.9; animation: heroFadeIn 1s ease forwards; }
.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 2.6rem);
  font-weight: 300; color: #fff; line-height: 1.2; margin-bottom: 4px;
  opacity: 0; animation: heroSlideUp 0.8s ease 0.2s forwards;
  position: relative;
}
.hero h1 .highlight {
  color: var(--color-primary); display: block;
  font-weight: 500; font-size: clamp(1.8rem, 5vw, 3.2rem);
  margin-top: 4px;
}

/* Glitch effect on hero title */
.hero h1:first-of-type::before,
.hero h1:first-of-type::after {
  content: attr(data-text);
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
}
.hero h1:first-of-type::before {
  color: #00e5ff;
  z-index: -1;
  animation: glitchCyan 5s ease-in-out 0.2s;
}
.hero h1:first-of-type::after {
  color: #ff0055;
  z-index: -1;
  animation: glitchRed 5s ease-in-out 0.2s;
}
@keyframes glitchCyan {
  0% { transform: translate(0); clip-path: inset(0 0 100% 0); opacity: 0; }
  3% { opacity: 1; }
  5% { transform: translate(-6px, 3px); clip-path: inset(15% 0 70% 0); }
  8% { transform: translate(4px, -2px); clip-path: inset(40% 0 45% 0); }
  12% { transform: translate(-8px, 4px); clip-path: inset(5% 0 80% 0); }
  15% { transform: translate(0); clip-path: inset(0 0 100% 0); }
  18% { opacity: 0; }
  22% { opacity: 1; }
  25% { transform: translate(3px, -4px); clip-path: inset(60% 0 20% 0); }
  28% { transform: translate(-5px, 1px); clip-path: inset(25% 0 55% 0); }
  32% { transform: translate(7px, -3px); clip-path: inset(10% 0 75% 0); }
  35% { transform: translate(-3px, 2px); clip-path: inset(50% 0 30% 0); }
  38% { transform: translate(0); clip-path: inset(0 0 100% 0); opacity: 1; }
  42% { opacity: 0; }
  48% { opacity: 0; }
  52% { opacity: 1; }
  55% { transform: translate(-4px, 1px); clip-path: inset(20% 0 65% 0); }
  58% { transform: translate(2px, -3px); clip-path: inset(45% 0 35% 0); }
  62% { transform: translate(0); clip-path: inset(0 0 100% 0); }
  65% { opacity: 0; }
  75% { opacity: 1; }
  78% { transform: translate(-6px, 2px); clip-path: inset(30% 0 60% 0); }
  82% { transform: translate(0); clip-path: inset(0 0 100% 0); }
  85% { opacity: 0; }
  100% { transform: translate(0); clip-path: inset(0 0 100% 0); opacity: 0; }
}
@keyframes glitchRed {
  0% { transform: translate(0); clip-path: inset(100% 0 0 0); opacity: 0; }
  3% { opacity: 1; }
  5% { transform: translate(6px, -3px); clip-path: inset(55% 0 15% 0); }
  8% { transform: translate(-4px, 2px); clip-path: inset(10% 0 70% 0); }
  12% { transform: translate(8px, -4px); clip-path: inset(35% 0 45% 0); }
  15% { transform: translate(0); clip-path: inset(100% 0 0 0); }
  18% { opacity: 0; }
  22% { opacity: 1; }
  25% { transform: translate(-3px, 4px); clip-path: inset(70% 0 10% 0); }
  28% { transform: translate(5px, -1px); clip-path: inset(45% 0 25% 0); }
  32% { transform: translate(-7px, 3px); clip-path: inset(5% 0 80% 0); }
  35% { transform: translate(3px, -2px); clip-path: inset(60% 0 20% 0); }
  38% { transform: translate(0); clip-path: inset(100% 0 0 0); opacity: 1; }
  42% { opacity: 0; }
  48% { opacity: 0; }
  52% { opacity: 1; }
  55% { transform: translate(4px, -1px); clip-path: inset(30% 0 50% 0); }
  58% { transform: translate(-2px, 3px); clip-path: inset(65% 0 15% 0); }
  62% { transform: translate(0); clip-path: inset(100% 0 0 0); }
  65% { opacity: 0; }
  75% { opacity: 1; }
  78% { transform: translate(6px, -2px); clip-path: inset(40% 0 40% 0); }
  82% { transform: translate(0); clip-path: inset(100% 0 0 0); }
  85% { opacity: 0; }
  100% { transform: translate(0); clip-path: inset(100% 0 0 0); opacity: 0; }
}
.hero p {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: rgba(255,255,255,0.7);
  max-width: 560px; margin: 20px auto 36px; line-height: 1.7;
  opacity: 0; animation: heroSlideUp 0.8s ease 0.4s forwards;
}
.hero-badges {
  display: flex; justify-content: center; gap: 24px; margin-bottom: 40px;
  opacity: 0; animation: heroSlideUp 0.8s ease 0.6s forwards;
}
.hero-badges span {
  display: flex; align-items: center; gap: 6px;
  color: rgba(255,255,255,0.6); font-size: 0.85rem; font-weight: 500;
}
.hero-badges .flag { font-size: 1.1rem; }
.hero-cta {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--color-primary); color: #fff;
  padding: 16px 44px; border-radius: 50px;
  font-weight: 600; font-size: 1rem;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(151,175,72,0.25);
  opacity: 0; animation: heroSlideUp 0.8s ease 0.8s forwards;
  position: relative;
}
@keyframes heroFadeIn {
  to { opacity: 0.9; }
}
@keyframes heroSlideUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-cta:hover { background: var(--color-primary-dark); transform: translateY(-3px); box-shadow: 0 8px 30px rgba(151,175,72,0.35); }
.hero-cta::after {
  content: ''; position: absolute; inset: 0;
  border-radius: 50px; border: 2px solid var(--color-primary);
  animation: ctaPulse 2s ease-in-out infinite;
}
@keyframes ctaPulse {
  0%,100% { transform: scale(1); opacity: 0.4; }
  50% { transform: scale(1.06); opacity: 0; }
}
.hero-scroll {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  z-index: 2; color: rgba(255,255,255,0.35);
  font-size: 0.7rem; letter-spacing: 3px; text-transform: uppercase;
  opacity: 0;
  animation: heroFadeIn 1s ease 1.2s forwards, bounce 2.5s infinite 1.2s;
}
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(-8px)} }

/* Sections */
.section { padding: 100px 0; position: relative; }
.section-alt { background: var(--color-section-alt); }
.section-alt-white { background: #fff; }
.section-header { text-align: center; max-width: 680px; margin: 0 auto 48px; }
.section-header .tag {
  display: inline-block;
  background: rgba(151,175,72,0.1);
  color: var(--color-primary-dark);
  font-size: 0.7rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1.5px; padding: 6px 14px; border-radius: 50px;
  margin-bottom: 16px;
}
.section-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 400; color: var(--color-navy); margin-bottom: 16px;
}
.section-header p { color: var(--color-text-light); font-size: 1.02rem; line-height: 1.7; }

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px; align-items: center;
}
.about-image {
  position: relative; border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-xl);
}
.about-image img { width: 100%; height: 520px; object-fit: cover; display: block; }
.about-image .badge {
  position: absolute; bottom: 20px; left: 20px;
  background: var(--color-navy); color: #fff;
  padding: 10px 18px; border-radius: 8px;
  font-size: 0.8rem; font-weight: 600;
  backdrop-filter: blur(8px);
  background: rgba(38,50,72,0.85);
}
.about-content h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem; color: var(--color-navy); margin-bottom: 6px;
}
.about-content .role {
  color: var(--color-primary); font-weight: 600;
  font-size: 0.9rem; margin-bottom: 24px;
  letter-spacing: 0.3px;
}
.about-content p {
  color: var(--color-text-light);
  margin-bottom: 16px; line-height: 1.8; font-size: 1.02rem;
}
.about-content .slogan-block {
  background: linear-gradient(135deg, var(--color-navy), var(--color-secondary));
  color: #fff; padding: 20px 24px; border-radius: var(--radius);
  margin-top: 24px; font-family: var(--font-heading);
  font-size: 1rem; font-style: italic; line-height: 1.5;
  box-shadow: var(--shadow-md);
}

.team-divider {
  width: 80px; height: 3px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
  margin: 48px auto; border-radius: 3px;
}

/* Partners */
.partners-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px; align-items: center;
}
.partners-image {
  border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-lg);
}
.partners-image img { width: 100%; display: block; }
.partners-content h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem; color: var(--color-navy); margin-bottom: 16px;
}
.partners-content p {
  color: var(--color-text-light);
  line-height: 1.8; font-size: 1.02rem; margin-bottom: 12px;
}
.partners-content .highlight-text {
  color: var(--color-secondary); font-weight: 600;
}
.partners-badges {
  display: flex; gap: 12px; flex-wrap: wrap; margin-top: 20px;
}
.partners-badges span {
  display: flex; align-items: center; gap: 6px;
  background: rgba(151,175,72,0.08);
  color: var(--color-primary-dark);
  padding: 8px 14px; border-radius: 50px;
  font-size: 0.82rem; font-weight: 600;
}
.partners-logos {
  margin-top: 48px; padding: 32px 0;
  border-top: 1px solid rgba(0,0,0,0.06);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.partners-logos-inner {
  display: flex; justify-content: center; align-items: center;
  gap: 48px; flex-wrap: wrap;
}
.partner-logo-item {
  height: 60px; display: flex; align-items: center;
  opacity: 0.7; transition: opacity 0.3s ease;
}
.partner-logo-item:hover { opacity: 1; }
.partner-logo-item img {
  max-height: 100%; width: auto; max-width: 160px;
  object-fit: contain; filter: grayscale(30%);
  transition: filter 0.3s ease;
}
.partner-logo-item:hover img { filter: grayscale(0%); }

.partners-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.partner-value-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  transition: var(--transition);
}
.partner-value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.partner-value-card .pv-icon { font-size: 2.5rem; display: block; margin-bottom: 16px; }
.partner-value-card h4 { font-size: 1.1rem; color: var(--color-navy); margin-bottom: 8px; }
.partner-value-card p { font-size: 0.88rem; color: var(--color-text-light); line-height: 1.6; }

/* Operations Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-item {
  position: relative; border-radius: var(--radius);
  overflow: hidden; cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  aspect-ratio: 4/3;
}
.gallery-item:hover { transform: scale(1.02); box-shadow: var(--shadow-md); }
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: var(--transition);
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; aspect-ratio: auto; }

/* Lightbox */
.lightbox {
  display: none; position: fixed; z-index: 2000;
  left: 0; top: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(4px);
  align-items: center; justify-content: center;
  cursor: pointer;
  padding: 40px;
}
.lightbox.open { display: flex; }
.lightbox-content {
  max-width: 90%; max-height: 85vh;
  object-fit: contain; border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.lightbox-close {
  position: absolute; top: 20px; right: 30px;
  color: #fff; font-size: 3rem; font-weight: 300;
  cursor: pointer; transition: 0.2s; line-height: 1;
  z-index: 2001;
}
.lightbox-close:hover { opacity: 0.7; }

/* Products */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.product-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--color-border);
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.product-card-image {
  height: 200px; overflow: hidden;
  background: var(--color-section-alt);
  cursor: pointer;
}
.product-card-image:hover img { transform: scale(1.05); }
.product-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.product-card-body { padding: 20px; }
.product-card-body h4 { font-size: 1.05rem; color: var(--color-navy); margin-bottom: 4px; }
.product-card-body p { font-size: 0.85rem; color: var(--color-text-light); }

/* Global Presence */
.global-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.global-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  transition: var(--transition);
}
.global-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.global-card .flag { font-size: 2.8rem; margin-bottom: 16px; display: block; }
.global-card h4 { font-size: 1.15rem; color: var(--color-navy); margin-bottom: 8px; }
.global-card p { color: var(--color-text-light); font-size: 0.88rem; line-height: 1.6; }
.global-map { margin-top: 40px; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.global-map img { width: 100%; display: block; }
.leaflet-popup-content { font-family: var(--font-body); font-size: 0.9rem; }
.leaflet-popup-content strong { color: var(--color-navy); }

/* Video */
.video-wrapper {
  max-width: 900px; margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-xl);
  background: #000; position: relative;
}
.video-wrapper video { width: 100%; display: block; }

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.contact-list { display: flex; flex-direction: column; gap: 20px; }
.contact-item {
  display: flex; align-items: center; gap: 16px;
  color: var(--color-text);
  transition: var(--transition);
  padding: 12px 16px;
  border-radius: var(--radius);
  background: var(--color-section-alt);
}
.contact-item:hover { background: rgba(151,175,72,0.08); color: var(--color-primary); }
.contact-item .icon {
  width: 44px; height: 44px;
  background: #fff;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}
.contact-item .label { font-size: 0.85rem; color: var(--color-text-light); }
.contact-item .value { font-weight: 500; }
.contact-whatsapp-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: #25D366; color: #fff;
  padding: 16px 36px; border-radius: 50px;
  font-weight: 600; font-size: 0.95rem;
  transition: var(--transition); margin-top: 8px;
  box-shadow: 0 4px 15px rgba(37,211,102,0.25);
}
.contact-whatsapp-btn:hover { background: #1da851; transform: translateY(-2px); box-shadow: 0 8px 25px rgba(37,211,102,0.35); }
.contact-form {
  background: #fff; padding: 36px; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md); border: 1px solid var(--color-border);
}
.contact-form input,
.contact-form textarea {
  width: 100%; padding: 14px 16px;
  border: 1px solid var(--color-border);
  border-radius: 8px; font-family: var(--font-body);
  font-size: 0.93rem; transition: var(--transition);
  margin-bottom: 14px;
  background: var(--color-section-alt);
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none; border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(151,175,72,0.12);
}
.contact-form textarea { min-height: 120px; resize: vertical; }
.captcha-field { margin-bottom: 14px; }
.captcha-field label { display: block; font-size: 0.93rem; color: var(--color-text); margin-bottom: 6px; font-weight: 500; }
.contact-form button {
  width: 100%; padding: 16px;
  background: var(--color-secondary); color: #fff;
  border: none; border-radius: 8px;
  font-size: 1rem; font-weight: 600; cursor: pointer;
  transition: var(--transition);
}
.contact-form button:hover { background: var(--color-secondary-light); }
.form-success {
  display: none; text-align: center;
  padding: 20px; color: var(--color-primary);
  font-weight: 500;
}
.form-success.show { display: block; }

/* Footer */
.footer {
  background: var(--color-navy);
  color: rgba(255,255,255,0.6);
  padding: 60px 0 40px;
}
.footer-inner { text-align: center; }
.footer-logo { height: 51px; margin-bottom: 16px; opacity: 0.7; }
.footer .slogan-text {
  color: var(--color-primary);
  font-family: var(--font-heading);
  font-size: 0.95rem; font-style: italic;
  margin-bottom: 24px; opacity: 0.9;
}
.footer-divider {
  width: 60px; height: 1px;
  background: rgba(255,255,255,0.15);
  margin: 24px auto;
}
.footer p { font-size: 0.82rem; margin-bottom: 6px; }
.footer .cronos {
  color: rgba(255,255,255,0.4);
  font-size: 0.78rem; margin-top: 16px;
}
.footer .cronos a { color: var(--color-primary); transition: var(--transition); }
.footer .cronos a:hover { opacity: 0.8; }

/* Floating buttons */
.floating-buttons {
  position: fixed;
  bottom: calc(24px + env(safe-area-inset-bottom, 0px));
  right: calc(24px + env(safe-area-inset-right, 0px));
  z-index: 10000;
  display: flex;
  flex-direction: column;
  gap: 12px;
  pointer-events: none;
}
.floating-buttons > * { pointer-events: auto; }

.floating-whatsapp {
  background: #25D366; color: #fff;
  width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  text-decoration: none; transition: var(--transition);
  touch-action: manipulation;
}
.floating-whatsapp:hover { transform: scale(1.1); box-shadow: 0 6px 30px rgba(37,211,102,0.5); }

.floating-chat {
  background: var(--color-secondary); color: #fff;
  width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; cursor: pointer;
  box-shadow: 0 4px 20px rgba(43,78,115,0.35);
  transition: var(--transition); border: none;
  touch-action: manipulation;
}
.floating-chat:hover { transform: scale(1.1); background: var(--color-secondary-light); }
.chat-panel {
  position: fixed; bottom: 160px; right: 24px;
  width: 380px; max-height: 520px;
  background: #fff; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl); z-index: 998;
  display: none; flex-direction: column;
  overflow: hidden; border: 1px solid var(--color-border);
}
.chat-panel.open { display: flex; animation: slideUp 0.3s ease; }
@keyframes slideUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.chat-header {
  background: var(--color-secondary); color: #fff;
  padding: 16px 20px;
}
.chat-header h4 { font-size: 1rem; margin-bottom: 2px; }
.chat-header p { font-size: 0.8rem; opacity: 0.75; }
.chat-messages {
  flex: 1; padding: 16px; overflow-y: auto;
  max-height: 320px; min-height: 220px;
  background: #fafafa;
}
.chat-message { margin-bottom: 12px; display: flex; }
.chat-message.bot { justify-content: flex-start; }
.chat-message.user { justify-content: flex-end; }
.chat-message .bubble {
  max-width: 85%; padding: 10px 16px;
  border-radius: 14px;
  font-size: 0.88rem; line-height: 1.5;
}
.chat-message.bot .bubble {
  background: #fff; color: var(--color-text);
  border-bottom-left-radius: 4px;
  box-shadow: var(--shadow-sm);
}
.chat-message.user .bubble {
  background: var(--color-secondary); color: #fff;
  border-bottom-right-radius: 4px;
}
.chat-input-area {
  display: flex; padding: 12px 16px;
  border-top: 1px solid var(--color-border);
  gap: 8px; background: #fff;
}
.chat-input-area input {
  flex: 1; padding: 10px 14px;
  border: 1px solid var(--color-border);
  border-radius: 8px; font-size: 0.9rem;
  font-family: var(--font-body);
}
.chat-input-area input:focus { outline: none; border-color: var(--color-secondary); }
.chat-input-area button {
  padding: 10px 18px;
  background: var(--color-secondary); color: #fff;
  border: none; border-radius: 8px; cursor: pointer;
  font-weight: 600; transition: var(--transition);
  white-space: nowrap;
}
.chat-input-area button:hover { background: var(--color-secondary-light); }

/* Animations */
.fade-in {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-left {
  opacity: 0; transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in-left.visible { opacity: 1; transform: translateX(0); }
.fade-in-right {
  opacity: 0; transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in-right.visible { opacity: 1; transform: translateX(0); }
.fade-in-scale {
  opacity: 0; transform: scale(0.9);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in-scale.visible { opacity: 1; transform: scale(1); }

/* Staggered animations */
.stagger-children > .fade-in:nth-child(1) { transition-delay: 0s; }
.stagger-children > .fade-in:nth-child(2) { transition-delay: 0.1s; }
.stagger-children > .fade-in:nth-child(3) { transition-delay: 0.2s; }
.stagger-children > .fade-in:nth-child(4) { transition-delay: 0.3s; }
.stagger-children > .fade-in:nth-child(5) { transition-delay: 0.4s; }
.stagger-children > .fade-in:nth-child(6) { transition-delay: 0.5s; }
.stagger-children > .fade-in:nth-child(7) { transition-delay: 0.6s; }

/* Typing effect */
.typing-line {
  display: inline-block; overflow: hidden;
  white-space: nowrap; border-right: 2px solid var(--color-primary);
  animation: typing 2.5s steps(40) 0.5s forwards, blink 1s step-end infinite;
  width: 0; max-width: fit-content;
}
@keyframes typing { to { width: 100%; } }
@keyframes blink { 50% { border-color: transparent; } }

/* Parallax sections */
.parallax-section {
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}

/* Card hover lift */
.hover-lift { transition: var(--transition); }
.hover-lift:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); }

/* Gradient text animation */
.gradient-text-anim {
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent-gold), var(--color-primary));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s linear infinite;
}
@keyframes shimmer { to { background-position: 200% center; } }

/* Reveal counters */
.stat-number {
  font-family: var(--font-heading);
  font-size: 2.5rem; font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
}

/* Responsive */
@media (max-width: 992px) {
  .hero h1 .highlight { font-size: clamp(1.5rem, 6vw, 2.4rem); }
  .section-header h2 { font-size: clamp(1.5rem, 4vw, 2rem); }
  .section { padding: 80px 0; }
}

@media (max-width: 768px) {
  .nav {
    display: none; position: fixed; top: 72px; left: 0; right: 0;
    background: #fff; flex-direction: column;
    padding: 24px; gap: 20px;
    border-bottom: 1px solid var(--color-border);
    box-shadow: var(--shadow-lg);
  }
  .nav.open { display: flex; }
  .menu-toggle { display: flex; }

  .section { padding: 64px 0; }
  .section-header { margin-bottom: 32px; }
  .section-header p { font-size: 0.93rem; }

  .hero h1 { font-size: clamp(1.2rem, 5vw, 1.8rem); }
  .hero h1 .highlight { font-size: clamp(1.4rem, 7vw, 2rem); }
  .hero p { font-size: 0.9rem; max-width: 100%; margin: 16px auto 28px; }
  .hero-cta { padding: 14px 32px; font-size: 0.9rem; }
  .hero .container { padding: 40px 16px; }
  .hero-logo { height: 64px; margin-bottom: 20px; }
  .hero-scroll { display: none; }

  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-image img { height: 320px; }
  .about-content h3 { font-size: 1.3rem; }
  .about-content p { font-size: 0.93rem; }

  .partners-grid { grid-template-columns: 1fr; gap: 32px; }
  .partners-content h3 { font-size: 1.2rem; }
  .partners-content p { font-size: 0.93rem; }
  .partners-values { grid-template-columns: 1fr; gap: 16px; }
  .partners-logos-inner { gap: 32px; }
  .partner-logo-item { height: 48px; }
  .partner-logo-item img { max-width: 120px; }

  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 1; }

  .products-grid { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; }
  .product-card-image { height: 170px; }

  .global-grid { grid-template-columns: 1fr; gap: 16px; }
  .global-card { padding: 24px 20px; }
  #alimerica-map { height: 300px !important; }

  .video-wrapper { border-radius: var(--radius); }

  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .contact-form { padding: 28px; }

  .chat-panel {
    width: calc(100% - 32px); right: 16px;
    bottom: 160px; max-height: 450px;
  }

  .hero-badges { flex-wrap: wrap; gap: 12px; justify-content: center; }
}

@media (max-width: 600px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .gallery-item:nth-child(1) { grid-column: span 1; grid-row: span 1; }
}

@media (max-width: 480px) {
  .section { padding: 48px 0; }
  .section-header { margin-bottom: 24px; }

  .hero { min-height: 100vh; min-height: 100dvh; }
  .hero-logo { height: 48px; margin-bottom: 16px; }
  .hero h1 { font-size: clamp(1rem, 5.5vw, 1.4rem); }
  .hero h1 .highlight { font-size: clamp(1.2rem, 7vw, 1.8rem); }
  .hero p { font-size: 0.85rem; margin: 12px auto 24px; }
  .hero-cta { padding: 12px 28px; font-size: 0.85rem; gap: 8px; }
  .hero-badges span { font-size: 0.75rem; }

  .about-image img { height: 220px; }
  .about-content h3 { font-size: 1.1rem; }
  .about-content .role { font-size: 0.8rem; margin-bottom: 16px; }
  .about-content p { font-size: 0.88rem; }
  .about-content .slogan-block { padding: 16px 18px; font-size: 0.9rem; }

  .partner-value-card { padding: 24px 16px; }
  .partner-value-card .pv-icon { font-size: 2rem; }
  .partners-logos { margin-top: 32px; padding: 24px 0; }
  .partners-logos-inner { gap: 24px; }
  .partner-logo-item { height: 40px; }
  .partner-logo-item img { max-width: 100px; }

  .products-grid { grid-template-columns: 1fr; gap: 14px; }
  .product-card-image { height: 180px; }

  #alimerica-map { height: 240px !important; }

  .contact-form { padding: 20px; }
  .contact-item { padding: 10px 12px; }
  .contact-item .icon { width: 36px; height: 36px; font-size: 1rem; }

  .footer { padding: 40px 0 24px; }
  .footer .slogan-text { font-size: 0.85rem; }

  .logo span { display: none; }

  .floating-buttons { gap: 8px; }
  .floating-whatsapp { width: 48px; height: 48px; font-size: 1.3rem; }
  .floating-chat { width: 48px; height: 48px; font-size: 1.2rem; }
  .chat-panel { bottom: 140px; max-height: 400px; }
}

/* Splash Screen */
#splash {
  position: fixed; inset: 0; z-index: 99999;
  background: var(--color-navy);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 1.2s ease, transform 1.2s ease, visibility 1.2s ease;
}
#splash.hidden {
  opacity: 0; transform: scale(1.05); visibility: hidden; pointer-events: none;
}
.splash-content { text-align: center; }
.splash-logo {
  height: 160px;
  animation: splashLogo 2.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
@keyframes splashLogo {
  0% { transform: scale(0.2); opacity: 0; filter: brightness(0.4); }
  40% { transform: scale(1.1); opacity: 1; filter: brightness(1.3); }
  70% { transform: scale(0.95); opacity: 1; filter: brightness(1.1); }
  100% { transform: scale(1); opacity: 1; filter: brightness(1); }
}
.splash-loader {
  margin: 40px auto 0;
  width: 40px; height: 40px;
  border: 3px solid rgba(151,175,72,0.2);
  border-top-color: var(--color-primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite, splashFadeIn 0.6s ease 1.8s forwards;
  opacity: 0;
}
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes splashFadeIn { to { opacity: 1; } }
