/* ============================================================
   LIMPART SERVICES — Stylesheet
   Layout inspirado no aldeia.cc: clean, minimal, card-grid
   ============================================================ */

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary:      #1B596B;
  --primary-dark: #0E4150;
  --accent:       #2EAC6A;
  --accent-dark:  #228A54;
  --yellow:       #D97757;
  --dark:         #1A2E35;
  --gray:         #5A7A85;
  --light:        #F2F7F9;
  --white:        #FFFFFF;
  --border:       #DDE8EC;
  --nav-bg:       #0E4150;
  --font:         'Inter', 'Segoe UI', sans-serif;
  --radius:       8px;
  --shadow:       0 2px 16px rgba(27, 89, 107, 0.10);
  --shadow-lg:    0 8px 40px rgba(27, 89, 107, 0.16);
  --transition:   0.22s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--dark);
  background: var(--white);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 13px 28px;
  border-radius: var(--radius);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  border: none;
  cursor: pointer;
}
.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(46, 172, 106, 0.30);
}
.btn-primary.btn-light {
  background: var(--white);
  color: var(--primary);
}
.btn-primary.btn-light:hover {
  background: var(--light);
  box-shadow: 0 6px 20px rgba(255,255,255,0.20);
}
.btn-primary.btn-large {
  padding: 16px 36px;
  font-size: 1.05rem;
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 12px 28px;
  border-radius: var(--radius);
  border: 2px solid rgba(255,255,255,0.50);
  transition: border-color var(--transition), background var(--transition);
  cursor: pointer;
}
.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.10);
}
.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent);
  font-weight: 600;
  font-size: 0.9rem;
  transition: gap var(--transition);
}
.btn-link:hover { gap: 10px; }

/* ===== EYEBROW / LABELS ===== */
.eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.eyebrow-light { color: rgba(255,255,255,0.65); }

/* ===== SECTION TITLES ===== */
.section-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  line-height: 1.18;
  color: var(--dark);
  margin-bottom: 20px;
}
.section-sub {
  color: var(--gray);
  max-width: 560px;
  font-size: 1rem;
  line-height: 1.7;
}

/* ===== FADE-IN ANIMATION ===== */
.fade-in {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--nav-bg);
  box-shadow: 0 2px 12px rgba(0,0,0,0.18);
  transition: box-shadow var(--transition);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo-text {
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: 0.06em;
}

/* Header Seal - 15 anos */
.header-seal {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 16px;
}
.header-seal-ring {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(145deg, #D4AF37, #F5E6A3, #D4AF37);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(212,175,55,0.3), inset 0 0 0 2px rgba(255,255,255,0.15);
  flex-shrink: 0;
  animation: sealPulse 3s ease-in-out infinite;
}
.header-seal-number {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  color: #0C2D3B;
  line-height: 1;
}
.header-seal-text {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.3px;
  line-height: 1.3;
  white-space: nowrap;
}
@keyframes sealPulse {
  0%, 100% { box-shadow: 0 2px 10px rgba(212,175,55,0.3); }
  50% { box-shadow: 0 2px 18px rgba(212,175,55,0.5), 0 0 0 4px rgba(212,175,55,0.1); }
}
@media (max-width: 900px) {
  .header-seal-text { display: none; }
  .header-seal { margin-left: 10px; }
}
@media (max-width: 560px) {
  .header-seal-ring { width: 34px; height: 34px; }
  .header-seal-number { font-size: 0.95rem; }
}

/* Nav */
.nav-menu ul {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-menu a {
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,0.78);
  padding: 6px 14px;
  border-radius: 5px;
  transition: color var(--transition), background var(--transition);
}
.nav-menu a:hover {
  color: var(--white);
  background: rgba(255,255,255,0.10);
}
.nav-cta {
  background: var(--accent) !important;
  color: var(--white) !important;
  font-weight: 600 !important;
  padding: 7px 18px !important;
  border-radius: var(--radius) !important;
}
.nav-cta:hover {
  background: var(--accent-dark) !important;
}

/* Hamburger */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.25s ease;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, #22718A 100%);
  overflow: hidden;
  padding-top: 68px;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(217,119,87,0.18) 0%, transparent 50%),
    radial-gradient(circle at 10% 80%, rgba(46,172,106,0.12) 0%, transparent 45%);
  pointer-events: none;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(14,65,80,0.45) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 60px;
  padding-bottom: 80px;
  max-width: 700px;
}
.hero-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(46,172,106,0.13);
  border: 1px solid rgba(46,172,106,0.30);
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 24px;
}
.hero-title {
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  font-weight: 900;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 22px;
  letter-spacing: -0.02em;
}
.hero-highlight {
  color: var(--yellow);
}
.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.80);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 36px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  background: var(--primary-dark);
  padding: 28px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 12px 20px;
  border-right: 1px solid rgba(255,255,255,0.12);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-size: 2rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.60);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-align: center;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about-section {
  padding: 100px 0;
  background: var(--white);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about-visual {
  position: relative;
}
.about-img-wrap {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 14px;
  overflow: hidden;
  background: var(--light);
  position: relative;
}
.about-video-wrap {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 14px;
  overflow: hidden;
  background: #000;
  position: relative;
  box-shadow: 0 12px 40px rgba(0,0,0,0.18);
}
.about-video-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 14px;
}
.about-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-img-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--light) 0%, #c8dfe7 100%);
}
.about-img-placeholder i {
  font-size: 5rem;
  color: var(--primary);
  opacity: 0.25;
}
.about-badge {
  position: absolute;
  bottom: -18px;
  right: -18px;
  background: var(--accent);
  color: var(--white);
  border-radius: 12px;
  padding: 16px 22px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.badge-year {
  display: block;
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1;
}
.badge-text {
  font-size: 0.72rem;
  font-weight: 600;
  opacity: 0.85;
}
.about-text p {
  color: var(--gray);
  margin-bottom: 16px;
  line-height: 1.75;
}
.about-values {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 28px 0 32px;
}
.value-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--dark);
}
.value-item i {
  color: var(--accent);
  font-size: 1rem;
  width: 20px;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services-section {
  padding: 100px 0;
  background: var(--light);
}
.section-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 52px;
}
.section-header .section-title { margin-bottom: 0; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px 28px;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: var(--accent);
  transform: scaleY(0);
  transition: transform var(--transition);
  transform-origin: bottom;
}
.service-card:hover {
  border-color: rgba(46,172,106,0.35);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.service-card:hover::before { transform: scaleY(1); }

.service-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  background: rgba(27,89,107,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: background var(--transition);
}
.service-card-icon i {
  font-size: 1.3rem;
  color: var(--primary);
}
.service-card:hover .service-card-icon {
  background: rgba(46,172,106,0.12);
}
.service-card:hover .service-card-icon i { color: var(--accent); }
.service-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}
.service-card p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.65;
}

