@font-face {
  font-family: 'Viena Numbers';
  src: local('Georgia');
  unicode-range: U+0030-0039, U+002C, U+002E, U+0025, U+002B, U+002D, U+0028, U+0029;
}

/* ══════════════ GLOBAL & UTILITIES ══════════════ */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --black: #111010;
  --anthracite: #1c1b1a;
  --charcoal: #2a2827;
  --steel: #3d3a37;
  --iron: #5c5650;
  --ash: #8a837b;
  --silver: #b5aea5;
  --bone: #e8e2d9;
  --cream: #f4f0ea;
  --warm-white: #faf8f5;
  --red: #c01e24;
  --red-dark: #9a181d;
  --red-glow: rgba(192, 30, 36, 0.15);

  --font-display: 'Viena Numbers', 'Cormorant Garamond', Georgia, serif;
  --font-number: 'Viena Numbers', Georgia, serif;
  --font-body: 'Viena Numbers', 'Outfit', system-ui, sans-serif;

  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── GREEN THEME (Sustainability) ── */
.theme-green {
  --red: #267335;
  --red-dark: #1b5025;
  --red-glow: rgba(38, 115, 53, 0.15);
}

.theme-green .page-hero-photo {
  background-image: url('bg-sustentabilidade.png');
  filter: saturate(0.6) brightness(0.3) contrast(1.1);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--warm-white);
  color: var(--charcoal);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── NOISE TEXTURE OVERLAY ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
}

/* ── REVEAL ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s var(--ease-out-expo), transform 0.9s var(--ease-out-expo);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

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

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

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

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

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

/* ── SECTION COMMONS ── */
section {
  padding: clamp(80px, 10vw, 140px) clamp(24px, 4vw, 80px);
}

.section-container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 20px;
}

.section-label::before {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--red);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 400;
  line-height: 1.15;
  color: var(--anthracite);
  margin-bottom: 20px;
}

/* Specific size for index titles if needed, but keeping it clamp-flexible */
.section-title em {
  font-style: italic;
}

.section-desc {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--ash);
  max-width: 540px;
}

p {
  line-height: 1.6rem;
}

/* ══════════════ COMPONENTS ══════════════ */

/* ── NAVIGATION ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 clamp(24px, 4vw, 80px);
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(17, 16, 16, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: background 0.5s ease, box-shadow 0.5s ease, height 0.4s ease;
}

nav.scrolled {
  background: rgba(17, 16, 16, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
  height: 64px;
}

.nav-logo svg {
  height: 36px;
  width: auto;
  transition: height 0.4s ease;
}

nav.scrolled .nav-logo svg {
  height: 30px;
}

.nav-logo svg .logo-shape {
  fill: #fff;
}

.nav-logo svg .logo-accent {
  fill: var(--red);
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
  align-items: center;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--red);
  transition: width 0.4s var(--ease-out-expo);
}

.nav-links a:hover,
.nav-links a.active {
  color: #fff;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-lang {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 5px 12px;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.nav-lang:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}

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

.nav-hamburger span {
  width: 24px;
  height: 1.5px;
  background: #fff;
  transition: all 0.3s ease;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  background: var(--red);
  border: none;
  padding: 16px 36px;
  cursor: pointer;
  transition: all 0.4s var(--ease-out-expo);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 30px rgba(192, 30, 36, 0.3);
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--warm-white);
  background: transparent;
  border: 1px solid var(--iron);
  padding: 16px 36px;
  cursor: pointer;
  transition: all 0.4s var(--ease-out-expo);
  text-decoration: none;
}

.btn-outline:hover {
  color: var(--silver);
  background-color: var(--iron);
  border-color: var(--silver);
  transform: translateY(-1px);
}

/* Dark version for light backgrounds */
.btn-outline-dark {
  color: var(--ash);
  border: 1px solid var(--bone);
}

.btn-outline-dark:hover {
  color: var(--charcoal);
  border-color: var(--silver);
}

/* ── FOOTER ── */
footer {
  background: var(--black);
  padding: clamp(60px, 6vw, 80px) clamp(24px, 4vw, 80px);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(32px, 4vw, 60px);
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-brand svg {
  height: 32px;
  margin-bottom: 20px;
}

.footer-brand p {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--warm-white);
  max-width: 280px;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ash);
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col a {
  font-size: 14px;
  font-weight: 300;
  color: var(--warm-white);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-col a:hover {
  color: var(--cream);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-copy {
  font-size: 12px;
  color: var(--warm-white);
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  font-size: 12px;
  color: var(--warm-white);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: var(--ash);
}

/* ══════════════ PAGE SPECIFIC SECTIONS ══════════════ */

/* ── HERO (INDEX) ── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: flex-end;
  background: var(--anthracite);
  overflow: hidden;
}

.hero-photo {
  position: absolute;
  inset: 0;
  background: url('hero02.jpeg') center center / cover no-repeat;
  filter: saturate(0.3) brightness(0.45) contrast(1.15);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(28, 27, 26, 0.6) 0%, transparent 50%),
    linear-gradient(to bottom, rgba(17, 16, 16, 0.2) 0%, rgba(17, 16, 16, 0.0) 40%, rgba(17, 16, 16, 0.85) 100%);
}

.hero-visual {
  position: absolute;
  inset: 0;
  background: linear-gradient(170deg, rgba(28, 24, 20, 0.5) 0%, rgba(40, 30, 22, 0.3) 50%, rgba(20, 18, 16, 0.6) 100%);
  mix-blend-mode: multiply;
}

.hero-lines {
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  opacity: 0.035;
  background: repeating-linear-gradient(-25deg, transparent, transparent 40px, rgba(255, 255, 255, 0.5) 40px, rgba(255, 255, 255, 0.5) 41px);
}

.hero-ember {
  position: absolute;
  top: 25%;
  right: 15%;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(192, 30, 36, 0.15) 0%, transparent 70%);
  filter: blur(80px);
  animation: ember-pulse 6s ease-in-out infinite alternate;
}

@keyframes ember-pulse {
  0% {
    opacity: 0.4;
    transform: scale(1);
  }

  100% {
    opacity: 0.9;
    transform: scale(1.2);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: clamp(40px, 6vw, 100px) clamp(24px, 4vw, 80px);
  padding-bottom: clamp(60px, 8vw, 120px);
  max-width: 900px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 32px;
  opacity: 0;
  animation: hero-fade-up 1s var(--ease-out-expo) 0.3s forwards;
}

.hero-tag::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--red);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 80px);
  font-weight: 400;
  line-height: 1.05;
  color: var(--cream);
  letter-spacing: -0.01em;
  margin-bottom: 28px;
  opacity: 0;
  animation: hero-fade-up 1.2s var(--ease-out-expo) 0.5s forwards;
}

.hero-title em {
  font-style: italic;
  color: var(--red);
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: clamp(16px, 1.8vw, 20px);
  font-weight: 300;
  line-height: 1.7;
  color: var(--warm-white);
  max-width: 560px;
  margin-bottom: 48px;
  opacity: 0;
  animation: hero-fade-up 1.2s var(--ease-out-expo) 0.7s forwards;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: hero-fade-up 1.2s var(--ease-out-expo) 0.9s forwards;
}

@keyframes hero-fade-up {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: hero-fade-up 1s var(--ease-out-expo) 1.3s forwards;
}

.hero-scroll span {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--iron);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--iron), transparent);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--red);
  animation: scroll-down 2s ease-in-out infinite;
}

@keyframes scroll-down {
  0% {
    top: -100%;
  }

  50% {
    top: 100%;
  }

  100% {
    top: 100%;
  }
}

/* ── PAGE HERO (INNER PAGES) ── */
.page-hero {
  position: relative;
  padding-top: 80px;
  background: var(--anthracite);
  overflow: hidden;
}

.page-hero-photo {
  position: absolute;
  inset: 0;
  background: url('bg-topo02.webp') center center / cover no-repeat;
  filter: saturate(0.4) brightness(0.35) contrast(1.1);
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(28, 27, 26, 0.6) 0%, transparent 50%),
    linear-gradient(to bottom, rgba(17, 16, 16, 0.2) 0%, rgba(17, 16, 16, 0.0) 40%, rgba(17, 16, 16, 0.85) 100%);
}

.page-hero-visual {
  position: absolute;
  inset: 0;
  background: linear-gradient(170deg, rgba(28, 24, 20, 0.5) 0%, rgba(40, 30, 22, 0.3) 50%, rgba(20, 18, 16, 0.6) 100%);
  mix-blend-mode: multiply;
}

.page-hero-ember {
  position: absolute;
  top: 20%;
  right: 10%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(192, 30, 36, 0.12) 0%, transparent 70%);
  filter: blur(60px);
  animation: ember-pulse 6s ease-in-out infinite alternate;
}

