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

:root {
  --teal:       #2BBCB4;
  --teal-deep:  #1A7F7A;
  --teal-dark:  #0E5956;
  --teal-light: #E6F9F8;
  --white:      #FFFFFF;
  --ink:        #0D2B2A;
  --muted:      #4A6B69;
  --sand:       #F5F0EA;
  --wave1:      #2BBCB4;
  --wave2:      #1A7F7A;
  --ff-head:    'Playfair Display', Georgia, serif;
  --ff-body:    'DM Sans', sans-serif;
  --radius:     16px;
  --shadow:     0 8px 40px rgba(27,127,122,.15);
}

html { scroll-behavior: smooth; }
body { font-family: var(--ff-body); color: var(--ink); background: var(--white); overflow-x: hidden; }

/* ── UTILITIES ── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.tag { display: inline-block; background: var(--teal-light); color: var(--teal-deep); font-size: .75rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; padding: 6px 16px; border-radius: 999px; margin-bottom: 16px; }
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 32px; border-radius: 999px; font-family: var(--ff-body); font-weight: 600; font-size: 1rem; cursor: pointer; text-decoration: none; transition: transform .2s, box-shadow .2s; border: none; }
.btn:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(43,188,180,.35); }
.btn-primary { background: var(--teal); color: var(--white); }
.btn-outline { background: transparent; color: var(--teal-deep); border: 2px solid var(--teal); }
.btn-outline:hover { background: var(--teal-light); box-shadow: none; }
.btn-white { background: var(--white); color: var(--teal-deep); }

h1, h2, h3 { font-family: var(--ff-head); line-height: 1.15; }
h1 { font-size: clamp(2.6rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 3.5vw, 2.8rem); }
h3 { font-size: 1.35rem; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,.9); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(43,188,180,.12);
  padding: 14px 0;
  transition: box-shadow .3s;
}
nav .inner { display: flex; align-items: center; justify-content: space-between; }
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo img { height: 44px; width: 44px; object-fit: contain; }
.nav-logo span { font-family: var(--ff-head); font-size: 1.2rem; color: var(--teal-deep); font-weight: 700; }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a { text-decoration: none; color: var(--muted); font-weight: 500; font-size: .95rem; transition: color .2s; }
.nav-links a:hover { color: var(--teal); }
.nav-cta { display: flex; gap: 12px; align-items: center; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  background: linear-gradient(155deg, var(--teal-light) 0%, #d0f3f1 40%, #fff 75%);
  padding-top: 90px;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; bottom: -80px; right: -120px;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(43,188,180,.18) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero-eyebrow { font-size: .8rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: var(--teal); margin-bottom: 12px; }
.hero h1 { color: var(--teal-dark); margin-bottom: 24px; }
.hero h1 span { color: var(--teal); }
.hero-desc { font-size: 1.15rem; color: var(--muted); line-height: 1.7; max-width: 500px; margin-bottom: 40px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-img-wrap { position: relative; display: flex; justify-content: center; }
.hero-img-wrap img { width: 340px; height: 340px; object-fit: contain; filter: drop-shadow(0 20px 50px rgba(27,127,122,.25)); animation: float 5s ease-in-out infinite; }
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-16px)} }
.hero-badge {
  position: absolute; bottom: 20px; left: 0;
  background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 14px 20px; display: flex; align-items: center; gap: 12px;
  animation: float 5s ease-in-out infinite 1s;
}
.hero-badge-icon { width: 42px; height: 42px; border-radius: 10px; background: var(--teal-light); display: flex; align-items: center; justify-content: center; font-size: 1.4rem; }
.hero-badge-text strong { display: block; font-size: .9rem; color: var(--ink); }
.hero-badge-text span { font-size: .78rem; color: var(--muted); }

/* stats strip */
.stats-strip { background: var(--teal-dark); padding: 32px 0; }
.stats-row { display: flex; justify-content: space-around; gap: 24px; flex-wrap: wrap; }
.stat-item { text-align: center; }
.stat-num { font-family: var(--ff-head); font-size: 2.2rem; color: var(--white); }
.stat-label { font-size: .85rem; color: rgba(255,255,255,.65); margin-top: 4px; }