/* Wide card (IPHAN) */
.service-card-wide {
  grid-column: 1 / -1;
  display: flex;
  align-items: flex-start;
  gap: 28px;
  padding: 36px 36px;
}
.service-card-wide .service-card-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  margin-bottom: 0;
}
.service-card-wide .service-card-icon i { font-size: 1.6rem; }
.service-card-content-wide h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}
.service-card-content-wide p {
  margin-bottom: 16px;
}

/* ============================================================
   OUTSOURCING / TERCEIRIZAÇÃO
   ============================================================ */
.outsourcing-section {
  padding: 100px 0;
  background: var(--white);
}
.outsourcing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.outsourcing-text p {
  color: var(--gray);
  margin-bottom: 16px;
  line-height: 1.75;
}
.outsourcing-list {
  margin: 24px 0 36px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.outsourcing-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--dark);
}
.outsourcing-list i { color: var(--accent); }
.outsourcing-visual {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: 14px;
  overflow: hidden;
  background: var(--light);
}
.outsourcing-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.outsourcing-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: linear-gradient(135deg, var(--light) 0%, #c8dfe7 100%);
}
.outsourcing-placeholder i {
  font-size: 4.5rem;
  color: var(--primary);
  opacity: 0.22;
}
.outsourcing-placeholder p {
  font-size: 0.85rem;
  color: var(--gray);
  opacity: 0.6;
}

/* ============================================================
   TECH SECTION
   ============================================================ */
.tech-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  position: relative;
  overflow: hidden;
}
.tech-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 90% 50%, rgba(217,119,87,0.15) 0%, transparent 50%);
  pointer-events: none;
}
.tech-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 72px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.section-title-light {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  line-height: 1.18;
  color: var(--white);
  margin-bottom: 20px;
}
.tech-desc {
  color: rgba(255,255,255,0.75);
  line-height: 1.75;
  margin-bottom: 28px;
  max-width: 540px;
}
.tech-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}
.tech-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 6px 14px;
  border-radius: 20px;
}
.tech-badge i { color: var(--accent); }
.tech-icon-wrap {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 2px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
}
.tech-icon-wrap i {
  font-size: 5rem;
  color: rgba(255,255,255,0.18);
}

/* ============================================================
   CLIENTS
   ============================================================ */
.clients-section {
  padding: 100px 0;
  background: var(--light);
}
.clients-section .section-title {
  margin-bottom: 48px;
  text-align: center;
}
.clients-section .eyebrow {
  display: block;
  text-align: center;
}
.clients-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.client-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.client-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.client-logo {
  width: 80px;
  height: 50px;
  object-fit: contain;
}
.client-card i {
  font-size: 1.6rem;
  color: var(--primary);
  opacity: 0.5;
}
.client-card span {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gray);
  text-align: center;
  letter-spacing: 0.02em;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  padding: 96px 0;
  background: var(--primary-dark);
}
.cta-inner {
  text-align: center;
}
.cta-inner h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
}
.cta-inner p {
  color: rgba(255,255,255,0.65);
  font-size: 1.05rem;
  margin-bottom: 40px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
   REVIEWS / AVALIAÇÕES
   ============================================================ */
.reviews-section {
  padding: 96px 0;
  background: var(--light);
}
.reviews-section .eyebrow,
.reviews-section .section-title {
  text-align: center;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}
.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px 18px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}
.review-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 10px;
}
.review-stars i {
  color: #f59e0b;
  font-size: 0.85rem;
}
.review-text {
  font-size: 0.82rem;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 14px;
  font-style: italic;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 10px;
}
.review-author > i {
  font-size: 1.8rem;
  color: var(--primary);
  opacity: 0.6;
}
.review-author strong {
  display: block;
  font-size: 0.8rem;
  color: var(--heading);
}
.review-author span {
  font-size: 0.7rem;
  color: var(--gray);
}
.reviews-cta {
  text-align: center;
}
.btn-review {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  color: var(--heading);
  border: 2px solid var(--primary);
  padding: 14px 36px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}
