/* ============================================
   ECOTECH THEME — "Fluxo Verde" Biomorfismo Digital
   Cores: Verde-limão (#8BC34A), Azul-marinho (#1A2744), Verde escuro (#2E7D32)
   Fontes: Outfit (títulos), Source Sans 3 (corpo)
   ============================================ */

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Source Sans 3', 'Source Sans Pro', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #374151;
  background: #fafaf5;
  line-height: 1.6;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', system-ui, sans-serif;
  line-height: 1.1;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color 0.2s; }

/* === CONTAINER === */
.eco-container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 640px) {
  .eco-container { padding-left: 1.5rem; padding-right: 1.5rem; }
}
@media (min-width: 1024px) {
  .eco-container { padding-left: 2rem; padding-right: 2rem; max-width: 1280px; }
}

/* === SCROLLBAR === */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #f1f5f0; }
::-webkit-scrollbar-thumb { background: #8BC34A; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #689F38; }

/* ============================================
   HEADER
   ============================================ */
.eco-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all 0.3s;
}
.eco-header.scrolled {
  background: rgba(255,255,255,0.95);
  box-shadow: 0 4px 20px rgba(21,78,32,0.05);
}
.eco-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.eco-header-logo img { height: 56px; width: auto; }
@media (min-width: 1024px) {
  .eco-header-inner { height: 80px; }
  .eco-header-logo img { height: 64px; }
}

/* Nav */
.eco-nav { display: none; align-items: center; gap: 4px; }
@media (min-width: 1024px) { .eco-nav { display: flex; } }
.eco-nav a {
  padding: 8px 16px;
  font-size: 15px;
  font-weight: 500;
  color: #1A2744;
  position: relative;
}
.eco-nav a:hover { color: #4CAF50; }
.eco-nav a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 0; height: 2px;
  background: #8BC34A;
  border-radius: 999px;
  transition: width 0.3s;
}
.eco-nav a:hover::after { width: 75%; }

/* CTA Button */
.eco-btn-cta {
  display: none;
  align-items: center;
  gap: 8px;
  background: #2E7D32;
  color: #fff;
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
}
.eco-btn-cta:hover {
  background: #1B5E20;
  box-shadow: 0 8px 20px rgba(46,125,50,0.25);
  transform: translateY(-2px);
  color: #fff;
}
@media (min-width: 1024px) { .eco-btn-cta { display: inline-flex; } }

/* Mobile Menu Toggle */
.eco-mobile-toggle {
  display: block;
  padding: 8px;
  background: none;
  border: none;
  color: #1A2744;
  cursor: pointer;
  font-size: 24px;
}
@media (min-width: 1024px) { .eco-mobile-toggle { display: none; } }

/* Mobile Menu */
.eco-mobile-menu {
  display: none;
  background: #fff;
  padding: 16px;
  border-top: 1px solid #e8f5e9;
}
.eco-mobile-menu.active { display: block; }
.eco-mobile-menu a {
  display: block;
  padding: 12px 16px;
  color: #1A2744;
  font-weight: 500;
  border-radius: 8px;
  transition: all 0.2s;
}
.eco-mobile-menu a:hover { color: #4CAF50; background: #f0f7ec; }
.eco-mobile-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
  background: #2E7D32;
  color: #fff;
  padding: 12px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
}
@media (min-width: 1024px) { .eco-mobile-menu { display: none !important; } }

/* ============================================
   HERO
   ============================================ */