.page-hero-lines {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  opacity: 0.03;
  background: repeating-linear-gradient(-25deg, transparent, transparent 40px, rgba(255, 255, 255, 0.5) 40px, rgba(255, 255, 255, 0.5) 41px);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(60px, 8vw, 100px) clamp(24px, 4vw, 80px) clamp(50px, 6vw, 80px);
}

.page-hero-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--iron);
  margin-bottom: 28px;
  opacity: 0;
  animation: fade-up 0.8s var(--ease-out-expo) 0.2s forwards;
}

.page-hero-breadcrumb a {
  color: var(--iron);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.page-hero-breadcrumb svg {
  width: 12px;
  height: 12px;
  stroke: var(--iron);
  fill: none;
  stroke-width: 2;
}

.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(42px, 6vw, 76px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--cream);
  margin-bottom: 20px;
  opacity: 0;
  animation: fade-up 1s var(--ease-out-expo) 0.35s forwards;
}

.page-hero-title em {
  font-style: italic;
  color: var(--red);
}

.page-hero-desc {
  font-size: clamp(15px, 1.6vw, 18px);
  font-weight: 300;
  line-height: 1.7;
  color: var(--warm-white);
  max-width: 620px;
  opacity: 0;
  animation: fade-up 1s var(--ease-out-expo) 0.5s forwards;
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(25px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── CTA SECTIONS ── */
.cta {
  background: var(--warm-white);
  text-align: center;
  padding: clamp(100px, 12vw, 180px) clamp(24px, 4vw, 80px);
  position: relative;
}

.cta .section-label {
  justify-content: center;
}

.cta .section-label::before {
  display: none;
}

.cta .section-title {
  max-width: 700px;
  margin: 0 auto 20px;
}

.cta .section-desc {
  max-width: 500px;
  margin: 0 auto 48px;
}

.cta-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--bone), var(--red));
  margin: 0 auto 40px;
}

/* ── RESPONSIVE BASE ── */
@media (max-width: 1024px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

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

  .nav-hamburger {
    display: flex;
  }

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

@media (max-width: 480px) {
  .footer-top {
    grid-template-columns: 1fr;
  }
}

/* ══════════════ HOME (INDEX) SPECIFIC ══════════════ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}

.about-text .section-desc {
  margin-bottom: 40px;
}

.about-highlight {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 28px);
  font-weight: 400;
  font-style: italic;
  line-height: 1.5;
  color: var(--steel);
  border-left: 2px solid var(--red);
  padding-left: 24px;
  margin-top: 40px;
}

.about-image {
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--bone);
  overflow: hidden;
}

.about-image-inner {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--steel) 50%, var(--charcoal) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-image-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-image-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  background: linear-gradient(to top, rgba(17, 16, 16, 0.8), transparent);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

.about-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  background: var(--red);
  color: #fff;
  padding: 16px 20px;
  text-align: center;
  line-height: 1.1;
}

.about-badge-number {
  font-family: var(--font-number);
  font-size: 36px;
  font-weight: 300;
  display: block;
}

.about-badge-text {
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 4px;
  display: block;
}

.numbers {
  background: var(--anthracite);
  position: relative;
  overflow: hidden;
}

.numbers::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(90deg, transparent, transparent 200px, rgba(255, 255, 255, 0.02) 200px, rgba(255, 255, 255, 0.02) 201px);
}

.numbers .section-title {
  color: var(--cream);
}

.numbers .section-desc {
  color: var(--ash);
}

.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 60px;
  background: rgba(255, 255, 255, 0.06);
}

.number-card {
  padding: clamp(32px, 3vw, 48px);
  background: var(--anthracite);
  position: relative;
}

.number-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width 1.2s var(--ease-out-expo);
}

.number-card.visible::before {
  width: 48px;
}

.number-value {
  font-family: var(--font-number);
  font-size: clamp(42px, 4.5vw, 64px);
  font-weight: 300;
  color: var(--cream);
  line-height: 1;
  margin-bottom: 8px;
}

.number-value .unit {
  font-size: 0.45em;
  color: var(--red);
  margin-left: 4px;
  font-weight: 500;
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.number-label {
  font-size: 13px;
  font-weight: 400;
  color: var(--ash);
  line-height: 1.5;
}

.products {
  background: var(--cream);
}

.products-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
  gap: 40px;
  flex-wrap: wrap;
}

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

.product-card {
  background: var(--warm-white);
  padding: clamp(32px, 3vw, 48px);
  position: relative;
  transition: all 0.5s var(--ease-out-expo);
  cursor: pointer;
  overflow: hidden;
}

.product-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease-out-expo);
}

.product-card:hover::before {
  transform: scaleX(1);
}

.product-card:hover {
  background: #fff;
}

.product-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 28px;
  position: relative;
}

.product-icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--red);
  fill: none;
  stroke-width: 1.2;
}

.product-name {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 500;
  color: var(--anthracite);
  margin-bottom: 14px;
}

.product-desc {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--ash);
  margin-bottom: 28px;
}

.product-link {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s var(--ease-out-expo);
}

.product-link:hover {
  gap: 14px;
}

.product-link svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

.sustainability {
  background: var(--warm-white);
  position: relative;
}

.sustain-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}

.sustain-visual {
  position: relative;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sustain-circle {
  width: 80%;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid var(--bone);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.sustain-circle::before {
  content: '';
  position: absolute;
  inset: 20px;
  border-radius: 50%;
  border: 1px solid var(--bone);
}

.sustain-circle-inner {
  width: 50%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--charcoal), var(--steel));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: #fff;
  text-align: center;
  padding: 20px;
}

.sustain-circle-number {
  font-family: var(--font-number);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 300;
  line-height: 1;
}

.sustain-circle-text {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--silver);
  margin-top: 8px;
}

.sustain-orbit-item {
  position: absolute;
  background: #fff;
  border: 1px solid var(--bone);
  padding: 14px 20px;
  font-size: 12px;
  font-weight: 500;
  color: var(--steel);
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.sustain-orbit-item:nth-child(1) {
  top: 5%;
  left: 10%;
}

.sustain-orbit-item:nth-child(2) {
  top: 20%;
  right: 0;
}

.sustain-orbit-item:nth-child(3) {
  bottom: 15%;
  left: 5%;
}

.sustain-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
}

.sustain-stat {
  padding: 24px;
  border: 1px solid var(--bone);
  transition: border-color 0.3s ease;
}

.sustain-stat:hover {
  border-color: var(--red);
}

.sustain-stat-value {
  font-family: var(--font-number);
  font-size: 32px;
  font-weight: 300;
  color: var(--anthracite);
}

.sustain-stat-label {
  font-size: 13px;
  color: var(--ash);
  margin-top: 4px;
}

.certifications {
  background: var(--cream);
  text-align: center;
}

.cert-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(40px, 6vw, 80px);
  margin-top: 60px;
  flex-wrap: wrap;
}

.cert-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.cert-icon {
  width: 72px;
  height: 72px;
  border: 1px solid var(--bone);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--warm-white);
  transition: all 0.4s var(--ease-out-expo);
}

.cert-item:hover .cert-icon {
  border-color: var(--red);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.cert-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--steel);
  fill: none;
  stroke-width: 1.5;
}

.cert-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  color: var(--anthracite);
}

.cert-desc {
  font-size: 13px;
  color: var(--ash);
  max-width: 180px;
}

.recognition {
  background: var(--anthracite);
  position: relative;
  overflow: hidden;
}

.recognition::after {
  content: '';
  position: absolute;
  top: -200px;
  right: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.03);
}

.recognition .section-title {
  color: var(--cream);
}

.recognition .section-desc {
  color: var(--ash);
}

.recog-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

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

.recog-badge-inner {
  width: clamp(200px, 22vw, 280px);
  aspect-ratio: 1;
  border: 2px solid rgba(192, 30, 36, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  position: relative;
}

.recog-badge-inner::before {
  content: '';
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(192, 30, 36, 0.15);
  border-radius: 50%;
}

.recog-badge-top {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 8px;
}

.recog-badge-number {
  font-family: var(--font-number);
  font-size: clamp(64px, 8vw, 96px);
  font-weight: 300;
  color: var(--cream);
  line-height: 1;
}

.recog-badge-sub {
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ash);
  margin-top: 8px;
}

@media (max-width: 1024px) {
  .numbers-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 768px) {

  .about-grid,
  .sustain-grid,
  .recog-content {
    grid-template-columns: 1fr;
  }

  .about-image {
    max-height: 400px;
  }

  .sustain-visual {
    max-width: 400px;
    margin: 0 auto;
  }

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

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

@media (max-width: 480px) {
  .numbers-grid {
    grid-template-columns: 1fr;
  }

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

  .cert-row {
    gap: 32px;
  }
}


/* ══════════════ PRODUTO SPECIFIC ══════════════ */
.product-overview {
  background: var(--warm-white);
}

.overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 6vw, 100px);
  align-items: center;
}

