 :root {
    --font-hero:    'Exo 2', sans-serif;
    --font-titles:  'Exo 2', sans-serif;
    --font-body:    'Nunito', sans-serif;
    --green:        #178A3F;
    --green-mid:    #1DA34A;
    --green-light:  #22C55E;
    --green-glow:   rgba(34, 197, 94, 0.30);
    --green-pale:   #DCFCE7;
    --dark-overlay: rgba(5, 18, 10, 0.52);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

h1, h2, h3, h4 { font-family: var(--font-titles); }

body {
    font-family: var(--font-body);
    background: #0a0a0a;
    overflow-x: hidden;
}

/* ════════════════════════════════
    HEADER / NAV
════════════════════════════════ */
header {
    width: 100%;
    position: fixed;
    top: 8px;
    z-index: 998;
    background-color: rgba(2, 16, 27, 0);
    border-bottom: 1px solid rgba(237, 242, 245, 0);
    border-top: 1px solid rgba(237, 242, 245, 0);
    backdrop-filter: blur(0px);
    transition: all 1s ease;
    height: 72px;
}

header.active-header {
    background-color: rgba(2, 16, 27, 0.2);
    border-bottom: 1px solid rgba(237, 242, 245, 0.4);
    border-top: 1px solid rgba(237, 242, 245, 0.4);
    backdrop-filter: blur(8px);
}

.nav-inner {
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 48px;
}

/* Logo */
.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}
.nav-logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 150px;
    /* height: 42px; */
}
.nav-logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.nav-logo-name {
    font-family: var(--font-titles);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #fff;
    line-height: 1;
}
.nav-logo-sub {
    font-size: 8px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--green-light);
    font-weight: 600;
    display: block;
    margin-top: 2px;
}

/* Links nav desktop */
.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}
.nav-links a {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    transition: color 0.2s;
}
.nav-links a:hover { color: #fff; }

/* Botão CTA nav */
.btn-nav-cta {
    background: transparent;
    color: var(--green-light);
    border: 1.5px solid var(--green-light);
    font-family: 'Exo 2', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 9px 22px;
    border-radius: 100px;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
}
.btn-nav-cta:hover {
    background: var(--green-light);
    color: #fff;
    transform: translateY(-1px);
}

/* Hambúrguer */
.menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
    position: relative;
    z-index: 700;
}
.menu-toggle span {
    display: block;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
}
.menu-toggle span:nth-child(1) { width: 26px; }
.menu-toggle span:nth-child(2) { width: 18px; }
.menu-toggle span:nth-child(3) { width: 26px; }
.menu-toggle:hover span { width: 26px !important; }

/* Estado aberto do hambúrguer → X */
.menu-toggle.is-open span:nth-child(1) {
    width: 26px;
    transform: translateY(7px) rotate(45deg);
}
.menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.menu-toggle.is-open span:nth-child(3) {
    width: 26px;
    transform: translateY(-7px) rotate(-45deg);
}