/* ── SOBRE ── */
.sobre-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.sobre-visual {
  position: relative; border-radius: 24px; overflow: hidden;
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  padding: 48px; display: flex; flex-direction: column; gap: 24px;
}
.sobre-visual-item { background: rgba(255,255,255,.15); border-radius: 12px; padding: 18px 22px; backdrop-filter: blur(4px); }
.sobre-visual-item strong { display: block; color: #fff; font-size: 1rem; margin-bottom: 4px; }
.sobre-visual-item p { color: rgba(255,255,255,.75); font-size: .88rem; line-height: 1.5; }
.sobre-text h2 { color: var(--teal-dark); margin-bottom: 20px; }
.sobre-text p { color: var(--muted); line-height: 1.8; margin-bottom: 16px; }
.sobre-valores { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 24px; }
.valor-chip { display: flex; gap: 10px; align-items: flex-start; background: var(--teal-light); border-radius: 10px; padding: 12px 14px; }
.valor-chip .ico { font-size: 1.2rem; }
.valor-chip p { font-size: .85rem; color: var(--teal-deep); font-weight: 500; line-height: 1.4; }

/* ── SERVIÇOS ── */
.servicos { background: var(--sand); }
.servicos-header { text-align: center; margin-bottom: 56px; }
.servicos-header h2 { color: var(--teal-dark); }
.servicos-header p { color: var(--muted); max-width: 540px; margin: 12px auto 0; font-size: 1.05rem; line-height: 1.7; }
.servicos-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.servico-card {
  background: var(--white); border-radius: 20px;
  padding: 36px 28px; box-shadow: 0 4px 24px rgba(0,0,0,.06);
  transition: transform .25s, box-shadow .25s;
  border-bottom: 4px solid transparent;
}
.servico-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-bottom-color: var(--teal); }
.servico-icon { width: 60px; height: 60px; border-radius: 14px; background: var(--teal-light); display: flex; align-items: center; justify-content: center; font-size: 1.8rem; margin-bottom: 20px; }
.servico-card h3 { color: var(--teal-dark); margin-bottom: 10px; font-size: 1.15rem; }
.servico-card p { color: var(--muted); font-size: .9rem; line-height: 1.7; }

