/* ============================================================
   HIGH ENERGY — Global Styles
   ============================================================ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Poppins:wght@400;500;600;700&display=swap');

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: #ffffff;
  color: #0f172a;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul, ol { list-style: none; }

/* ── CSS Variables ── */
:root {
  --green:      #5BCD00;
  --green-dark: #005821;
  --green-hover:#4ab300;
  --black:      #0a0a0a;
  --white:      #ffffff;
  --slate-50:   #f8fafc;
  --slate-100:  #f1f5f9;
  --muted:      #64748b;
  --foreground: #0f172a;
  --radius:     0.5rem;
  --shadow-lg:  0 10px 40px rgba(0,0,0,.12);
  --shadow-xl:  0 20px 60px rgba(0,0,0,.18);
}

/* ── Utility ── */
.container {
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}
.text-green  { color: var(--green); }
.text-dark   { color: var(--green-dark); }
.text-muted  { color: var(--muted); }
.font-heading{ font-family: 'Poppins', sans-serif; }
.sr-only { position:absolute; width:1px; height:1px; overflow:hidden; clip:rect(0,0,0,0); }

/* ── NAVBAR ── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  transition: background .3s, box-shadow .3s;
  transform: translateY(-100%);
  animation: navSlideDown .5s .1s forwards;
}
@keyframes navSlideDown { to { transform: translateY(0); } }

.navbar.transparent { background: transparent; }
.navbar.scrolled,
.navbar.solid       { background: rgba(255,255,255,.95); backdrop-filter: blur(12px); box-shadow: 0 1px 12px rgba(0,0,0,.08); }

.navbar__inner {
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: 1.5rem;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar__logo img {
  height: 28px;
  width: auto;
  transition: opacity .3s;
}
.navbar__logo .logo-dark  { position: absolute; opacity: 0; }
.navbar__logo .logo-white { opacity: 1; }
.navbar.scrolled .logo-dark,
.navbar.solid    .logo-dark  { opacity: 1; }
.navbar.scrolled .logo-white,
.navbar.solid    .logo-white { opacity: 0; }
.navbar__logo { position: relative; display: flex; align-items: center; transition: transform .2s; }
.navbar__logo:hover { transform: scale(1.05); }

.navbar__links {
  display: flex;
  align-items: center;
  gap: .25rem;
}
.navbar__links a {
  position: relative;
  padding: .5rem 1rem;
  font-size: .875rem;
  font-weight: 500;
  transition: color .2s;
  color: #fff;
}
.navbar.scrolled .navbar__links a,
.navbar.solid    .navbar__links a { color: var(--foreground); }
.navbar__links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  height: 2px; width: 0;
  background: var(--green);
  transition: width .2s;
}
.navbar__links a:hover::after { width: 100%; }
.navbar__links a:hover { color: var(--green); }

.navbar__cta .btn { transition: transform .2s; }
.navbar__cta .btn:hover { transform: scale(1.05); }
.navbar__cta .btn:active { transform: scale(.95); }

.navbar__burger {
  display: none;
  align-items: center;
  justify-content: center;
  padding: .5rem;
  border-radius: .5rem;
  color: #fff;
  transition: color .2s;
}
.navbar.scrolled .navbar__burger,
.navbar.solid    .navbar__burger { color: var(--foreground); }

.navbar__mobile {
  display: none;
  overflow: hidden;
  max-height: 0;
  transition: max-height .3s ease, opacity .3s;
  opacity: 0;
  background: #fff;
  border-top: 1px solid #e2e8f0;
}
.navbar__mobile.open { max-height: 400px; opacity: 1; }
.navbar__mobile a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .75rem 1.5rem;
  font-size: .875rem;
  font-weight: 500;
  color: var(--foreground);
  transition: background .2s, color .2s;
}
.navbar__mobile a:hover { background: var(--slate-50); color: var(--green); }
.navbar__mobile .mobile-cta { padding: 1rem 1.5rem 1.5rem; }
.navbar__mobile .mobile-cta .btn { width: 100%; justify-content: center; }

@media (max-width: 1023px) {
  .navbar__links, .navbar__cta { display: none; }
  .navbar__burger { display: flex; }
  .navbar__mobile { display: block; }
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .875rem 2rem;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  transition: background .2s, box-shadow .2s, transform .2s;
  cursor: pointer;
}
.btn-primary {
  background: var(--green);
  color: #fff;
}
.btn-primary:hover {
  background: var(--green-hover);
  box-shadow: 0 8px 24px rgba(91,205,0,.25);
}
.btn-outline {
  background: rgba(255,255,255,.05);
  color: #fff;
  border: 2px solid rgba(255,255,255,.3);
  backdrop-filter: blur(6px);
}
.btn-outline:hover {
  border-color: var(--green);
  background: rgba(91,205,0,.1);
}
.btn-dark {
  background: var(--green-dark);
  color: #fff;
}
.btn-dark:hover { background: #004218; }
.btn-charcoal {
  background: #374151;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.15);
}
.btn-charcoal:hover { background: #4b5563; }
.btn-sm { padding: .625rem 1.25rem; font-size: .875rem; }
.btn-lg { padding: 1rem 2.5rem; font-size: 1.125rem; height: 3.5rem; }

/* ── BADGE / PILL ── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .5rem 1rem;
  border-radius: 9999px;
  font-size: .875rem;
  font-weight: 500;
}
.badge-green  { background: rgba(91,205,0,.2);  color: var(--green); }
.badge-dark   { background: rgba(0,88,33,.1);   color: var(--green-dark); }
.badge-light  { background: rgba(91,205,0,.1);  color: var(--green-dark); }

/* ── SECTION HEADER ── */
.section-header { text-align: center; }
.section-header h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--foreground);
}
.section-header p {
  margin-top: 1rem;
  font-size: 1.125rem;
  color: var(--muted);
  max-width: 42rem;
  margin-inline: auto;
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}
.hero__slide.active { opacity: 1; }
.hero__slide img { width: 100%; height: 100%; object-fit: cover; }
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.7) 0%, rgba(0,0,0,.5) 50%, rgba(0,0,0,.8) 100%);
}
.hero__grid {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: .2;
  background-image:
    linear-gradient(rgba(91,205,0,.3) 1px, transparent 1px),
    linear-gradient(90deg, rgba(91,205,0,.3) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero__content {
  position: relative;
  z-index: 10;
  display: flex;
  min-height: 100vh;
  align-items: center;
}
.hero__inner {
  max-width: 1280px;
  margin-inline: auto;
  padding: 8rem 1.5rem 5rem;
}
.hero__text { max-width: 56rem; }
.hero__title-group { display: block; }
.hero__text h1 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 5vw, 3.75rem);
  font-weight: 700;
  line-height: 1.05;
  color: #fff;
  margin-top: 1.5rem;
}
.hero__text h1 .highlight { position: relative; display: inline-block; }
.hero__text h1 .highlight span { position: relative; z-index: 1; color: var(--green); }
.hero__underline {
  position: absolute;
  bottom: .5rem; left: 0;
  height: .75rem;
  background: rgba(91,205,0,.3);
  width: 0;
  transition: width .8s 1.2s ease-out;
}
.hero__underline.animate { width: 100%; }
.hero__text p {
  margin-top: 2rem;
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #d1d5db;
  line-height: 1.7;
}
.hero__ctas {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.hero__dot {
  display: inline-block;
  width: .5rem; height: .5rem;
  border-radius: 50%;
  background: var(--green);
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%,100% { transform: scale(1); }
  50%      { transform: scale(1.4); }
}

/* ── ARROW BOUNCE ── */
.arrow-bounce { animation: arrowBounce 1.5s infinite; display: inline-block; }
@keyframes arrowBounce {
  0%,100% { transform: translateX(0); }
  50%     { transform: translateX(5px); }
}

/* ── SECTIONS ── */
.section { padding: 6rem 0; }
.section-lg { padding: 8rem 0; }
.bg-white   { background: var(--white); }
.bg-slate   { background: var(--slate-50); }
.bg-dark    { background: var(--green-dark); }
.bg-black   { background: var(--black); }

/* ── SEÇÃO COM FOTO CLARINHA ── */
.section--photo-bg {
  position: relative;
  background: url('../images/section-construcao.jpg') center bottom / cover no-repeat;
}
.section--photo-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.93);
}
.section--photo-bg .container {
  position: relative;
  z-index: 1;
}