.overview-visual {
  position: relative;
  aspect-ratio: 1;
  background: linear-gradient(145deg, var(--charcoal) 0%, #f5f5f5 40%, var(--steel) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.overview-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 40% 50%, rgba(192, 30, 36, 0.06), transparent 70%);
}

.gusa-piece {
  width: 55%;
  aspect-ratio: 1.3;
  position: relative;
  transform: rotate(-5deg);
}

.gusa-piece::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, transparent 50%, rgba(0, 0, 0, 0.1) 100%);
}

.overview-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  display: flex;
  gap: 12px;
}

.overview-badge-item {
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
  padding: 10px 16px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.overview-text .section-desc {
  margin-bottom: 36px;
}

.overview-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
}

.feature-item {
  padding: 24px;
  border: 1px solid var(--bone);
  transition: all 0.4s var(--ease-out-expo);
}

.feature-item:hover {
  border-color: var(--red);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.feature-icon {
  width: 32px;
  height: 32px;
  margin-bottom: 14px;
}

.feature-icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--red);
  fill: none;
  stroke-width: 1.3;
}

.feature-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  color: var(--anthracite);
  margin-bottom: 6px;
}

.feature-desc {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.6;
  color: var(--ash);
}

.differentials {
  background: var(--cream);
}

.diff-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

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

.diff-card {
  background: var(--warm-white);
  padding: clamp(28px, 3vw, 44px);
  position: relative;
  transition: all 0.5s var(--ease-out-expo);
}

.diff-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width 0.6s var(--ease-out-expo);
}

.diff-card:hover {
  background: #fff;
}

.diff-card:hover::after {
  width: 48px;
}

.diff-number {
  font-family: var(--font-number);
  font-size: 48px;
  font-weight: 300;
  color: var(--bone);
  line-height: 1;
  margin-bottom: 20px;
  transition: color 0.4s ease;
}

.diff-card:hover .diff-number {
  color: var(--red);
}

.diff-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--anthracite);
  margin-bottom: 12px;
}

.diff-desc {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--ash);
}

.product-types {
  background: var(--anthracite);
  position: relative;
  overflow: hidden;
}

.product-types::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(90deg, transparent, transparent 200px, rgba(255, 255, 255, 0.02) 200px, rgba(255, 255, 255, 0.02) 201px);
}

.product-types .section-title {
  color: var(--cream);
}

.product-types .section-desc {
  color: var(--ash);
}

.types-header {
  margin-bottom: 60px;
}

.type-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.06);
}

.type-card {
  background: var(--anthracite);
  padding: clamp(32px, 3vw, 48px);
  position: relative;
  transition: background 0.4s ease;
}

.type-card:hover {
  background: #222120;
}

.type-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 28px;
}

.type-card-icon {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(192, 30, 36, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}

.type-card:hover .type-card-icon {
  border-color: var(--red);
  background: var(--red-glow);
}

.type-card-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--red);
  fill: none;
  stroke-width: 1.5;
}

.type-card-tag {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--iron);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 4px 10px;
}

.type-card-name {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.5vw, 30px);
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 14px;
}

.type-card-desc {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--ash);
  margin-bottom: 28px;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 28px;
}

.spec-table caption {
  text-align: left;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ash);
  padding-bottom: 14px;
}

.spec-table tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.spec-table tr:last-child {
  border-bottom: none;
}

.spec-table td {
  padding: 10px 0;
  font-size: 13px;
  font-weight: 300;
  color: var(--silver);
}

.spec-table td:first-child {
  color: var(--ash);
  font-weight: 400;
  width: 45%;
}

.spec-table td:last-child {
  text-align: right;
  font-family: var(--font-number);
  font-weight: 500;
  color: var(--cream);
  letter-spacing: 0.02em;
}

.spec-bar {
  display: flex;
  align-items: center;
  gap: 10px;
}

.spec-bar-track {
  flex: 1;
  height: 3px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 2px;
  overflow: hidden;
}

.spec-bar-fill {
  height: 100%;
  background: var(--red);
  border-radius: 2px;
  transition: width 1.2s var(--ease-out-expo);
  width: 0;
}

.type-card-link {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s var(--ease-out-expo);
  margin-top: 8px;
}

.type-card-link:hover {
  gap: 14px;
}

.type-card-link svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

.product-details {
  background: var(--warm-white);
}

.details-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--bone);
  margin-top: 60px;
}

.detail-card {
  background: var(--warm-white);
  padding: clamp(28px, 3vw, 40px);
  text-align: center;
  transition: all 0.4s var(--ease-out-expo);
}

.detail-card:hover {
  background: #fff;
}

.detail-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 18px;
  border: 1px solid var(--bone);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}

.detail-card:hover .detail-icon {
  border-color: var(--red);
  background: var(--red-glow);
}

.detail-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--steel);
  fill: none;
  stroke-width: 1.5;
}

.detail-card:hover .detail-icon svg {
  stroke: var(--red);
}

.detail-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ash);
  margin-bottom: 8px;
}

.detail-value {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--anthracite);
  line-height: 1.3;
}

.production {
  background: var(--cream);
}

.production-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 6vw, 100px);
  align-items: center;
}

.production-numbers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.prod-number {
  padding: 28px;
  background: var(--warm-white);
  border: 1px solid var(--bone);
  transition: border-color 0.3s ease;
}

.prod-number:hover {
  border-color: var(--red);
}

.prod-number-value {
  font-family: var(--font-number);
  font-size: clamp(36px, 3.5vw, 48px);
  font-weight: 400;
  color: var(--anthracite);
  line-height: 1;
  margin-bottom: 6px;
}

