/* ═══════════════════════════════════════════════════════════
   SOL BY RZK — Design System Centralizado
   Versão: 2026.1
   Todas as páginas devem importar este arquivo.
   NÃO duplicar estilos nas páginas individuais.
═══════════════════════════════════════════════════════════ */

/* ── TOKENS ── */
:root {
  --green-deep:  #0D2818;
  --green-mid:   #1A6635;
  --green-light: #2D8653;
  --green-fresh: #3DB86B;
  --green-glow:  #7AE09A;
  --green-lime:  #A8D63C;
  --gold:        #C9A84C;
  --gold-light:  #E8C87A;
  --yellow:      #F0D040;
  --white:       #FFFFFF;
  --off-white:   #F5F7F4;
  --gray-light:  #ECEEED;
  --gray-mid:    #B8BDB5;
  --gray-text:   #5C6359;
  --dark:        #131F11;
  --font: 'Montserrat', sans-serif;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: auto; }
body { font-family: var(--font); background: var(--white); color: var(--dark); overflow-x: hidden; }

/* ── SCROLL PROGRESS ── */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px;
  background: linear-gradient(90deg, var(--green-fresh), var(--green-lime));
  z-index: 2000; transition: width 0.1s; width: 0;
}

/* ══════════════════════════════════════
   TOPBAR
══════════════════════════════════════ */
.topbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1001;
  background: var(--green-deep);
  padding: 8px 32px;
  display: flex; justify-content: space-between; align-items: center;
}
.topbar-left { font-size: 12px; color: rgba(255,255,255,0.6); font-weight: 400; }
.topbar-left strong { color: rgba(255,255,255,0.85); font-weight: 600; }
.topbar-social { display: flex; align-items: center; gap: 8px; }
.topbar-social a {
  display: flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; border-radius: 6px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.1);
  transition: all 0.2s; text-decoration: none;
  color: rgba(255,255,255,0.7); font-size: 13px;
}
.topbar-social a:hover { background: rgba(255,255,255,0.18); color: white; }
.topbar-social a svg { width: 14px; height: 14px; fill: currentColor; }

/* ══════════════════════════════════════
   NAVEGAÇÃO
══════════════════════════════════════ */
nav {
  position: fixed; top: 37px; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.07);
  transition: box-shadow 0.3s, background 0.3s;
}
nav.scrolled {
  box-shadow: 0 4px 28px rgba(0,0,0,0.11);
  background: rgba(255,255,255,0.99);
}
.nav-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 32px; height: 66px;
}
.nav-logo { display: flex; align-items: center; text-decoration: none; }
.nav-logo img { height: 40px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-links > li { position: relative; }
.nav-links > li > a {
  font-size: 13.5px; font-weight: 600; color: var(--gray-text);
  text-decoration: none; padding: 8px 13px; border-radius: 8px;
  transition: all 0.2s; display: flex; align-items: center; gap: 4px;
  letter-spacing: -0.1px;
}
.nav-links > li > a:hover,
.nav-links > li > a.active { color: var(--green-deep); background: var(--off-white); }

/* Dropdown */
.has-dropdown > a::after { content: '▾'; font-size: 9px; opacity: 0.5; }
.dropdown {
  display: none; position: absolute; top: 100%; left: 0;
  background: white; border: 1px solid var(--gray-light);
  border-radius: 14px; min-width: 240px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.13); z-index: 200;
  padding: 16px 8px 8px 8px;
}
.has-dropdown::after {
  content: ''; position: absolute;
  top: 100%; left: 0; right: 0; height: 16px;
  display: none; z-index: 199;
}
.has-dropdown:hover::after { display: block; }
.has-dropdown:hover .dropdown { display: block; }
.dropdown a {
  display: flex; align-items: center; gap: 10px; padding: 9px 13px;
  font-size: 13px; font-weight: 500; color: var(--gray-text);
  text-decoration: none; border-radius: 8px; transition: all 0.15s;
}
.dropdown a:hover { background: var(--off-white); color: var(--green-deep); }
.dropdown .sub-label {
  font-size: 10.5px; font-weight: 700; color: var(--gray-mid);
  letter-spacing: 0.8px; text-transform: uppercase; padding: 8px 13px 4px;
}
.dropdown hr { border: none; border-top: 1px solid var(--gray-light); margin: 6px 0; }

/* CTA do nav */
.nav-cta {
  background: var(--green-fresh) !important; color: var(--green-deep) !important;
  padding: 9px 18px !important; border-radius: 10px !important;
  font-weight: 700 !important; font-size: 13px !important;
}
.nav-cta:hover { background: var(--green-glow) !important; }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; }
.hamburger span { width: 22px; height: 2px; background: var(--green-deep); border-radius: 2px; transition: all 0.3s; }

/* ── MOBILE NAV ── */
.mobile-nav {
  display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: white; z-index: 1500; padding: 80px 24px 24px; overflow-y: auto;
  flex-direction: column;
}
.mobile-nav.open { display: flex; }
.mobile-nav-close {
  position: absolute; top: 18px; right: 20px;
  font-size: 26px; cursor: pointer; color: var(--gray-text);
  line-height: 1; background: var(--off-white); border-radius: 50%;
  width: 36px; height: 36px; display: flex; align-items: center; justify-content: center;
}
.mobile-nav a {
  display: block; padding: 13px 4px;
  font-size: 15px; font-weight: 600; color: var(--dark);
  text-decoration: none; border-bottom: 1px solid var(--gray-light);
}
.mobile-nav a.sub { padding-left: 20px; font-size: 13.5px; color: var(--gray-text); font-weight: 500; }
.mobile-social { display: flex; gap: 10px; margin-top: 24px; }
.mobile-social a {
  border-bottom: none !important;
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--off-white); display: flex !important;
  align-items: center; justify-content: center;
  font-size: 16px; padding: 0 !important;
  border: 1px solid var(--gray-light) !important;
}

/* ══════════════════════════════════════
   BOTÕES
══════════════════════════════════════ */
.btn-primary {
  background: var(--green-deep); color: white;
  text-decoration: none; padding: 14px 26px; border-radius: 10px;
  font-family: var(--font); font-size: 14px; font-weight: 700;
  transition: all 0.25s; border: none; cursor: pointer;
  display: inline-flex; align-items: center; gap: 8px; letter-spacing: -0.2px;
}
.btn-primary:hover { background: var(--green-mid); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(13,40,24,0.2); }

.btn-secondary {
  background: white; color: var(--green-deep);
  border: 1.5px solid rgba(13,40,24,0.15);
  text-decoration: none; padding: 14px 26px; border-radius: 10px;
  font-family: var(--font); font-size: 14px; font-weight: 600;
  transition: all 0.25s; display: inline-flex; align-items: center; gap: 8px; cursor: pointer;
}
.btn-secondary:hover { border-color: var(--green-light); background: var(--off-white); }