/* ── MENU MOBILE dropdown ── */
.mobile-menu {
    position: absolute;
    top: 24px;
    right: 0;
    transform: translateX(0) translate3d(0, 48px, 0);
    background-color: rgb(0 0 0 / 80%);
    backdrop-filter: blur(0px);
    border-radius: 24px;
    border: 1px solid rgba(237, 242, 245, 0.4);
    box-shadow: 0px 8px 40px 0px rgba(0, 0, 0, 0.5);
    z-index: 600;
    opacity: 0;
    pointer-events: none;
    transition: all 1s ease;
    min-width: 220px;
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.mobile-menu.active-menu {
    opacity: 1;
    pointer-events: all;
    backdrop-filter: blur(8px);
    transform: translateX(0) translate3d(0, 0, 0);
}

.menu-link {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    padding: 10px 16px;
    width: 100%;
    text-align: center;
    border-radius: 10px;
    transition: all 0.2s;
}
.menu-link:hover {
    color: #fff;
    background: rgba(255,255,255,0.08);
}

.cta-menu {
    background: var(--green);
    color: #fff !important;
    border: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 12px 28px;
    border-radius: 100px;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    width: 100%;
    text-align: center;
    margin-top: 8px;
    display: block;
    box-shadow: 0 4px 16px var(--green-glow);
}
.cta-menu:hover {
    background: var(--green-mid);
    transform: translateY(-1px);
}

/* Nav container posição relativa para menu dropdown */
.nav-right {
    display: flex;
    align-items: center;
    gap: 24px;
    position: relative;
}

/* ════════════════════════════════
    HERO SECTION
════════════════════════════════ */
#hero {
    position: relative;
    width: 100vw;
    height: 100vh;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* IMAGEM DE FUNDO — troque pelo caminho da sua imagem */
.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('img/hero.png');
    /* fallback enquanto não tem a imagem: */
    background-color: #0d1f10;
    background-image:
        url('img/hero.png'),
        linear-gradient(135deg, #0a1a0e 0%, #1a3a22 50%, #0d2415 100%);
    background-size: cover;
    background-position: center 40%;
    transform: scale(1.04);
    animation: subtle-zoom 18s ease-in-out infinite alternate;
}
@keyframes subtle-zoom {
    from { transform: scale(1.04); }
    to   { transform: scale(1.10); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(5, 18, 10, 0.50) 0%,
        rgba(5, 18, 10, 0.30) 40%,
        rgba(5, 18, 10, 0.70) 100%
    );
}

/* Conteúdo central */
.hero-content {
    position: relative;
    z-index: 5;
    text-align: center;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Ícone centralizado */
.hero-icon-wrap {
    width: 54px;
    height: 54px;
    background: rgba(255,255,255,0.10);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.22);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    animation: fadeDown 0.7s ease 0.2s both;
}
.hero-icon-wrap svg {
    width: 26px;
    height: 26px;
    stroke: white;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
}

/* Pill */
.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.10);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.22);
    border-radius: 100px;
    padding: 8px 22px;
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.85);
    margin-bottom: 28px;
    animation: fadeDown 0.7s ease 0.35s both;
}
.hero-pill-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green-light);
    flex-shrink: 0;
}

/* Título */
.hero-title {
    font-family: var(--font-titles);
    font-size: clamp(40px, 6.5vw, 92px);
    font-weight: 700;
    line-height: 1.0;
    color: #fff;
    letter-spacing: 1px;
    animation: fadeUp 0.8s ease 0.5s both;
    max-width: 820px;
    text-shadow: 0px 2px 12px rgba(0, 0, 0, 0.35);
}
.hero-title .text-green {
    color: var(--green-light);
}

/* Subtítulo */
.hero-subtitle {
    font-family: var(--font-body);
    font-size: clamp(13px, 1.4vw, 16px);
    font-weight: 400;
    line-height: 1.8;
    color: rgba(255,255,255,0.65);
    max-width: 520px;
    margin-top: 18px;
    animation: fadeUp 0.8s ease 0.65s both;
    text-shadow: 0px 1px 8px rgba(0, 0, 0, 0.25);
}

/* Botões */
.hero-btns {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 36px;
    flex-wrap: wrap;
    justify-content: center;
    animation: fadeUp 0.8s ease 0.8s both;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: var(--green);
    color: #fff;
    border: 2px solid var(--green);
    font-family: 'Exo 2', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 13px 18px 13px 28px;
    border-radius: 100px;
    box-shadow: 0 6px 28px var(--green-glow);
    transition: all 0.3s;
    text-decoration: none;
}
.btn-hero-primary:hover {
    background: var(--green-mid);
    border-color: var(--green-mid);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 12px 36px var(--green-glow);
}

.btn-hero-outline {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.6);
    font-family: 'Exo 2', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 13px 18px 13px 28px;
    border-radius: 100px;
    transition: all 0.3s;
    text-decoration: none;
}
.btn-hero-outline:hover {
    border-color: #fff;
    background: rgba(255,255,255,0.08);
    color: #fff;
}

.btn-arrow {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255,255,255,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    flex-shrink: 0;
    transition: transform 0.2s;
    color: #fff;
}
.btn-hero-primary .btn-arrow {
    background: rgba(255,255,255,0.3);
}
.btn-hero-primary:hover .btn-arrow,
.btn-hero-outline:hover .btn-arrow {
    transform: translateX(3px);
}