/* ── SÍMBOLO MARCA D'ÁGUA ── */
.brand-watermark-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.brand-watermark-wrap svg {
  position: absolute;
  right: -4%;
  top: 50%;
  transform: translateY(-50%);
  width: 42%;
  max-width: 520px;
  opacity: 0.07;
}

/* ── CARDS ── */
.card {
  background: var(--white);
  border-radius: 1rem;
  box-shadow: 0 1px 8px rgba(0,0,0,.06);
  transition: box-shadow .3s, transform .3s;
}
.card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-5px) scale(1.02);
}

.solution-card {
  background: var(--slate-50);
  border-radius: 1rem;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  min-height: 220px;
  transition: background .3s, box-shadow .3s, transform .3s;
}
.solution-card:hover {
  background: var(--white);
  box-shadow: var(--shadow-xl);
  transform: translateY(-5px) scale(1.02);
}
.solution-card__icon {
  width: 3rem; height: 3rem;
  border-radius: .75rem;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform .6s;
}
.solution-card:hover .solution-card__icon { transform: rotate(360deg) scale(1.1); }
.solution-card h3 { margin-top: 1rem; font-size: 1.1rem; font-weight: 600; line-height: 1.15; }
.solution-card p  { margin-top: .5rem; font-size: .875rem; color: var(--muted); line-height: 1.6; }