.btn-green {
  background: var(--green-fresh); color: var(--green-deep);
  text-decoration: none; padding: 14px 26px; border-radius: 10px;
  font-family: var(--font); font-size: 14px; font-weight: 700;
  transition: all 0.25s; border: none; cursor: pointer;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-green:hover { background: var(--green-glow); transform: translateY(-2px); }

.btn-white {
  background: white; color: var(--green-deep); text-decoration: none;
  padding: 13px 24px; border-radius: 10px; font-family: var(--font);
  font-size: 14px; font-weight: 700; transition: all 0.25s;
  display: inline-flex; align-items: center; gap: 8px; cursor: pointer; border: none;
}
.btn-white:hover { background: var(--off-white); transform: translateY(-1px); }

.btn-outline-white {
  background: transparent; color: rgba(255,255,255,0.85);
  border: 1.5px solid rgba(255,255,255,0.25); text-decoration: none;
  padding: 13px 24px; border-radius: 10px; font-family: var(--font);
  font-size: 14px; font-weight: 500; transition: all 0.25s;
  display: inline-flex; align-items: center; gap: 8px; cursor: pointer;
}
.btn-outline-white:hover { border-color: rgba(255,255,255,0.6); color: white; }

/* ══════════════════════════════════════
   LAYOUT GLOBAL
══════════════════════════════════════ */
section { padding: 96px 0; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 32px; }

.section-label {
  font-size: 11px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--green-fresh);
  margin-bottom: 14px; display: flex; align-items: center; gap: 10px;
}
.section-label::before { content: ''; width: 22px; height: 2px; background: var(--green-fresh); border-radius: 2px; }

.section-title {
  font-size: clamp(32px, 4vw, 50px); font-weight: 800;
  letter-spacing: -1.5px; line-height: 1.08; color: var(--green-deep);
  margin-bottom: 20px;
}
.section-title em { font-style: normal; color: var(--green-fresh); }

.section-desc {
  font-size: 16px; font-weight: 400; color: var(--gray-text);
  line-height: 1.75; max-width: 540px;
}

/* ══════════════════════════════════════
   HERO (HOME)
══════════════════════════════════════ */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  position: relative; overflow: hidden; padding-top: 0;
  background: var(--white);
}
.hero-bg-img {
  position: absolute; left: 0; right: 0; top: 0; bottom: 0;
  width: 100%; background-size: cover; background-position: center center;
}
.hero-bg-img::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, white 35%, rgba(255,255,255,0.85) 52%, rgba(255,255,255,0.15) 75%, transparent 100%);
}
.hero-inner {
  max-width: 1280px; margin: 0 auto; padding: 203px 32px 100px;
  position: relative; z-index: 1; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(61,184,107,0.1); border: 1px solid rgba(61,184,107,0.2);
  border-radius: 100px; padding: 6px 16px 6px 10px;
  font-size: 12px; font-weight: 700; color: var(--green-mid);
  margin-bottom: 24px; letter-spacing: 0.1px;
}
.hero-badge-dot {
  width: 7px; height: 7px; background: var(--green-fresh);
  border-radius: 50%; animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.5); opacity: 0.6; } }
.hero-title {
  font-size: clamp(42px, 5.5vw, 72px); font-weight: 900;
  line-height: 1.0; letter-spacing: -2.5px; color: var(--green-deep);
  margin-bottom: 24px; max-width: 580px;
}
.hero-title em { font-style: normal; color: var(--green-fresh); }
.hero-sub {
  font-size: 17px; font-weight: 400; line-height: 1.7;
  color: var(--gray-text); max-width: 500px; margin-bottom: 38px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-kpis {
  display: flex; gap: 40px; margin-top: 56px;
  padding-top: 40px; border-top: 1px solid var(--gray-light);
  flex-wrap: wrap;
}
.hero-kpi-num {
  font-size: 34px; font-weight: 900; color: var(--green-deep);
  letter-spacing: -1.5px; line-height: 1;
}
.hero-kpi-num span { color: var(--green-fresh); }
.hero-kpi-label { font-size: 12.5px; color: var(--gray-text); margin-top: 5px; font-weight: 500; }

/* ── HERO TYPING EFFECT ── */
.hero-prefix { display: inline; }
.hero-cursor {
  display: inline-block; color: var(--green-fresh); font-weight: 300;
  animation: cursorBlink 0.7s step-end infinite; margin-left: 1px;
}
@keyframes cursorBlink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }

/* ── HERO WIDGET ── */
.hero-content { grid-column: 1; }
.hero-widget-col { grid-column: 2; display: flex; justify-content: center; align-items: center; position: relative; }
.hero-widget {
  background: white; border-radius: 24px; border: 1px solid var(--gray-light);
  box-shadow: 0 24px 72px rgba(0,0,0,0.11); padding: 28px;
  width: 100%; max-width: 400px; position: relative; font-family: var(--font);
}
.hw-tag {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--off-white); border-radius: 8px;
  padding: 5px 12px; font-size: 11px; font-weight: 700;
  color: var(--gray-text); letter-spacing: 0.5px;
  text-transform: uppercase; margin-bottom: 18px;
}
.hw-tag-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green-fresh); }
.hw-main-row { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 6px; }
.hw-big { font-size: 52px; font-weight: 900; color: var(--green-deep); letter-spacing: -3px; line-height: 1; }
.hw-right { text-align: right; }
.hw-consumption-label { font-size: 11.5px; color: var(--gray-text); font-weight: 500; margin-bottom: 2px; }
.hw-consumption-val { font-size: 28px; font-weight: 900; color: var(--green-fresh); letter-spacing: -1px; }
.hw-consumption-sub { font-size: 11.5px; color: var(--green-fresh); font-weight: 600; }
.hw-sub { font-size: 12.5px; color: var(--green-fresh); font-weight: 600; display: flex; align-items: center; gap: 5px; margin-bottom: 20px; }
.hw-chart { display: flex; align-items: flex-end; gap: 5px; height: 72px; margin-bottom: 16px; }
.hw-bar { flex: 1; border-radius: 5px 5px 0 0; min-height: 8px; transition: all 0.3s; }
.hw-bar.gray { background: var(--gray-light); }
.hw-bar.green { background: var(--green-fresh); }
.hw-bar.gold { background: #C9A84C; }
.hw-pills { display: flex; gap: 7px; flex-wrap: wrap; }
.hw-pill {
  display: flex; align-items: center; gap: 5px;
  background: var(--off-white); border: 1px solid var(--gray-light);
  border-radius: 100px; padding: 5px 11px;
  font-size: 11.5px; font-weight: 600; color: var(--gray-text);
}
.hw-pill.active { background: rgba(61,184,107,0.09); border-color: rgba(61,184,107,0.22); color: var(--green-mid); }
.hw-float {
  position: absolute; background: white; border-radius: 16px;
  border: 1px solid var(--gray-light); box-shadow: 0 12px 40px rgba(0,0,0,0.13);
  padding: 14px 18px; z-index: 10;
}
.hw-float.top-left { top: -18px; left: -24px; animation: floatA 3.5s ease-in-out infinite; }
.hw-float.bottom-right { bottom: -18px; right: -20px; animation: floatB 4s ease-in-out infinite; }
@keyframes floatA { 0%,100% { transform: translateY(0px); } 50% { transform: translateY(-8px); } }
@keyframes floatB { 0%,100% { transform: translateY(0px); } 50% { transform: translateY(-6px); } }
.hw-float-icon { font-size: 18px; margin-bottom: 6px; }
.hw-float-num { font-size: 22px; font-weight: 900; color: var(--green-deep); letter-spacing: -1px; line-height: 1; }
.hw-float-label { font-size: 11px; color: var(--gray-text); font-weight: 500; margin-top: 2px; }

/* ══════════════════════════════════════
   TICKER
══════════════════════════════════════ */
.ticker { background: var(--green-deep); padding: 11px 0; overflow: hidden; }
.ticker-track {
  display: flex; gap: 60px;
  animation: ticker 30s linear infinite; white-space: nowrap;
}
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.ticker-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 12.5px; font-weight: 500; color: rgba(255,255,255,0.6); flex-shrink: 0;
}
.ticker-item strong { color: white; }
.ticker-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--green-fresh); flex-shrink: 0; }