/* Scroll indicator */
.hero-scroll {
    position: absolute;
    bottom: 110px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    animation: fadeIn 1s ease 1.4s both;
}
.scroll-mouse {
    width: 22px;
    height: 34px;
    border: 1.5px solid rgba(255,255,255,0.35);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 6px;
}
.scroll-dot {
    width: 3px;
    height: 6px;
    background: rgba(255,255,255,0.65);
    border-radius: 2px;
    animation: scroll-bounce 1.8s ease infinite;
}
@keyframes scroll-bounce {
    0%, 100% { transform: translateY(0); opacity: 1; }
    60%       { transform: translateY(8px); opacity: 0.2; }
}
.scroll-label {
    font-size: 9px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.30);
    font-weight: 500;
}

/* ── STATS BAR ── */
.hero-stats {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 6;
    display: flex;
    justify-content: center;
    border-top: 1px solid rgba(255,255,255,0.10);
    background: rgba(5, 15, 8, 0.55);
    backdrop-filter: blur(14px);
    animation: fadeIn 0.8s ease 1.1s both;
}
.hstat {
    padding: 20px 52px;
    border-right: 1px solid rgba(255,255,255,0.10);
    text-align: center;
    flex: 1;
    max-width: 220px;
}
.hstat:last-child { border-right: none; }
.hstat-n {
    font-family: var(--font-titles);
    font-size: 30px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    letter-spacing: 0;
}
.hstat-n em {
    font-style: normal;
    color: var(--green-light);
    font-size: 0.7em;
    font-weight: 700;
}
.hstat-l {
    font-family: var(--font-body);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.38);
    margin-top: 5px;
}

/* ════════════════════════════════
    SEÇÃO SOLUÇÕES
════════════════════════════════ */
.sol-label {
  display: inline-block;
  font-family: 'Nunito', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #22C55E;
  border: 1px solid rgba(34,197,94,0.35);
  border-radius: 100px;
  padding: 5px 16px;
  margin-bottom: 20px;
}

.sol-title {
  font-family: 'Exo 2', sans-serif;
  font-size: clamp(36px, 4.5vw, 62px);
  font-weight: 800;
  line-height: 1.05;
  color: #ffffff;
  margin-bottom: 0;
}

.sol-green { color: #22C55E; }

.sol-desc-bold {
  font-family: 'Nunito', sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.7;
  color: rgba(255,255,255,0.85);
  margin-bottom: 16px;
}

.sol-desc {
  font-family: 'Nunito', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.85;
  color: rgba(255,255,255,0.45);
  margin-bottom: 0;
}

/* Cards */
.sol-card {
  background: #111E14;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
  padding: 36px 30px;
  height: 100%;
  transition: all 0.3s ease;
  cursor: default;
}
.sol-card:hover {
  border-color: rgba(34,197,94,0.25);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}

.sol-card-highlight {
  background: #178A3F;
  border-color: #22C55E;
}
.sol-card-highlight:hover {
  background: #1DA34A;
  border-color: #22C55E;
  box-shadow: 0 16px 40px rgba(34,197,94,0.25);
}

.sol-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.sol-card-icon svg {
  width: 22px;
  height: 22px;
  color: #fff;
}

.sol-card-title {
  font-family: 'Exo 2', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.sol-card-desc {
  font-family: 'Nunito', sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.8;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0;
}
.sol-card-highlight .sol-card-desc {
  color: rgba(255,255,255,0.85);
  font-weight: 600;
}

/* Stats */
.sol-stat-block {
  padding: 28px 0;
}

.sol-stat-n {
  font-family: 'Exo 2', sans-serif;
  font-size: clamp(38px, 4vw, 56px);
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 8px;
}
.sol-stat-n em {
  font-style: normal;
  color: #22C55E;
  font-size: 0.55em;
  font-weight: 700;
  margin-left: 3px;
}

.sol-stat-label {
  font-family: 'Nunito', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: rgba(255,255,255,0.38);
  text-transform: uppercase;
}

/* Botão CTA verde */
.btn-sol-cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: #178A3F;
  color: #fff;
  border: 2px solid #178A3F;
  font-family: 'Exo 2', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 13px 18px 13px 28px;
  border-radius: 100px;
  box-shadow: 0 6px 28px rgba(34,197,94,0.25);
  transition: all 0.3s;
  text-decoration: none;
  cursor: pointer;
}
.btn-sol-cta:hover {
  background: #1DA34A;
  border-color: #1DA34A;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(34,197,94,0.35);
}

.btn-sol-arrow {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
  transition: transform 0.2s;
}
.btn-sol-cta:hover .btn-sol-arrow {
  transform: translateX(3px);
}

/* ════════════════════════════════
    SEÇÃO SEGMENTOS (clara)
════════════════════════════════ */
.seg-label {
  display: inline-block;
  font-family: 'Nunito', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #178A3F;
  border: 1px solid rgba(23,138,63,0.3);
  border-radius: 100px;
  padding: 5px 16px;
}

.seg-title {
  font-family: 'Exo 2', sans-serif;
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  color: #0D1F12;
}

.seg-green { color: #178A3F; }

.seg-subtitle {
  font-family: 'Nunito', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #6B7B6E;
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.8;
}

.seg-card {
  background: #ffffff;
  border: 1px solid rgba(23,138,63,0.12);
  border-radius: 20px;
  padding: 36px 28px 32px;
  height: 100%;
  transition: all 0.3s ease;
  cursor: default;
  position: relative;
  overflow: hidden;
}

.seg-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #178A3F, #22C55E);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
  border-radius: 0 0 20px 20px;
}

.seg-card:hover {
  border-color: rgba(23,138,63,0.3);
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(23,138,63,0.10);
}

.seg-card:hover::after {
  transform: scaleX(1);
}

.seg-card-featured {
  border-color: rgba(23,138,63,0.35);
  box-shadow: 0 8px 30px rgba(23,138,63,0.08);
}

.seg-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: #DCFCE7;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: background 0.3s;
}

