﻿/* PRO-EPI site styles
   Global layout, sections, buttons and modal styles. */
*,*::before,*::after{margin:0;padding:0;box-sizing:border-box}
:root{
  --green:#1f8f4d;
  --green-mid:#2aa85f;
  --green-bright:#43c878;
  --green-light:#eaf8f0;
  --navy:#0b1f3a;
  --navy-mid:#12315a;
  --blue:#173b6d;
  --blue-light:#2d5f9f;
  --blue-pale:#eef4fb;
  --gray-100:#f8f9fa;
  --gray-200:#eef0f3;
  --gray-300:#d4d8de;
  --gray-500:#6b7280;
  --gray-700:#374151;
  --text:#061b3a;
  --text-mid:#374151;
  --text-light:#6b7280;
  --white:#ffffff;
  --shadow-sm:0 1px 8px rgba(6,27,58,.07);
  --shadow-md:0 4px 24px rgba(6,27,58,.10);
  --shadow-lg:0 12px 48px rgba(6,27,58,.14);
}
html{scroll-behavior:smooth}
body{font-family:'Barlow',sans-serif;color:var(--text);background:var(--white);overflow-x:hidden;line-height:1.6}
.container{max-width:1280px;margin:0 auto;padding:0 28px}
.section{padding:82px 0}
section[id],footer[id]{scroll-margin-top:112px}