.btn-review:hover {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(46,172,106,0.3);
  transform: translateY(-2px);
}
.btn-review i {
  font-size: 1.2rem;
}
@media (max-width: 992px) {
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 576px) {
  .reviews-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--dark);
  padding-top: 72px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 48px;
  padding-bottom: 60px;
}
.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.footer-brand .footer-logo span {
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: 0.06em;
}
.footer-brand p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.50);
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 240px;
}
.footer-socials {
  display: flex;
  gap: 10px;
}
.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.60);
  font-size: 0.9rem;
  transition: background var(--transition), color var(--transition);
}
.footer-socials a:hover {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

.footer-col h4 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.40);
  margin-bottom: 18px;
}
.footer-col ul li {
  margin-bottom: 10px;
}
.footer-col ul a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.60);
  transition: color var(--transition);
}
.footer-col ul a:hover { color: var(--white); }

.footer-contact-list li {
  margin-bottom: 12px;
}
.footer-contact-list li a {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.60);
  text-decoration: none;
  transition: color 0.3s;
}
.footer-contact-list li a:hover {
  color: var(--accent);
}
.footer-contact-list i {
  color: var(--accent);
  font-size: 0.85rem;
  margin-top: 3px;
  flex-shrink: 0;
  width: 14px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom span {
  font-size: 0.80rem;
  color: rgba(255,255,255,0.35);
}

/* ============================================================
   FLOATING BUTTONS
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  font-size: 1.55rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: transform var(--transition), box-shadow var(--transition);
}
.whatsapp-float:hover {
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 8px 28px rgba(37,211,102,0.55);
}
.back-to-top {
  position: fixed;
  bottom: 94px;
  right: 28px;
  z-index: 900;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  font-size: 0.85rem;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition), transform var(--transition);
  box-shadow: 0 3px 14px rgba(27,89,107,0.30);
}
.back-to-top.visible {
  opacity: 1;
  pointer-events: all;
}
.back-to-top:hover { transform: translateY(-2px); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .clients-grid { grid-template-columns: repeat(3, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card-wide { grid-column: span 2; }
}

@media (max-width: 900px) {
  .about-grid,
  .outsourcing-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-visual { order: -1; }
  .outsourcing-visual { order: -1; }
  .about-badge { right: 16px; bottom: -14px; }
  .tech-grid { grid-template-columns: 1fr; }
  .tech-icon-wrap { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .section-header { flex-direction: column; gap: 16px; }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }

  /* Nav mobile */
  .nav-menu {
    position: absolute;
    top: 68px;
    left: 0; right: 0;
    background: var(--primary-dark);
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.30s ease, padding 0.30s ease;
  }
  .nav-menu.open {
    max-height: 400px;
    padding: 12px 0 20px;
  }
  .nav-menu ul {
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    padding: 0 20px;
  }
  .nav-menu a {
    padding: 11px 16px;
    font-size: 0.95rem;
    border-radius: 6px;
    display: block;
  }
  .nav-cta { margin-top: 6px; text-align: center; }
  .menu-toggle { display: flex; }

  .hero { min-height: 85vh; }
  .hero-content { padding-top: 40px; }
  .hero-title { font-size: 2.4rem; }
  .hero-sub { font-size: 1rem; }

  .services-grid { grid-template-columns: 1fr; }
  .service-card-wide { grid-column: span 1; flex-direction: column; }

  .clients-grid { grid-template-columns: repeat(2, 1fr); }

  .footer-grid { grid-template-columns: 1fr; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.10); }
  .stat-item:nth-last-child(-n+2) { border-bottom: none; }

  .footer-bottom .container { justify-content: center; text-align: center; }

  .about-section,
  .services-section,
  .outsourcing-section,
  .tech-section,
  .clients-section,
  .cta-section { padding: 72px 0; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn-primary,
  .hero-actions .btn-outline { width: 100%; justify-content: center; }
  .clients-grid { grid-template-columns: repeat(3, 1fr); }
  .tech-badges { flex-direction: column; }
}

/* ============================================================
   VISUAL REFRESH
   ============================================================ */
:root {
  --primary: #295971;
  --primary-dark: #193f52;
  --accent: #2EAC6A;
  --accent-dark: #228A54;
  --accent-soft: #dff0e3;
  --green-soft: #dff0e3;
  --dark: #16313d;
  --gray: #5d717c;
  --light: #eef3f6;
  --light-strong: #f5f8fa;
  --border: rgba(22, 49, 61, 0.09);
  --nav-bg: rgba(245, 248, 250, 0.74);
  --font: 'Manrope', 'Segoe UI', sans-serif;
  --font-display: 'Fraunces', Georgia, serif;
  --radius: 16px;
  --shadow: 0 14px 28px rgba(20, 51, 66, 0.08);
  --shadow-lg: 0 28px 50px rgba(20, 51, 66, 0.14);
}

body {
  background:
    radial-gradient(circle at top left, rgba(41, 89, 113, 0.08), transparent 30%),
    radial-gradient(circle at 85% 10%, rgba(46, 172, 106, 0.10), transparent 24%),
    var(--light);
}

.section-title,
.section-title-light,
.hero-title,
.cta-inner h2 {
  font-family: var(--font-display);
  letter-spacing: -0.03em;
}

.header {
  top: 16px;
  left: 0;
  right: 0;
  background: transparent;
  box-shadow: none;
}

.header.scrolled {
  background: transparent;
}

.header-inner {
  min-height: 82px;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--nav-bg);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: var(--shadow);
}

.logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-image {
  display: block;
  width: auto;
  max-width: min(240px, 32vw);
  height: 48px;
  object-fit: contain;
}