/* ══════════════════════════════════════
   SEÇÕES HOME — POSITIONING DARK
══════════════════════════════════════ */
.positioning-section { background: var(--green-deep); position: relative; overflow: hidden; }
.pos-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.pos-label {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,168,76,0.15); border: 1px solid rgba(201,168,76,0.3);
  border-radius: 100px; padding: 6px 14px;
  font-size: 11px; font-weight: 700; color: var(--gold-light);
  letter-spacing: 1px; text-transform: uppercase; margin-bottom: 22px;
}
.pos-title {
  font-size: clamp(34px,4vw,52px); font-weight: 900; letter-spacing: -1.5px;
  line-height: 1.0; color: white; margin-bottom: 28px;
}
.pos-title em { font-style: normal; color: var(--green-glow); }
.pos-text { font-size: 15.5px; font-weight: 400; color: rgba(255,255,255,0.7); line-height: 1.75; margin-bottom: 16px; }
.pos-text strong { color: white; font-weight: 600; }
.pos-cta { margin-top: 36px; display: flex; gap: 14px; flex-wrap: wrap; }
.pos-cards { display: grid; gap: 14px; }
.pos-card {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 18px; padding: 26px; transition: all 0.3s;
}
.pos-card:hover { background: rgba(255,255,255,0.1); border-color: rgba(61,184,107,0.3); transform: translateY(-2px); }
.pos-card-icon { width: 42px; height: 42px; border-radius: 11px; background: rgba(61,184,107,0.15); display: flex; align-items: center; justify-content: center; font-size: 20px; margin-bottom: 14px; }
.pos-card-title { font-size: 16px; font-weight: 700; color: white; margin-bottom: 7px; letter-spacing: -0.3px; }
.pos-card-desc { font-size: 13.5px; font-weight: 400; color: rgba(255,255,255,0.6); line-height: 1.6; }

/* ── ECOSYSTEM ── */
.ecosystem-section { background: var(--white); }
.eco-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.eco-img { display: flex; justify-content: center; }
.eco-img img { width: 100%; max-width: 480px; object-fit: contain; }
.eco-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 32px; }
.eco-card {
  background: var(--off-white); border: 1px solid var(--gray-light);
  border-radius: 16px; padding: 20px; transition: all 0.3s; cursor: pointer; text-decoration: none; display: block; color: inherit;
}
.eco-card:hover { border-color: rgba(61,184,107,0.3); background: white; box-shadow: 0 8px 24px rgba(0,0,0,0.07); transform: translateY(-2px); }
.eco-card-icon { font-size: 22px; margin-bottom: 8px; }
.eco-card-name { font-size: 13px; font-weight: 700; color: var(--green-deep); margin-bottom: 4px; }
.eco-card-desc { font-size: 12px; color: var(--gray-text); line-height: 1.5; }

/* ── SOLUTIONS GRID ── */
.solutions-section { background: var(--off-white); }
.solutions-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 52px; }
.sol-card {
  background: white; border: 1.5px solid var(--gray-light);
  border-radius: 20px; padding: 30px; cursor: pointer; transition: all 0.3s;
  text-decoration: none; display: block; color: inherit; position: relative; overflow: hidden;
}
.sol-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--green-fresh), var(--green-lime));
  transform: scaleX(0); transition: transform 0.3s; transform-origin: left;
}
.sol-card:hover { border-color: rgba(61,184,107,0.25); transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,0.1); }
.sol-card:hover::after { transform: scaleX(1); }
.sol-card-badge {
  display: inline-flex; align-items: center; gap: 5px;
  background: rgba(201,168,76,0.1); border: 1px solid rgba(201,168,76,0.2);
  border-radius: 100px; padding: 3px 10px; font-size: 10.5px; font-weight: 700;
  color: #7A5E1A; margin-bottom: 14px;
}
.sol-card-icon {
  width: 50px; height: 50px; border-radius: 13px; display: flex; align-items: center;
  justify-content: center; font-size: 23px; margin-bottom: 18px;
  background: var(--off-white); box-shadow: 0 2px 10px rgba(0,0,0,0.07);
}
.sol-card-name { font-size: 18px; font-weight: 800; color: var(--green-deep); letter-spacing: -0.4px; margin-bottom: 9px; }
.sol-card-desc { font-size: 13.5px; color: var(--gray-text); line-height: 1.65; margin-bottom: 18px; }
.sol-card-link { font-size: 13px; font-weight: 700; color: var(--green-fresh); display: flex; align-items: center; gap: 5px; }
.sol-card-link::after { content: '→'; transition: transform 0.2s; }
.sol-card:hover .sol-card-link::after { transform: translateX(5px); }