.seg-icon-wrap svg {
  width: 24px;
  height: 24px;
  color: #178A3F;
}

.seg-card:hover .seg-icon-wrap {
  background: #178A3F;
}

.seg-card:hover .seg-icon-wrap svg {
  color: #fff;
}

.seg-card-title {
  font-family: 'Exo 2', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #0D1F12;
  margin-bottom: 12px;
}

.seg-card-desc {
  font-family: 'Nunito', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.8;
  color: #5A7060;
  margin-bottom: 20px;
}

.seg-link {
  font-family: 'Exo 2', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #178A3F;
  text-decoration: none;
  transition: gap 0.2s, color 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.seg-link:hover {
  color: #1DA34A;
  gap: 10px;
}

.btn-seg-cta {
  display: inline-block;
  background: #178A3F;
  color: #fff;
  font-family: 'Exo 2', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 16px 44px;
  border-radius: 100px;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 6px 28px rgba(23,138,63,0.25);
  border: 2px solid #178A3F;
}

.btn-seg-cta:hover {
  background: #1DA34A;
  border-color: #1DA34A;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(23,138,63,0.35);
}

/* ════════════════════════════════
    SEÇÃO SOBRE
════════════════════════════════ */
.sobre-label {
  display: inline-block;
  font-family: 'Nunito', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 100px;
  padding: 5px 16px;
}

.sobre-title {
  font-family: 'Exo 2', sans-serif;
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 800;
  line-height: 1.0;
  color: #ffffff;
  margin-bottom: 0;
}

.sobre-green { color: #22C55E; }

.sobre-icons {
  display: flex;
  align-items: center;
}

.sobre-icon-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: -12px;
  flex-shrink: 0;
  transition: transform 0.2s;
}

.sobre-icon-circle:last-child { margin-right: 0; }

.sobre-icon-circle:hover {
  transform: scale(1.08);
  z-index: 2;
}

.sobre-icon-circle svg {
  width: 22px;
  height: 22px;
}

.sobre-icon-dark {
  background: #0D2518;
  border: 2px solid rgba(34,197,94,0.25);
  color: #22C55E;
}

.sobre-icon-mid {
  background: #178A3F;
  border: 2px solid #22C55E;
  color: #ffffff;
}

.sobre-icon-outline {
  background: rgba(23,138,63,0.12);
  border: 2px dashed rgba(34,197,94,0.4);
  color: #22C55E;
}

.sobre-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.1);
  margin: 0;
}

.sobre-small-text {
  font-family: 'Nunito', sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.8;
  color: rgba(255,255,255,0.35);
  max-width: 320px;
  margin-bottom: 0;
}

.sobre-highlight-text {
  font-family: 'Exo 2', sans-serif;
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 700;
  line-height: 1.5;
  color: #22C55E;
  margin-bottom: 0;
}

.sobre-body-text {
  font-family: 'Nunito', sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.85;
  color: rgba(255,255,255,0.55);
  margin-bottom: 0;
}