.eco-hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.eco-hero-bg {
  position: absolute;
  inset: 0;
}
.eco-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.eco-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10,31,10,0.85), rgba(26,39,68,0.70), transparent);
}
.eco-hero-content {
  position: relative;
  z-index: 10;
  padding-top: 112px;
  padding-bottom: 80px;
}
.eco-hero-content .max-w { max-width: 768px; }
.eco-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(139,195,74,0.2);
  border: 1px solid rgba(139,195,74,0.4);
  border-radius: 999px;
  padding: 8px 16px;
  margin-bottom: 24px;
}
.eco-hero-badge span {
  color: #8BC34A;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.eco-hero-badge svg { color: #8BC34A; width: 16px; height: 16px; }
.eco-hero h1 {
  font-size: 2.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 24px;
}
.eco-hero h1 span { color: #8BC34A; }
@media (min-width: 640px) { .eco-hero h1 { font-size: 3rem; } }
@media (min-width: 1024px) { .eco-hero h1 { font-size: 3.5rem; } }
@media (min-width: 1280px) { .eco-hero h1 { font-size: 3.75rem; } }
.eco-hero-desc {
  font-size: 1.125rem;
  color: #e5e7eb;
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 640px;
}
@media (min-width: 640px) { .eco-hero-desc { font-size: 1.25rem; } }

/* Hero Buttons */
.eco-hero-buttons { display: flex; flex-direction: column; gap: 16px; }
@media (min-width: 640px) { .eco-hero-buttons { flex-direction: row; } }
.eco-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #8BC34A;
  color: #0a1f0a;
  padding: 16px 32px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 700;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
}
.eco-btn-primary:hover {
  background: #7CB342;
  box-shadow: 0 12px 24px rgba(139,195,74,0.25);
  transform: translateY(-2px);
  color: #0a1f0a;
}
.eco-btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 2px solid rgba(255,255,255,0.4);
  color: #fff;
  padding: 16px 32px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s;
  background: transparent;
}
.eco-btn-outline:hover {
  border-color: rgba(139,195,74,0.6);
  background: rgba(255,255,255,0.1);
  color: #fff;
}