/* ── SOLUTION CAROUSEL ── */
.sol-carousel { position: relative; }
.sol-carousel__track-wrap {
  overflow: hidden;
  border-radius: 1rem;
}
.sol-carousel__track {
  display: flex;
  gap: 1.5rem;
  transition: transform .45s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}
.sol-carousel__item {
  flex: 0 0 calc((100% - 3rem) / 3);
  min-width: 0;
}
@media (max-width: 1023px) {
  .sol-carousel__item { flex: 0 0 calc((100% - 1.5rem) / 2); }
}
@media (max-width: 639px) {
  .sol-carousel__item { flex: 0 0 100%; }
}
/* controles */
.sol-carousel__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2.5rem;
}
.sol-carousel__btn {
  width: 2.5rem; height: 2.5rem;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--text);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background .2s, border-color .2s, color .2s, box-shadow .2s;
  flex-shrink: 0;
}
.sol-carousel__btn:hover {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
  box-shadow: 0 4px 12px rgba(34,197,94,.3);
}
.sol-carousel__btn:disabled {
  opacity: .35;
  pointer-events: none;
}
.sol-carousel__dots {
  display: flex;
  gap: .5rem;
}
.sol-carousel__dot {
  width: .5rem; height: .5rem;
  border-radius: 9999px;
  background: var(--border);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background .25s, width .25s;
}
.sol-carousel__dot.active {
  background: var(--green);
  width: 1.5rem;
}

/* ── GRID LAYOUTS ── */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.grid-2 {
  display: grid;
  gap: 4rem;
}
@media (min-width: 1024px) { .grid-2 { grid-template-columns: 1fr 1fr; align-items: center; } }

/* ── IMAGE BLOCK ── */
.img-block {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.img-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
}
.img-float-badge {
  position: absolute;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: var(--shadow-xl);
}
.img-float-badge.bottom-left { bottom: -2rem; left: -2rem; }
.img-float-badge.top-right   { top: -1rem;   right: -1rem; }

/* ── FLOATING ANIMATION ── */
.floating { animation: floating 4s ease-in-out infinite; }
.floating-slow { animation: floating 3s ease-in-out infinite; }
@keyframes floating {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-15px); }
}

/* ── GLOW PULSE ── */
.glow-pulse { animation: glowPulse 2s infinite; }
@keyframes glowPulse {
  0%,100% { box-shadow: 0 0 20px rgba(91,205,0,.25); }
  50%     { box-shadow: 0 0 60px rgba(91,205,0,.6);  }
}

