
:root{
  --bg:#f7f7f7;
  --panel:#ffffff;
  --panel-soft:rgba(255,255,255,.72);
  --text:#262626;
  --muted:#595959;
  --brand:#25BFB7;
  --line:rgba(38,38,38,.08);
  --shadow:0 18px 60px rgba(0,0,0,.08);
  --shadow-strong:0 24px 90px rgba(0,0,0,.14);
  --radius:28px;
  --max:1220px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:'Chakra Petch',sans-serif;
  color:var(--text);
  background:
    radial-gradient(900px 420px at 10% 0%, rgba(37,191,183,.12), transparent 55%),
    radial-gradient(900px 420px at 100% 15%, rgba(37,191,183,.08), transparent 60%),
    linear-gradient(180deg, #fbfbfb 0%, #f3f3f3 100%);
  overflow-x:hidden;
}
img{max-width:100%;display:block}
a{text-decoration:none;color:inherit}

.bg-grid{
  position:fixed;
  inset:0;
  pointer-events:none;
  background-image:
    linear-gradient(rgba(38,38,38,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(38,38,38,.03) 1px, transparent 1px);
  background-size:64px 64px;
  mask-image:linear-gradient(180deg, rgba(0,0,0,.55), transparent 88%);
}

.container{width:min(calc(100% - 40px), var(--max));margin:0 auto}
.section{padding:110px 0}

.header{
  position:sticky;
  top:0;
  z-index:60;
  backdrop-filter:blur(18px);
  background:rgba(247,247,247,.72);
  border-bottom:1px solid rgba(255,255,255,.7);
}
.nav{
  min-height:84px;
  display:flex;
  align-items:center;
  gap:22px;
}
.logo{height:46px;width:auto}
.menu{
  margin-left:auto;
  display:flex;
  align-items:center;
  gap:28px;
}
.menu a{
  color:var(--muted);
  text-transform:uppercase;
  letter-spacing:.12em;
  font-weight:600;
  font-size:13px;
  transition:.25s ease;
}
.menu a:hover{color:var(--text)}
.menu-toggle{
  display:none;
  margin-left:auto;
  border:1px solid var(--line);
  background:rgba(255,255,255,.78);
  width:48px;height:48px;
  border-radius:14px;
  font-size:22px;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:54px;
  padding:0 24px;
  border-radius:999px;
  font-weight:700;
  transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease, background .25s ease;
}
.btn:hover{transform:translateY(-2px)}
.btn-primary{background:var(--brand);color:#fff;box-shadow:0 18px 45px rgba(37,191,183,.26)}
.btn-secondary{border:1px solid var(--line);background:rgba(255,255,255,.68);color:var(--text);backdrop-filter:blur(14px)}
.btn-nav{min-height:46px;padding:0 18px;background:#262626;color:#fff;font-size:13px}

.eyebrow{
  display:inline-flex;
  padding:8px 14px;
  border-radius:999px;
  border:1px solid rgba(37,191,183,.2);
  background:rgba(37,191,183,.08);
  color:var(--brand);
  text-transform:uppercase;
  letter-spacing:.16em;
  font-size:12px;
  font-weight:700;
}

.hero{padding:68px 0 36px}
.hero-grid{
  display:grid;
  grid-template-columns:1.08fr .92fr;
  align-items:center;
  gap:54px;
}
.hero-copy h1{
  margin:18px 0 22px;
  font-size:clamp(3rem, 6vw, 5.7rem);
  line-height:.94;
  letter-spacing:-.05em;
  max-width:900px;
}
.hero-copy p{
  margin:0 0 16px;
  color:var(--muted);
  line-height:1.9;
  font-size:1.05rem;
  max-width:760px;
}
.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-top:34px;
}
.hero-highlights{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
  margin-top:38px;
}
.highlight-card{
  padding:22px;
  border-radius:24px;
  background:rgba(255,255,255,.74);
  border:1px solid rgba(255,255,255,.82);
  box-shadow:var(--shadow);
  backdrop-filter:blur(16px);
}
.highlight-card strong{
  display:block;
  font-size:1.3rem;
  margin-bottom:8px;
}
.highlight-card span{
  color:var(--muted);
  line-height:1.6;
  font-size:.94rem;
}

.hero-panel{
  position:relative;
  min-height:700px;
  border-radius:36px;
  background:linear-gradient(180deg, rgba(255,255,255,.84), rgba(255,255,255,.58));
  border:1px solid rgba(255,255,255,.85);
  box-shadow:var(--shadow-strong);
  overflow:hidden;
}
.panel-topbar{
  display:flex;
  gap:8px;
  padding:18px 22px;
}
.panel-topbar span{
  width:10px;height:10px;border-radius:50%;
  background:rgba(38,38,38,.12);
}
.hero-orb{
  position:absolute;
  border-radius:999px;
  filter:blur(38px);
}
.orb-a{width:260px;height:260px;background:rgba(37,191,183,.28);top:50px;left:30px}
.orb-b{width:260px;height:260px;background:rgba(38,38,38,.12);right:-60px;bottom:40px}
.hero-symbol-wrap{
  position:absolute;
  inset:90px 44px 110px;
  border-radius:30px;
  background:linear-gradient(180deg, rgba(255,255,255,.92), rgba(247,247,247,.6));
  border:1px solid rgba(255,255,255,.95);
  display:flex;
  align-items:center;
  justify-content:center;
}
.hero-symbol{
  width:min(100%, 360px);
  animation:floatY 5s ease-in-out infinite;
  filter:drop-shadow(0 22px 34px rgba(0,0,0,.1));
}
.mini-info{
  position:absolute;
  min-width:230px;
  padding:18px 20px;
  border-radius:22px;
  background:rgba(255,255,255,.78);
  border:1px solid rgba(255,255,255,.95);
  box-shadow:var(--shadow);
  backdrop-filter:blur(14px);
}
.mini-info small{
  display:block;
  color:var(--brand);
  text-transform:uppercase;
  letter-spacing:.16em;
  font-size:11px;
  font-weight:700;
  margin-bottom:8px;
}
.mini-info strong{line-height:1.4}
.info-one{top:38px;right:30px}
.info-two{left:30px;bottom:30px}

.trust{padding:26px 0 0}
.trust-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
  padding:22px;
  border-radius:28px;
  background:rgba(255,255,255,.72);
  border:1px solid rgba(255,255,255,.82);
  box-shadow:var(--shadow);
}
.trust-item{
  padding:18px 20px;
  border-radius:22px;
  background:rgba(255,255,255,.54);
  border:1px solid rgba(38,38,38,.05);
}
.trust-item small{
  display:block;
  text-transform:uppercase;
  letter-spacing:.12em;
  color:var(--brand);
  font-size:11px;
  font-weight:700;
  margin-bottom:8px;
}
.trust-item strong{font-size:1rem}

.section-head{
  max-width:880px;
  margin-bottom:38px;
}
.section-head h2{
  margin:16px 0 0;
  font-size:clamp(2rem, 4vw, 3.5rem);
  line-height:1.02;
  letter-spacing:-.03em;
}

.services-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}
.service-card{
  padding:30px;
  min-height:330px;
  border-radius:30px;
  background:rgba(255,255,255,.78);
  border:1px solid rgba(255,255,255,.86);
  box-shadow:var(--shadow);
  position:relative;
  overflow:hidden;
}
.service-card::after{
  content:"";
  position:absolute;
  width:180px;height:180px;
  right:-60px;bottom:-70px;
  border-radius:999px;
  background:rgba(37,191,183,.1);
  filter:blur(12px);
}
.service-card.featured{
  background:linear-gradient(180deg, rgba(37,191,183,.95), rgba(28,164,157,.95));
  color:#fff;
}
.service-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom:42px;
}
.service-top span{
  font-size:.82rem;
  font-weight:700;
  letter-spacing:.18em;
}
.service-icon{
  width:46px;height:46px;border-radius:16px;
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.18);
}
.service-card h3{
  margin:0 0 14px;
  font-size:2rem;
}
.service-card p{
  margin:0;
  line-height:1.9;
  opacity:.92;
}