/* ── VIDEO SECTION ── */
.video-section { background: var(--green-deep); padding: 80px 0; }
.video-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.video-label {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,168,76,0.15); border: 1px solid rgba(201,168,76,0.3);
  border-radius: 100px; padding: 5px 13px;
  font-size: 11px; font-weight: 700; color: var(--gold-light);
  letter-spacing: 1px; text-transform: uppercase; margin-bottom: 20px;
}
.video-title { font-size: clamp(28px,3.5vw,44px); font-weight: 900; letter-spacing: -1.5px; line-height: 1.1; color: white; margin-bottom: 16px; }
.video-title em { font-style: normal; color: var(--green-glow); }
.video-desc { font-size: 15px; color: rgba(255,255,255,0.65); line-height: 1.75; margin-bottom: 28px; }
.video-frame-wrap {
  border-radius: 20px; overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.4);
  aspect-ratio: 16/9; background: var(--dark); position: relative;
}
.video-frame-wrap iframe { width: 100%; height: 100%; display: block; border: none; }

/* ── NUMBERS ── */
.numbers-section { background: var(--off-white); }
.numbers-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 2px; margin-top: 52px; background: var(--gray-light);
  border-radius: 20px; overflow: hidden;
}
.number-item { background: white; padding: 38px 28px; text-align: center; transition: background 0.3s; }
.number-item:hover { background: #f0faf4; }
.number-big {
  font-size: clamp(36px,4vw,52px); font-weight: 900; color: var(--green-deep);
  letter-spacing: -2px; line-height: 1; margin-bottom: 8px;
}
.number-big em { font-style: normal; color: var(--green-fresh); }
.number-label { font-size: 13px; color: var(--gray-text); line-height: 1.45; max-width: 130px; margin: 0 auto; font-weight: 500; }

/* ── FIELD IMAGE ── */
.field-section { background: white; }
.field-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.field-img { border-radius: 24px; overflow: hidden; }
.field-img img { width: 100%; display: block; object-fit: cover; border-radius: 24px; }

/* ── PACOTES (HOME) ── */
.operacao-section { background: white; }
.operacao-header { text-align: center; max-width: 700px; margin: 0 auto 60px; }
.operacao-header .section-label { justify-content: center; }
.operacao-header .section-label::before { display: none; }
.operacao-header .section-label::after { content: ''; width: 22px; height: 2px; background: var(--green-fresh); border-radius: 2px; }
.packages-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-bottom: 44px; }
.package-card {
  background: white; border: 1.5px solid var(--gray-light);
  border-radius: 22px; padding: 32px; position: relative; overflow: hidden; transition: all 0.3s;
}
.package-card:hover { transform: translateY(-5px); box-shadow: 0 20px 60px rgba(0,0,0,0.1); }
.package-card.featured { border-color: var(--gold); background: linear-gradient(160deg,#FFFDF5,white); box-shadow: 0 8px 40px rgba(201,168,76,0.15); }
.package-featured-badge {
  position: absolute; top: 18px; right: 18px;
  background: var(--gold); color: white; font-size: 10px; font-weight: 800;
  letter-spacing: 0.8px; text-transform: uppercase; padding: 4px 10px; border-radius: 100px;
}
.package-name { font-size: 22px; font-weight: 900; color: var(--green-deep); letter-spacing: -0.5px; margin-bottom: 4px; margin-top: 12px; }
.package-tagline { font-size: 13px; color: var(--gray-text); margin-bottom: 20px; }
.package-price-label { font-size: 11.5px; color: var(--gray-text); font-weight: 500; margin-bottom: 3px; }
.package-price { font-size: 34px; font-weight: 900; color: var(--green-deep); letter-spacing: -1px; margin-bottom: 3px; }
.package-price span { font-size: 13px; font-weight: 500; color: var(--gray-text); }
.package-divider { height: 1px; background: var(--gray-light); margin: 20px 0; }
.package-features { list-style: none; display: flex; flex-direction: column; gap: 9px; margin-bottom: 24px; }
.package-features li { display: flex; align-items: flex-start; gap: 9px; font-size: 13px; color: var(--gray-text); line-height: 1.5; }
.package-features li::before {
  content: '✓'; width: 17px; height: 17px; border-radius: 50%;
  background: rgba(61,184,107,0.12); color: var(--green-fresh);
  font-size: 9.5px; font-weight: 800; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 1px;
}
.package-btn {
  width: 100%; background: var(--off-white); border: 1.5px solid var(--gray-light);
  color: var(--green-deep); border-radius: 10px; padding: 12px;
  font-family: var(--font); font-size: 13.5px; font-weight: 700;
  cursor: pointer; transition: all 0.25s; text-decoration: none; display: block; text-align: center; box-sizing: border-box;
}
.package-btn.primary { background: var(--green-deep); border-color: var(--green-deep); color: white; }
.package-btn.gold { background: var(--gold); border-color: var(--gold); color: white; }
.package-btn:hover { transform: translateY(-1px); filter: brightness(1.06); }

/* ── CLUBE SOL ── */
.clube-section { background: var(--off-white); }
.clube-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.clube-benefits { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 32px; }
.clube-benefit {
  background: white; border: 1px solid var(--gray-light);
  border-radius: 15px; padding: 20px; transition: all 0.3s;
}
.clube-benefit:hover { border-color: rgba(61,184,107,0.2); box-shadow: 0 6px 20px rgba(0,0,0,0.07); }
.clube-benefit-icon { font-size: 22px; margin-bottom: 9px; }
.clube-benefit-title { font-size: 13.5px; font-weight: 700; color: var(--green-deep); margin-bottom: 5px; }
.clube-benefit-desc { font-size: 12px; color: var(--gray-text); line-height: 1.55; }
.clube-visual {
  background: linear-gradient(145deg, var(--green-deep), #1a4a2e);
  border-radius: 26px; padding: 44px 38px; position: relative; overflow: hidden;
}
.clube-visual::before {
  content: ''; position: absolute; top: -100px; right: -100px;
  width: 300px; height: 300px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.18), transparent 70%);
}
.clube-visual-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,168,76,0.2); border: 1px solid rgba(201,168,76,0.3);
  border-radius: 100px; padding: 5px 13px; font-size: 11px; font-weight: 700;
  color: var(--gold-light); letter-spacing: 0.5px; text-transform: uppercase; margin-bottom: 22px;
}
.clube-visual-title { font-size: 32px; font-weight: 900; color: white; letter-spacing: -1px; line-height: 1.1; margin-bottom: 18px; }
.clube-visual-desc { font-size: 15px; color: rgba(255,255,255,0.68); line-height: 1.7; margin-bottom: 28px; }
.clube-rule {
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.11);
  border-radius: 12px; padding: 16px 18px; display: flex; gap: 12px; align-items: flex-start; margin-bottom: 10px;
}
.clube-rule-icon { font-size: 18px; flex-shrink: 0; margin-top: 1px; }
.clube-rule-text { font-size: 13px; color: rgba(255,255,255,0.8); line-height: 1.55; }
.clube-rule-text strong { color: white; }