/* ── CHECK LIST ── */
.check-list { list-style: none; display: flex; flex-direction: column; gap: 1rem; }
.check-list li { display: flex; align-items: center; gap: .75rem; color: #fff; }
.check-icon {
  width: 1.5rem; height: 1.5rem; border-radius: 50%;
  background: var(--green);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

/* ── DIFERENCIAIS CARD ── */
.diferencial-card {
  background: var(--white);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 1px 8px rgba(0,0,0,.06);
  transition: box-shadow .3s, transform .3s;
  height: 100%;
}
.diferencial-card:hover { box-shadow: var(--shadow-xl); transform: translateY(-5px) scale(1.02); }
.diferencial-card__icon {
  width: 3.5rem; height: 3.5rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(91,205,0,.2);
  transition: transform .3s;
}
.diferencial-card:hover .diferencial-card__icon { transform: scale(1.1); }
.diferencial-card h3 { margin-top: 1.5rem; font-size: 1.25rem; font-weight: 600; line-height: 1.15; }
.diferencial-card p  { margin-top: .75rem; color: var(--muted); line-height: 1.6; }

/* ── PROCESS STEPS ── */
.process-grid {
  display: grid;
  gap: 2rem;
  margin-top: 4rem;
}
@media (min-width: 640px)  { .process-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .process-grid { grid-template-columns: repeat(4, 1fr); } }

.process-step { text-align: center; position: relative; }
.process-step__number {
  width: 5rem; height: 5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  display: flex; align-items: center; justify-content: center;
  margin-inline: auto;
  font-family: 'Poppins', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #fff;
  box-shadow: 0 8px 24px rgba(91,205,0,.3);
  transition: transform .3s;
  position: relative;
  z-index: 1;
}
.process-step:hover .process-step__number { transform: scale(1.1); }
.process-step__connector {
  display: none;
  position: absolute;
  left: 60%; top: 2.5rem;
  height: 2px; width: 80%;
  background: linear-gradient(to right, var(--green), transparent);
  z-index: 0;
}
@media (min-width: 1024px) { .process-step__connector { display: block; } }
.process-step h3 { margin-top: 1.5rem; font-size: 1.25rem; font-weight: 600; }
.process-step p  { margin-top: .5rem; color: var(--muted); }

/* ── MARQUEE / INFINITE SCROLL ── */
.marquee-wrap { overflow: hidden; padding: 1rem 0; }
.marquee-track {
  display: flex;
  gap: 2rem;
  width: max-content;
  animation: marquee 20s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-item {
  height: 4rem;
  display: flex; align-items: center; justify-content: center;
  background: var(--white);
  border-radius: .5rem;
  padding: 0 2rem;
  box-shadow: 0 1px 6px rgba(0,0,0,.06);
  white-space: nowrap;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--muted);
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── COUNTER ── */
.counter { font-family: 'Poppins', sans-serif; font-weight: 700; }

/* ── FOOTER ── */
.footer {
  background: var(--black);
  color: #fff;
  position: relative;
  padding-top: 5rem;
  padding-bottom: 2rem;
}
.footer__scroll-top {
  position: absolute;
  top: -1.5rem; left: 50%;
  transform: translateX(-50%);
  width: 3rem; height: 3rem;
  border-radius: 50%;
  background: var(--green);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  box-shadow: 0 4px 16px rgba(91,205,0,.4);
  transition: transform .2s, background .2s;
}
.footer__scroll-top:hover { transform: translateX(-50%) translateY(-4px) scale(1.1); background: var(--green-hover); }
.footer__grid {
  display: grid;
  gap: 3rem;
}
@media (min-width: 768px)  { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .footer__grid { grid-template-columns: 2fr 1fr 1fr 1.5fr; } }

.footer__logo { height: 2rem; width: auto; filter: brightness(0) invert(1); }
.footer__desc { margin-top: 1rem; font-size: .875rem; line-height: 1.7; color: #9ca3af; }
.footer__socials { margin-top: 1.5rem; display: flex; gap: .75rem; }
.footer__social {
  width: 2.5rem; height: 2.5rem;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  transition: background .2s, transform .2s;
}
.footer__social:hover { background: var(--green); transform: scale(1.2) translateY(-3px); }
.footer__col h3 {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #fff;
}
.footer__links { margin-top: 1rem; display: flex; flex-direction: column; gap: .75rem; }
.footer__links a {
  font-size: .875rem;
  color: #9ca3af;
  display: flex; align-items: center; gap: .5rem;
  transition: color .2s;
}
.footer__links a::before {
  content: '';
  display: inline-block;
  height: 2px; width: 0;
  background: var(--green);
  transition: width .2s;
  flex-shrink: 0;
}
.footer__links a:hover { color: var(--green); }
.footer__links a:hover::before { width: .75rem; }
.footer__contact-item { display: flex; align-items: flex-start; gap: .75rem; }
.footer__col h3 + .footer__contact-item { margin-top: 1rem; }
.footer__contact-item + .footer__contact-item { margin-top: 1rem; }
.footer__contact-item svg { color: var(--green); flex-shrink: 0; margin-top: 2px; }
.footer__contact-item p { font-size: .875rem; color: #9ca3af; }
.footer__bottom {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.1);
  text-align: center;
  font-size: .875rem;
  color: #9ca3af;
}

/* ── SCROLL ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

.reveal-left {
  opacity: 0;
  transform: translateX(-100px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0;
  transform: translateX(100px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

.reveal-scale {
  opacity: 0;
  transform: scale(.9);
  transition: opacity .5s ease, transform .5s ease;
}
.reveal-scale.visible { opacity: 1; transform: scale(1); }

/* stagger delay helpers */
.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .2s; }
.delay-3 { transition-delay: .3s; }
.delay-4 { transition-delay: .4s; }
.delay-5 { transition-delay: .5s; }

/* ── HERO INTERNAL PAGE ── */
.page-hero {
  position: relative;
  overflow: hidden;
  background: var(--green-dark);
  padding: 10rem 0 8rem;
}
.page-hero__dots {
  position: absolute; inset: 0; opacity: .2;
  background-image: radial-gradient(circle at 2px 2px, var(--green) 1px, transparent 0);
  background-size: 50px 50px;
  animation: dotsMove 30s linear infinite alternate;
}
@keyframes dotsMove {
  from { background-position: 0 0; }
  to   { background-position: 100% 100%; }
}
.page-hero--light { background: linear-gradient(to bottom, var(--slate-50), var(--white)); }
.page-hero--light .page-hero__dots { opacity: .3; }
.page-hero--light h1, .page-hero--light p { color: var(--foreground); }
.page-hero--light .badge-light { background: rgba(91,205,0,.1); color: var(--green-dark); }

/* ── STATS STRIP ── */
.stats-strip {
  position: relative;
  z-index: 10;
  margin-top: -2.5rem;
  padding-bottom: 2.5rem;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  background: #fff;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: var(--shadow-xl);
}
@media (min-width: 768px) { .stats-grid { grid-template-columns: repeat(4, 1fr); padding: 2rem; } }
.stats-grid__item { text-align: center; }
.stats-grid__item p:first-child {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--green-dark);
  line-height: 1;
}
.stats-grid__item p:last-child { font-size: .875rem; color: var(--muted); margin-top: .375rem; }

/* ── DIFFERENTIALS GRID (check list 2-col) ── */
.diff-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; margin-top: 2rem; }
.diff-item { display: flex; align-items: center; gap: .5rem; font-size: .875rem; }

/* ── CTA SECTION ── */
.cta-section {
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
}
.cta-section .dots-bg {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 2px 2px, var(--green) 1px, transparent 0);
  background-size: 40px 40px;
  animation: dotsMove 20s linear infinite alternate;
}
.cta-section.bg-dark .dots-bg { opacity: .1; }
.cta-section.bg-slate .dots-bg { opacity: .3; }