.sobre-btns {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-sobre-primary {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: #178A3F;
  color: #fff;
  border: 2px solid #178A3F;
  font-family: 'Exo 2', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 13px 18px 13px 28px;
  border-radius: 100px;
  box-shadow: 0 6px 28px rgba(34,197,94,0.20);
  transition: all 0.3s;
  text-decoration: none;
}
.btn-sobre-primary:hover {
  background: #1DA34A;
  border-color: #1DA34A;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(34,197,94,0.30);
}

.btn-sobre-outline {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.3);
  font-family: 'Exo 2', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 13px 18px 13px 28px;
  border-radius: 100px;
  transition: all 0.3s;
  text-decoration: none;
}
.btn-sobre-outline:hover {
  border-color: rgba(255,255,255,0.7);
  color: #fff;
  transform: translateY(-2px);
}

.btn-sobre-arrow {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
  transition: transform 0.2s;
}
.btn-sobre-primary:hover .btn-sobre-arrow,
.btn-sobre-outline:hover  .btn-sobre-arrow {
  transform: translateX(3px);
}

@media (max-width: 767px) {
  .sobre-title { font-size: 48px; }
  .sobre-btns  { flex-direction: column; align-items: flex-start; }
}

/* ════════════════════════════════
    RODAPÉ
════════════════════════════════ */
.footer-desc {
  font-family: 'Nunito', sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.85;
  color: rgba(255,255,255,0.35);
  max-width: 300px;
  margin-bottom: 0;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.footer-social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: all 0.3s;
}
.footer-social-btn svg {
  width: 16px;
  height: 16px;
}
.footer-social-btn:hover {
  background: #178A3F;
  border-color: #178A3F;
  color: #fff;
  transform: translateY(-2px);
}

.footer-col-title {
  font-family: 'Exo 2', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #22C55E;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links a {
  font-family: 'Nunito', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: #22C55E;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.footer-contact-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(23,138,63,0.12);
  border: 1px solid rgba(34,197,94,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #22C55E;
}
.footer-contact-icon svg {
  width: 15px;
  height: 15px;
}

.footer-contact-text {
  font-family: 'Nunito', sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.7;
  color: rgba(255,255,255,0.35);
  margin-bottom: 0;
}

.footer-contact-link {
  font-family: 'Nunito', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.2s;
  line-height: 36px;
}
.footer-contact-link:hover {
  color: #22C55E;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-copy {
  font-family: 'Nunito', sans-serif;
  font-size: 11px;
  font-weight: 400;
  color: rgba(255,255,255,0.18);
  letter-spacing: 0.5px;
}

.footer-dev-link {
  color: #22C55E;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s, opacity 0.2s;
}
.footer-dev-link:hover {
  color: #fff;
  opacity: 0.8;
}

@media (max-width: 767px) {
  .footer-desc { max-width: 100%; }
}

/* ── ANIMAÇÕES ── */
@keyframes fadeUp   { from { opacity:0; transform:translateY(22px); } to { opacity:1; transform:none; } }
@keyframes fadeDown { from { opacity:0; transform:translateY(-14px); } to { opacity:1; transform:none; } }
@keyframes fadeIn   { from { opacity:0; } to { opacity:1; } }

/* ════════════════════════════════
    RESPONSIVO
════════════════════════════════ */
@media (max-width: 991px) {
    .nav-links       { display: none; }
    .btn-nav-cta     { display: none; }
    .menu-toggle     { display: flex; }
    .nav-inner       { padding: 0 24px; }
}

@media (max-width: 575px) {
    .hero-btns       { flex-direction: column; gap: 12px; width: 100%; }
    .hero-stats      { display: none; }
    .hero-scroll     { bottom: 40px; }
}

/* ════════════════════════════════
    FIX RESPONSIVO MOBILE
════════════════════════════════ */

/* Impede overflow horizontal global */
html, body {
    max-width: 100%;
    overflow-x: hidden;
}

@media (max-width: 575px) {
    /* Nav inner padding menor no mobile */
    .nav-inner {
        padding: 0 16px;
    }

    /* Seções sem padding lateral excessivo */
    #solucoes .container,
    #segmentos .container,
    #sobre .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    /* Stats grid da seção soluções */
    .sol-stat-block {
        padding-left: 16px !important;
        padding-right: 16px;
    }

    /* Título hero menor */
    .hero-title {
        font-size: 36px;
    }

    /* Botões hero centralizados */
    .btn-hero-primary,
    .btn-hero-outline {
        width: 100%;
        justify-content: center;
    }
}

/* Tablet */
@media (max-width: 767px) {
    .nav-inner {
        padding: 0 20px;
    }

    .sol-stat-block {
        padding-left: 16px !important;
    }
}
/* ════════════════════════════════
    SEÇÃO PROJETOS
════════════════════════════════ */
.proj-label {
    display: inline-block;
    font-family: 'Exo 2', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #178A3F;
    margin-bottom: 12px;
}

.proj-title {
    font-family: 'Exo 2', sans-serif;
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 800;
    color: #0B1A10;
    line-height: 1.1;
}

.proj-title .proj-green {
    color: #178A3F;
}

.proj-subtitle {
    font-family: 'Nunito', sans-serif;
    font-size: 16px;
    color: #4B6354;
    max-width: 520px;
    margin: 0 auto;
}

/* Grid de cards */
.proj-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 48px;
}

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

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