.prod-number-value .unit {
  font-size: 0.45em;
  color: var(--red);
  margin-left: 4px;
  font-weight: 500;
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.prod-number-label {
  font-size: 13px;
  color: var(--ash);
}

.production-text .section-desc {
  margin-bottom: 32px;
}

.production-highlight {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.2vw, 24px);
  font-weight: 400;
  font-style: italic;
  line-height: 1.5;
  color: var(--steel);
  border-left: 2px solid var(--red);
  padding-left: 24px;
  margin-top: 32px;
}

.certification {
  background: var(--anthracite);
  position: relative;
  overflow: hidden;
}

.certification::after {
  content: '';
  position: absolute;
  top: -150px;
  right: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.03);
}

.certification .section-title {
  color: var(--cream);
}

.certification .section-desc {
  color: var(--ash);
}

.cert-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.cert-badges {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
}

.cert-badge {
  width: clamp(140px, 14vw, 180px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  transition: all 0.4s var(--ease-out-expo);
}

.cert-badge:hover {
  border-color: rgba(192, 30, 36, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.cert-badge-icon {
  width: 28px;
  height: 28px;
  margin-bottom: 10px;
}

.cert-badge-icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--red);
  fill: none;
  stroke-width: 1.5;
}

.cert-badge-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--cream);
}

.cert-badge-desc {
  font-size: 11px;
  color: var(--ash);
  margin-top: 4px;
  padding: 0 16px;
  line-height: 1.4;
}

.cert-text .section-desc {
  margin-bottom: 28px;
}

.cert-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 28px;
}

.cert-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  font-weight: 300;
  color: var(--silver);
}

.cert-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--red);
  border-radius: 50%;
  flex-shrink: 0;
}

@media (max-width: 1024px) {
  .details-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 768px) {

  .overview-grid,
  .production-grid,
  .cert-content {
    grid-template-columns: 1fr;
  }

  .production-numbers {
    grid-template-columns: 1fr 1fr;
  }

  .type-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .details-grid {
    grid-template-columns: 1fr;
  }

  .production-numbers {
    grid-template-columns: 1fr;
  }
}


/* ══════════════ CONTACT SPECIFIC ══════════════ */
.contact-section {
  background: var(--warm-white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 6vw, 100px);
  align-items: start;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.form-group {
  position: relative;
  margin-bottom: 32px;
}

.form-group label {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ash);
  margin-bottom: 10px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 300;
  color: var(--charcoal);
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--bone);
  padding: 12px 0;
  outline: none;
  transition: border-color 0.4s var(--ease-out-expo);
  border-radius: 0;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-bottom-color: var(--red);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--silver);
  font-weight: 300;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.7;
}

.form-group select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%238a837b' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0 center;
  padding-right: 20px;
}

.form-group select option {
  font-family: var(--font-body);
  background: var(--warm-white);
  color: var(--charcoal);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

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

.contact-info-header {
  margin-bottom: clamp(28px, 3vw, 40px);
}

.contact-info-header .section-title {
  font-size: clamp(28px, 3.5vw, 40px);
}

.info-card {
  background: #fff;
  padding: clamp(28px, 3vw, 36px);
  position: relative;
  transition: all 0.5s var(--ease-out-expo);
}

.info-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 2px;
  height: 0;
  background: var(--red);
  transition: height 0.6s var(--ease-out-expo);
}

.info-card:hover::before {
  height: 48px;
}

.info-card:hover {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
}

.info-card-top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}

.info-card-icon {
  width: 44px;
  height: 44px;
  border: 1px solid var(--bone);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.4s ease;
}

.info-card:hover .info-card-icon {
  border-color: var(--red);
  background: var(--red-glow);
}

.info-card-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--steel);
  fill: none;
  stroke-width: 1.5;
}

.info-card:hover .info-card-icon svg {
  stroke: var(--red);
}

.info-card-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ash);
}

.info-card-value {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  color: var(--anthracite);
  margin-top: 4px;
}

.info-card-value a {
  color: var(--anthracite);
  text-decoration: none;
  transition: color 0.3s ease;
}

.info-card-value a:hover {
  color: var(--red);
}

.info-card-desc {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--ash);
  padding-left: 60px;
}

.locations {
  background: var(--anthracite);
  position: relative;
  overflow: hidden;
}

.locations::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(90deg, transparent, transparent 200px, rgba(255, 255, 255, 0.02) 200px, rgba(255, 255, 255, 0.02) 201px);
}

.locations .section-title {
  color: var(--cream);
}

.locations .section-desc {
  color: var(--ash);
}

.locations-header {
  margin-bottom: clamp(48px, 5vw, 72px);
}

.location-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.06);
}

.location-card {
  background: var(--anthracite);
  padding: clamp(32px, 3vw, 48px);
  position: relative;
  transition: background 0.4s ease;
}

.location-card:hover {
  background: #222120;
}

.location-card-type {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
}

.location-card-name {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 28px);
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 6px;
}

.location-card-city {
  font-size: 14px;
  font-weight: 400;
  color: var(--ash);
  margin-bottom: 24px;
}

.location-card-details {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.location-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.location-detail-icon {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.4s ease;
}

.location-card:hover .location-detail-icon {
  border-color: rgba(192, 30, 36, 0.4);
  background: var(--red-glow);
}

.location-detail-icon svg {
  width: 14px;
  height: 14px;
  stroke: var(--ash);
  fill: none;
  stroke-width: 1.5;
}

.location-card:hover .location-detail-icon svg {
  stroke: var(--red);
}

.location-detail-text {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.6;
  color: var(--iron);
  padding-top: 5px;
}

.location-detail-text a {
  color: var(--iron);
  text-decoration: none;
  transition: color 0.3s ease;
}

.location-detail-text a:hover {
  color: var(--cream);
}

.map-section {
  background: var(--cream);
}

.map-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto clamp(48px, 5vw, 72px);
}

.map-header .section-label {
  justify-content: center;
}

.map-header .section-label::before {
  display: none;
}

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

.map-header .section-desc {
  text-align: center;
  margin: 0 auto;
  max-width: 580px;
}

.map-container {
  position: relative;
  width: 100%;
  aspect-ratio: 21/9;
  background: var(--charcoal);
  overflow: hidden;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(0.8) contrast(1.1) brightness(0.85);
  transition: filter 0.6s ease;
}

.map-container:hover iframe {
  filter: grayscale(0.3) contrast(1) brightness(0.95);
}

.map-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(28, 27, 26, 0.3) 0%, transparent 60%);
  pointer-events: none;
}

.map-pins {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  margin-top: 2px;
  background: var(--bone);
}

.map-pin {
  background: #fff;
  padding: 20px clamp(24px, 3vw, 36px);
  display: flex;
  align-items: center;
  gap: 14px;
  transition: all 0.4s var(--ease-out-expo);
}

.map-pin:hover {
  background: var(--warm-white);
}

.map-pin-dot {
  width: 10px;
  height: 10px;
  background: var(--red);
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
}

.map-pin-dot::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid var(--red);
  opacity: 0.3;
}

.map-pin-name {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 500;
  color: var(--anthracite);
}

.map-pin-loc {
  font-size: 13px;
  font-weight: 300;
  color: var(--ash);
  margin-left: auto;
}

.form-success {
  display: none;
  text-align: center;
  padding: clamp(48px, 5vw, 80px) 24px;
}

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

.form-success-icon {
  width: 64px;
  height: 64px;
  border: 1px solid var(--bone);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.form-success-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--red);
  fill: none;
  stroke-width: 1.5;
}

.form-success h3 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  color: var(--anthracite);
  margin-bottom: 12px;
}

.form-success p {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--ash);
  max-width: 400px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .map-container {
    aspect-ratio: 16/9;
  }

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

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

  .info-card-desc {
    padding-left: 0;
  }
}