/* ── TABS (Serviços) ── */
.tabs { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; margin-top: 3rem; }
.tab-btn {
  display: flex; align-items: center; gap: .5rem;
  padding: .75rem 1.5rem;
  border-radius: 9999px;
  font-size: .875rem;
  font-weight: 500;
  background: var(--slate-100);
  color: var(--foreground);
  transition: background .2s, color .2s, transform .2s, box-shadow .2s;
}
.tab-btn:hover { transform: scale(1.05); }
.tab-btn.active {
  background: var(--green);
  color: #fff;
  box-shadow: 0 4px 20px rgba(91,205,0,.3);
}
.tab-panel { display: none; }
.tab-panel.active { display: block; }
.tab-card {
  margin-top: 3rem;
  background: linear-gradient(135deg, var(--slate-50), var(--white));
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: var(--shadow-xl);
  animation: fadeInUp .3s ease;
}
@media (min-width: 1024px) { .tab-card { padding: 3rem; } }
.tab-card__icon {
  width: 5rem; height: 5rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, var(--green-dark), #003815);
  display: flex; align-items: center; justify-content: center;
  transition: transform .5s;
}
.tab-card__icon:hover { transform: rotate(360deg) scale(1.1); }
.tab-card h3 { margin-top: 2rem; font-family: 'Poppins',sans-serif; font-size: 1.75rem; font-weight: 700; line-height: 1.15; }
.tab-card p  { margin-top: 1rem; font-size: 1.1rem; color: var(--muted); line-height: 1.6; }
.tab-card__list { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 1rem; }
.tab-card__list li { display: flex; align-items: flex-start; gap: .75rem; }
.tab-card__list .check { width: 1.5rem; height: 1.5rem; border-radius: 50%; background: var(--green); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; transition: transform .3s; }
.tab-card__list li:hover .check { transform: scale(1.2) rotate(360deg); }
.tab-card__list span { color: var(--muted); }
.tab-grid { display: grid; gap: 2rem; }
@media (min-width: 1024px) { .tab-grid { grid-template-columns: 1fr 1fr; gap: 4rem; } }