/* ── PEICOLLAB ── */
.pei-section {
  background: linear-gradient(135deg, var(--teal-dark) 0%, #0a3d3b 100%);
  position: relative; overflow: hidden;
}
.pei-section::before {
  content: '';
  position: absolute; top: -100px; right: -100px;
  width: 500px; height: 500px;
  border-radius: 50%; background: rgba(43,188,180,.12);
}
.pei-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.pei-text .tag { background: rgba(43,188,180,.2); color: #7FF0EB; }
.pei-text h2 { color: var(--white); margin-bottom: 18px; }
.pei-text p { color: rgba(255,255,255,.72); line-height: 1.8; margin-bottom: 28px; font-size: 1.05rem; }
.pei-features { list-style: none; display: flex; flex-direction: column; gap: 14px; margin-bottom: 36px; }
.pei-features li { display: flex; gap: 12px; align-items: flex-start; color: rgba(255,255,255,.85); font-size: .95rem; }
.pei-features li::before { content: '✓'; background: var(--teal); color: white; width: 22px; height: 22px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-size: .75rem; flex-shrink: 0; margin-top: 1px; }
.pei-mockup { display: flex; justify-content: center; }
.pei-card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 20px; padding: 32px; width: 100%; max-width: 380px;
  backdrop-filter: blur(8px);
}
.pei-card-header { display: flex; align-items: center; gap: 12px; margin-bottom: 24px; }
.pei-dot { width: 12px; height: 12px; border-radius: 50%; }
.pei-card-title { color: rgba(255,255,255,.9); font-weight: 600; font-size: .95rem; }
.pei-row { display: flex; justify-content: space-between; align-items: center; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.08); }
.pei-row:last-child { border-bottom: none; }
.pei-row-label { color: rgba(255,255,255,.55); font-size: .85rem; }
.pei-row-val { color: rgba(255,255,255,.9); font-size: .88rem; font-weight: 500; }
.pei-row-badge { background: rgba(43,188,180,.3); color: #7FF0EB; font-size: .75rem; padding: 3px 10px; border-radius: 999px; }

/* ── SEGMENTOS ── */
.seg-header { text-align: center; margin-bottom: 52px; }
.seg-header h2 { color: var(--teal-dark); }
.seg-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.seg-card { text-align: center; padding: 36px 20px; border-radius: 18px; background: var(--teal-light); transition: transform .2s, background .2s; cursor: default; }
.seg-card:hover { transform: translateY(-4px); background: var(--teal); }
.seg-card:hover .seg-label { color: white; }
.seg-card:hover .seg-ico { background: rgba(255,255,255,.25); }
.seg-ico { width: 64px; height: 64px; border-radius: 16px; background: var(--white); display: flex; align-items: center; justify-content: center; font-size: 2rem; margin: 0 auto 16px; transition: background .2s; }
.seg-label { font-weight: 600; color: var(--teal-deep); font-size: .95rem; transition: color .2s; }

/* ── MVV ── */
.mv-section { background: var(--sand); }
.mv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.mv-card { background: var(--white); padding: 40px 32px; border-radius: 24px; box-shadow: 0 4px 20px rgba(0,0,0,.04); text-align: center; }
.mv-icon { font-size: 2.4rem; margin-bottom: 20px; }
.mv-card h3 { color: var(--teal-dark); margin-bottom: 12px; }
.mv-card p { color: var(--muted); font-size: .95rem; line-height: 1.7; }

/* ── CTA ── */
.cta-section { background: var(--teal); padding: 100px 0; text-align: center; color: white; }
.cta-section h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 20px; }
.cta-section p { font-size: 1.15rem; max-width: 600px; margin: 0 auto 40px; opacity: .9; line-height: 1.7; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── CONTATO ── */
.contato-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.contato-text h2 { color: var(--teal-dark); margin-bottom: 20px; }
.contato-text p { color: var(--muted); line-height: 1.8; margin-bottom: 40px; }
.contact-items { display: flex; flex-direction: column; gap: 28px; }
.contact-item { display: flex; gap: 16px; }
.contact-item .icon { width: 48px; height: 48px; border-radius: 12px; background: var(--teal-light); display: flex; align-items: center; justify-content: center; font-size: 1.4rem; flex-shrink: 0; }
.contact-item strong { display: block; color: var(--teal-dark); font-size: .95rem; margin-bottom: 4px; }
.contact-item span { color: var(--muted); font-size: .9rem; line-height: 1.6; }

.contato-form { background: var(--white); padding: 48px; border-radius: 24px; box-shadow: var(--shadow); }

/* ── FOOTER ── */
footer { background: var(--ink); color: white; padding: 80px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 60px; margin-bottom: 60px; }
.footer-brand .logo-wrap { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.footer-brand .logo-wrap img { height: 40px; }
.footer-brand .logo-wrap span { font-family: var(--ff-head); font-size: 1.4rem; font-weight: 700; }
.footer-brand p { color: rgba(255,255,255,.6); line-height: 1.7; font-size: .95rem; max-width: 340px; }
.cnpj-tag { margin-top: 20px; font-size: .8rem !important; color: rgba(255,255,255,.4) !important; }
.footer-col h4 { font-size: 1.1rem; margin-bottom: 24px; color: var(--teal); }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col a { color: rgba(255,255,255,.7); text-decoration: none; font-size: .9rem; transition: color .2s; }
.footer-col a:hover { color: white; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 32px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.footer-bottom p { font-size: .85rem; color: rgba(255,255,255,.5); }

/* ── ANIMATIONS ── */
.reveal { opacity: 0; transform: translateY(30px); transition: all .8s cubic-bezier(0.2, 0.8, 0.2, 1); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero-grid, .sobre-grid, .pei-grid, .contato-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero { text-align: center; padding-top: 120px; }
  .hero-desc { margin: 0 auto 40px; }
  .hero-actions { justify-content: center; }
  .servicos-grid { grid-template-columns: repeat(2, 1fr); }
  .seg-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .servicos-grid, .seg-grid, .mv-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .contato-form { padding: 32px 24px; }
}