/* ══════════════ PROCESSO SPECIFIC ══════════════ */
.process-intro {
  background: var(--warm-white);
}

.process-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 6vw, 100px);
  align-items: center;
}

.process-intro .section-desc {
  margin-bottom: 32px;
}

.process-flow {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.process-flow::before {
  content: '';
  position: absolute;
  left: 23px;
  top: 24px;
  bottom: 24px;
  width: 1px;
  background: linear-gradient(to bottom, var(--red), var(--bone), var(--red));
}

.flow-step {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 20px 0;
  position: relative;
}

.flow-dot {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--bone);
  background: var(--warm-white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  z-index: 1;
  transition: all 0.4s var(--ease-out-expo);
}

.flow-step:hover .flow-dot {
  border-color: var(--red);
  background: var(--red-glow);
}

.flow-dot svg {
  width: 20px;
  height: 20px;
  stroke: var(--steel);
  fill: none;
  stroke-width: 1.5;
}

.flow-step:hover .flow-dot svg {
  stroke: var(--red);
}

.flow-text {
  padding-top: 10px;
}

.flow-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  color: var(--anthracite);
  margin-bottom: 4px;
}

.flow-desc {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.6;
  color: var(--ash);
}

.efficiency {
  background: var(--anthracite);
  position: relative;
  overflow: hidden;
}

.efficiency::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(90deg, transparent, transparent 200px, rgba(255, 255, 255, 0.02) 200px, rgba(255, 255, 255, 0.02) 201px);
}

.efficiency .section-title {
  color: var(--cream);
}

.efficiency .section-desc {
  color: var(--ash);
}

.eff-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 6vw, 100px);
  align-items: center;
}

.eff-text .section-desc {
  margin-bottom: 28px;
}

.eff-text p+p {
  margin-top: 20px;
}

.eff-text .body-text {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--ash);
}

.eff-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(255, 255, 255, 0.06);
}

.eff-stat {
  background: var(--anthracite);
  padding: clamp(28px, 3vw, 40px);
  position: relative;
}

.eff-stat::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width 1.2s var(--ease-out-expo);
}

.eff-stat.visible::before {
  width: 40px;
}

.eff-stat-value {
  font-family: var(--font-number);
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 400;
  color: var(--cream);
  line-height: 1;
  margin-bottom: 8px;
}

.eff-stat-value .unit {
  font-size: 0.45em;
  color: var(--red);
  margin-left: 4px;
  font-weight: 500;
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.eff-stat-label {
  font-size: 13px;
  font-weight: 400;
  color: var(--ash);
  line-height: 1.4;
}

.environment {
  background: var(--warm-white);
}

.env-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto clamp(48px, 5vw, 72px);
}

.env-header .section-label {
  justify-content: center;
}

.env-header .section-label::before {
  display: none;
}

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

.env-header .section-desc {
  text-align: center;
  margin: 0 auto;
  max-width: 580px;
}

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

.env-card {
  background: #fff;
  padding: clamp(32px, 3vw, 48px);
  position: relative;
  transition: all 0.5s var(--ease-out-expo);
}

.env-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 2px;
  height: 0;
  background: var(--red);
  transition: height 0.6s var(--ease-out-expo);
}

.env-card:hover::before {
  height: 48px;
}

.env-card:hover {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
}

.env-card-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 24px;
  border: 1px solid var(--bone);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}

.env-card:hover .env-card-icon {
  border-color: var(--red);
  background: var(--red-glow);
}

.env-card-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--steel);
  fill: none;
  stroke-width: 1.5;
}

.env-card:hover .env-card-icon svg {
  stroke: var(--red);
}

.env-card-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--anthracite);
  margin-bottom: 12px;
}

.env-card-desc {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--ash);
}

.clean-energy {
  background: var(--cream);
}

.energy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 6vw, 100px);
  align-items: center;
}

.energy-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.energy-circle-outer {
  width: clamp(280px, 26vw, 380px);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid var(--bone);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.energy-circle-outer::before {
  content: '';
  position: absolute;
  inset: 20px;
  border-radius: 50%;
  border: 1px solid var(--bone);
}

.energy-circle-inner {
  width: 60%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--charcoal), var(--steel));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: #fff;
  text-align: center;
  padding: 20px;
}

.energy-circle-value {
  font-family: var(--font-number);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 600;
  line-height: 1;
}

.energy-circle-unit {
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--silver);
  margin-top: 6px;
}

.energy-orbit {
  position: absolute;
  background: #fff;
  border: 1px solid var(--bone);
  padding: 12px 18px;
  font-size: 12px;
  font-weight: 500;
  color: var(--steel);
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.energy-orbit:nth-child(1) {
  top: 0;
  right: 5%;
}

.energy-orbit:nth-child(2) {
  bottom: 8%;
  left: 0;
}

.energy-text .section-desc {
  margin-bottom: 28px;
}

.energy-text .body-text {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--ash);
  margin-top: 16px;
}

.energy-highlight {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.2vw, 24px);
  font-weight: 400;
  font-style: italic;
  line-height: 1.5;
  color: var(--steel);
  border-left: 2px solid var(--red);
  padding-left: 24px;
  margin-top: 36px;
}

.timeline {
  background: var(--anthracite);
  position: relative;
  overflow: hidden;
}

.timeline::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(90deg, transparent, transparent 300px, rgba(255, 255, 255, 0.015) 300px, rgba(255, 255, 255, 0.015) 301px);
}

.timeline .section-title {
  color: var(--cream);
}

.timeline .section-desc {
  color: var(--ash);
}

.timeline-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto clamp(48px, 5vw, 72px);
}

.timeline-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.06);
  position: relative;
}

.timeline-step {
  background: var(--anthracite);
  padding: clamp(28px, 2.5vw, 40px);
  text-align: center;
  position: relative;
  transition: background 0.4s ease;
}

.timeline-step:hover {
  background: #222120;
}

.timeline-step-num {
  font-family: var(--font-number);
  font-size: 42px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.06);
  line-height: 1;
  margin-bottom: 20px;
  transition: color 0.4s ease;
}

.timeline-step:hover .timeline-step-num {
  color: var(--red-glow);
}

.timeline-step-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}

.timeline-step:hover .timeline-step-icon {
  border-color: rgba(192, 30, 36, 0.4);
  background: var(--red-glow);
}

.timeline-step-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--ash);
  fill: none;
  stroke-width: 1.5;
}

.timeline-step:hover .timeline-step-icon svg {
  stroke: var(--red);
}

.timeline-step-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 8px;
}

.timeline-step-desc {
  font-size: 12px;
  font-weight: 300;
  line-height: 1.6;
  color: var(--iron);
}

.timeline-step::after {
  content: '';
  position: absolute;
  right: -5px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  transform: translateY(-50%) rotate(45deg);
  z-index: 2;
}

.timeline-step:last-child::after {
  display: none;
}

@media (max-width: 1024px) {
  .timeline-steps {
    grid-template-columns: repeat(3, 1fr);
  }

  .timeline-step:nth-child(3)::after {
    display: none;
  }
}