/* ── TIMELINE ── */
.timeline-grid {
  display: grid;
  gap: 2rem;
  margin-top: 5rem;
}
@media (min-width: 768px)  { .timeline-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .timeline-grid { grid-template-columns: repeat(4, 1fr); } }

.timeline-card {
  background: var(--white);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  text-align: center;
  position: relative;
  transition: box-shadow .3s, transform .3s;
}
.timeline-card:hover { box-shadow: var(--shadow-xl); transform: translateY(-5px) scale(1.02); }
.timeline-card__icon-wrap {
  position: relative;
  width: 6rem; height: 6rem;
  margin-inline: auto;
  display: flex; align-items: center; justify-content: center;
}
.timeline-card__pulse {
  position: absolute; inset: 0;
  border-radius: 50%;
  background: rgba(91,205,0,.1);
  animation: scalePulse 2s ease-in-out infinite;
}
@keyframes scalePulse {
  0%,100% { transform: scale(1); }
  50%     { transform: scale(1.1); }
}
.timeline-card__icon {
  width: 4rem; height: 4rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-dark), #003815);
  display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 1;
  transition: transform .5s;
}
.timeline-card:hover .timeline-card__icon { transform: rotate(360deg); }
.timeline-card__num {
  position: absolute;
  top: 0; right: 0;
  width: 2.5rem; height: 2.5rem;
  border-radius: 50%;
  background: var(--green);
  display: flex; align-items: center; justify-content: center;
  font-size: .875rem; font-weight: 700;
  color: #fff;
  box-shadow: 0 4px 12px rgba(91,205,0,.4);
  z-index: 2;
  transition: transform .3s;
}
.reveal-scale.visible .timeline-card__num { animation: popIn .4s .2s backwards; }
@keyframes popIn {
  from { transform: scale(0); }
  to   { transform: scale(1); }
}
.timeline-card h3 { margin-top: 1.5rem; font-weight: 700; font-size: 1.1rem; line-height: 1.15; }
.timeline-card p  { margin-top: .75rem; font-size: .875rem; color: var(--muted); line-height: 1.6; }
.timeline-connector { display: none; }

/* ── PORTFOLIO GALLERY ── */
.portfolio-filters { display: flex; flex-wrap: wrap; justify-content: center; gap: .75rem; }
.filter-btn {
  padding: .75rem 1.5rem;
  border-radius: 9999px;
  font-size: .875rem;
  font-weight: 500;
  background: var(--slate-100);
  color: var(--foreground);
  transition: background .2s, color .2s, transform .2s, box-shadow .2s;
}
.filter-btn:hover { transform: scale(1.05); }
.filter-btn.active {
  background: var(--green-dark);
  color: #fff;
  box-shadow: 0 4px 20px rgba(0,88,33,.3);
}