.logo-text,
.logo-icon {
  display: none;
}

.nav-menu a {
  color: var(--gray);
  font-weight: 700;
  border-radius: 999px;
  padding: 10px 16px;
}

.nav-menu a:hover {
  color: var(--primary);
  background: rgba(41, 89, 113, 0.08);
}

.nav-cta {
  background: var(--accent) !important;
  padding: 10px 18px !important;
  box-shadow: 0 14px 24px rgba(46, 172, 106, 0.22);
}

.hero {
  min-height: auto;
  padding: 150px 0 96px;
  background:
    radial-gradient(circle at 16% 18%, rgba(41, 89, 113, 0.10), transparent 25%),
    linear-gradient(135deg, #f0f6f8 0%, #edf6f3 58%, #e3eff3 100%);
}

.hero::before {
  background:
    linear-gradient(rgba(255, 255, 255, 0.32) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.32) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0.38;
}

.hero-overlay {
  background: linear-gradient(to right, rgba(255,255,255,0.12) 0%, transparent 70%);
}

.hero-shell {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 40px;
  align-items: center;
}

.hero-content {
  padding-top: 20px;
  padding-bottom: 20px;
  max-width: none;
}

.hero-eyebrow {
  color: var(--primary);
  background: rgba(255, 255, 255, 0.76);
  border-color: rgba(41, 89, 113, 0.12);
  padding: 8px 16px;
  font-weight: 800;
}

.hero-title {
  font-size: clamp(3rem, 5.8vw, 5.8rem);
  line-height: 0.98;
  color: var(--dark);
}

.hero-highlight {
  color: var(--primary);
}

.hero-sub {
  max-width: 58ch;
  font-size: 1.05rem;
  color: var(--gray);
}

.btn-primary {
  background: var(--accent);
  border-radius: 999px;
  padding: 14px 28px;
  box-shadow: 0 18px 30px rgba(46, 172, 106, 0.22);
}

.btn-primary:hover {
  background: var(--accent-dark);
}

.btn-outline {
  color: var(--dark);
  border-radius: 999px;
  border-color: rgba(22, 49, 61, 0.12);
  background: rgba(255, 255, 255, 0.52);
  backdrop-filter: blur(12px);
}

.btn-outline:hover {
  background: rgba(41, 89, 113, 0.06);
  border-color: rgba(41, 89, 113, 0.18);
}

.hero-panel {
  position: relative;
}

.hero-proof-card {
  padding: 34px;
  border-radius: 32px;
  background: linear-gradient(155deg, var(--primary-dark), var(--primary));
  color: var(--white);
  box-shadow: var(--shadow-lg);
}

.hero-proof-label {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-proof-card h2 {
  margin: 0 0 26px;
  max-width: 15ch;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1.12;
}

.proof-list {
  display: grid;
  gap: 14px;
}

.proof-list li {
  display: grid;
  gap: 4px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
}

.proof-list strong {
  font-size: 0.98rem;
}

.proof-list span {
  color: rgba(255,255,255,0.78);
  font-size: 0.92rem;
}

.hero-floating-badge {
  position: relative;
  right: auto;
  bottom: auto;
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 100%;
  padding: 20px;
  border-radius: 24px;
  margin-top: 18px;
  background: rgba(245, 248, 250, 0.92);
  border: 1px solid rgba(22, 49, 61, 0.08);
  box-shadow: var(--shadow);
}

.hero-floating-badge i {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(41, 89, 113, 0.12), rgba(125, 184, 137, 0.16));
  color: var(--primary);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.hero-floating-badge strong {
  display: block;
  margin-bottom: 4px;
  color: var(--dark);
}

.hero-floating-badge span {
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.5;
}

/* ===== ANNIVERSARY SEAL — PREMIUM ===== */
/* --- Premium 15-Year Seal --- */
.anniversary-seal {
  position: absolute;
  top: 10px;
  right: 20px;
  z-index: 5;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.25));
}

.seal-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

/* seal-rays removido */