/* Hero Stats */
.eco-hero-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 64px;
}
@media (min-width: 1024px) {
  .eco-hero-stats { grid-template-columns: repeat(4, 1fr); gap: 24px; }
}
.eco-stat-card {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 16px;
  padding: 20px;
  text-align: center;
}
.eco-stat-card .number {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #8BC34A;
}
@media (min-width: 640px) { .eco-stat-card .number { font-size: 1.875rem; } }
.eco-stat-card .label { font-size: 14px; color: #d1d5db; margin-top: 4px; }

/* Hero Wave */
.eco-hero-wave {
  position: absolute;
  bottom: 0; left: 0; right: 0;
}
.eco-hero-wave svg { width: 100%; height: auto; display: block; }

/* Decorative blobs */
.eco-blob-1 {
  position: absolute;
  top: 80px; right: 40px;
  width: 288px; height: 288px;
  background: rgba(139,195,74,0.1);
  border-radius: 50%;
  filter: blur(48px);
}
.eco-blob-2 {
  position: absolute;
  bottom: 80px; left: 40px;
  width: 384px; height: 384px;
  background: rgba(76,175,80,0.08);
  border-radius: 50%;
  filter: blur(48px);
}

/* ============================================
   SECTIONS COMMON
   ============================================ */
.eco-section { padding: 80px 0; }
@media (min-width: 1024px) { .eco-section { padding: 112px 0; } }
.eco-section-light { background: #fafaf5; }
.eco-section-white { background: #fff; }
.eco-section-green { background: #f0f7ec; }

.eco-section-label {
  display: inline-block;
  color: #4CAF50;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}
.eco-section-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: #1A2744;
  margin-bottom: 20px;
}
.eco-section-title span { color: #2E7D32; }
@media (min-width: 640px) { .eco-section-title { font-size: 2.25rem; } }
@media (min-width: 1024px) { .eco-section-title { font-size: 3rem; } }
.eco-section-desc {
  color: #6b7280;
  font-size: 1.125rem;
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.7;
}
.text-center { text-align: center; }

/* ============================================
   WAVE DIVIDERS
   ============================================ */
.eco-wave { width: 100%; overflow: hidden; line-height: 0; }
.eco-wave svg { width: 100%; height: auto; display: block; }
.eco-wave-flip { transform: rotate(180deg); }

/* ============================================
   SERVICES — Featured Cards
   ============================================ */
.eco-featured-grid {
  display: grid;
  gap: 24px;
  margin-bottom: 64px;
}
@media (min-width: 768px) {
  .eco-featured-grid { grid-template-columns: repeat(3, 1fr); }
}
.eco-featured-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 288px;
}
@media (min-width: 1024px) { .eco-featured-card { height: 320px; } }
.eco-featured-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.eco-featured-card:hover img { transform: scale(1.05); }
.eco-featured-card .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,31,10,0.9), rgba(10,31,10,0.4), transparent);
}
.eco-featured-card .content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px;
}
.eco-featured-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.eco-featured-card p { color: #d1d5db; font-size: 14px; line-height: 1.6; }

/* Service Category Header */
.eco-cat-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}
.eco-cat-icon {
  width: 40px; height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.eco-cat-icon.navy { background: #1A2744; }
.eco-cat-icon.green { background: #2E7D32; }
.eco-cat-icon svg { width: 20px; height: 20px; }
.eco-cat-title { font-size: 1.5rem; font-weight: 700; color: #1A2744; }
.eco-cat-desc { color: #6b7280; font-size: 14px; margin-left: 52px; margin-bottom: 40px; }

/* Service Cards Grid */
.eco-services-grid {
  display: grid;
  gap: 20px;
}
@media (min-width: 640px) { .eco-services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .eco-services-grid { grid-template-columns: repeat(3, 1fr); } }
.eco-service-card {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  border: 1px solid rgba(139,195,74,0.15);
  transition: all 0.3s;
  height: 100%;
}
.eco-service-card:hover {
  border-color: rgba(139,195,74,0.4);
  box-shadow: 0 12px 24px rgba(21,78,32,0.05);
  transform: translateY(-4px);
}
.eco-service-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: transform 0.3s;
}
.eco-service-card:hover .eco-service-icon { transform: scale(1.1); }
.eco-service-icon svg { width: 24px; height: 24px; color: #2E7D32; }
.eco-service-icon.bg-green-50 { background: #f0fdf4; }
.eco-service-icon.bg-emerald-50 { background: #ecfdf5; }
.eco-service-icon.bg-teal-50 { background: #f0fdfa; }
.eco-service-icon.bg-lime-50 { background: #f7fee7; }
.eco-service-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #1A2744;
  margin-bottom: 8px;
}
.eco-service-card p { color: #6b7280; font-size: 14px; line-height: 1.6; }

/* ============================================
   TRAININGS
   ============================================ */
.eco-trainings { background: #1A2744; padding: 64px 0; }
@media (min-width: 1024px) { .eco-trainings { padding: 96px 0; } }
.eco-trainings-grid {
  display: grid;
  gap: 48px;
  align-items: center;
}
@media (min-width: 1024px) {
  .eco-trainings-grid { grid-template-columns: 1fr 1fr; gap: 64px; }
}
.eco-trainings-img {
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 32px;
  position: relative;
}
.eco-trainings-img img { width: 100%; height: 256px; object-fit: cover; }
@media (min-width: 1024px) { .eco-trainings-img img { height: 320px; } }
.eco-trainings-img .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,39,68,0.6), transparent);
}
.eco-trainings h2 { color: #fff; margin-bottom: 20px; }
.eco-trainings h2 span { color: #8BC34A; }
.eco-trainings .desc { color: #9ca3af; font-size: 16px; line-height: 1.7; margin-bottom: 24px; }
.eco-trainings .info-box {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 16px;
}
.eco-trainings .info-box svg { color: #8BC34A; width: 20px; height: 20px; flex-shrink: 0; margin-top: 2px; }
.eco-trainings .info-box p { color: #d1d5db; font-size: 14px; line-height: 1.6; }

/* NR Cards */
.eco-nr-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.eco-nr-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 16px;
  transition: all 0.3s;
}
.eco-nr-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(139,195,74,0.3);
}
.eco-nr-card .nr-code {
  color: #8BC34A;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 4px;
}
.eco-nr-card h4 { color: #fff; font-weight: 600; font-size: 14px; margin-bottom: 2px; }
.eco-nr-card p { color: #6b7280; font-size: 12px; line-height: 1.5; }
.eco-nr-cta {
  grid-column: span 2;
  background: rgba(139,195,74,0.1);
  border: 1px solid rgba(139,195,74,0.2);
  border-radius: 12px;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: all 0.3s;
}
.eco-nr-cta:hover {
  background: rgba(139,195,74,0.2);
  border-color: rgba(139,195,74,0.4);
}
.eco-nr-cta span {
  color: #8BC34A;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 16px;
}
.eco-nr-cta .arrow { color: #8BC34A; font-size: 20px; transition: transform 0.3s; }
.eco-nr-cta:hover .arrow { transform: translateX(4px); }

/* ============================================
   ESOCIAL
   ============================================ */
.eco-esocial-grid {
  display: grid;
  gap: 48px;
  align-items: start;
}
@media (min-width: 1024px) {
  .eco-esocial-grid { grid-template-columns: 2fr 3fr; gap: 64px; }
}
.eco-esocial-cta {
  background: #2E7D32;
  border-radius: 16px;
  padding: 24px;
  color: #fff;
}
.eco-esocial-cta h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}
.eco-esocial-cta p { color: #bbf7d0; font-size: 14px; line-height: 1.6; margin-bottom: 16px; }

/* Event Cards */
.eco-event-card {
  border-radius: 16px;
  padding: 24px;
  transition: all 0.3s;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 16px;
}
.eco-event-card:hover { box-shadow: 0 8px 20px rgba(21,78,32,0.05); }
.eco-event-card.red { border: 1px solid #fecaca; background: rgba(254,226,226,0.5); }
.eco-event-card.blue { border: 1px solid #bfdbfe; background: rgba(219,234,254,0.5); }
.eco-event-card.amber { border: 1px solid #fde68a; background: rgba(254,243,199,0.5); }
.eco-event-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.eco-event-icon.red { background: #fee2e2; color: #ef4444; }
.eco-event-icon.blue { background: #dbeafe; color: #3b82f6; }
.eco-event-icon.amber { background: #fef3c7; color: #d97706; }
.eco-event-icon svg { width: 24px; height: 24px; }
.eco-event-code {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  color: #1A2744;
  font-size: 1.125rem;
}
.eco-event-subtitle {
  font-size: 12px;
  font-weight: 600;
  color: #6b7280;
  background: #f3f4f6;
  padding: 2px 8px;
  border-radius: 999px;
  display: inline-block;
  margin-left: 8px;
}
.eco-event-card h3 {
  font-weight: 600;
  color: #1A2744;
  font-size: 16px;
  margin: 4px 0 8px;
}
.eco-event-card p { color: #6b7280; font-size: 14px; line-height: 1.6; }

/* ============================================
   ABOUT
   ============================================ */
.eco-about-grid {
  display: grid;
  gap: 48px;
  align-items: center;
  margin-bottom: 80px;
}
@media (min-width: 1024px) {
  .eco-about-grid { grid-template-columns: 1fr 1fr; gap: 80px; }
}
.eco-about-visual {
  position: relative;
}
.eco-about-visual .deco-1 {
  position: absolute;
  top: -16px; left: -16px;
  width: 100%; height: 100%;
  background: rgba(139,195,74,0.1);
  border-radius: 24px;
}
.eco-about-visual .deco-2 {
  position: absolute;
  bottom: -16px; right: -16px;
  width: 100%; height: 100%;
  background: rgba(46,125,50,0.05);
  border-radius: 24px;
}
.eco-about-card {
  position: relative;
  background: linear-gradient(135deg, #1A2744, #2E7D32);
  border-radius: 24px;
  padding: 32px;
  text-align: center;
}
@media (min-width: 1024px) { .eco-about-card { padding: 48px; } }
.eco-about-card img {
  width: 192px;
  margin: 0 auto 32px;
  filter: brightness(0) invert(1);
}
.eco-about-card .big-number {
  font-family: 'Outfit', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: #8BC34A;
  margin-bottom: 8px;
}
@media (min-width: 1024px) { .eco-about-card .big-number { font-size: 3.75rem; } }
.eco-about-card .big-label { color: #d1d5db; font-size: 1.125rem; }
.eco-about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}
.eco-about-stat {
  background: rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 16px;
  text-align: center;
}
.eco-about-stat .number {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: #fff;
}
.eco-about-stat .label { color: #9ca3af; font-size: 12px; margin-top: 4px; }

.eco-about-text p {
  color: #6b7280;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 20px;
}
.eco-btn-green {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #2E7D32;
  color: #fff;
  padding: 12px 24px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  transition: all 0.3s;
}
.eco-btn-green:hover {
  background: #1B5E20;
  box-shadow: 0 8px 20px rgba(46,125,50,0.25);
  color: #fff;
}

/* Differentials */
.eco-diff-grid {
  display: grid;
  gap: 24px;
}
@media (min-width: 640px) { .eco-diff-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .eco-diff-grid { grid-template-columns: repeat(4, 1fr); } }
.eco-diff-card { text-align: center; }
.eco-diff-icon {
  width: 64px; height: 64px;
  margin: 0 auto 16px;
  background: rgba(139,195,74,0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
.eco-diff-card:hover .eco-diff-icon {
  background: rgba(139,195,74,0.2);
  transform: scale(1.1);
}
.eco-diff-icon svg { width: 28px; height: 28px; color: #2E7D32; }
.eco-diff-card h4 {
  font-weight: 700;
  color: #1A2744;
  font-size: 1.125rem;
  margin-bottom: 8px;
}
.eco-diff-card p { color: #6b7280; font-size: 14px; line-height: 1.6; }

/* ============================================
   BLOG
   ============================================ */
.eco-blog-grid {
  display: grid;
  gap: 24px;
}
@media (min-width: 640px) { .eco-blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .eco-blog-grid { grid-template-columns: repeat(3, 1fr); } }
.eco-blog-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(139,195,74,0.15);
  transition: all 0.3s;
}
.eco-blog-card:hover {
  box-shadow: 0 12px 24px rgba(21,78,32,0.05);
  transform: translateY(-4px);
}
.eco-blog-card-img {
  height: 200px;
  overflow: hidden;
}
.eco-blog-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.eco-blog-card:hover .eco-blog-card-img img { transform: scale(1.05); }
.eco-blog-card-body { padding: 20px; }
.eco-blog-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 13px;
}
.eco-blog-cat {
  background: #f0fdf4;
  color: #2E7D32;
  padding: 4px 12px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 12px;
}
.eco-blog-date { color: #9ca3af; }
.eco-blog-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #1A2744;
  margin-bottom: 8px;
  line-height: 1.3;
}
.eco-blog-card .excerpt { color: #6b7280; font-size: 14px; line-height: 1.6; }
.eco-blog-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
}
.eco-blog-tag {
  font-size: 11px;
  color: #6b7280;
  background: #f3f4f6;
  padding: 2px 8px;
  border-radius: 4px;
}

/* Blog CTA Banner */
.eco-blog-cta {
  margin-top: 48px;
  background: linear-gradient(135deg, #1A2744, #2E7D32);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  color: #fff;
}
@media (min-width: 1024px) { .eco-blog-cta { padding: 48px; } }
.eco-blog-cta h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}
.eco-blog-cta p { color: #d1d5db; font-size: 16px; margin-bottom: 24px; }

/* ============================================
   CONTACT
   ============================================ */
.eco-contact-grid {
  display: grid;
  gap: 32px;
}
@media (min-width: 1024px) {
  .eco-contact-grid { grid-template-columns: 3fr 2fr; gap: 48px; }
}
.eco-contact-form {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 8px 20px rgba(21,78,32,0.05);
  border: 1px solid rgba(139,195,74,0.15);
}
@media (min-width: 1024px) { .eco-contact-form { padding: 32px; } }
.eco-contact-form h3 {
  font-weight: 700;
  color: #1A2744;
  font-size: 1.25rem;
  margin-bottom: 24px;
}
.eco-form-row {
  display: grid;
  gap: 16px;
  margin-bottom: 16px;
}
@media (min-width: 640px) { .eco-form-row { grid-template-columns: 1fr 1fr; } }
.eco-form-group { margin-bottom: 0; }
.eco-form-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #374151;
  margin-bottom: 6px;
}
.eco-form-group input,
.eco-form-group select,
.eco-form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  font-size: 14px;
  font-family: inherit;
  outline: none;
  transition: all 0.2s;
  background: #fff;
}
.eco-form-group input:focus,
.eco-form-group select:focus,
.eco-form-group textarea:focus {
  border-color: #8BC34A;
  box-shadow: 0 0 0 3px rgba(139,195,74,0.2);
}
.eco-form-group textarea { resize: none; }
.eco-form-full { margin-bottom: 16px; }
.eco-form-submit { margin-bottom: 0; }

.eco-btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #2E7D32;
  color: #fff;
  padding: 14px 32px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}
.eco-btn-submit:hover {
  background: #1B5E20;
  box-shadow: 0 8px 20px rgba(46,125,50,0.25);
}

/* Contact Info */
.eco-contact-info {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  border: 1px solid rgba(139,195,74,0.15);
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
  margin-bottom: 20px;
}
.eco-contact-info h3 {
  font-weight: 700;
  color: #1A2744;
  font-size: 1.125rem;
  margin-bottom: 20px;
}
.eco-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}
.eco-contact-item-icon {
  width: 40px; height: 40px;
  border-radius: 8px;
  background: #f0fdf4;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s;
}
.eco-contact-item:hover .eco-contact-item-icon { background: #dcfce7; }
.eco-contact-item-icon svg { width: 20px; height: 20px; color: #2E7D32; }
.eco-contact-item .title { font-size: 14px; font-weight: 600; color: #1A2744; }
.eco-contact-item .value { font-size: 14px; color: #6b7280; }

/* CNPJ Card */
.eco-cnpj-card {
  background: #1A2744;
  border-radius: 16px;
  padding: 24px;
  color: #fff;
}
.eco-cnpj-card .label {
  font-size: 12px;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}
.eco-cnpj-card .value {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 12px;
}
.eco-cnpj-card .cnpj { color: #8BC34A; }

/* ============================================
   FOOTER
   ============================================ */
.eco-footer { background: #0f1b2e; color: #fff; }
.eco-footer-grid {
  display: grid;
  gap: 40px;
  padding: 56px 0;
}
@media (min-width: 640px) { .eco-footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) {
  .eco-footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 32px; padding: 72px 0; }
}
.eco-footer-brand img { height: 48px; width: auto; margin-bottom: 20px; }
.eco-footer-brand p { color: #9ca3af; font-size: 14px; line-height: 1.6; margin-bottom: 20px; }
.eco-footer-brand a { color: #9ca3af; font-size: 14px; display: inline-flex; align-items: center; gap: 8px; }
.eco-footer-brand a:hover { color: #8BC34A; }

.eco-footer h4 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}
.eco-footer ul { list-style: none; padding: 0; }
.eco-footer li { margin-bottom: 10px; }
.eco-footer li a { color: #9ca3af; font-size: 14px; transition: color 0.2s; }
.eco-footer li a:hover { color: #8BC34A; }

.eco-footer-contact a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #9ca3af;
  font-size: 14px;
  margin-bottom: 12px;
  transition: color 0.2s;
}
.eco-footer-contact a:hover { color: #8BC34A; }
.eco-footer-contact svg { width: 16px; height: 16px; flex-shrink: 0; }

.eco-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
@media (min-width: 640px) {
  .eco-footer-bottom { flex-direction: row; justify-content: space-between; }
}
.eco-footer-bottom p { color: #6b7280; font-size: 12px; }
.eco-footer-top-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #6b7280;
  font-size: 12px;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s;
}
.eco-footer-top-btn:hover { color: #8BC34A; }
.eco-footer-top-btn svg { width: 14px; height: 14px; }

/* ============================================
   WHATSAPP BUTTON
   ============================================ */
.eco-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 40;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  transition: all 0.3s;
  animation: whatsapp-pulse 2s infinite;
}
.eco-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37,211,102,0.5);
}
.eco-whatsapp svg { width: 28px; height: 28px; fill: #fff; }
@keyframes whatsapp-pulse {
  0%, 100% { box-shadow: 0 4px 16px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 24px rgba(37,211,102,0.6); }
}

/* ============================================
   ANIMATIONS
   ============================================ */
.eco-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.eco-animate.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   UTILITIES
   ============================================ */
.mb-16 { margin-bottom: 64px; }
.mb-10 { margin-bottom: 40px; }
.mb-20 { margin-bottom: 80px; }