.portfolio-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 3rem;
}
@media (min-width: 640px)  { .portfolio-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .portfolio-grid { grid-template-columns: 1fr 1fr 1fr; } }

.portfolio-item {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  cursor: pointer;
  transition: transform .3s;
}
.portfolio-item:hover { transform: translateY(-4px); }
.portfolio-item.hidden { display: none; }
.portfolio-item.fade-in { animation: fadeInScale .3s ease; }
@keyframes fadeInScale {
  from { opacity: 0; transform: scale(.9); }
  to   { opacity: 1; transform: scale(1); }
}
.portfolio-item img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; }
.portfolio-item__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, var(--green-dark) 0%, rgba(0,88,33,.7) 60%, transparent 100%);
  opacity: 0;
  transition: opacity .3s;
}
.portfolio-item:hover .portfolio-item__overlay { opacity: 1; }
.portfolio-item__content {
  position: absolute;
  inset-x: 0; bottom: 0;
  padding: 1.5rem;
  color: #fff;
  transform: translateY(20px);
  opacity: 0;
  transition: transform .3s, opacity .3s;
}
.portfolio-item:hover .portfolio-item__content { transform: translateY(0); opacity: 1; }
.portfolio-item__content h3 { font-size: 1.1rem; font-weight: 700; }
.portfolio-item__content p  { margin-top: .5rem; font-size: .875rem; color: #d1d5db; }
.portfolio-item__stats { display: flex; gap: 1rem; margin-top: 1rem; }
.portfolio-item__stats span {
  background: rgba(255,255,255,.2);
  backdrop-filter: blur(4px);
  border-radius: .5rem;
  padding: .25rem .75rem;
  font-size: .75rem;
}
.portfolio-item__badge {
  position: absolute;
  top: 1rem; left: 1rem;
  background: var(--green);
  color: #fff;
  border-radius: 9999px;
  padding: .25rem .75rem;
  font-size: .75rem;
  font-weight: 500;
  text-transform: capitalize;
}
.portfolio-item__more {
  margin-top: 1rem;
  display: flex; align-items: center; gap: .5rem;
  color: var(--green);
  font-size: .875rem;
}

/* ── TESTIMONIALS ── */
.testimonial-card {
  background: var(--white);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0,0,0,.08);
  position: relative;
  height: 100%;
  transition: box-shadow .3s, transform .3s;
}
.testimonial-card:hover { box-shadow: var(--shadow-xl); transform: translateY(-5px) scale(1.02); }
.testimonial-card__quote {
  position: absolute;
  top: 1.25rem; right: 1.25rem;
  width: 3rem; height: 3rem;
  border-radius: 50%;
  background: var(--green);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  transition: transform .2s;
}
.testimonial-card:hover .testimonial-card__quote { transform: rotate(12deg) scale(1.1); }
.testimonial-card__stars { display: flex; gap: .25rem; }
.testimonial-card__stars svg { color: var(--green); fill: var(--green); width: 1.25rem; height: 1.25rem; }
.testimonial-card__text { margin-top: 1.5rem; color: var(--muted); line-height: 1.7; }
.testimonial-card__author {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e2e8f0;
  display: flex; align-items: center; gap: 1rem;
}
.testimonial-card__avatar {
  width: 3rem; height: 3rem;
  border-radius: 50%;
  background: var(--green-dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; font-weight: 700; color: #fff;
  flex-shrink: 0;
}
.testimonial-card__name { font-weight: 600; font-size: .95rem; }
.testimonial-card__role { font-size: .875rem; color: var(--muted); }
.testimonial-card__company { font-size: .75rem; color: var(--green); margin-top: .1rem; }

/* ── CONTACT FORM ── */
.contact-grid { display: grid; gap: 4rem; }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1fr 1fr; } }