.seal-outer-ring {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: linear-gradient(145deg, #D4AF37, #F5E6A3, #D4AF37, #B8941F);
  padding: 4px;
  position: relative;
  z-index: 1;
  box-shadow:
    0 0 0 2px rgba(212,175,55,0.3),
    0 0 30px rgba(212,175,55,0.15),
    0 12px 40px rgba(0,0,0,0.2);
  animation: sealFloat 4s ease-in-out infinite, sealPulseGlow 3s ease-in-out infinite;
}

.seal-mid-ring {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: linear-gradient(160deg, #0C2D3B 0%, #193F52 40%, #1A4A5E 60%, #0F3344 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.seal-stars-ring {
  position: absolute;
  inset: -5px;
  animation: sealSpin 40s linear infinite reverse;
}

.seal-inner-ring {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: linear-gradient(160deg, #193F52, #0C2D3B);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  border: 2px solid rgba(212,175,55,0.4);
  box-shadow: inset 0 2px 12px rgba(0,0,0,0.3);
  overflow: hidden;
}

.seal-shimmer {
  position: absolute;
  top: -100%;
  left: -100%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    125deg,
    transparent 30%,
    rgba(212,175,55,0.08) 45%,
    rgba(255,255,255,0.12) 50%,
    rgba(212,175,55,0.08) 55%,
    transparent 70%
  );
  animation: sealShimmer 4s ease-in-out infinite;
  pointer-events: none;
}

.seal-number {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 700;
  color: #D4AF37;
  line-height: 1;
  letter-spacing: -1px;
  text-shadow: 0 0 20px rgba(212,175,55,0.4), 0 2px 4px rgba(0,0,0,0.3);
  position: relative;
  z-index: 1;
}

.seal-label {
  font-family: var(--font);
  font-size: 0.6rem;
  font-weight: 800;
  color: #F5E6A3;
  letter-spacing: 5px;
  text-transform: uppercase;
  margin-top: -2px;
  position: relative;
  z-index: 1;
}

.seal-ribbon {
  margin-top: -8px;
  position: relative;
  z-index: 2;
}

.seal-ribbon-text {
  display: inline-block;
  background: linear-gradient(135deg, #D4AF37, #F5E6A3, #D4AF37);
  color: #0C2D3B;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 2px;
  padding: 5px 18px;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(212,175,55,0.3);
}

.seal-bottom-text {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 6px;
}

.seal-laurel-mini {
  width: 16px;
  height: 16px;
}

.seal-tagline {
  font-size: 0.6rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.5px;
  text-align: center;
  text-transform: uppercase;
}

@keyframes sealFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

@keyframes sealShimmer {
  0% { transform: translateX(-30%) translateY(-30%) rotate(25deg); }
  50% { transform: translateX(30%) translateY(30%) rotate(25deg); }
  100% { transform: translateX(-30%) translateY(-30%) rotate(25deg); }
}

@keyframes sealSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes sealPulseGlow {
  0%, 100% { box-shadow: 0 0 0 2px rgba(212,175,55,0.3), 0 0 30px rgba(212,175,55,0.15), 0 12px 40px rgba(0,0,0,0.2); }
  50% { box-shadow: 0 0 0 3px rgba(212,175,55,0.5), 0 0 50px rgba(212,175,55,0.3), 0 12px 40px rgba(0,0,0,0.2); }
}

.stats-bar {
  background: transparent;
  padding-top: 0;
  margin-top: -24px;
}

.stats-grid {
  gap: 18px;
}

.stat-item {
  background: rgba(255,255,255,0.76);
  backdrop-filter: blur(14px);
  border: 1px solid var(--border);
  border-radius: 22px;
  box-shadow: var(--shadow);
  min-height: 128px;
  justify-content: center;
  border-right: none;
}

.stat-number {
  color: var(--primary);
}

.stat-label {
  color: var(--gray);
}

.about-section,
.outsourcing-section {
  background: transparent;
}

.services-section,
.clients-section {
  background: linear-gradient(180deg, rgba(255,250,245,0.72), rgba(255,255,255,0.28));
}

.about-img-wrap,
.outsourcing-visual,
.service-card,
.client-card,
.cta-inner {
  border-radius: 24px;
}

.about-img-wrap,
.outsourcing-visual {
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}

.about-img-placeholder,
.outsourcing-placeholder {
  background:
    radial-gradient(circle at top right, rgba(46, 172, 106, 0.12), transparent 26%),
    linear-gradient(135deg, #f0f6f8 0%, #ecf6f1 100%);
}

.about-badge {
  background: var(--accent);
  border-radius: 18px;
}

.service-card {
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.service-card::before {
  width: 100%;
  height: 4px;
  top: 0;
  bottom: auto;
  transform: scaleX(0);
  transform-origin: left;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card-icon {
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(41, 89, 113, 0.08), rgba(46, 172, 106, 0.10));
}

.service-card h3,
.service-card-content-wide h3 {
  color: var(--dark);
}

.outsourcing-list li,
.value-item {
  font-weight: 600;
}

.tech-section {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
}

.tech-icon-wrap {
  background: rgba(255,255,255,0.08);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08);
}

.client-card {
  border-radius: 999px;
  min-height: 92px;
  box-shadow: var(--shadow);
}

.evidence-section {
  padding: 100px 0;
}

.evidence-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 28px;
  align-items: start;
}

.evidence-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.evidence-card {
  padding: 28px;
  border-radius: 24px;
  background: rgba(255,255,255,0.8);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.evidence-year {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.evidence-card h3 {
  margin-bottom: 10px;
  color: var(--dark);
}

.evidence-card p {
  color: var(--gray);
  font-size: 0.92rem;
  line-height: 1.7;
}

/* ============================================================
   PORTFOLIO SECTION
   ============================================================ */
.portfolio-section {
  padding: 80px 0;
  background: var(--light);
}

/* Gallery grid — 4 colunas, 2 em tablet, 2 em mobile */
.pf-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.pf-item {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.pf-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.16);
}
.pf-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.pf-item:hover img {
  transform: scale(1.06);
}
.pf-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px 14px 12px;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  color: #fff;
}
.pf-caption h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 2px;
}
.pf-caption p {
  font-size: 0.75rem;
  opacity: 0.85;
}

/* Before & After */
.pf-ba {
  margin-top: 32px;
  background: #fff;
  border-radius: 14px;
  padding: 28px 32px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.05);
}
.pf-ba-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  text-align: center;
  margin-bottom: 20px;
}
.pf-ba-title i { color: var(--accent); margin-right: 6px; }
.pf-ba-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.pf-ba-card {
  flex: 1;
  max-width: 300px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 3px 12px rgba(0,0,0,0.1);
}
.pf-ba-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}
.pf-ba-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 3px 12px;
  border-radius: 16px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.pf-ba-before { background: rgba(220,53,69,0.9); color: #fff; }
.pf-ba-after { background: rgba(46,172,106,0.9); color: #fff; }
.pf-ba-arrow {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #27ae60);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.9rem;
  box-shadow: 0 3px 10px rgba(46,172,106,0.3);
}

/* Video */
.pf-video {
  margin-top: 32px;
  text-align: center;
}
.pf-video video {
  width: 100%;
  max-width: 700px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  display: block;
  margin: 0 auto;
  background: #000;
}
.pf-video-caption {
  margin-top: 12px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gray);
}
.pf-video-caption i { color: var(--accent); margin-right: 6px; }

/* Portfolio responsive */
@media (max-width: 768px) {
  .pf-gallery { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .pf-item img { height: 180px; }
  .pf-ba { padding: 20px 16px; }
  .pf-ba-card img { height: 160px; }
}
@media (max-width: 480px) {
  .pf-gallery { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .pf-item img { height: 150px; }
  .pf-caption h4 { font-size: 0.8rem; }
  .pf-caption p { font-size: 0.65rem; }
  .pf-ba-grid { gap: 8px; }
  .pf-ba-card img { height: 130px; }
  .pf-ba-arrow { width: 32px; height: 32px; font-size: 0.75rem; }
  .pf-highlight { flex-direction: column; }
  .pf-highlight-img { max-width: 100%; height: 240px; }
}

/* Destaque equipe */
.pf-highlight {
  margin-top: 32px;
  display: flex;
  align-items: center;
  gap: 32px;
  background: #fff;
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.08);
  border: 1px solid rgba(22,49,61,0.06);
}
.pf-highlight-img {
  flex-shrink: 0;
  max-width: 420px;
  height: 280px;
  border-radius: 14px;
  overflow: hidden;
}
.pf-highlight-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.pf-highlight-info h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
}
.pf-highlight-info h3 i {
  color: var(--accent);
  margin-right: 8px;
}
.pf-highlight-info p {
  color: var(--gray);
  font-size: 1rem;
  line-height: 1.7;
}
@media (max-width: 768px) {
  .pf-highlight { flex-direction: column; gap: 20px; }
  .pf-highlight-img { max-width: 100%; height: 240px; }
}

/* ============================================================
   MAP SECTION
   ============================================================ */
.map-section {
  padding: 100px 0;
}

.map-wrapper {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 28px;
  margin-top: 10px;
}

.client-map {
  width: 100%;
  height: 480px;
  border-radius: 24px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  z-index: 1;
}

.map-legend {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 28px;
  background: rgba(255,255,255,0.80);
  backdrop-filter: blur(14px);
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: var(--shadow);
  align-self: start;
}

.map-legend-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px;
  border-radius: 14px;
  transition: background 0.3s;
}