/* ── BLOG / NEWS (preview) ── */
.blog-section { background: var(--white); }
.blog-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 44px; flex-wrap: wrap; gap: 16px; }
.blog-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.blog-card {
  background: white; border: 1px solid var(--gray-light);
  border-radius: 18px; overflow: hidden; cursor: pointer; transition: all 0.3s;
  text-decoration: none; display: flex; flex-direction: column; color: inherit;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,0.1); }
.blog-card-img { height: 165px; display: flex; align-items: center; justify-content: center; font-size: 36px; position: relative; overflow: hidden; flex-shrink: 0; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.blog-card-img-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.45)); }
.blog-card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.blog-card-cat { font-size: 10.5px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; color: var(--green-fresh); margin-bottom: 7px; }
.blog-card-title { font-size: 15px; font-weight: 800; color: var(--green-deep); line-height: 1.35; letter-spacing: -0.3px; margin-bottom: 9px; flex: 1; }
.blog-card-excerpt { font-size: 12.5px; color: var(--gray-text); line-height: 1.6; margin-bottom: 14px; }
.blog-card-meta { font-size: 11.5px; color: var(--gray-mid); font-weight: 500; }

/* ── CTA SECTION ── */
.cta-section { background: var(--green-deep); position: relative; overflow: hidden; padding: 100px 0; }
.cta-section::before {
  content: ''; position: absolute; bottom: -200px; left: -100px;
  width: 480px; height: 480px; border-radius: 50%;
  background: radial-gradient(circle, rgba(61,184,107,0.18), transparent 70%);
}
.cta-inner { text-align: center; position: relative; z-index: 1; max-width: 660px; margin: 0 auto; }
.cta-title { font-size: clamp(36px,5vw,60px); font-weight: 900; color: white; letter-spacing: -2px; line-height: 1.05; margin-bottom: 18px; }
.cta-title em { font-style: normal; color: var(--green-glow); }
.cta-desc { font-size: 16px; font-weight: 400; color: rgba(255,255,255,0.62); line-height: 1.7; margin-bottom: 36px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ══════════════════════════════════════
   PÁGINAS INTERNAS — ABOUT / QUEM SOMOS
══════════════════════════════════════ */
.about-hero {
  padding: 120px 0 90px; background: var(--off-white); text-align: center;
  position: relative; overflow: hidden;
}
.about-hero::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(61,184,107,0.07), transparent 60%);
}
.about-hero-inner { position: relative; z-index: 1; max-width: 740px; margin: 0 auto; padding: 0 32px; }
.about-hero-title { font-size: clamp(40px,6vw,68px); font-weight: 900; letter-spacing: -2.5px; line-height: 1.0; color: var(--green-deep); margin-bottom: 22px; }
.about-hero-title em { font-style: normal; color: var(--green-fresh); }
.about-hero-desc { font-size: 17px; font-weight: 400; color: var(--gray-text); line-height: 1.7; }
.manifesto-section { padding: 96px 0; background: white; }
.manifesto-inner { max-width: 820px; margin: 0 auto; padding: 0 32px; }
.manifesto-text { font-size: 17px; font-weight: 400; color: var(--dark); line-height: 1.85; margin-bottom: 22px; }
.manifesto-text strong { font-weight: 700; color: var(--green-deep); }
.manifesto-quote { border-left: 3px solid var(--green-fresh); padding-left: 26px; margin: 36px 0; }
.manifesto-quote p { font-size: 22px; font-weight: 800; color: var(--green-deep); line-height: 1.35; letter-spacing: -0.5px; }
.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 52px; }
.value-card { background: var(--off-white); border-radius: 18px; padding: 30px; border: 1px solid var(--gray-light); }
.value-num { font-size: 44px; font-weight: 900; color: rgba(61,184,107,0.18); letter-spacing: -2px; line-height: 1; margin-bottom: 14px; }
.value-title { font-size: 18px; font-weight: 800; color: var(--green-deep); margin-bottom: 9px; letter-spacing: -0.3px; }
.value-desc { font-size: 13.5px; color: var(--gray-text); line-height: 1.65; }

/* ── ABOUT helpers ── */
.about-hero .section-label { justify-content: center; }
.about-hero .section-label::before { display: none; }
.about-hero .section-label::after { content: ''; width: 22px; height: 2px; background: var(--green-fresh); border-radius: 2px; }

/* ══════════════════════════════════════
   PÁGINAS DE PRODUTO (SOL OPERAÇÃO, TELEMETRIA…)
══════════════════════════════════════ */
.product-hero { padding: 110px 0 80px; position: relative; overflow: hidden; }
.product-hero.dark { background: var(--green-deep); }
.product-hero.light { background: var(--off-white); }
.product-hero-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 32px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center;
  position: relative; z-index: 1;
}
.product-hero-badge { display: inline-flex; align-items: center; gap: 7px; border-radius: 100px; padding: 6px 14px; font-size: 11px; font-weight: 700; margin-bottom: 18px; text-transform: uppercase; letter-spacing: 0.5px; }
.product-hero-badge.on-dark { background: rgba(201,168,76,0.15); border: 1px solid rgba(201,168,76,0.3); color: var(--gold-light); }
.product-hero-badge.on-light { background: rgba(61,184,107,0.1); border: 1px solid rgba(61,184,107,0.2); color: var(--green-mid); }
.product-title { font-size: clamp(36px,5vw,56px); font-weight: 900; letter-spacing: -2px; line-height: 1.0; margin-bottom: 18px; }
.product-title.white { color: white; }
.product-title.dark { color: var(--green-deep); }
.product-title em { font-style: normal; color: var(--green-glow); }
.product-desc { font-size: 15.5px; font-weight: 400; line-height: 1.75; margin-bottom: 30px; }
.product-desc.white { color: rgba(255,255,255,0.72); }
.product-desc.dark { color: var(--gray-text); }
.product-hero-kpis { display: flex; gap: 28px; margin-top: 36px; padding-top: 28px; flex-wrap: wrap; }
.product-hero-kpis.dark { border-top: 1px solid rgba(0,0,0,0.1); }
.product-hero-kpis.light-border { border-top: 1px solid rgba(255,255,255,0.12); }
.product-kpi-num { font-size: 26px; font-weight: 900; letter-spacing: -1px; }
.product-kpi-num.white { color: white; }
.product-kpi-num.dark { color: var(--green-deep); }
.product-kpi-num em { font-style: normal; color: var(--green-glow); }
.product-kpi-label { font-size: 12px; margin-top: 2px; font-weight: 500; }
.product-kpi-label.white { color: rgba(255,255,255,0.5); }
.product-kpi-label.dark { color: var(--gray-text); }
.product-visual-box { border-radius: 22px; padding: 32px; display: flex; flex-direction: column; gap: 14px; }
.product-visual-box.dark-box { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); }
.product-visual-box.light-box { background: white; border: 1px solid var(--gray-light); box-shadow: 0 16px 50px rgba(0,0,0,0.09); }
.feat-row { display: flex; align-items: center; gap: 14px; padding: 13px; border-radius: 11px; }
.feat-row.dark-row { background: rgba(255,255,255,0.05); }
.feat-row.light-row { background: var(--off-white); }
.feat-icon { width: 38px; height: 38px; border-radius: 9px; background: rgba(61,184,107,0.18); display: flex; align-items: center; justify-content: center; font-size: 17px; flex-shrink: 0; }
.feat-icon.gold { background: rgba(201,168,76,0.2); }
.feat-text-title { font-size: 13.5px; font-weight: 700; }
.feat-text-title.white { color: white; }
.feat-text-title.dark { color: var(--green-deep); }
.feat-text-sub { font-size: 12px; margin-top: 2px; font-weight: 400; }
.feat-text-sub.white { color: rgba(255,255,255,0.55); }
.feat-text-sub.dark { color: var(--gray-text); }
.features-section { padding: 96px 0; background: white; }
.features-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 52px; }
.feature-card { border: 1px solid var(--gray-light); border-radius: 18px; padding: 30px; transition: all 0.3s; }
.feature-card:hover { border-color: rgba(61,184,107,0.25); background: var(--off-white); transform: translateY(-2px); }
.feature-icon { width: 46px; height: 46px; border-radius: 12px; background: rgba(61,184,107,0.1); display: flex; align-items: center; justify-content: center; font-size: 21px; margin-bottom: 16px; }
.feature-title { font-size: 17px; font-weight: 800; color: var(--green-deep); margin-bottom: 7px; letter-spacing: -0.3px; }
.feature-desc { font-size: 13.5px; color: var(--gray-text); line-height: 1.65; }