/* ── NAV ── */
nav{
  position:fixed;top:0;left:0;right:0;z-index:999;
  background:rgba(255,255,255,.98);
  box-shadow:var(--shadow-sm);
  border-bottom:1px solid rgba(6,27,58,.08);
  transition:box-shadow .3s,background .3s;
}
.nav-main{
  min-height:94px;display:grid;grid-template-columns:200px minmax(0,1fr) auto;
  align-items:center;gap:clamp(22px,3vw,48px);
}
.logo{display:flex;align-items:center;justify-content:flex-start;text-decoration:none;min-width:0}
.logo img{display:block;object-fit:contain;transition:transform .22s ease,opacity .22s ease}
.logo-proepi{height:58px;width:auto;max-width:190px}
.nav-links{display:flex;align-items:center;justify-content:center;gap:clamp(20px,2.1vw,34px);list-style:none}
.nav-links a{
  color:var(--navy);text-decoration:none;font-size:14px;font-weight:600;letter-spacing:.05px;
  white-space:nowrap;transition:color .2s;
}
.nav-links a:hover{color:var(--green)}
.nav-actions{display:flex;align-items:center;justify-content:flex-end;gap:14px}
.btn-nav-cta{
  background:linear-gradient(135deg,#18a957,#087b3d);color:var(--white)!important;
  padding:13px 20px;border-radius:8px;font-weight:700!important;
  font-size:14px!important;letter-spacing:.1px;
  transition:background .2s,transform .15s!important;
  display:inline-flex;align-items:center;gap:8px;
  text-decoration:none;white-space:nowrap;box-shadow:0 8px 22px rgba(15,143,72,.19);
}
.btn-nav-cta:hover{background:linear-gradient(135deg,#20b960,#076d36)!important;transform:translateY(-1px)!important}
.btn-nav-cta svg{width:18px;height:18px;fill:white}
.hamburger{
  display:none;align-items:center;justify-content:center;background:var(--navy);border:0;
  width:44px;height:44px;border-radius:8px;cursor:pointer;
}
.hamburger-lines{display:flex;flex-direction:column;gap:5px}
.hamburger-lines span{display:block;width:24px;height:2px;background:white;border-radius:2px;transition:all .3s}
.nav-mobile{display:none;flex-direction:column;background:white;padding:12px 24px 18px;gap:2px;border-top:1px solid var(--gray-200);box-shadow:var(--shadow-md)}
.nav-mobile.open{display:flex}
.nav-mobile a{color:var(--gray-700);text-decoration:none;font-size:15px;font-weight:500;padding:11px 0;border-bottom:1px solid var(--gray-100)}
.nav-mobile a:last-child{border-bottom:none;color:var(--green);font-weight:700}

/* ── HERO ── */
#hero{
  min-height:clamp(620px,84vh,760px);
  background:linear-gradient(150deg,#07182e 0%,var(--navy) 48%,var(--navy-mid) 100%);
  display:flex;align-items:center;position:relative;overflow:hidden;
  padding-top:162px;padding-bottom:18px;
}
#hero .container{
  width:min(100%,1180px);
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:clamp(48px,5vw,72px);
  align-items:center;
  margin:0 auto;
  padding-left:clamp(28px,4vw,56px);
  padding-right:clamp(28px,4vw,56px);
}
.hero-pattern{
  position:absolute;inset:0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px,transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,.025) 1px,transparent 1px);
  background-size:56px 56px;
}
.hero-glow{
  position:absolute;right:-80px;top:50%;transform:translateY(-50%);
  width:600px;height:600px;border-radius:50%;
  background:radial-gradient(circle,rgba(67,200,120,.13) 0%,transparent 70%);
  pointer-events:none;
}
.hero-glow2{
  position:absolute;left:-100px;bottom:-100px;
  width:400px;height:400px;border-radius:50%;
  background:radial-gradient(circle,rgba(37,99,200,.15) 0%,transparent 70%);
  pointer-events:none;
}
.hero-content{
  position:relative;z-index:2;width:100%;max-width:760px;min-width:0;
  animation:fadeUp .8s ease both;
}
@keyframes fadeUp{from{opacity:0;transform:translateY(28px)}to{opacity:1;transform:translateY(0)}}
.hero-badge{
  display:inline-flex;align-items:center;gap:8px;
  background:rgba(67,200,120,.12);border:1px solid rgba(67,200,120,.28);
  color:#a7f3c1;padding:7px 16px;border-radius:100px;
  max-width:100%;line-height:1.35;
  font-size:13px;font-weight:600;letter-spacing:.8px;text-transform:uppercase;margin-bottom:14px;
}
.hero-badge::before{content:'';width:7px;height:7px;background:var(--green-bright);border-radius:50%;animation:pulse 2s infinite}
@keyframes pulse{0%,100%{opacity:1;transform:scale(1)}50%{opacity:.5;transform:scale(1.4)}}
.hero-title{
  font-family:'Barlow Condensed',sans-serif;
  font-size:clamp(52px,5.9vw,84px);
  font-weight:900;line-height:1;color:white;
  text-transform:uppercase;letter-spacing:-.5px;margin-bottom:18px;
}
.hero-title .green{color:#8fbce8}
.hero-sub{
  font-size:clamp(16px,1.55vw,18px);color:rgba(255,255,255,.7);
  font-weight:400;line-height:1.62;max-width:720px;margin-bottom:28px;
  overflow-wrap:anywhere;
}
.hero-actions{display:flex;flex-wrap:wrap;gap:12px;align-items:center;margin-bottom:30px}
.btn-wpp{
  display:inline-flex;align-items:center;gap:11px;
  background:linear-gradient(135deg,#25d366,#128c4a);color:white;padding:16px 32px;
  border-radius:8px;font-size:16px;font-weight:700;
  text-decoration:none;letter-spacing:.2px;
  transition:all .25s;box-shadow:0 6px 28px rgba(37,211,102,.30);
}
.btn-wpp:hover{background:linear-gradient(135deg,#2ee475,#0f7e43);transform:translateY(-2px);box-shadow:0 10px 36px rgba(37,211,102,.38)}
.btn-wpp svg{width:21px;height:21px;fill:white;flex-shrink:0}
.btn-ghost{
  display:inline-flex;align-items:center;gap:8px;
  background:transparent;color:rgba(255,255,255,.8);
  padding:15px 26px;border-radius:8px;font-size:15px;font-weight:500;
  text-decoration:none;border:1.5px solid rgba(255,255,255,.25);
  transition:all .25s;
}
.btn-ghost:hover{border-color:rgba(255,255,255,.6);color:white;background:rgba(255,255,255,.07)}
.hero-stats{
  display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:18px;
  width:100%;max-width:760px;
  border-top:1px solid rgba(255,255,255,.1);padding-top:24px;
}
.hero-stats>div{min-width:0}
.stat-num{font-family:'Barlow Condensed',sans-serif;font-size:36px;font-weight:900;color:#8fbce8;line-height:1}
.stat-label{font-size:13px;color:rgba(255,255,255,.5);margin-top:3px}
.hero-visual{
  position:relative;z-index:2;
  width:100%;
  animation:fadeUp .8s ease .12s both;
}
.hero-corporate-card{
  border-radius:20px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(143,188,232,.22);
  backdrop-filter:blur(8px);
  box-shadow:0 24px 70px rgba(0,0,0,.22);
  padding:32px;
  overflow:hidden;
  position:relative;
}
.hero-corporate-card::before{
  content:'';position:absolute;inset:0;
  background:
    radial-gradient(circle at 85% 12%,rgba(67,200,120,.12),transparent 32%),
    linear-gradient(135deg,rgba(255,255,255,.08),transparent 58%);
  pointer-events:none;
}
.hero-card-content{position:relative;z-index:1}
.hero-card-kicker{
  display:inline-flex;align-items:center;gap:8px;
  color:#a7f3c1;font-size:12px;font-weight:800;letter-spacing:1.4px;text-transform:uppercase;
  margin-bottom:14px;
}
.hero-card-kicker::before{content:'';width:8px;height:8px;border-radius:50%;background:var(--green-bright);box-shadow:0 0 0 6px rgba(67,200,120,.11)}
.hero-card-title{
  font-family:'Barlow Condensed',sans-serif;
  color:white;font-size:clamp(30px,3vw,40px);font-weight:800;line-height:1;
  text-transform:uppercase;letter-spacing:-.2px;margin-bottom:22px;
}
.hero-benefits{list-style:none;display:grid;gap:12px;margin-bottom:26px}
.hero-benefits li{
  display:flex;align-items:center;gap:12px;
  color:rgba(255,255,255,.78);font-size:15px;font-weight:600;
}
.hero-benefit-icon{
  width:26px;height:26px;border-radius:50%;
  display:inline-flex;align-items:center;justify-content:center;
  background:rgba(67,200,120,.12);color:#a7f3c1;font-size:13px;font-weight:900;flex-shrink:0;
}
.hero-company-highlight{
  border-top:1px solid rgba(255,255,255,.1);
  padding-top:24px;
}
.hero-company-number{
  font-family:'Barlow Condensed',sans-serif;
  color:#8fbce8;font-size:44px;font-weight:900;line-height:1;
}
.hero-company-label{color:rgba(255,255,255,.62);font-size:14px;font-weight:600;margin-top:4px}

/* ── TRUST BAR ── */
.trust-bar{background:linear-gradient(90deg,var(--navy-mid),var(--blue));padding:18px 0}
.trust-inner{display:flex;flex-wrap:wrap;justify-content:center;align-items:center;max-width:1180px;margin:0 auto}
.trust-item{
  display:flex;align-items:center;justify-content:center;gap:9px;padding:7px 22px;
  border-right:1px solid rgba(255,255,255,.2);color:white;
  font-size:13px;font-weight:600;letter-spacing:.2px;
}
.trust-item:last-child{border-right:none}
.trust-item svg{width:16px;height:16px;fill:rgba(255,255,255,.85);flex-shrink:0}

/* ── PRO-EPI FIRST FOLD ── */
#hero{
  min-height:700px;
  padding:132px 0 42px;
  background:
    radial-gradient(circle at 76% 34%,rgba(23,93,139,.34),transparent 30%),
    linear-gradient(118deg,#06172d 0%,#0a2648 52%,#0b3156 100%);
}
#hero .container{
  width:min(100%,1280px);
  grid-template-columns:minmax(0,1.18fr) minmax(350px,.82fr);
  gap:clamp(54px,6vw,88px);
  padding-left:28px;
  padding-right:28px;
}
.hero-pattern{
  opacity:.78;
  background-image:
    linear-gradient(rgba(96,164,207,.055) 1px,transparent 1px),
    linear-gradient(90deg,rgba(96,164,207,.055) 1px,transparent 1px);
  background-size:48px 48px;
  -webkit-mask-image:linear-gradient(90deg,#000 0%,rgba(0,0,0,.72) 42%,transparent 80%);
  mask-image:linear-gradient(90deg,#000 0%,rgba(0,0,0,.72) 42%,transparent 80%);
}
.hero-glow{
  right:-130px;top:42%;width:620px;height:620px;
  background:radial-gradient(circle,rgba(50,185,105,.14) 0%,rgba(27,109,146,.09) 38%,transparent 70%);
}
.hero-glow2{
  left:-180px;bottom:-240px;width:520px;height:520px;
  background:radial-gradient(circle,rgba(32,103,174,.20) 0%,transparent 68%);
}
.hero-orbit{
  position:absolute;z-index:1;right:-110px;top:112px;width:560px;height:560px;
  border:1px solid rgba(67,200,120,.10);border-radius:50%;pointer-events:none;
  box-shadow:0 0 0 82px rgba(67,200,120,.025),0 0 0 164px rgba(67,200,120,.018);
}
.hero-orbit::before,.hero-orbit::after{
  content:'';position:absolute;border-radius:50%;border:1px solid rgba(105,181,223,.10);
}
.hero-orbit::before{inset:74px}
.hero-orbit::after{inset:154px}
.hero-epi-art{
  position:absolute;z-index:1;right:max(-72px,calc((100vw - 1440px)/2));top:84px;
  width:min(48vw,650px);height:min(48vw,650px);
  color:#54c98a;opacity:.23;pointer-events:none;
  filter:drop-shadow(0 0 22px rgba(57,190,126,.08));
}
.hero-epi-art::before,.hero-epi-art::after{
  content:'';position:absolute;border-radius:50%;pointer-events:none;
}
.hero-epi-art::before{
  inset:7%;border:1px solid rgba(83,204,145,.34);
  box-shadow:0 0 0 56px rgba(49,142,146,.035);
}
.hero-epi-art::after{
  inset:22%;border:1px dashed rgba(103,184,200,.26);
  transform:rotate(18deg);
}
.hero-epi-art svg{position:relative;z-index:1;width:100%;height:100%;overflow:visible}
.hero-epi-shape{
  fill:rgba(42,122,151,.035);stroke:currentColor;stroke-width:2;
  stroke-linecap:round;stroke-linejoin:round;vector-effect:non-scaling-stroke;
}
.hero-epi-helmet{opacity:.92}
.hero-epi-glasses{opacity:.76}
.hero-epi-glove{opacity:.66}
.hero-content{max-width:690px}
.hero-badge{
  padding:0;border:0;border-radius:0;background:transparent;color:#57d486;
  font-size:13px;font-weight:700;letter-spacing:.7px;margin-bottom:18px;
}
.hero-badge::before{
  width:30px;height:2px;border-radius:2px;animation:none;box-shadow:none;
}
.hero-title{
  max-width:680px;margin-bottom:20px;
  font-size:clamp(54px,5.2vw,74px);font-weight:800;line-height:1.01;
  text-transform:none;letter-spacing:-1.2px;
}
.hero-sub{
  max-width:640px;margin-bottom:30px;
  font-size:clamp(17px,1.5vw,20px);line-height:1.55;color:rgba(255,255,255,.74);
}
.hero-actions{gap:16px;margin-bottom:30px}
#hero .btn-wpp{
  min-height:56px;padding:15px 28px;border-radius:7px;
  background:linear-gradient(135deg,#1bb158,#07813e);
  box-shadow:0 12px 30px rgba(8,129,62,.27);
}
#hero .btn-ghost{
  min-height:56px;padding:14px 28px;border-radius:7px;
  color:white;border-color:rgba(255,255,255,.62);font-size:16px;font-weight:600;
}
#hero .btn-ghost span{font-size:19px;line-height:1}
.hero-differentials{
  display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:0;padding-top:20px;
  width:100%;
  border-top:1px solid rgba(255,255,255,.11);
}
.hero-differential{
  display:flex;align-items:center;gap:8px;min-width:0;padding:0 14px;
  color:rgba(255,255,255,.82);font-size:13px;font-weight:600;line-height:1.4;
  border-right:1px solid rgba(255,255,255,.14);
}
.hero-differential:first-child{padding-left:0}
.hero-differential:last-child{border-right:0}
.hero-differential span{
  width:21px;height:21px;display:inline-flex;align-items:center;justify-content:center;
  border:1px solid #43c878;border-radius:50%;color:#55db89;font-size:12px;flex-shrink:0;
}
.hero-visual{max-width:440px;justify-self:end}
.hero-corporate-card{
  min-height:442px;padding:34px;border-radius:22px;
  background:linear-gradient(145deg,rgba(31,72,116,.84),rgba(13,45,81,.91));
  border:1px solid rgba(129,183,228,.25);
  box-shadow:0 30px 80px rgba(0,10,28,.35),inset 0 1px 0 rgba(255,255,255,.07);
  backdrop-filter:blur(14px);
}
.hero-corporate-card::before{
  background:
    radial-gradient(circle at 82% 5%,rgba(67,200,120,.13),transparent 34%),
    linear-gradient(145deg,rgba(255,255,255,.055),transparent 50%);
}
.hero-card-icon{
  width:66px;height:66px;display:flex;align-items:center;justify-content:center;margin-bottom:24px;
  border-radius:18px;background:linear-gradient(145deg,#35b66a,#17864a);
  box-shadow:0 12px 30px rgba(17,126,68,.30);
}
.hero-card-icon svg{width:33px;height:33px;fill:none;stroke:white;stroke-width:1.7;stroke-linecap:round;stroke-linejoin:round}
.hero-card-kicker{margin-bottom:9px;color:#72dc9a;font-size:11px;letter-spacing:1.5px}
.hero-card-kicker::before{display:none}
.hero-card-title{
  margin-bottom:25px;font-family:'Barlow',sans-serif;font-size:29px;font-weight:700;
  line-height:1.15;text-transform:none;letter-spacing:-.3px;
}
.hero-benefits{gap:15px;margin-bottom:27px}
.hero-benefits li{gap:13px;color:rgba(255,255,255,.86);font-size:15px;font-weight:500}
.hero-benefit-icon{
  width:35px;height:35px;border-radius:10px;background:rgba(67,200,120,.11);color:#79dfa0;
}
.hero-benefit-icon svg{width:19px;height:19px;fill:none;stroke:currentColor;stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round}
.hero-card-footer{
  display:flex;align-items:center;gap:10px;padding-top:20px;border-top:1px solid rgba(255,255,255,.11);
  color:rgba(255,255,255,.60);font-size:13px;font-weight:500;
}
.hero-card-status{width:8px;height:8px;border-radius:50%;background:#49cf7d;box-shadow:0 0 0 5px rgba(73,207,125,.10)}
.trust-bar{position:relative;background:#f8fafc;padding:30px 0;border-bottom:1px solid #e9edf2}
.trust-inner{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:16px;max-width:none}
.trust-item{
  min-width:0;min-height:112px;padding:20px;border:1px solid #e3e8ee;border-radius:12px;
  justify-content:flex-start;gap:15px;background:white;color:var(--navy);box-shadow:0 8px 24px rgba(6,27,58,.045);
}
.trust-item:last-child{border-right:1px solid #e3e8ee}
.trust-icon{
  width:48px;height:48px;display:flex;align-items:center;justify-content:center;flex:0 0 48px;
  border-radius:14px;background:#e9f8ef;color:#15914c;
}
.trust-item .trust-icon svg{width:25px;height:25px;fill:none;stroke:currentColor;stroke-width:1.7;stroke-linecap:round;stroke-linejoin:round}
.trust-item>div{display:grid;gap:4px;min-width:0}
.trust-item strong{font-size:15px;line-height:1.2}
.trust-item div span{color:#667085;font-size:13px;font-weight:400;line-height:1.4}

/* ── SECTION LABEL ── */
.section-label{
  font-family:'Barlow Condensed',sans-serif;font-size:12px;font-weight:700;
  letter-spacing:3px;text-transform:uppercase;color:var(--green-bright);
  display:flex;align-items:center;gap:10px;margin-bottom:12px;
}
.section-label::before{content:'';display:block;width:28px;height:2px;background:var(--green-bright)}
.section-heading-center{text-align:center}
.section-label--center{justify-content:center}
h2.title{
  font-family:'Barlow Condensed',sans-serif;font-size:clamp(34px,4.5vw,52px);
  font-weight:800;line-height:1.05;color:var(--navy);text-transform:uppercase;
  letter-spacing:-.5px;
}
h2.title span{color:var(--blue-light)}
h2.title .green{color:var(--green-bright)}
.title--center{text-align:center}
.sub{font-size:16px;color:var(--text-light);margin-top:10px;max-width:580px;line-height:1.65}
.sub--center{margin:12px auto 0;text-align:center}

/* ── SOBRE ── */
#sobre{background:var(--gray-100)}
.sobre-grid{display:grid;grid-template-columns:1fr 1fr;gap:52px;align-items:center}
.sobre-visual{}
.sobre-card{
  background:var(--navy);border-radius:14px;padding:34px;
  position:relative;overflow:hidden;
}
.sobre-card::before{
  content:'';position:absolute;top:0;left:0;right:0;height:4px;
  background:linear-gradient(90deg,var(--green-bright),var(--blue-light));
}
.sobre-card-icon{
  width:54px;height:54px;background:rgba(67,200,120,.11);
  border-radius:10px;display:flex;align-items:center;justify-content:center;margin-bottom:20px;
}
.sobre-card-icon svg{width:28px;height:28px;fill:var(--green-bright)}
.sobre-card-title{
  font-family:'Barlow Condensed',sans-serif;font-size:26px;font-weight:800;
  color:white;text-transform:uppercase;line-height:1.1;margin-bottom:10px;
}
.sobre-card-text{color:rgba(255,255,255,.6);font-size:15px;line-height:1.7}
.sobre-mini-cards{display:grid;grid-template-columns:1fr 1fr;gap:10px;margin-top:10px}
.mini-card{
  background:white;border-radius:10px;padding:18px;
  border:1px solid var(--gray-200);box-shadow:var(--shadow-sm);
}
.mini-num{
  font-family:'Barlow Condensed',sans-serif;font-size:28px;
  font-weight:900;color:var(--blue-light);line-height:1;
}
.mini-label{font-size:12px;color:var(--text-light);margin-top:4px;font-weight:500}
.sobre-text p{color:var(--text-mid);font-size:16px;line-height:1.75;margin-bottom:18px}
.sobre-intro{margin-top:16px}
.sobre-text p:last-child{margin-bottom:0}
.sobre-highlight{
  background:var(--green-light);border-left:4px solid var(--green-bright);
  padding:18px 22px;border-radius:0 8px 8px 0;
  font-size:15px;font-weight:600;color:var(--green);margin-top:22px;line-height:1.5;
}
.anos-badge{
  display:inline-flex;align-items:center;gap:10px;
  background:var(--navy);color:white;padding:10px 20px;border-radius:8px;
  font-family:'Barlow Condensed',sans-serif;font-size:20px;font-weight:800;
  text-transform:uppercase;letter-spacing:.5px;margin-top:12px;
  border:1px solid rgba(255,255,255,.1);
}
.anos-badge span{color:#8fbce8}

/* ── PRODUTOS ── */
#produtos{background:white}
.produtos-header{display:flex;justify-content:space-between;align-items:flex-end;margin-bottom:36px;flex-wrap:wrap;gap:18px}
.produtos-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:20px}
.prod-card{
  background:var(--gray-100);border-radius:12px;padding:24px;
  border:1.5px solid transparent;transition:all .3s;
  text-decoration:none;color:inherit;display:block;
  position:relative;overflow:hidden;
}
.prod-card::after{
  content:'';position:absolute;bottom:0;left:0;right:0;height:3px;
  background:var(--green-bright);transform:scaleX(0);transform-origin:left;transition:transform .3s;
}
.prod-card:hover{border-color:var(--green-bright);background:white;box-shadow:var(--shadow-md);transform:translateY(-3px)}
.prod-card:hover::after{transform:scaleX(1)}
.prod-icon{width:52px;height:52px;background:linear-gradient(135deg,var(--navy),var(--blue));border-radius:10px;display:flex;align-items:center;justify-content:center;margin-bottom:16px;font-size:24px}
.prod-icon svg{width:28px;height:28px;stroke:white;stroke-width:1.9;fill:none;stroke-linecap:round;stroke-linejoin:round}
.prod-name{font-family:'Barlow Condensed',sans-serif;font-size:20px;font-weight:800;color:var(--navy);text-transform:uppercase;margin-bottom:8px;letter-spacing:.3px}
.prod-desc{font-size:14px;color:var(--text-light);line-height:1.6;margin-bottom:16px}
.prod-tags{display:flex;flex-wrap:wrap;gap:5px}
.prod-tag{
  background:var(--green-light);color:var(--green);
  font-size:11px;font-weight:700;padding:3px 9px;border-radius:100px;letter-spacing:.2px;
}

/* ── CROSS-LINK ── */
.pro-epi-section{
  background:linear-gradient(135deg,#0f1f2e,#0a1722);
  position:relative;overflow:hidden;color:white;
}
.pro-epi-section::before{
  content:'';position:absolute;inset:0;
  background-image:
    linear-gradient(rgba(255,255,255,.026) 1px,transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,.026) 1px,transparent 1px);
  background-size:48px 48px;
  mask-image:linear-gradient(180deg,rgba(0,0,0,.65),rgba(0,0,0,.22));
  -webkit-mask-image:linear-gradient(180deg,rgba(0,0,0,.65),rgba(0,0,0,.22));
  pointer-events:none;
}
.pro-epi-section::after{
  content:'';position:absolute;top:-22%;right:-28%;bottom:-22%;
  width:min(760px,68vw);border-radius:50%;
  background:radial-gradient(circle,rgba(0,255,150,.11) 0%,rgba(0,255,150,.05) 34%,transparent 70%);
  filter:blur(22px);pointer-events:none;
}
.pro-epi-grid{
  position:relative;z-index:1;
  display:grid;grid-template-columns:minmax(0,.92fr) minmax(460px,1.08fr);
  gap:clamp(38px,4vw,56px);align-items:center;
  min-height:clamp(560px,56vw,640px);
  padding:clamp(28px,3.2vw,42px);border-radius:24px;
  background:linear-gradient(135deg,rgba(255,255,255,.035),rgba(255,255,255,.018));
  border:1px solid rgba(0,255,150,.16);
  box-shadow:0 34px 96px rgba(0,0,0,.34),0 0 70px rgba(0,255,150,.055),inset 0 1px 0 rgba(255,255,255,.055);
  backdrop-filter:blur(16px);-webkit-backdrop-filter:blur(16px);
}
.pro-epi-content,.pro-epi-link-card{min-width:0}
.pro-epi-content{position:relative;z-index:2;align-self:center;display:flex;flex-direction:column;justify-content:center}
.pro-epi-section .section-label{color:#a7f3d0;text-shadow:0 0 18px rgba(0,255,150,.22)}
.pro-epi-section .section-label::before{background:#00c853;box-shadow:0 0 14px rgba(0,255,150,.42)}
h2.pro-epi-title{
  color:white;font-size:clamp(42px,5.2vw,68px);
  letter-spacing:0;margin-bottom:18px;
}
.pro-epi-title .pro-epi-brand{
  display:inline-flex;align-items:baseline;gap:.02em;position:relative;
  white-space:nowrap;
}
h2.pro-epi-title .pro-epi-title-line{display:block;color:#fff}
.pro-epi-title .brand-pro{color:#f4f8ff}
.pro-epi-title .brand-epi{color:#2ed565;text-shadow:0 0 24px rgba(46,213,101,.34)}
.pro-epi-title .featured-brand{color:#00c853;text-shadow:0 0 10px rgba(0,255,150,.3),0 0 28px rgba(0,200,83,.18)}
.pro-epi-title .pro-epi-brand::after{
  content:'';position:absolute;left:52%;bottom:-10px;width:82px;height:3px;border-radius:999px;
  background:linear-gradient(90deg,#00c853,rgba(0,255,150,0));
  box-shadow:0 0 14px rgba(0,255,150,.35);
  transform:translateX(-50%) scaleX(.2);transform-origin:left;
  animation:proEpiUnderline .9s .25s cubic-bezier(.2,.8,.2,1) forwards;
}
.pro-epi-content .sub{
  max-width:610px;color:rgba(226,237,249,.82);
  font-size:17px;line-height:1.78;
}
.pro-epi-highlight{
  margin:26px 0 22px;padding:20px 22px 20px 24px;border-radius:16px;
  background:rgba(255,255,255,.03);
  border:1px solid rgba(0,255,150,.2);
  box-shadow:inset 4px 0 0 rgba(0,200,83,.82),0 18px 46px rgba(0,0,0,.24),0 0 32px rgba(0,255,150,.055);
  backdrop-filter:blur(10px);-webkit-backdrop-filter:blur(10px);
  color:rgba(239,249,255,.9);font-size:15px;font-weight:800;line-height:1.62;
  position:relative;overflow:hidden;
}
.pro-epi-highlight::after{
  content:'';position:absolute;top:18%;left:-20px;width:88px;height:70%;
  background:linear-gradient(90deg,rgba(0,255,150,.13),transparent);
  filter:blur(10px);pointer-events:none;
}
.pro-epi-chips{
  display:flex;flex-wrap:wrap;gap:11px;margin:0 0 30px;list-style:none;
}
.pro-epi-chip{
  display:inline-flex;align-items:center;gap:7px;
  padding:9px 15px;border-radius:999px;
  background:rgba(255,255,255,.032);
  border:1px solid rgba(0,255,150,.16);
  color:rgba(222,235,247,.86);font-size:13px;font-weight:800;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.05);
  transition:transform .25s ease,border-color .25s ease,background .25s ease,box-shadow .25s ease,color .25s ease;
}
.pro-epi-chip svg{
  width:15px;height:15px;stroke:currentColor;stroke-width:1.9;fill:none;flex-shrink:0;
}
.pro-epi-chip:hover{
  transform:scale(1.05);color:white;background:rgba(0,255,150,.08);
  border-color:rgba(0,255,150,.34);box-shadow:0 0 22px rgba(0,255,150,.15),inset 0 1px 0 rgba(255,255,255,.12);
}
.pro-epi-cta{
  width:fit-content;position:relative;overflow:hidden;border:1px solid rgba(0,255,150,.3);
  background:linear-gradient(135deg,rgba(255,255,255,.055),rgba(255,255,255,.018));
  border-radius:12px;box-shadow:0 16px 42px rgba(0,0,0,.26),0 0 24px rgba(0,255,150,.08),0 0 0 1px rgba(255,255,255,.04) inset;
  backdrop-filter:blur(10px);-webkit-backdrop-filter:blur(10px);
  padding:18px 32px;
  text-transform:uppercase;letter-spacing:.7px;font-weight:900;
  transition:transform .24s ease,box-shadow .24s ease,filter .24s ease,border-color .24s ease,background .24s ease;
}
.pro-epi-cta::after{
  content:'';position:absolute;top:-30%;bottom:-30%;left:-38%;
  width:34%;transform:skewX(-18deg);
  background:linear-gradient(90deg,transparent,rgba(255,255,255,.35),transparent);
  opacity:0;transition:left .55s ease,opacity .2s ease;pointer-events:none;
}
.pro-epi-cta:hover{
  background:linear-gradient(135deg,rgba(0,255,150,.16),rgba(255,255,255,.035));
  border-color:rgba(0,255,150,.52);
  transform:translateY(-2px) scale(1.04);box-shadow:0 20px 54px rgba(0,255,150,.20),0 0 0 1px rgba(0,255,150,.28) inset;filter:saturate(1.08);
}
.pro-epi-cta:hover::after{left:112%;opacity:1}
.pro-epi-cta:active{transform:scale(.97)}
.pro-epi-cta .pro-epi-arrow{
  width:17px;height:17px;stroke:white;stroke-width:2.4;fill:none;transition:transform .22s ease;
}
.pro-epi-cta > svg:not(.pro-epi-arrow){display:none}
.pro-epi-cta:hover .pro-epi-arrow{transform:translateX(3px)}
.pro-epi-link-card{
  display:block;min-height:520px;border-radius:22px;overflow:hidden;
  border:1px solid rgba(0,255,150,.22);
  box-shadow:0 28px 78px rgba(0,0,0,.38),0 0 42px rgba(0,255,150,.12);
  background:rgba(255,255,255,.03);
  text-decoration:none;position:relative;
  transition:transform .3s ease,box-shadow .3s ease,border-color .3s ease,filter .3s ease;
}
.pro-epi-link-card::after{
  content:'Conheça as soluções PRO-EPI';
  position:absolute;left:50%;bottom:18px;transform:translateX(-50%);
  color:rgba(255,255,255,.86);font-size:13px;font-weight:800;
  letter-spacing:.1px;text-shadow:0 2px 14px rgba(0,0,0,.5);
  padding:8px 14px;border-radius:999px;
  background:rgba(10,23,34,.58);border:1px solid rgba(0,255,150,.26);
  backdrop-filter:blur(8px);-webkit-backdrop-filter:blur(8px);
  pointer-events:none;
}
.pro-epi-link-card:hover{
  transform:scale(1.02);
  border-color:rgba(0,255,150,.42);
  box-shadow:0 34px 88px rgba(0,0,0,.32),0 0 62px rgba(0,255,150,.18);
  filter:saturate(1.04);
}
.pro-epi-link-image{
  display:block;width:100%;height:100%;min-height:520px;object-fit:cover;
}
.pro-epi-link-card--featured{
  display:flex;align-items:center;justify-content:center;
  background:linear-gradient(135deg,#0f1f2e,#0a1722);
}
.pro-epi-link-card--featured .pro-epi-link-image{
  min-height:520px;height:100%;max-height:none;
  object-fit:cover;padding:0;
}
@keyframes proEpiUnderline{
  to{transform:translateX(-50%) scaleX(1)}
}
@media(prefers-reduced-motion:reduce){
  .pro-epi-title .pro-epi-brand::after{animation:none;transform:translateX(-50%) scaleX(1)}
  .pro-epi-chip,.pro-epi-cta,.pro-epi-link-card{transition:none}
}

/* ── DIFERENCIAIS ── */
#diferenciais{background:var(--gray-100)}
.dif-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;margin-top:36px}
.dif-card{
  background:white;border-radius:12px;padding:24px 22px;
  border:1px solid var(--gray-200);box-shadow:var(--shadow-sm);
  transition:all .3s;position:relative;overflow:hidden;
}
.dif-card::before{
  content:'';position:absolute;top:0;left:0;right:0;height:3px;
  background:var(--green-bright);opacity:0;transition:opacity .3s;
}
.dif-card:hover{box-shadow:var(--shadow-md);transform:translateY(-3px)}
.dif-card:hover::before{opacity:1}
.dif-icon{font-size:32px;margin-bottom:14px;display:block}
.dif-title{
  font-family:'Barlow Condensed',sans-serif;font-size:18px;font-weight:800;
  color:var(--navy);text-transform:uppercase;letter-spacing:.3px;margin-bottom:8px;
}
.dif-text{font-size:14px;color:var(--text-light);line-height:1.6}

/* ── COMO FUNCIONA ── */
#como-funciona{background:white}
.steps-wrapper{display:grid;grid-template-columns:repeat(4,1fr);gap:0;margin-top:36px;position:relative}
.steps-wrapper::before{
  content:'';position:absolute;top:34px;
  left:calc(12.5% + 24px);right:calc(12.5% + 24px);
  height:2px;background:var(--green-bright);opacity:.3;z-index:0;
}
.step{text-align:center;padding:0 16px;position:relative;z-index:1}
.step-num{
  width:68px;height:68px;border-radius:50%;
  background:white;border:2.5px solid var(--green-bright);
  display:flex;align-items:center;justify-content:center;
  font-family:'Barlow Condensed',sans-serif;font-size:26px;font-weight:900;
  color:var(--navy);margin:0 auto 20px;transition:all .3s;
  box-shadow:0 0 0 6px rgba(45,95,159,.10);
}
.step:hover .step-num{background:var(--blue);color:white;box-shadow:0 0 0 8px rgba(45,95,159,.14)}
.step-emoji{font-size:22px}
.step-title{
  font-family:'Barlow Condensed',sans-serif;font-size:17px;font-weight:800;
  color:var(--navy);text-transform:uppercase;margin-bottom:8px;
}
.step-text{font-size:14px;color:var(--text-light);line-height:1.6}

/* ── CTA ── */
#cta{
  background:linear-gradient(135deg,#07182e 0%,var(--navy) 58%,var(--navy-mid) 100%);
  padding:82px 0;text-align:center;position:relative;overflow:hidden;
}
#cta::before{
  content:'';position:absolute;inset:0;
  background:radial-gradient(ellipse 60% 70% at 50% 0%,rgba(45,95,159,.30) 0%,transparent 65%);
}
#cta::after{content:'';position:absolute;bottom:0;left:0;right:0;height:4px;background:var(--green-bright)}
.cta-content{position:relative;z-index:2}
.cta-badge{
  display:inline-block;background:rgba(67,200,120,.10);border:1px solid rgba(67,200,120,.28);
  color:#a7f3c1;padding:7px 18px;border-radius:100px;
  font-size:12px;font-weight:700;letter-spacing:1.5px;text-transform:uppercase;margin-bottom:24px;
}
.cta-title{
  font-family:'Barlow Condensed',sans-serif;
  font-size:clamp(40px,6vw,68px);font-weight:900;color:white;
  text-transform:uppercase;line-height:.95;letter-spacing:-1px;margin-bottom:18px;
}
.cta-title .green{color:#8fbce8}
.cta-sub{font-size:17px;color:rgba(255,255,255,.65);max-width:560px;margin:0 auto 34px;line-height:1.65}
.cta-actions{display:flex;flex-wrap:wrap;gap:14px;justify-content:center}
.btn-wpp-lg{
  display:inline-flex;align-items:center;gap:13px;
  background:linear-gradient(135deg,#25d366,#128c4a);color:white;padding:20px 42px;
  border-radius:9px;font-size:17px;font-weight:700;text-decoration:none;
  transition:all .25s;box-shadow:0 8px 32px rgba(37,211,102,.32);letter-spacing:.2px;
}
.btn-wpp-lg:hover{background:linear-gradient(135deg,#2ee475,#0f7e43);transform:translateY(-3px);box-shadow:0 14px 44px rgba(37,211,102,.38)}
.btn-wpp-lg svg{width:24px;height:24px;fill:white}
.cta-note{margin-top:24px;color:rgba(255,255,255,.45);font-size:13px}
.cta-note strong{color:#8fbce8}

/* ── LOCALIZACAO ── */
#localizacao{background:var(--gray-100)}
.localizacao-container{
  display:grid;grid-template-columns:minmax(320px,430px) minmax(0,1fr);
  gap:28px;align-items:stretch;
}
.localizacao-card{
  background:var(--white);border-radius:18px;padding:32px;
  border:1px solid var(--gray-200);box-shadow:var(--shadow-md);
  display:flex;flex-direction:column;justify-content:center;
}
.localizacao-card .sub{max-width:100%;margin-bottom:16px}
.localizacao-copy{
  font-size:15px;line-height:1.72;color:var(--text-mid);max-width:38ch;
}
.localizacao-details{
  margin-top:22px;display:flex;flex-direction:column;gap:14px;
}
.localizacao-item{
  display:flex;align-items:flex-start;gap:12px;
  font-size:14px;line-height:1.6;color:var(--text-mid);
}
.localizacao-item-icon{
  width:40px;height:40px;flex-shrink:0;border-radius:12px;
  display:flex;align-items:center;justify-content:center;
  background:var(--blue-pale);color:var(--blue-light);font-size:18px;
}
.localizacao-item strong{
  display:block;font-family:'Barlow Condensed',sans-serif;
  font-size:16px;font-weight:800;color:var(--navy);letter-spacing:.3px;text-transform:uppercase;
}
.localizacao-actions{margin-top:24px}
.localizacao-btn{
  display:inline-flex;align-items:center;justify-content:center;gap:10px;
  min-height:50px;padding:0 24px;border-radius:10px;
  background:var(--navy);color:var(--white);text-decoration:none;
  font-size:14px;font-weight:700;letter-spacing:.2px;
  box-shadow:0 10px 28px rgba(13,34,64,.14);
  transition:background .2s,transform .2s,box-shadow .2s;
}
.localizacao-btn:hover{
  background:var(--navy-mid);transform:translateY(-2px);
  box-shadow:0 14px 34px rgba(13,34,64,.18);
}
.localizacao-map{
  min-height:380px;border-radius:18px;overflow:hidden;
  border:1px solid var(--gray-200);box-shadow:var(--shadow-md);background:var(--white);
}
.localizacao-map iframe{
  display:block;width:100%;height:100%;min-height:380px;border:0;
}

/* ── FOOTER ── */
footer{background:var(--navy);border-top:2px solid var(--green-bright);padding:56px 0 28px;color:rgba(255,255,255,.6)}
.footer-grid{display:grid;grid-template-columns:2fr 1fr 1.25fr;gap:36px;margin-bottom:34px}
.footer-logos{display:flex;align-items:center;margin-bottom:18px}
.footer-logos img{display:block;object-fit:contain;transition:transform .22s ease,opacity .22s ease}
.footer-logo-proepi{height: 50px;width:auto;max-width:220px}
.footer-desc{font-size:14px;line-height:1.7;color:rgba(255,255,255,.5);margin-bottom:20px}
.footer-social{display:flex;gap:8px}
.social-btn{
  width:34px;height:34px;background:rgba(255,255,255,.07);border-radius:7px;
  display:flex;align-items:center;justify-content:center;
  color:rgba(255,255,255,.6);text-decoration:none;font-size:14px;
  transition:all .2s;
}
.social-btn:hover{background:var(--green-bright);color:white;transform:translateY(-2px)}
.logo:hover img,.footer-logos:hover img{transform:scale(1.03);opacity:.94}
.footer-col-title{
  font-family:'Barlow Condensed',sans-serif;font-size:12px;font-weight:700;
  color:rgba(255,255,255,.9);text-transform:uppercase;letter-spacing:2px;margin-bottom:18px;
}
.footer-links{list-style:none;display:flex;flex-direction:column;gap:9px}
.footer-links a,
.footer-links button{
  color:rgba(255,255,255,.5);text-decoration:none;font-size:14px;transition:color .2s;
  display:flex;align-items:center;gap:7px;background:none;border:0;padding:0;font:inherit;cursor:pointer;text-align:left;
}
.footer-links a:hover,
.footer-links button:hover{color:var(--green-bright)}
.contact-item{display:flex;align-items:flex-start;gap:9px;margin-bottom:12px;font-size:14px;color:rgba(255,255,255,.55);line-height:1.5}
.contact-item svg{width:15px;height:15px;fill:var(--green-bright);flex-shrink:0;margin-top:3px}
.contact-meta{font-size:12px;opacity:.6}
.footer-bottom{border-top:1px solid rgba(255,255,255,.08);padding-top:24px;display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:10px}
.footer-copy{font-size:12px;color:rgba(255,255,255,.35);display:flex;flex-direction:column;gap:6px}
.footer-credit{font-size:11px;letter-spacing:.2px}
.footer-credit-link{
  color:rgba(255,255,255,.52);text-decoration:none;display:inline-flex;align-items:center;
  width:fit-content;position:relative;transition:color .2s ease,transform .2s ease;
}
.footer-credit-link::after{
  content:'';position:absolute;left:0;bottom:-2px;width:100%;height:1px;
  background:rgba(67,200,120,.72);transform:scaleX(0);transform-origin:left;transition:transform .2s ease;
}
.footer-credit-link:hover{color:#d8f7e3;transform:translateY(-1px)}
.footer-credit-link:hover::after{transform:scaleX(1)}
.footer-badges{display:flex;gap:8px}
.f-badge{
  background:rgba(255,255,255,.05);border:1px solid rgba(255,255,255,.1);
  padding:5px 11px;border-radius:5px;font-size:11px;color:rgba(255,255,255,.4);letter-spacing:.5px;
}

/* ── FLOAT WPP ── */
.float-wpp{position:fixed;bottom:26px;right:26px;z-index:998;display:flex;align-items:center;gap:10px}
.float-label{
  background:var(--navy);color:white;padding:9px 16px;border-radius:100px;
  font-size:13px;font-weight:600;box-shadow:var(--shadow-md);white-space:nowrap;
  animation:fadeIn .5s ease 2s both;text-decoration:none;display:inline-flex;align-items:center;
  cursor:pointer;transition:background .25s ease,transform .25s ease,box-shadow .25s ease;
}
.float-label:hover{background:var(--navy-mid);transform:translateY(-1px)}
.float-label:active{transform:scale(.97)}
.float-label:focus-visible{outline:none;box-shadow:0 0 0 2px rgba(67,200,120,.22),var(--shadow-md)}
@keyframes fadeIn{from{opacity:0;transform:translateX(16px)}to{opacity:1;transform:translateX(0)}}
.float-btn{
  width:58px;height:58px;background:linear-gradient(135deg,#25d366,#128c4a);border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  box-shadow:0 4px 24px rgba(37,211,102,.36);text-decoration:none;
  transition:all .25s;animation:fadeIn .5s ease 1.5s both;
}
.float-btn:hover{transform:scale(1.1);box-shadow:0 8px 32px rgba(37,211,102,.44)}
.float-btn svg{width:28px;height:28px;fill:white}

/* Region/info modal: shared shell used by WhatsApp routing and footer info. */
body.modal-open{overflow:hidden}
.region-modal{
  position:fixed;inset:0;z-index:3000;
  display:flex;align-items:center;justify-content:center;
  padding:24px;visibility:hidden;pointer-events:none;
  overflow-x:hidden;overflow-y:auto;
}
.region-modal.open{visibility:visible;pointer-events:auto}
.region-modal__backdrop{
  position:absolute;inset:0;z-index:0;background:rgba(13,34,64,.58);backdrop-filter:blur(4px);
  opacity:0;transition:opacity .25s ease;
}
.region-modal.open .region-modal__backdrop{opacity:1}
.region-modal__dialog{
  position:relative;z-index:1;width:min(540px,calc(100vw - 32px));max-width:100%;max-height:calc(100dvh - 32px);
  background:white;border-radius:20px;box-shadow:0 24px 70px rgba(13,34,64,.22);
  border:1px solid rgba(13,34,64,.1);overflow:hidden;overflow-x:hidden;
  display:flex;flex-direction:column;isolation:isolate;
  opacity:0;transform:scale(.96);transition:opacity .25s ease,transform .25s ease;
}
.region-modal.open .region-modal__dialog{opacity:1;transform:scale(1)}
.region-modal__header{
  display:flex;align-items:flex-start;justify-content:space-between;gap:16px;
  padding:28px 28px 22px;background:linear-gradient(135deg,var(--navy) 0%,var(--navy-mid) 100%);
  min-width:0;
}
.region-modal__title{
  font-family:'Barlow Condensed',sans-serif;font-size:32px;font-weight:800;
  line-height:1;color:white;text-transform:uppercase;letter-spacing:-.2px;
}
.region-modal__sub{
  margin-top:10px;font-size:14px;line-height:1.6;color:rgba(255,255,255,.68);
}
.region-modal__close{
  width:40px;height:40px;flex-shrink:0;border:none;border-radius:10px;
  background:rgba(255,255,255,.12);color:white;font-size:24px;line-height:1;
  cursor:pointer;transition:background .2s,transform .2s;
}
.region-modal__close:hover{background:rgba(255,255,255,.2);transform:translateY(-1px)}
.region-modal__body{padding:24px 28px 28px;overflow-x:hidden;min-width:0}
.region-modal__search{
  width:100%;height:54px;border:1.5px solid var(--gray-300);border-radius:14px;
  padding:0 16px;font:inherit;font-size:15px;color:var(--text);
  background:var(--gray-100);outline:none;transition:border-color .2s,box-shadow .2s,background .2s;
  display:block;min-width:0;
}
.region-modal__search:focus{
  border-color:var(--blue-light);background:white;box-shadow:0 0 0 4px rgba(45,95,159,.14);
}
.region-modal__list{
  display:flex;flex-direction:column;gap:10px;margin-top:18px;
  max-height:min(340px,42dvh);overflow-y:auto;overflow-x:hidden;padding:2px 8px 2px 2px;min-width:0;
  scrollbar-width:thin;scrollbar-color:rgba(45,95,159,.45) transparent;
}
.region-modal__option{
  width:100%;min-height:64px;border-radius:14px;padding:14px 18px;
  background:#f7f9fb;color:var(--navy);text-align:left;cursor:pointer;
  display:flex;align-items:center;justify-content:space-between;gap:12px;
  border:1px solid rgba(13,34,64,.09);transition:background .2s ease,border-color .2s ease,box-shadow .2s ease,transform .2s ease;
  min-width:0;overflow:visible;box-shadow:0 1px 0 rgba(13,34,64,.03);
}
.region-modal__option:hover{
  background:white;border-color:rgba(45,95,159,.34);box-shadow:0 8px 22px rgba(6,27,58,.08);transform:translateY(-1px);
}
.region-modal__option:focus-visible{
  outline:none;border-color:var(--blue-light);box-shadow:0 0 0 3px rgba(45,95,159,.16);
}
.region-modal__option-content{min-width:0;overflow:visible}
.region-modal__option-content strong{
  display:block;font-size:16px;font-weight:800;line-height:1.25;color:var(--navy);overflow:visible;overflow-wrap:anywhere;
}
.region-modal__option-content span{
  display:block;margin-top:3px;font-size:12px;line-height:1.25;color:var(--text-light);overflow:visible;
}
.region-modal__arrow{
  width:28px;height:28px;border-radius:50%;display:flex;align-items:center;justify-content:center;
  color:var(--green);background:rgba(67,200,120,.10);font-size:17px;font-weight:800;line-height:1;flex-shrink:0;
}
.region-modal__empty{
  margin-top:18px;padding:16px 18px;border-radius:14px;background:var(--blue-pale);
  color:var(--text-mid);font-size:14px;text-align:center;
}
.info-modal__content{
  color:var(--text-mid);font-size:15px;line-height:1.72;
}
.info-modal__content p{margin-bottom:16px}
.info-modal__content p:last-child{margin-bottom:0}
.info-modal__content strong{color:var(--navy)}
.info-modal__content a{color:var(--green);font-weight:700;text-decoration:none}
.info-modal__content a:hover{text-decoration:underline}

/* ── BUTTON UX ── */
.btn-nav-cta,
.btn-wpp,
.btn-ghost,
.btn-wpp-lg,
.localizacao-btn,
.social-btn,
.float-btn,
.region-modal__close{
  cursor:pointer;
  transition:all .25s ease!important;
}
.btn-wpp,
.btn-wpp-lg,
.float-btn{
  background:linear-gradient(135deg,#25d366 0%,#128c4a 100%);
  box-shadow:0 8px 26px rgba(37,211,102,.30);
}
.btn-wpp-lg{
  box-shadow:0 10px 34px rgba(37,211,102,.32);
}
.btn-nav-cta:hover,
.btn-wpp:hover,
.btn-ghost:hover,
.btn-wpp-lg:hover,
.localizacao-btn:hover,
.social-btn:hover,
.region-modal__close:hover{
  transform:scale(1.03)!important;
  box-shadow:0 8px 25px rgba(37,211,102,.26)!important;
}
.btn-wpp:hover,
.btn-wpp-lg:hover,
.float-btn:hover{
  background:linear-gradient(135deg,#2ee475 0%,#0f7e43 100%);
  transform:scale(1.05)!important;
  box-shadow:0 12px 34px rgba(37,211,102,.38)!important;
  filter:saturate(1.03);
}
.float-btn:hover{
  transform:scale(1.08)!important;
}
.btn-nav-cta:active,
.btn-wpp:active,
.btn-ghost:active,
.btn-wpp-lg:active,
.localizacao-btn:active,
.social-btn:active,
.float-btn:active,
.region-modal__close:active{
  transform:scale(.97)!important;
}
.btn-nav-cta:focus-visible,
.btn-wpp:focus-visible,
.btn-ghost:focus-visible,
.btn-wpp-lg:focus-visible,
.localizacao-btn:focus-visible,
.social-btn:focus-visible,
.float-btn:focus-visible,
.region-modal__close:focus-visible{
  outline:none;
  box-shadow:0 0 0 2px rgba(67,200,120,.18),0 8px 25px rgba(45,95,159,.18)!important;
}
.pro-epi-section .pro-epi-cta{
  background:linear-gradient(135deg,rgba(255,255,255,.055),rgba(255,255,255,.018));
  border-color:rgba(0,255,150,.3);
  box-shadow:0 18px 48px rgba(0,0,0,.30),0 0 28px rgba(0,255,150,.09),0 0 0 1px rgba(0,255,150,.16) inset;
}
.pro-epi-section .pro-epi-cta:hover{
  background:linear-gradient(135deg,rgba(0,255,150,.16),rgba(255,255,255,.035));
  box-shadow:0 22px 58px rgba(0,255,150,.22),0 0 0 1px rgba(0,255,150,.3) inset!important;
}

/* ── RESPONSIVE ── */
@media(max-width:1024px){
  .container{padding:0 24px}
  .section{padding:72px 0}
  section[id],footer[id]{scroll-margin-top:106px}
  .nav-main{min-height:88px;grid-template-columns:172px minmax(0,1fr) auto;gap:20px}
  .logo-proepi{height:52px;max-width:172px}
  .nav-links{gap:17px}
  .nav-links a{font-size:13px}
  .btn-nav-cta{padding:12px 16px}
  #hero{min-height:680px;padding-top:122px;padding-bottom:40px}
  #hero .container{width:min(100%,1120px);gap:40px;padding-left:36px;padding-right:36px}
  .hero-title{font-size:clamp(50px,6.2vw,66px)}
  .hero-differentials{grid-template-columns:repeat(2,minmax(0,1fr));gap:14px 20px}
  .hero-differential{padding:0;font-size:13px;border-right:0}
  .hero-corporate-card{padding:28px}
  .trust-inner{grid-template-columns:repeat(2,minmax(0,1fr))}
  .sobre-grid{gap:40px}
  .produtos-header{margin-bottom:30px}
  .localizacao-container{grid-template-columns:minmax(300px,380px) minmax(0,1fr);gap:24px}
  .localizacao-card{padding:28px}
  .produtos-grid{grid-template-columns:repeat(2,1fr)}
  .pro-epi-grid{grid-template-columns:1fr;gap:32px;padding:30px}
  .pro-epi-link-card,.pro-epi-link-image{min-height:510px}
  .dif-grid{grid-template-columns:repeat(2,1fr)}
  .steps-wrapper{grid-template-columns:repeat(2,1fr);gap:30px}
  .steps-wrapper::before{display:none}
  .footer-grid{grid-template-columns:1fr 1fr;gap:28px}
}
@media(max-width:768px){
  .container{padding:0 20px}
  .section{padding:64px 0}
  section[id],footer[id]{scroll-margin-top:94px}
  .nav-main{min-height:78px;grid-template-columns:minmax(0,1fr) auto;gap:16px}
  .logo-proepi{height:48px;max-width:min(178px,48vw)}
  .btn-nav-cta{width:44px;height:44px;padding:0;justify-content:center;border-radius:50%}
  .btn-nav-cta span{display:none}
  .btn-nav-cta svg{width:21px;height:21px}
  .nav-links{display:none}.hamburger{display:inline-flex}
  .nav-mobile{padding:12px 20px}
  #hero{min-height:auto;padding-top:112px;padding-bottom:38px}
  #hero .container{grid-template-columns:1fr;gap:34px;padding-left:22px;padding-right:22px}
  .hero-content{max-width:none;text-align:left}
  .hero-badge{margin-bottom:16px;white-space:normal}
  .hero-title{font-size:clamp(43px,11vw,60px);line-height:1.02;margin-bottom:16px}
  .hero-sub{max-width:620px;margin:0 0 24px}
  .hero-actions{justify-content:flex-start;margin-bottom:24px}
  .hero-differentials{grid-template-columns:repeat(2,minmax(0,1fr));gap:13px 18px}
  .hero-visual{max-width:560px;justify-self:stretch}
  .hero-corporate-card{padding:24px}
  .hero-card-title{font-size:28px}
  .hero-orbit{right:-260px;top:420px}
  .hero-epi-art{right:-145px;top:500px;width:570px;height:570px;opacity:.15}
  .hero-epi-glasses,.hero-epi-glove{display:none}
  .hero-epi-helmet{transform:translate(28px,105px) scale(1.15);transform-origin:center}
  .hero-epi-art::before{inset:14%}
  .hero-epi-art::after{display:none}
  .sobre-grid{grid-template-columns:1fr;gap:36px}
  .produtos-grid{grid-template-columns:1fr}
  .pro-epi-grid{grid-template-columns:1fr;gap:28px;padding:28px;text-align:center}
  .pro-epi-section .section-label{justify-content:center}
  .pro-epi-content .sub{margin-left:auto;margin-right:auto}
  .pro-epi-highlight{text-align:left}
  .pro-epi-chips{justify-content:center}
  .pro-epi-link-card{max-width:680px;margin:0 auto}
  .pro-epi-link-card,.pro-epi-link-image{min-height:auto}
  .pro-epi-link-image{aspect-ratio:16/11}
  .pro-epi-cta{width:100%;justify-content:center}
  .localizacao-container{grid-template-columns:1fr;gap:20px}
  .localizacao-card{padding:24px}
  .localizacao-copy{max-width:none}
  .localizacao-map,.localizacao-map iframe{min-height:360px}
  .dif-grid{grid-template-columns:1fr 1fr}
  .steps-wrapper{grid-template-columns:1fr;gap:28px}
  .footer-grid{grid-template-columns:1fr}
  .hero-actions,.cta-actions{flex-direction:column;align-items:stretch}
  .btn-wpp,.btn-ghost,.btn-wpp-lg{justify-content:center}
  .float-label{display:none}
  .float-wpp{right:18px;bottom:18px}
  .footer-bottom{flex-direction:column;text-align:center}
  .trust-inner{grid-template-columns:repeat(2,minmax(0,1fr));align-items:stretch}
  .trust-item{width:auto;justify-content:flex-start;border:1px solid #e3e8ee}
  .trust-item:last-child{border:1px solid #e3e8ee}
}
@media(max-width:480px){
  .container{padding:0 18px}
  .section{padding:58px 0}
  .pro-epi-grid{padding:22px;border-radius:20px}
  h2.pro-epi-title{font-size:clamp(34px,10vw,42px)}
  .pro-epi-content .sub{font-size:16px;line-height:1.68}
  .pro-epi-highlight{padding:18px 18px 18px 20px}
  .pro-epi-chip{padding:8px 12px;font-size:12px}
  .pro-epi-link-card{border-radius:20px}
  .pro-epi-link-card::after{font-size:12px;bottom:10px;width:100%;text-align:center}
  .pro-epi-link-image{aspect-ratio:4/3}
  section[id],footer[id]{scroll-margin-top:88px}
  .nav-main{min-height:72px}
  .logo-proepi{height:43px;max-width:min(160px,48vw)}
  .btn-nav-cta{width:40px;height:40px}
  .hamburger{width:40px;height:40px}
  #hero{padding-top:101px;padding-bottom:30px}
  #hero .container{padding-left:18px;padding-right:18px}
  .hero-badge{font-size:11px;letter-spacing:.55px}
  .hero-sub{max-width:100%}
  .hero-actions{gap:10px}
  .dif-grid{grid-template-columns:1fr}
  .sobre-mini-cards{grid-template-columns:1fr 1fr}
  .hero-differentials{grid-template-columns:1fr;gap:12px}
  .hero-corporate-card{padding:22px}
  .hero-card-icon{width:58px;height:58px;margin-bottom:20px}
  .hero-benefits li{font-size:14px}
  .hero-epi-art{right:-235px;top:550px;width:520px;height:520px;opacity:.11}
  .trust-bar{padding:22px 0}
  .trust-inner{grid-template-columns:1fr}
  .localizacao-card{padding:22px}
  .localizacao-map,.localizacao-map iframe{min-height:320px}
  .localizacao-btn{width:100%}
  .footer-logo-proepi{height:54px;max-width:190px}
  .region-modal{padding:16px}
  .region-modal__header{padding:20px 20px 16px}
  .region-modal__body{padding:18px 20px 20px}
  .region-modal__title{font-size:28px}
  .region-modal__option{padding:14px 18px}
}