@media (max-width: 768px) {

  .process-intro-grid,
  .eff-grid,
  .energy-grid {
    grid-template-columns: 1fr;
  }

  .env-cards {
    grid-template-columns: 1fr;
  }

  .timeline-steps {
    grid-template-columns: 1fr 1fr;
  }

  .timeline-step::after {
    display: none;
  }

  .energy-visual {
    max-width: 340px;
    margin: 0 auto;
  }

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

@media (max-width: 480px) {
  .timeline-steps {
    grid-template-columns: 1fr;
  }
}


/* ══════════════ NEWS SPECIFIC ══════════════ */
.featured {
  background: var(--warm-white);
}

.featured-card {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0;
  background: #fff;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.05);
}

.featured-image {
  background: var(--bone);
  position: relative;
  min-height: 400px;
  overflow: hidden;
}

.featured-image-tag {
  position: absolute;
  top: 32px;
  left: 32px;
  background: var(--red);
  color: #fff;
  padding: 8px 16px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  z-index: 2;
}

.featured-body {
  padding: clamp(40px, 5vw, 80px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.featured-category {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
}

.featured-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.5vw, 42px);
  color: var(--anthracite);
  line-height: 1.2;
  margin-bottom: 24px;
}

.featured-excerpt {
  font-size: 16px;
  line-height: 1.8;
  color: var(--ash);
  margin-bottom: 32px;
}

.featured-meta {
  display: flex;
  align-items: center;
  gap: 24px;
}

.featured-date {
  font-family: var(--font-number);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--ash);
}

.featured-date svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
}

.featured-link {
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--red);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s ease;
}

.featured-link:hover {
  gap: 14px;
}

.featured-link svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
}

.news-section {
  background: var(--cream);
}

.news-filters {
  display: flex;
  gap: 12px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 24px;
  border: 1px solid var(--bone);
  background: #fff;
  color: var(--ash);
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 13px;
  font-weight: 400;
}

.filter-btn:hover {
  border-color: var(--red);
  color: var(--red);
}

.filter-btn.active {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}

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

.news-card {
  background: #fff;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s var(--ease-out-expo), box-shadow 0.4s var(--ease-out-expo);
}

.news-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

.news-card-image {
  position: relative;
  aspect-ratio: 16/9;
  background: var(--bone);
  overflow: hidden;
}

.news-card-image-inner {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s var(--ease-out-expo);
}

.news-card:hover .news-card-image-inner {
  transform: scale(1.05);
}

.news-card-category-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  color: #fff;
  padding: 6px 12px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.news-card-body {
  padding: 32px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.news-card-date {
  font-family: var(--font-number);
  font-size: 12px;
  color: var(--silver);
  margin-bottom: 12px;
}

.news-card-title {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--anthracite);
  margin-bottom: 16px;
  line-height: 1.3;
}

.news-card-excerpt {
  font-size: 14px;
  line-height: 1.7;
  color: var(--ash);
  margin-bottom: 24px;
  flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-card-read {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--red);
  display: flex;
  align-items: center;
  gap: 8px;
}

.news-card-read svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

.load-more {
  text-align: center;
  margin-top: 64px;
}

.newsletter {
  background: var(--anthracite);
  text-align: center;
  padding: clamp(80px, 8vw, 120px) 24px;
  color: #fff;
}

.newsletter-inner {
  max-width: 600px;
  margin: 0 auto;
}

.newsletter-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
}

.newsletter-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  margin-bottom: 20px;
}

.newsletter-title em {
  font-style: italic;
  color: var(--red);
}

.newsletter-desc {
  font-size: 16px;
  color: var(--ash);
  margin-bottom: 40px;
}

.newsletter-form {
  display: flex;
  gap: 12px;
}

.newsletter-input {
  flex-grow: 1;
  padding: 16px 24px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  font-family: var(--font-body);
  font-size: 15px;
  outline: none;
  transition: border-color 0.3s ease;
}

.newsletter-input:focus {
  border-color: var(--red);
}

.newsletter-btn {
  padding: 16px 32px;
  background: var(--red);
  color: #fff;
  border: none;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: background 0.3s ease;
}

.newsletter-btn:hover {
  background: var(--red-dark);
}

/* ══════════════ POST SPECIFIC ══════════════ */
.post-hero {
  background: var(--anthracite);
  position: relative;
  padding-top: 80px;
  overflow: hidden;
}

.post-hero-photo {
  position: absolute;
  inset: 0;
  background: url('bg-topo02.webp') center center / cover no-repeat;
  filter: saturate(0.4) brightness(0.35) contrast(1.1);
}

.post-hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(28, 27, 26, 0.6) 0%, transparent 50%),
    linear-gradient(to bottom, rgba(17, 16, 16, 0.2) 0%, rgba(17, 16, 16, 0.0) 40%, rgba(17, 16, 16, 0.85) 100%);
}

.post-hero-visual {
  position: absolute;
  inset: 0;
  background: linear-gradient(170deg, rgba(28, 24, 20, 0.5) 0%, rgba(40, 30, 22, 0.3) 50%, rgba(20, 18, 16, 0.6) 100%);
  mix-blend-mode: multiply;
}

.post-hero-ember {
  position: absolute;
  top: 20%;
  right: 10%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(192, 30, 36, 0.12) 0%, transparent 70%);
  filter: blur(60px);
  animation: ember-pulse 6s ease-in-out infinite alternate;
}

.post-hero-lines {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  opacity: 0.03;
  background: repeating-linear-gradient(-25deg, transparent, transparent 40px, rgba(255, 255, 255, 0.5) 40px, rgba(255, 255, 255, 0.5) 41px);
}

.post-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  margin: 0 auto;
  padding: clamp(60px, 8vw, 100px) clamp(24px, 4vw, 80px) clamp(60px, 6vw, 100px);
}

.post-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--iron);
  margin-bottom: 40px;
}

.post-breadcrumb a {
  color: var(--iron);
  text-decoration: none;
  transition: color 0.3s ease;
}

.post-breadcrumb a:hover {
  color: var(--silver);
}

.post-breadcrumb svg {
  width: 12px;
  height: 12px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

.post-category {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--red);
  margin-bottom: 20px;
  display: block;
}

.post-hero-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.1;
  color: var(--cream);
  margin-bottom: 32px;
}

.post-hero-title em {
  font-style: italic;
  color: var(--red);
}

.post-meta {
  display: flex;
  align-items: center;
  gap: 24px;
}

.post-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--ash);
}

.post-meta-item svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
}

.post-meta-divider {
  width: 1px;
  height: 12px;
  background: rgba(255, 255, 255, 0.1);
}

.post-body {
  background: var(--warm-white);
  padding: clamp(60px, 8vw, 100px) 0;
}

.post-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 clamp(24px, 4vw, 80px);
}

.pdf-embed {
  background: #fff;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.06);
  margin-bottom: 60px;
}

.pdf-embed-header {
  padding: 24px 32px;
  border-bottom: 1px solid var(--bone);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.pdf-embed-title {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--anthracite);
  display: flex;
  align-items: center;
  gap: 12px;
}

.pdf-embed-title svg {
  width: 24px;
  height: 24px;
  stroke: var(--red);
  fill: none;
  stroke-width: 1.5;
}

.pdf-embed-actions {
  display: flex;
  gap: 12px;
}

.pdf-action-btn {
  padding: 8px 16px;
  border: 1px solid var(--bone);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ash);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.pdf-action-btn:hover {
  border-color: var(--red);
  color: var(--red);
}

.pdf-action-btn svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

.pdf-placeholder {
  padding: 100px 32px;
  text-align: center;
  background: var(--cream);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pdf-placeholder-icon {
  width: 64px;
  height: 64px;
  border: 1px solid var(--bone);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.pdf-placeholder-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--ash);
  fill: none;
  stroke-width: 1.5;
}

.pdf-placeholder-text {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--anthracite);
  margin-bottom: 12px;
}

.pdf-placeholder-hint {
  font-size: 14px;
  color: var(--silver);
}

.pdf-embed-frame {
  width: 100%;
  height: 800px;
  border: none;
}

.post-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding: 48px;
  border: 1px solid var(--bone);
  margin-bottom: 60px;
}

.post-info-block h4 {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--red);
  margin-bottom: 24px;
  border-bottom: 1px solid var(--bone);
  padding-bottom: 12px;
}

.post-info-item {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
  font-size: 15px;
  color: var(--ash);
}