/* ── ENGAGEMENT (PROMETE / NÃO PROMETE) ── */
.engagement-section { padding: 96px 0; background: var(--off-white); }
.engagement-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.engage-card { border-radius: 20px; padding: 34px; border: 1.5px solid; }
.engage-card.yes { background: rgba(61,184,107,0.04); border-color: rgba(61,184,107,0.2); }
.engage-card.no { background: rgba(200,50,50,0.03); border-color: rgba(200,50,50,0.15); }
.engage-header { display: flex; align-items: center; gap: 12px; margin-bottom: 22px; }
.engage-icon { width: 38px; height: 38px; border-radius: 11px; display: flex; align-items: center; justify-content: center; font-size: 18px; }
.engage-icon.yes-bg { background: rgba(61,184,107,0.14); }
.engage-icon.no-bg { background: rgba(200,50,50,0.1); }
.engage-title { font-size: 19px; font-weight: 900; letter-spacing: -0.4px; }
.engage-title.yes-text { color: var(--green-mid); }
.engage-title.no-text { color: #c03030; }
.engage-list { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.engage-list li { font-size: 13.5px; color: var(--dark); line-height: 1.5; padding: 10px 13px; background: rgba(255,255,255,0.8); border-radius: 9px; display: flex; align-items: flex-start; gap: 9px; }
.engage-list li::before { content: '✓'; font-size: 10px; font-weight: 900; flex-shrink: 0; margin-top: 2px; }
.engage-list.yes-list li::before { color: var(--green-fresh); }
.engage-list.no-list li::before { content: '✕'; color: #c03030; }

/* ══════════════════════════════════════
   PÁGINAS DE PACOTE
══════════════════════════════════════ */
.pkg-hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.pkg-feat-card {
  border: 1.5px solid var(--gray-light); border-radius: 18px; padding: 28px;
  transition: all 0.3s; background: white;
}
.pkg-feat-card:hover { border-color: rgba(61,184,107,0.25); transform: translateY(-3px); box-shadow: 0 12px 36px rgba(0,0,0,0.08); }
.pkg-feat-icon { width: 48px; height: 48px; border-radius: 13px; display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 16px; background: rgba(61,184,107,0.1); }
.pkg-feat-title { font-size: 15px; font-weight: 800; color: var(--green-deep); margin-bottom: 9px; letter-spacing: -0.3px; line-height: 1.3; }
.pkg-feat-desc { font-size: 13.5px; color: var(--gray-text); line-height: 1.65; }

/* ── COMPARISON TABLE ── */
.pkg-compare-table { background: white; border-radius: 18px; border: 1.5px solid var(--gray-light); overflow: hidden; }
.pct-header { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; background: var(--green-deep); padding: 18px 24px; align-items: center; }
.pct-feature { font-size: 12px; font-weight: 700; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.8px; }
.pct-header .pct-feature { color: rgba(255,255,255,0.4); }
.pct-col { text-align: center; font-size: 13px; font-weight: 700; color: rgba(255,255,255,0.6); line-height: 1.35; }
.pct-col span { font-size: 11px; font-weight: 500; color: rgba(255,255,255,0.35); }
.pct-col.pct-active { color: var(--green-glow) !important; background: rgba(61,184,107,0.12); border-radius: 8px; padding: 6px 8px; }
.pct-col.pct-active span { color: rgba(122,224,154,0.6) !important; }
.pct-row { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; padding: 14px 24px; border-bottom: 1px solid var(--gray-light); align-items: center; transition: background 0.15s; }
.pct-row:last-child { border-bottom: none; }
.pct-row:hover { background: #fafbfa; }
.pct-row .pct-feature { font-size: 13.5px; font-weight: 600; color: var(--dark); }
.pct-row .pct-col { text-align: center; font-size: 13px; color: var(--gray-text); font-weight: 500; }
.pct-row .pct-col.pct-active { color: var(--green-mid); font-weight: 700; background: rgba(61,184,107,0.06); border-radius: 6px; padding: 4px 8px; }
.pct-row-price .pct-feature { font-weight: 800; color: var(--green-deep); }
.pct-col.pct-upgrade { cursor: pointer; color: var(--green-fresh) !important; }
.pct-col.pct-upgrade:hover { text-decoration: underline; }

/* ══════════════════════════════════════
   ARTIGOS / BLOG
══════════════════════════════════════ */
.news-hero { padding: 120px 0 72px; background: var(--off-white); text-align: center; }
.news-grid-full { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-top: 52px; }
.news-card { background: white; border: 1px solid var(--gray-light); border-radius: 18px; overflow: hidden; cursor: pointer; transition: all 0.3s; display: flex; flex-direction: column; }
.news-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,0.1); }
.news-card-img { height: 195px; display: flex; align-items: center; justify-content: center; font-size: 44px; position: relative; overflow: hidden; flex-shrink: 0; }
.news-card-img img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.news-card-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.news-card-cat { font-size: 10.5px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; color: var(--green-fresh); margin-bottom: 8px; }
.news-card-title { font-size: 17px; font-weight: 800; color: var(--green-deep); line-height: 1.3; letter-spacing: -0.3px; margin-bottom: 9px; flex: 1; }
.news-card-excerpt { font-size: 13.5px; color: var(--gray-text); line-height: 1.6; margin-bottom: 14px; }
.news-card-date { font-size: 12px; color: var(--gray-mid); font-weight: 500; }

.article-hero { padding: 90px 0 60px; background: var(--off-white); border-bottom: 1px solid var(--gray-light); }
.article-hero-inner { max-width: 820px; margin: 0 auto; padding: 0 32px; }
.article-back { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; color: var(--gray-text); text-decoration: none; margin-bottom: 28px; transition: color 0.2s; }
.article-back:hover { color: var(--green-deep); }
.article-cat { font-size: 11px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; color: var(--green-fresh); margin-bottom: 14px; }
.article-title { font-size: clamp(28px,4vw,46px); font-weight: 900; letter-spacing: -1.5px; line-height: 1.08; color: var(--green-deep); margin-bottom: 18px; }
.article-meta { font-size: 13px; color: var(--gray-text); display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.article-meta-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--gray-mid); }
.article-featured-img { max-width: 900px; margin: 0 auto; padding: 0 32px; }
.article-cover-inner { width: 100%; height: 420px; border-radius: 22px; margin-top: -40px; box-shadow: 0 20px 60px rgba(0,0,0,0.15); display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.article-cover-inner::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0.18) 0%, rgba(0,0,0,0.05) 50%, rgba(0,0,0,0.22) 100%); border-radius: 22px; }
.article-cover-emoji { font-size: 80px; position: relative; z-index: 1; filter: drop-shadow(0 4px 16px rgba(0,0,0,0.3)); }
.article-cover-tag { position: absolute; bottom: 24px; left: 28px; z-index: 2; background: rgba(255,255,255,0.15); backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,0.25); border-radius: 100px; padding: 6px 16px; font-family: var(--font); font-size: 12px; font-weight: 700; color: white; letter-spacing: 0.5px; text-transform: uppercase; }
.article-body-wrap { max-width: 720px; margin: 48px auto 0; padding: 0 32px 96px; }
.article-body h2 { font-size: 24px; font-weight: 800; color: var(--green-deep); letter-spacing: -0.5px; margin: 36px 0 16px; }
.article-body p { font-size: 16px; line-height: 1.85; color: #3A4238; margin-bottom: 20px; }
.article-body strong { font-weight: 700; color: var(--green-deep); }
.article-body ul { padding-left: 24px; margin-bottom: 20px; }
.article-body ul li { font-size: 16px; line-height: 1.75; color: #3A4238; margin-bottom: 8px; }
.article-quote { border-left: 4px solid var(--green-fresh); padding: 16px 24px; margin: 32px 0; background: rgba(61,184,107,0.06); border-radius: 0 12px 12px 0; }
.article-quote p { font-size: 17px; font-weight: 600; color: var(--green-deep); margin: 0; font-style: italic; line-height: 1.6; }
.article-related-title { font-size: 22px; font-weight: 800; color: var(--green-deep); letter-spacing: -0.5px; margin-bottom: 24px; }
.article-related-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
footer { background: var(--dark); padding: 76px 0 36px; }
.footer-grid { display: grid; grid-template-columns: 2.2fr 1fr 1fr 1fr; gap: 44px; margin-bottom: 52px; }
.footer-logo img { height: 44px; width: auto; margin-bottom: 18px; display: block; }
.footer-desc { font-size: 13.5px; color: rgba(255,255,255,0.42); line-height: 1.7; margin-bottom: 22px; max-width: 300px; }
.footer-social { display: flex; gap: 9px; flex-wrap: wrap; }
.footer-social a {
  width: 34px; height: 34px; border-radius: 9px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; text-decoration: none; transition: all 0.2s; color: rgba(255,255,255,0.6);
}
.footer-social a:hover { background: rgba(255,255,255,0.12); color: white; }
.footer-col-title { font-size: 11px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 18px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,0.6); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: white; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.3); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 12px; color: rgba(255,255,255,0.35); text-decoration: none; transition: color 0.2s; }
.footer-legal a:hover { color: rgba(255,255,255,0.7); }