.section-structure{padding-top:40px}
.structure-grid{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:24px;
}
.structure-left,
.structure-right{
  border-radius:30px;
  background:rgba(255,255,255,.78);
  border:1px solid rgba(255,255,255,.86);
  box-shadow:var(--shadow);
  padding:38px;
}
.structure-left h2{
  margin:16px 0;
  font-size:clamp(2rem, 4vw, 3.2rem);
  line-height:1.03;
}
.structure-left p{
  margin:0;
  color:var(--muted);
  line-height:1.9;
}
.feature-row{
  padding:18px 0;
  border-bottom:1px solid rgba(38,38,38,.08);
}
.feature-row:last-child{border-bottom:0}
.feature-row strong{
  display:block;
  margin-bottom:8px;
  font-size:1.08rem;
}
.feature-row p{
  margin:0;
  color:var(--muted);
  line-height:1.7;
}

.gallery-grid{
  display:grid;
  grid-template-columns:1.1fr .9fr .9fr;
  gap:24px;
}
.gallery-card{
  border-radius:30px;
  overflow:hidden;
  background:rgba(255,255,255,.8);
  border:1px solid rgba(255,255,255,.86);
  box-shadow:var(--shadow);
}
.gallery-card.large{grid-row:span 2}
.gallery-media{
  position:relative;
  min-height:280px;
}
.gallery-card.large .gallery-media{min-height:100%}
.gallery-media span{
  position:absolute;
  left:20px;top:20px;
  padding:9px 14px;
  border-radius:999px;
  background:rgba(255,255,255,.16);
  border:1px solid rgba(255,255,255,.26);
  color:#fff;
  font-size:12px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.14em;
  backdrop-filter:blur(12px);
  z-index:2;
}
.gallery-media::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(180deg, rgba(38,38,38,.1), rgba(38,38,38,.55)),
    radial-gradient(circle at 20% 20%, rgba(37,191,183,.35), transparent 28%);
}
.gallery-copy{
  padding:24px;
}
.gallery-copy h3{
  margin:0 0 10px;
  font-size:1.35rem;
}
.gallery-copy p{
  margin:0;
  color:var(--muted);
  line-height:1.8;
}