/* Card individual */
.proj-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    background: #0B1A10;
    box-shadow: 0 4px 24px rgba(0,0,0,0.10);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.proj-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.18);
}

.proj-card-img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.proj-card:hover .proj-card-img {
    transform: scale(1.05);
}

.proj-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(6,15,8,0.90) 0%, rgba(6,15,8,0.20) 60%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
}

.proj-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(23,138,63,0.92);
    color: #fff;
    font-family: 'Exo 2', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 20px;
    backdrop-filter: blur(4px);
}

.proj-card-client {
    font-family: 'Exo 2', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 4px;
    line-height: 1.2;
}

.proj-card-meta {
    font-family: 'Nunito', sans-serif;
    font-size: 13px;
    color: rgba(255,255,255,0.72);
    display: flex;
    align-items: center;
    gap: 8px;
}

.proj-card-potencia {
    color: #4ADE80;
    font-weight: 700;
}

.proj-card-zoom {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 32px;
    height: 32px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(4px);
}

.proj-card:hover .proj-card-zoom { opacity: 1; }

.proj-card-zoom svg {
    width: 14px;
    height: 14px;
    stroke: #fff;
    stroke-width: 2;
    fill: none;
}

/* ════════════════════════════════
    LIGHTBOX
════════════════════════════════ */
.proj-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.proj-lightbox.lb-open {
    opacity: 1;
    pointer-events: all;
}

.lb-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(6,15,8,0.92);
    backdrop-filter: blur(6px);
}

.lb-box {
    position: relative;
    z-index: 1;
    background: #0d1f14;
    border-radius: 16px;
    overflow: hidden;
    max-width: 860px;
    width: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 32px 80px rgba(0,0,0,0.5);
    transform: scale(0.94);
    transition: transform 0.3s ease;
}

.proj-lightbox.lb-open .lb-box { transform: scale(1); }

.lb-img-wrap {
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: #060F08;
}

.lb-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lb-info {
    padding: 24px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.lb-badge {
    background: rgba(23,138,63,0.2);
    color: #4ADE80;
    font-family: 'Exo 2', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 20px;
    border: 1px solid rgba(74,222,128,0.25);
    display: inline-block;
    margin-bottom: 6px;
}

.lb-client {
    font-family: 'Exo 2', sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 2px;
}

.lb-meta {
    font-family: 'Nunito', sans-serif;
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    margin: 0;
}

.lb-potencia-val {
    font-family: 'Exo 2', sans-serif;
    font-size: 28px;
    font-weight: 900;
    color: #4ADE80;
    line-height: 1;
}

.lb-potencia-label {
    font-family: 'Nunito', sans-serif;
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    text-align: right;
    margin: 0;
}

.lb-close {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 2;
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.1);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease;
}

.lb-close:hover { background: rgba(255,255,255,0.2); }

.lb-close svg {
    width: 16px;
    height: 16px;
    stroke: #fff;
    stroke-width: 2.5;
    fill: none;
}

@media (max-width: 575px) {
    .lb-box { border-radius: 12px; }
    .lb-info { padding: 16px 18px; }
    .lb-client { font-size: 16px; }
    .lb-potencia-val { font-size: 22px; }
}