/* ── PRESS MODAL ── */
.press-modal { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 3000; align-items: center; justify-content: center; padding: 24px; }
.press-modal.open { display: flex; }
.press-modal-box { background: white; border-radius: 22px; padding: 40px; max-width: 520px; width: 100%; position: relative; max-height: 80vh; overflow-y: auto; }
.press-modal-close { position: absolute; top: 16px; right: 16px; font-size: 22px; cursor: pointer; color: var(--gray-text); background: var(--off-white); border-radius: 50%; width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; border: none; }
.press-modal-title { font-size: 22px; font-weight: 900; color: var(--green-deep); letter-spacing: -0.5px; margin-bottom: 8px; }
.press-modal-sub { font-size: 14px; color: var(--gray-text); margin-bottom: 28px; }
.press-contact { padding: 18px 0; border-bottom: 1px solid var(--gray-light); }
.press-contact:last-child { border-bottom: none; }
.press-contact-name { font-size: 14.5px; font-weight: 700; color: var(--green-deep); margin-bottom: 4px; }
.press-contact-info { display: flex; flex-direction: column; gap: 3px; }
.press-contact-info a { font-size: 13px; color: var(--gray-text); text-decoration: none; transition: color 0.2s; }
.press-contact-info a:hover { color: var(--green-fresh); }

/* ── TOAST ── */
.toast {
  position: fixed; bottom: 24px; right: 24px; z-index: 5000;
  background: var(--green-deep); color: white;
  padding: 13px 20px; border-radius: 12px; font-size: 14px; font-weight: 600;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2); opacity: 0;
  transition: opacity 0.3s; pointer-events: none;
}
.toast.show { opacity: 1; }

/* ══════════════════════════════════════
   ANIMAÇÕES
══════════════════════════════════════ */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.fade-up.visible { opacity: 1; transform: none; }