.contact-info-item { display: flex; gap: 1rem; }
.contact-info-item + .contact-info-item { margin-top: 1.5rem; }
.contact-info-item__icon {
  width: 3.5rem; height: 3.5rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, var(--green-dark), #003815);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform .5s;
}
.contact-info-item:hover .contact-info-item__icon { transform: rotate(360deg) scale(1.1); }
.contact-info-item h3 { font-weight: 600; }
.contact-info-item p  { color: var(--muted); font-size: .95rem; margin-top: .25rem; }

.form-card {
  background: var(--white);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: var(--shadow-xl);
  transition: box-shadow .3s, transform .3s;
}
.form-card:hover { box-shadow: 0 30px 80px rgba(0,0,0,.2); transform: translateY(-4px); }
@media (min-width: 1024px) { .form-card { padding: 2.5rem; } }

.form-group { display: flex; flex-direction: column; gap: .5rem; margin-bottom: 1.5rem; }
.form-group label { font-size: .875rem; font-weight: 500; }
.form-group input,
.form-group select,
.form-group textarea {
  padding: .875rem 1rem;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius);
  font-size: 1rem;
  font-family: inherit;
  background: var(--slate-50);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(91,205,0,.15);
}
.form-group textarea { resize: none; }

.form-success {
  display: none;
  background: rgba(91,205,0,.1);
  border-radius: 1rem;
  padding: 2.5rem;
  text-align: center;
  animation: fadeInUp .4s ease;
}
.form-success.show { display: block; }
.form-success__icon {
  width: 5rem; height: 5rem;
  border-radius: 50%;
  background: var(--green);
  display: flex; align-items: center; justify-content: center;
  margin-inline: auto;
  animation: popIn .4s .1s backwards;
}
.form-success h4 { margin-top: 1.5rem; font-size: 1.25rem; font-weight: 600; }
.form-success p  { margin-top: .5rem; color: var(--muted); }

/* ── FAQ / ACCORDION ── */
.accordion { display: flex; flex-direction: column; gap: 1rem; margin-top: 3rem; }
.accordion-item {
  background: var(--slate-50);
  border-radius: .75rem;
  overflow: hidden;
}
.accordion-trigger {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 1.5rem;
  font-size: 1rem; font-weight: 500;
  text-align: left;
  color: var(--foreground);
  cursor: pointer;
  transition: color .2s;
}
.accordion-trigger:hover { color: var(--green); }
.accordion-trigger svg {
  flex-shrink: 0;
  transition: transform .3s;
}
.accordion-item.open .accordion-trigger svg { transform: rotate(180deg); }
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease, padding .3s;
  padding: 0 1.5rem;
  font-size: .95rem;
  color: var(--muted);
  line-height: 1.7;
}
.accordion-item.open .accordion-content {
  max-height: 200px;
  padding-bottom: 1.25rem;
}

/* ── MAP ── */
.map-wrap {
  margin-top: 2.5rem;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  aspect-ratio: 16/9;
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; }

/* ── ANIMATED COUNTER ── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── PURPOSE CARDS ── */
.purpose-card {
  background: var(--white);
  border-radius: 1rem;
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  text-align: center;
  transition: box-shadow .3s, transform .3s;
  height: 100%;
}
.purpose-card:hover { box-shadow: var(--shadow-xl); transform: translateY(-5px) scale(1.02); }
.purpose-card__icon {
  width: 5rem; height: 5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-dark), #003815);
  display: flex; align-items: center; justify-content: center;
  margin-inline: auto;
  transition: transform .6s;
}
.purpose-card:hover .purpose-card__icon { transform: rotate(360deg) scale(1.1); }
.purpose-card h3 { margin-top: 2rem; font-family: 'Poppins', sans-serif; font-size: 1.5rem; font-weight: 700; line-height: 1.15; }
.purpose-card p  { margin-top: 1rem; color: var(--muted); line-height: 1.6; }

/* ── RESPONSIVE HELPERS ── */
@media (max-width: 767px) {
  .section, .section-lg { padding: 4rem 0; }
  .hero__inner { padding-top: 7rem; }
  .page-hero { padding: 7rem 0 4rem; }
  .img-float-badge { display: none; }
}