.post-info-item svg {
  width: 18px;
  height: 18px;
  stroke: var(--silver);
  fill: none;
  stroke-width: 1.5;
}

.post-info-item strong {
  color: var(--steel);
  font-weight: 500;
}

.post-share {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 40px;
  border-top: 1px solid var(--bone);
}

.post-share-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--silver);
}

.share-btn {
  width: 44px;
  height: 44px;
  border: 1px solid var(--bone);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: var(--ash);
}

.share-btn:hover {
  border-color: var(--red);
  color: var(--red);
  transform: translateY(-3px);
}

.share-btn svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
}

.post-nav {
  background: #fff;
  border-top: 1px solid var(--bone);
  border-bottom: 1px solid var(--bone);
}

.post-nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--bone);
}

.post-nav-item {
  padding: 48px clamp(24px, 4vw, 80px);
  background: #fff;
  text-decoration: none;
  transition: background 0.3s ease;
}

.post-nav-item:hover {
  background: var(--warm-white);
}

.post-nav-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--silver);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.post-nav-label svg {
  width: 12px;
  height: 12px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.5;
}

.post-nav-title {
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 24px);
  color: var(--anthracite);
}

.related {
  background: var(--cream);
  padding: 100px 0;
}

.related-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
  padding: 0 clamp(24px, 4vw, 80px);
}

.related-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
}

.related-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 42px);
  color: var(--anthracite);
}

.related-title em {
  font-style: italic;
}

.related-link {
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ash);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s ease;
}

.related-link:hover {
  color: var(--red);
}

.related-link svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding: 0 clamp(24px, 4vw, 80px);
}

.related-card {
  background: #fff;
  padding: 40px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  transition: all 0.4s var(--ease-out-expo);
  border: 1px solid transparent;
}

.related-card:hover {
  border-color: var(--bone);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04);
}

.related-card-cat {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--red);
  margin-bottom: 16px;
}

.related-card-title {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--anthracite);
  margin-bottom: 16px;
  line-height: 1.3;
  flex-grow: 1;
}

.related-card-date {
  font-size: 12px;
  color: var(--silver);
  margin-bottom: 24px;
}

.related-card-arrow {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--ash);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s ease;
}

.related-card:hover .related-card-arrow {
  color: var(--red);
}

.related-card-arrow svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

@media (max-width: 1024px) {

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

@media (max-width: 768px) {
  .featured-card {
    grid-template-columns: 1fr;
  }

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

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

  .newsletter-form {
    flex-direction: column;
  }
}


/* ══════════════ GRUPO SPECIFIC ══════════════ */
.group-overview {
  background: var(--warm-white);
}

.overview-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 80px;
}

.overview-header .section-label {
  justify-content: center;
}

.overview-header .section-label::before {
  display: none;
}

.group-companies {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--bone);
}

.group-company {
  background: var(--warm-white);
  padding: 48px 32px;
  text-align: center;
  transition: all 0.4s var(--ease-out-expo);
}

.group-company:hover {
  background: #fff;
  transform: translateY(-4px);
}

.group-company-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 24px;
  color: var(--red);
}

.group-company-icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
}

.group-company-name {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--anthracite);
  margin-bottom: 8px;
}

.group-company-type {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ash);
}

.empresa {
  padding: clamp(100px, 12vw, 160px) clamp(24px, 4vw, 80px);
}

.empresa-odd {
  background: var(--warm-white);
}

.empresa-even {
  background: var(--cream);
}

.empresa-dark {
  background: var(--anthracite);
  color: #fff;
}

.empresa-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 6vw, 100px);
  align-items: center;
}

.empresa-grid.reverse {
  direction: rtl;
}

.empresa-grid.reverse>* {
  direction: ltr;
}

.empresa-visual {
  position: relative;
  aspect-ratio: 4/3;
}

.empresa-visual.visual-tall {
  aspect-ratio: 3/4;
}

.empresa-visual-inner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.visual-engenharia {
  background-image: url('estadio-independencia.webp');
  background-size: cover;
  background-position: center;
}

.visual-fazendas {
  background-image: url('fazenda.jpg');
  background-size: cover;
  background-position: center;
}

.visual-cachaca {
  background-image: url('garrafa-cachaca.webp');
  background-size: cover;
  background-position: center;
}

.empresa-visual-icon {
  width: 80px;
  height: 80px;
  opacity: 0.4;
}

.empresa-visual-tag {
  position: absolute;
  top: 32px;
  right: 32px;
  background: var(--red);
  color: #fff;
  padding: 8px 16px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  z-index: 2;
}

.empresa-visual-caption {
  position: absolute;
  bottom: 50px;
  left: 32px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  letter-spacing: 0.05em;
  z-index: 2;
}

.empresa-features {
  list-style: none;
  margin-top: 32px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.empresa-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--ash);
}

.empresa-dark .empresa-features li {
  color: var(--silver);
}

.empresa-features li::before {
  content: '';
  width: 4px;
  height: 4px;
  background: var(--red);
  border-radius: 50%;
}

.empresa-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--bone);
}

.empresa-dark .empresa-stats {
  border-color: rgba(255, 255, 255, 0.06);
}

.empresa-stat-value {
  font-family: var(--font-number);
  font-size: 32px;
  color: var(--anthracite);
  margin-bottom: 4px;
}

.empresa-dark .empresa-stat-value {
  color: #fff;
}

.empresa-stat-value .unit {
  font-size: 14px;
  color: var(--red);
  margin-left: 2px;
  font-family: var(--font-body);
}

.empresa-stat-label {
  font-size: 12px;
  color: var(--ash);
}

.empresa-highlight {
  margin-top: 40px;
  font-family: var(--font-display);
  font-size: 24px;
  font-style: italic;
  color: var(--ash);
  line-height: 1.5;
  padding-left: 32px;
  border-left: 2px solid var(--red);
}

.empresa-dark .empresa-highlight {
  color: var(--silver);
}

.contact-bar {
  background: var(--warm-white);
  padding: 80px 24px;
  text-align: center;
}

.contact-bar-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.contact-bar-text {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 42px);
  color: var(--anthracite);
}

.contact-bar-text em {
  font-style: italic;
  color: var(--red);
}

@media (max-width: 1024px) {
  .group-companies {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .empresa-grid {
    grid-template-columns: 1fr !important;
    gap: 40px;
  }

  .empresa-grid.reverse {
    direction: ltr;
  }

  .group-companies {
    grid-template-columns: 1fr;
  }

  .contact-bar-inner {
    flex-direction: column;
    gap: 32px;
  }
}


/* ══════════════ PROCESSO SPECIFIC ══════════════ */
.process-intro {
  background: var(--warm-white);
}

.process-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 6vw, 100px);
  align-items: flex-start;
}

.process-flow {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.flow-step {
  display: flex;
  gap: 24px;
}

.flow-dot {
  width: 48px;
  height: 48px;
  border: 1px solid var(--bone);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  flex-shrink: 0;
  background: #fff;
  transition: all 0.4s ease;
}

.flow-step:hover .flow-dot {
  border-color: var(--red);
  transform: scale(1.1);
  box-shadow: 0 10px 20px rgba(192, 30, 36, 0.1);
}

.flow-dot svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
}

.flow-title {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--anthracite);
  margin-bottom: 6px;
}

.flow-desc {
  font-size: 14px;
  color: var(--ash);
  line-height: 1.6;
}

.efficiency {
  background: var(--anthracite);
  color: #fff;
}

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

.eff-stat {
  background: rgba(255, 255, 255, 0.03);
  padding: 48px 32px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
  transition: all 0.4s ease;
}

.eff-stat::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width 0.6s var(--ease-out-expo);
}

.eff-stat:hover {
  background: rgba(255, 255, 255, 0.05);
}