/* ══════════════════════════════════════
   PÁGINAS LEGAIS (LGPD, Privacidade, Termos)
══════════════════════════════════════ */
.legal-hero {
  padding: 100px 0 64px; background: var(--off-white);
  border-bottom: 1px solid var(--gray-light);
}
.legal-hero-inner { max-width: 820px; margin: 0 auto; padding: 0 32px; }
.legal-title { font-size: clamp(32px,4vw,50px); font-weight: 900; letter-spacing: -1.5px; color: var(--green-deep); margin-bottom: 12px; }
.legal-meta { font-size: 13px; color: var(--gray-text); }
.legal-body-wrap { max-width: 820px; margin: 60px auto; padding: 0 32px 96px; }
.legal-body h2 { font-size: 20px; font-weight: 800; color: var(--green-deep); letter-spacing: -0.3px; margin: 40px 0 14px; padding-top: 10px; border-top: 1px solid var(--gray-light); }
.legal-body h2:first-child { border-top: none; margin-top: 0; }
.legal-body p { font-size: 15px; line-height: 1.85; color: #3A4238; margin-bottom: 16px; }
.legal-body ul { padding-left: 22px; margin-bottom: 16px; }
.legal-body ul li { font-size: 15px; line-height: 1.75; color: #3A4238; margin-bottom: 8px; }
.legal-body strong { font-weight: 700; color: var(--green-deep); }
.legal-body a { color: var(--green-mid); text-decoration: underline; }
.legal-body a:hover { color: var(--green-fresh); }
.legal-highlight {
  background: rgba(61,184,107,0.06); border: 1px solid rgba(61,184,107,0.15);
  border-radius: 12px; padding: 20px 24px; margin: 24px 0;
}
.legal-highlight p { margin: 0; font-size: 14px; color: var(--green-mid); font-weight: 500; }

/* ══════════════════════════════════════
   RESPONSIVO
══════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-widget-col { display: none; }
  .hero-bg-img { width: 50%; }
  .hero-bg-img::before { background: linear-gradient(90deg, white 40%, rgba(255,255,255,0.2) 80%, transparent); }
  .pos-inner, .eco-inner, .clube-inner, .product-hero-inner, .video-inner, .field-inner { grid-template-columns: 1fr; gap: 44px; }
  .pos-cards { display: none; }
  .packages-grid { grid-template-columns: 1fr; max-width: 460px; margin-left: auto; margin-right: auto; }
  .solutions-grid, .features-grid, .values-grid { grid-template-columns: repeat(2,1fr); }
  .numbers-grid { grid-template-columns: repeat(2,1fr); }
  .blog-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .engagement-inner { grid-template-columns: 1fr; }
  .news-grid-full { grid-template-columns: repeat(2,1fr); }
  .article-related-grid { grid-template-columns: repeat(2,1fr); }
  .pkg-hero-grid { grid-template-columns: 1fr !important; gap: 40px !important; }
  .pkg-hero-grid > div:last-child { display: none; }
}

@media (max-width: 900px) {
  .pkg-feat-grid { grid-template-columns: repeat(2,1fr) !important; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .topbar { padding: 7px 16px; }
  .topbar-left { display: none; }
  .solutions-grid, .blog-grid, .features-grid, .values-grid { grid-template-columns: 1fr; }
  .numbers-grid { grid-template-columns: repeat(2,1fr); }
  .news-grid-full, .article-related-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .footer-legal { flex-wrap: wrap; gap: 12px; }
  section { padding: 64px 0; }
  .hero-bg-img { display: none; }
  .hero-inner { padding: 80px 24px 64px; }
  .clube-benefits { grid-template-columns: 1fr; }
  .eco-grid { grid-template-columns: 1fr 1fr; }
  .pct-header, .pct-row { grid-template-columns: 1.5fr repeat(3, 0.8fr); padding: 12px 14px; }
  .pct-row .pct-feature { font-size: 12px; }
  .pct-col { font-size: 11.5px; }
}

@media (max-width: 600px) {
  .pkg-feat-grid { grid-template-columns: 1fr !important; }
  .pct-header, .pct-row { grid-template-columns: 1fr 0.7fr 0.7fr 0.7fr !important; font-size: 11px !important; }
  .container { padding: 0 20px; }
}

/* ══════════════════════════════════════
   IMPACTO TERRITORIAL — RESPONSIVO
══════════════════════════════════════ */
@media (max-width: 1024px) {
  /* grid 3 col → 2 col nos KPIs secundários */
  [style*="grid-template-columns:repeat(3,1fr)"] {
    grid-template-columns: repeat(2,1fr) !important;
  }
}
@media (max-width: 768px) {
  /* grid → 1 col no mobile */
  [style*="grid-template-columns:repeat(3,1fr)"] {
    grid-template-columns: 1fr !important;
  }
  /* hero card impacto em coluna */
  [style*="padding:44px 52px"] {
    flex-direction: column !important;
    padding: 28px 24px !important;
    gap: 24px !important;
  }
  [style*="border-left:1px solid rgba(255,255,255,0.1)"] {
    border-left: none !important;
    border-top: 1px solid rgba(255,255,255,0.1) !important;
    padding-left: 0 !important;
    padding-top: 24px !important;
  }
}

/* ══════════════════════════════════════
   PHOSPHOR ICONS — estilos globais
══════════════════════════════════════ */
ph-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  vertical-align: middle;
  flex-shrink: 0;
}

/* Tamanhos contextuais */
.nav-links ph-icon,
.mobile-nav ph-icon           { font-size: 16px; }
.topbar-social ph-icon        { font-size: 14px; }
.footer-social ph-icon        { font-size: 16px; }
.pos-card-icon ph-icon,
.feat-icon ph-icon,
.feature-icon ph-icon,
.pkg-feat-icon ph-icon,
.benefit-icon ph-icon,
.channel-icon ph-icon,
.eco-card-icon ph-icon        { font-size: 24px; }
.clube-benefit-icon ph-icon,
.clube-rule-icon ph-icon,
.engage-icon ph-icon,
.how-num ph-icon              { font-size: 20px; }
.sol-card-icon ph-icon        { font-size: 26px; }
.hw-float-icon ph-icon        { font-size: 20px; }
.section-label ph-icon        { font-size: 13px; }
.btn-primary ph-icon,
.btn-secondary ph-icon,
.btn-green ph-icon,
.btn-white ph-icon,
.btn-outline-white ph-icon    { font-size: 16px; }


/* ══════════════════════════════════════
   OFFSET HEADER FIXO
   topbar 37px + nav 66px = 103px
══════════════════════════════════════ */
main { padding-top: 103px; }

/* Nada — cada hero controla seu próprio padding-top via CSS inline ou scoped */

/* Breadcrumb cola no topo sem margem extra */
.caso-breadcrumb { margin-top: 0; }