.map-legend-item:hover {
  background: rgba(41, 89, 113, 0.06);
}

.map-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 3px;
}

.map-dot-se { background: var(--accent); box-shadow: 0 0 0 4px rgba(46, 172, 106, 0.20); }
.map-dot-ba { background: #E67E22; box-shadow: 0 0 0 4px rgba(230, 126, 34, 0.20); }
.map-dot-pe { background: #3498DB; box-shadow: 0 0 0 4px rgba(52, 152, 219, 0.20); }
.map-dot-ce { background: #9B59B6; box-shadow: 0 0 0 4px rgba(155, 89, 182, 0.20); }

.map-legend-item strong {
  display: block;
  font-size: 0.92rem;
  color: var(--dark);
  margin-bottom: 2px;
}

.map-legend-item span:not(.map-dot) {
  font-size: 0.8rem;
  color: var(--gray);
  line-height: 1.4;
}

@media (max-width: 900px) {
  .map-wrapper {
    grid-template-columns: 1fr;
  }
  .client-map {
    height: 380px;
  }
}

@media (max-width: 480px) {
  .client-map {
    height: 300px;
    border-radius: 16px;
  }
  .map-legend {
    border-radius: 16px;
  }
}

.cta-section {
  background: transparent;
  padding-top: 0;
}

.cta-inner {
  padding: 48px 32px;
  background:
    radial-gradient(circle at 82% 10%, rgba(46, 172, 106, 0.15), transparent 24%),
    linear-gradient(135deg, var(--primary-dark) 0%, #204f64 100%);
  box-shadow: var(--shadow-lg);
}

.cta-inner p {
  color: rgba(255,255,255,0.78);
}

.footer {
  background: transparent;
  padding-top: 24px;
}

.footer-grid {
  padding: 44px 0 36px;
  border-top: 1px solid rgba(22, 49, 61, 0.08);
}

.footer-logo {
  margin-bottom: 18px;
}

.footer-logo-image {
  width: 210px;
  max-width: 100%;
  height: auto;
}

.footer-brand .footer-logo span {
  display: none;
}

.footer-col h4 {
  color: rgba(22, 49, 61, 0.46);
}

.footer-col ul a,
.footer-contact-list li,
.footer-brand p {
  color: var(--gray);
}

.footer-socials a {
  background: rgba(255,255,255,0.8);
  border-color: rgba(22, 49, 61, 0.08);
  color: var(--primary);
}

.footer-bottom {
  border-top-color: rgba(22, 49, 61, 0.08);
}

.footer-bottom span {
  color: var(--gray);
}

.back-to-top {
  background: var(--primary);
}

@media (max-width: 1100px) {
  .hero-shell,
  .evidence-grid {
    grid-template-columns: 1fr;
  }

  .evidence-cards {
    grid-template-columns: 1fr;
  }

  .hero-floating-badge {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 18px;
    max-width: none;
  }

  .anniversary-seal {
    position: static;
    margin: 16px 0 20px;
    display: flex;
    justify-content: center;
  }
}

@media (max-width: 900px) {
  .header {
    top: 10px;
  }

  .header-inner {
    min-height: 74px;
  }

  .logo-image,
  .footer-logo-image {
    width: auto;
  }

  .logo-image {
    height: 42px;
  }

  .footer-logo-image {
    width: 170px;
  }

  .stats-grid,
  .clients-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-menu {
    top: 82px;
    background: rgba(245, 248, 250, 0.96);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(22, 49, 61, 0.08);
    border-radius: 24px;
    margin: 0 12px;
  }

  .hero {
    padding-top: 132px;
  }

  .hero-title {
    font-size: 2.6rem;
  }
}

@media (max-width: 480px) {
  .logo-image,
  .footer-logo-image {
    width: auto;
  }

  .logo-image {
    height: 36px;
  }

  .footer-logo-image {
    width: 146px;
  }

  .stats-grid,
  .clients-grid {
    grid-template-columns: 1fr;
  }

  .stat-item {
    border-bottom: none;
  }
}

/* ============================================================
   QUOTE / ORÇAMENTO SECTION
   ============================================================ */
.quote-section {
  padding: 100px 0;
  background: var(--light-strong);
}
.quote-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.quote-info .section-title { margin-bottom: 20px; }
.quote-info p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 28px;
}
.quote-benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.quote-benefits li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.97rem;
  color: var(--text);
}
.quote-benefits li i {
  color: var(--accent);
  font-size: 1.1rem;
}
.quote-contact-alt {
  border-top: 1px solid rgba(0,0,0,0.08);
  padding-top: 24px;
}
.quote-contact-alt p {
  font-size: 0.92rem;
  margin-bottom: 12px;
}

/* Form */
.quote-form {
  background: #fff;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 14px;
  border: 1.5px solid rgba(0,0,0,0.1);
  border-radius: 10px;
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--text);
  background: var(--light-strong);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(46, 172, 106, 0.12);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #aaa;
}
.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg fill='%23666' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 20px;
  padding-right: 36px;
}
.btn-submit {
  width: 100%;
  justify-content: center;
  font-size: 1rem;
  margin-top: 4px;
}
.btn-submit i { margin-right: 8px; }