.eff-stat:hover::before {
  width: 48px;
}

.eff-stat-value {
  font-family: var(--font-number);
  font-size: 48px;
  color: #fff;
  margin-bottom: 8px;
}

.eff-stat-value .unit {
  font-size: 16px;
  color: var(--red);
  margin-left: 2px;
}

.eff-stat-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ash);
}

.environment {
  background: var(--cream);
}

.env-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 60px;
}

.env-card {
  background: #fff;
  padding: 48px;
  position: relative;
  display: flex;
  gap: 32px;
  align-items: flex-start;
  transition: all 0.4s ease;
}

.env-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 2px;
  height: 0;
  background: var(--red);
  transition: height 0.6s var(--ease-out-expo);
}

.env-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.env-card:hover::before {
  height: 48px;
}

.env-card-icon {
  width: 40px;
  height: 40px;
  color: var(--red);
  flex-shrink: 0;
}

.env-card-icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
}

.env-card-title {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--anthracite);
  margin-bottom: 12px;
}

.env-card-desc {
  font-size: 15px;
  color: var(--ash);
  line-height: 1.6;
}

.clean-energy {
  background: var(--warm-white);
}

.ce-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(48px, 6vw, 100px);
  align-items: center;
}

.ce-visual {
  background: var(--anthracite);
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.ce-visual-icon {
  width: 100px;
  height: 100px;
  color: var(--red);
  opacity: 0.3;
}

.ce-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
}

.ce-stat {
  background: #fff;
  padding: 32px;
  border: 1px solid var(--bone);
}

.ce-stat-value {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--anthracite);
  margin-bottom: 4px;
}

.ce-stat-label {
  font-size: 12px;
  color: var(--ash);
}

.timeline-container {
  position: relative;
  padding: 120px 0;
  background: var(--anthracite);
  color: #fff;
}

.timeline-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(24px, 4vw, 80px);
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding-bottom: 40px;
  scrollbar-width: none;
}

.timeline-wrapper::-webkit-scrollbar {
  display: none;
}

.timeline-step {
  min-width: 280px;
  flex: 1;
  padding: 32px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
}

.timeline-step::after {
  content: '';
  position: absolute;
  right: -12px;
  top: 50%;
  width: 24px;
  height: 2px;
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-50%);
}

.timeline-step:last-child::after {
  display: none;
}

.timeline-year {
  font-family: var(--font-number);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--red);
  margin-bottom: 12px;
}

.timeline-title {
  font-family: var(--font-display);
  font-size: 20px;
  color: #fff;
  margin-bottom: 12px;
}

.timeline-desc {
  font-size: 13px;
  color: var(--ash);
  line-height: 1.6;
}

@media (max-width: 768px) {

  .process-intro-grid,
  .ce-content {
    grid-template-columns: 1fr !important;
  }

  .eff-grid,
  .env-grid {
    grid-template-columns: 1fr;
  }

  .timeline-wrapper {
    flex-direction: column;
  }

  .timeline-step::after {
    display: none;
  }
}


/* ══════════════ SUSTENTABILIDADE SPECIFIC ══════════════ */
.env-intro {
  background: var(--warm-white);
}

.env-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 6vw, 100px);
  align-items: center;
}

.env-intro-highlight {
  margin-top: 32px;
  font-family: var(--font-display);
  font-size: 24px;
  font-style: italic;
  color: var(--steel);
  line-height: 1.5;
  padding-left: 32px;
  border-left: 2px solid var(--red);
}

.forest-visual {
  position: relative;
  aspect-ratio: 1;
  background: var(--anthracite);
  overflow: hidden;
}

.forest-visual-inner {
  position: absolute;
  inset: 0;
  background-image: url('plantacao-viena.jpg');
  background-size: cover;
  background-position: center;
  opacity: 1;
}

.forest-caption {
  position: absolute;
  bottom: 24px;
  left: 24px;
  color: #fff;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  z-index: 2;
}

.forest-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--red);
  color: #fff;
  padding: 32px;
  text-align: center;
}

.forest-badge-number {
  display: block;
  font-family: var(--font-number);
  font-size: 32px;
  line-height: 1;
  margin-bottom: 4px;
}

.forest-badge-text {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.8;
}

.pillars {
  background: var(--warm-white);
}

.pillars-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 80px;
}

.pillars-header .section-label {
  justify-content: center;
}

.pillars-header .section-label::before {
  display: none;
}

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

.pillar-card {
  background: #fff;
  padding: 48px;
  border: 1px solid var(--bone);
  transition: all 0.4s ease;
}

.pillar-card:hover {
  transform: translateY(-8px);
  border-color: var(--red);
}

.pillar-icon {
  width: 44px;
  height: 44px;
  color: var(--red);
  margin-bottom: 24px;
}

.pillar-icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
}

.pillar-title {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--anthracite);
  margin-bottom: 16px;
}

.pillar-desc {
  font-size: 14px;
  color: var(--ash);
  line-height: 1.7;
}

.vienatureza {
  background: var(--cream);
}

.vienatureza-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 6vw, 100px);
  align-items: center;
}

.vienatureza-visual {
  position: relative;
  aspect-ratio: 1;
  background: var(--anthracite);
  overflow: hidden;
}

.vienatureza-visual-inner {
  position: absolute;
  inset: 0;
  background-image: url('mudas-platas-viena.jpeg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.seedling-svg {
  width: 80px;
  opacity: 0.4;
}

.vienatureza-tag {
  position: absolute;
  top: 32px;
  left: 32px;
  background: var(--red);
  color: #fff;
  padding: 8px 16px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.vienatureza-visual-caption {
  position: absolute;
  bottom: 24px;
  right: 24px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 11px;
  text-transform: uppercase;
}

.educar {
  background: var(--anthracite);
  color: #fff;
}

.educar-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 6vw, 100px);
  align-items: center;
}

.educar-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.educar-stat {
  background: rgba(255, 255, 255, 0.03);
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.4s ease;
}

.educar-stat:hover {
  background: rgba(255, 255, 255, 0.05);
}

.educar-stat.visible {
  opacity: 1;
  transform: translateY(0);
}

.educar-stat-icon {
  width: 32px;
  height: 32px;
  color: var(--red);
  margin-bottom: 20px;
}

.educar-stat-icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
}

.educar-stat-value {
  font-family: var(--font-number);
  font-size: 20px;
  color: #fff;
  margin-bottom: 8px;
}

.educar-stat-label {
  font-size: 11px;
  color: var(--ash);
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.educar-highlight {
  margin-top: 32px;
  font-family: var(--font-display);
  font-size: 22px;
  font-style: italic;
  color: var(--silver);
  border-left: 2px solid var(--red);
  padding-left: 24px;
}

.social {
  background: var(--warm-white);
}

.social-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 80px;
}

.social-header .section-label {
  justify-content: center;
}

.social-header .section-label.red::before {
  display: block;
  position: absolute;
  left: 50%;
  transform: translateX(-150%);
}

/* simple fix for centered label with line */
.social-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.social-card {
  background: #fff;
  padding: 48px;
  border: 1px solid var(--bone);
  transition: all 0.4s ease;
}

.social-card:hover {
  transform: translateY(-8px);
  border-color: var(--red);
}

.social-card-icon {
  width: 44px;
  height: 44px;
  color: var(--red);
  margin-bottom: 24px;
}

.social-card-icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
}

.social-card-title {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--anthracite);
  margin-bottom: 16px;
}

.social-card-desc {
  font-size: 15px;
  color: var(--ash);
  line-height: 1.7;
}

@media (max-width: 768px) {

  .env-intro-grid,
  .vienatureza-grid,
  .educar-grid {
    grid-template-columns: 1fr !important;
  }

  .pillars-grid,
  .social-cards {
    grid-template-columns: 1fr;
  }
}