.photo-1{
  background:
    linear-gradient(135deg, rgba(20,20,20,.5), rgba(20,20,20,.15)),
    url('assets/photo-andaime.svg') center/cover no-repeat;
}
.photo-2{
  background:
    linear-gradient(135deg, rgba(20,20,20,.5), rgba(20,20,20,.15)),
    url('assets/photo-ferramentas.svg') center/cover no-repeat;
}
.photo-3{
  background:
    linear-gradient(135deg, rgba(20,20,20,.5), rgba(20,20,20,.15)),
    url('assets/photo-veiculos.svg') center/cover no-repeat;
}

.about-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:24px;
}
.about-panel{
  border-radius:30px;
  box-shadow:var(--shadow);
  padding:40px;
}
.about-panel.dark{
  background:#262626;
  color:#fff;
}
.about-panel.dark h2{
  margin:16px 0;
  font-size:clamp(2rem, 4vw, 3rem);
  line-height:1.05;
}
.about-panel.dark p{
  margin:0;
  color:rgba(255,255,255,.78);
  line-height:1.9;
}
.about-panel.light{
  background:rgba(255,255,255,.8);
  border:1px solid rgba(255,255,255,.86);
}
.about-points{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
}
.about-point{
  padding:22px;
  border-radius:22px;
  background:rgba(247,247,247,.85);
  border:1px solid rgba(38,38,38,.05);
}
.about-point strong{
  display:block;
  margin-bottom:8px;
}
.about-point p{
  margin:0;
  color:var(--muted);
  line-height:1.7;
}

.cta-box{
  padding:48px;
  border-radius:34px;
  background:
    radial-gradient(460px 240px at 85% 12%, rgba(37,191,183,.18), transparent 68%),
    #1f1f1f;
  color:#fff;
  box-shadow:var(--shadow-strong);
}
.cta-box h2{
  margin:16px 0;
  font-size:clamp(2rem, 4vw, 3.3rem);
  line-height:1.03;
}
.cta-box p{
  margin:0;
  color:rgba(255,255,255,.76);
  line-height:1.9;
  max-width:760px;
}

.whatsapp-float{
  position:fixed;
  right:18px;
  bottom:18px;
  z-index:80;
  width:58px;height:58px;
  display:grid;place-items:center;
  border-radius:999px;
  background:#25D366;
  color:#fff;
  box-shadow:0 18px 40px rgba(37,211,102,.28);
}
.whatsapp-float svg{width:24px;height:24px;fill:currentColor}

.footer{
  padding:32px 0 54px;
}
.footer-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  color:var(--muted);
}
.footer-logo{height:42px}

.reveal{
  opacity:0;
  transform:translateY(28px);
  transition:opacity .8s ease, transform .8s ease;
}
.reveal.visible{
  opacity:1;
  transform:none;
}
.delay-1{transition-delay:.12s}
.delay-2{transition-delay:.22s}

@keyframes floatY{
  0%,100%{transform:translateY(0)}
  50%{transform:translateY(-12px)}
}

@media (max-width: 1100px){
  .hero-grid,
  .structure-grid,
  .about-grid,
  .services-grid,
  .gallery-grid,
  .trust-grid{
    grid-template-columns:1fr;
  }
  .hero-panel{min-height:560px}
  .hero-highlights,
  .about-points{grid-template-columns:1fr 1fr}
  .gallery-card.large{grid-row:auto}
}

@media (max-width: 860px){
  .menu,
  .btn-nav{display:none}
  .menu-toggle{display:block}
  .header.menu-open .menu{
    display:flex;
    position:absolute;
    top:84px;
    left:12px;
    right:12px;
    flex-direction:column;
    align-items:flex-start;
    gap:0;
    border-radius:22px;
    padding:10px;
    background:rgba(255,255,255,.95);
    border:1px solid rgba(38,38,38,.08);
    box-shadow:var(--shadow);
  }
  .header.menu-open .menu a{
    width:100%;
    padding:14px 12px;
  }
  .hero{padding-top:42px}
  .hero-panel{min-height:440px}
  .hero-symbol-wrap{inset:80px 24px 96px}
  .info-one{top:18px;right:18px}
  .info-two{left:18px;bottom:18px}
  .hero-highlights,
  .about-points{grid-template-columns:1fr}
  .section{padding:86px 0}
  .cta-box{padding:34px}
}

@media (max-width: 640px){
  .container{width:min(calc(100% - 24px), var(--max))}
  .hero-copy h1{font-size:2.55rem}
  .service-card{min-height:auto}
  .gallery-media{min-height:240px}
  .footer-inner{flex-direction:column;align-items:flex-start}
}