/* Form success state */
.quote-form.sent {
  pointer-events: none;
  opacity: 0.6;
}

/* Footer map */
.footer-map {
  padding: 0 var(--container-px, 24px);
  max-width: var(--container-width, 1200px);
  margin: 32px auto 0;
}

/* Responsive */
@media (max-width: 900px) {
  .quote-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .quote-form { padding: 28px 20px; }
}
@media (max-width: 560px) {
  .form-row { grid-template-columns: 1fr; }
  .quote-section { padding: 64px 0; }

  .seal-outer-ring { width: 120px; height: 120px; }
  .seal-inner-ring { width: 72px; height: 72px; }
  .seal-number { font-size: 2rem; }
  .seal-label { font-size: 0.5rem; letter-spacing: 3px; }
  .seal-ribbon-text { font-size: 0.6rem; padding: 4px 14px; }
  .seal-tagline { font-size: 0.5rem; }
  .seal-rays { width: 160px; height: 160px; }
}

/* ============================================================
   LGPD — COOKIE BANNER
   ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #1a2a36;
  color: #e0e8ed;
  padding: 20px 24px;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.18);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}
.cookie-banner.visible {
  transform: translateY(0);
}
.cookie-banner.hidden {
  display: none;
}
.cookie-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.cookie-text {
  flex: 1;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  min-width: 280px;
}
.cookie-text > i {
  font-size: 1.6rem;
  color: var(--accent);
  margin-top: 2px;
  flex-shrink: 0;
}
.cookie-text strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 4px;
  color: #fff;
}
.cookie-text p {
  font-size: 0.84rem;
  line-height: 1.55;
  margin: 0;
  color: #b0bec5;
}
.cookie-text a {
  color: var(--accent);
  text-decoration: underline;
}
.cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
  flex-wrap: wrap;
}
.btn-cookie {
  padding: 10px 20px;
  border: none;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}
.btn-cookie:hover { transform: translateY(-1px); }
.btn-cookie-accept {
  background: var(--accent);
  color: #fff;
}
.btn-cookie-accept:hover { background: var(--accent-dark); }
.btn-cookie-essential {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
}
.btn-cookie-essential:hover { background: rgba(255,255,255,0.2); }
.btn-cookie-reject {
  background: transparent;
  color: #90a4ae;
  border: 1px solid rgba(255,255,255,0.1);
}
.btn-cookie-reject:hover { color: #fff; border-color: rgba(255,255,255,0.3); }

/* ============================================================
   LGPD — MODALS (Privacy + Terms)
   ============================================================ */
.lgpd-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0,0,0,0.55);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  backdrop-filter: blur(4px);
}
.lgpd-modal-overlay.open {
  display: flex;
}
.lgpd-modal {
  background: #fff;
  border-radius: 16px;
  max-width: 720px;
  width: 100%;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 16px 48px rgba(0,0,0,0.2);
  animation: modalIn 0.3s ease;
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.lgpd-modal h2 {
  padding: 28px 32px 16px;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--text);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  margin: 0;
}
.lgpd-modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: #888;
  line-height: 1;
  transition: color 0.2s;
}
.lgpd-modal-close:hover { color: var(--text); }
.lgpd-modal-body {
  padding: 24px 32px 32px;
  overflow-y: auto;
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--text-secondary);
}
.lgpd-modal-body h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin: 24px 0 8px;
}
.lgpd-modal-body h3:first-of-type { margin-top: 8px; }
.lgpd-modal-body ul {
  padding-left: 20px;
  margin: 8px 0;
}
.lgpd-modal-body li {
  margin-bottom: 4px;
}
.lgpd-modal {
  position: relative;
}

/* ============================================================
   FORM CONSENT CHECKBOX
   ============================================================ */
.form-consent {
  margin-top: 4px;
}
.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.84rem;
  line-height: 1.5;
  color: var(--text-secondary);
  cursor: pointer;
}
.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--accent);
  cursor: pointer;
}
.checkbox-label a {
  color: var(--accent);
  text-decoration: underline;
}

/* Footer legal links */
.footer-legal-links a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-legal-links a:hover {
  color: #fff;
  text-decoration: underline;
}

/* Responsive cookie banner */
@media (max-width: 700px) {
  .cookie-inner { flex-direction: column; align-items: stretch; }
  .cookie-actions { justify-content: stretch; }
  .btn-cookie { flex: 1; text-align: center; }
  .lgpd-modal-body { padding: 20px; }
  .lgpd-modal h2 { padding: 20px; font-size: 1.25rem; }
}

/* ============================================================
   INTERACTIVE POLISH — CHIQUE
   ============================================================ */

/* Smooth section reveal */
.about-section,
.services-section,
.outsourcing-section,
.tech-section,
.clients-section,
.evidence-section,
.quote-section,
.cta-section,
.map-section {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.about-section.visible,
.services-section.visible,
.outsourcing-section.visible,
.tech-section.visible,
.clients-section.visible,
.evidence-section.visible,
.quote-section.visible,
.cta-section.visible,
.map-section.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Service cards stagger animation */
.service-card {
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}
.service-card:hover {
  transform: translateY(-6px) scale(1.01);
}

/* Client cards interactive */
.client-card {
  transition: all 0.3s ease;
}
.client-card:hover {
  transform: translateY(-4px) scale(1.03);
  border-color: var(--accent);
  box-shadow: 0 12px 32px rgba(46, 172, 106, 0.18);
}
.client-card:hover i {
  color: var(--accent);
  opacity: 1;
  transform: scale(1.15);
}
.client-card i {
  transition: all 0.3s ease;
}

/* Evidence cards hover */
.evidence-card {
  transition: transform 0.3s, box-shadow 0.3s;
}
.evidence-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(20, 51, 66, 0.16);
}

/* Stats items hover */
.stat-item {
  transition: transform 0.3s, box-shadow 0.3s;
}
.stat-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(20, 51, 66, 0.14);
}
.stat-item:hover .stat-number {
  color: var(--accent);
}
.stat-number {
  transition: color 0.3s;
}

/* Value items hover */
.value-item {
  transition: transform 0.2s;
}
.value-item:hover {
  transform: translateX(6px);
}

/* Outsourcing list hover */
.outsourcing-list li {
  transition: transform 0.2s;
}
.outsourcing-list li:hover {
  transform: translateX(6px);
}

/* Quote benefits hover */
.quote-benefits li {
  transition: transform 0.2s;
}
.quote-benefits li:hover {
  transform: translateX(6px);
}

/* Hero proof card items hover */
.proof-list li {
  transition: background 0.3s, transform 0.2s;
}
.proof-list li:hover {
  background: rgba(255,255,255,0.14);
  transform: translateX(4px);
}

/* Tech badges hover */
.tech-badge {
  transition: background 0.3s, transform 0.2s;
}
.tech-badge:hover {
  background: rgba(255,255,255,0.18);
  transform: translateY(-2px);
}

/* About badge hover */
.about-badge {
  transition: transform 0.3s, box-shadow 0.3s;
}
.about-badge:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 36px rgba(46, 172, 106, 0.35);
}

/* Footer social icons glow on hover */
.footer-socials a:hover {
  box-shadow: 0 4px 16px rgba(46, 172, 106, 0.30);
}

/* WhatsApp float pulse */
.whatsapp-float {
  animation: whatsappPulse 2.5s ease-in-out infinite;
}
@keyframes whatsappPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.45); }
  50% { box-shadow: 0 4px 20px rgba(37,211,102,0.45), 0 0 0 12px rgba(37,211,102,0.12); }
}

/* Nav links underline effect */
.nav-menu a {
  position: relative;
}
.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transition: width 0.3s, left 0.3s;
}
.nav-menu a:hover::after {
  width: 60%;
  left: 20%;
}
.nav-cta::after { display: none; }

/* Hero eyebrow shimmer */
.hero-eyebrow {
  position: relative;
  overflow: hidden;
}
.hero-eyebrow::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  animation: shimmer 5s ease-in-out infinite;
}
@keyframes shimmer {
  0%, 80%, 100% { left: -100%; }
  40% { left: 200%; }
}

/* Form inputs focus glow */
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  transform: scale(1.005);
}

/* CTA section hover */
.cta-inner {
  transition: transform 0.3s, box-shadow 0.3s;
}
.cta-inner:hover {
  transform: translateY(-4px);
  box-shadow: 0 32px 60px rgba(20, 51, 66, 0.20);
}

/* Proof card subtle animation */
.hero-proof-card {
  transition: transform 0.4s ease;
}
.hero-proof-card:hover {
  transform: translateY(-4px);
}

/* Image placeholders subtle animation */
.about-img-placeholder i,
.outsourcing-placeholder i {
  animation: iconFloat 6s ease-in-out infinite;
}
@keyframes iconFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
