/* =========================================
   AVANT IT CONSULT — Stylesheet v1.0
   ========================================= */

/* --- CSS Variables --- */
:root {
  --color-primary:       #0E3179;
  --color-primary-dark:  #081F52;
  --color-primary-light: #1A4A9F;
  --color-accent:        #2E6FE1;
  --color-cyan:          #00C8FF;
  --color-dark:          #060E24;
  --color-dark-2:        #0B1A3E;
  --color-white:         #FFFFFF;
  --color-light:         #F0F5FF;
  --color-light-2:       #E8F0FE;
  --color-text:          #1E293B;
  --color-text-muted:    #64748B;
  --color-border:        #E2E8F0;

  --gradient-primary: linear-gradient(135deg, #060E24 0%, #0E3179 100%);
  --gradient-accent:  linear-gradient(135deg, #0E3179 0%, #2E6FE1 100%);
  --gradient-text:    linear-gradient(135deg, #2E6FE1 0%, #00C8FF 100%);

  --font-main: 'Inter', sans-serif;

  --section-padding: 100px 0;
  --container-max:   1200px;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --shadow-sm: 0 2px 8px rgba(14,49,121,0.08);
  --shadow-md: 0 8px 32px rgba(14,49,121,0.12);
  --shadow-lg: 0 24px 64px rgba(14,49,121,0.16);

  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-main);
  color: var(--color-text);
  background: var(--color-white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { border: none; cursor: pointer; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* --- Container --- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Gradient Text --- */
.gradient-text {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* --- Section Tag --- */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-light-2);
  color: var(--color-accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
}

/* --- Section Titles --- */
.section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.2;
  color: var(--color-text);
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 17px;
  color: var(--color-text-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.75;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 15px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--gradient-accent);
  color: var(--color-white);
  padding: 14px 28px;
  box-shadow: 0 4px 20px rgba(46,111,225,0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(46,111,225,0.5);
  color: var(--color-white);
}

.btn-outline {
  background: transparent;
  color: var(--color-white);
  padding: 14px 28px;
  border-color: rgba(255,255,255,0.3);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.6);
}

.btn-white {
  background: var(--color-white);
  color: var(--color-primary);
  padding: 14px 28px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
  color: var(--color-primary);
}

.btn-lg { padding: 16px 36px; font-size: 16px; border-radius: 10px; }
.btn-sm { padding: 10px 20px; font-size: 14px; }
.btn-full { width: 100%; justify-content: center; }

/* =========================================
   HEADER
   ========================================= */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}

.site-header.scrolled {
  background: rgba(6,14,36,0.96);
  backdrop-filter: blur(20px);
  padding: 14px 0;
  box-shadow: 0 2px 40px rgba(0,0,0,0.3);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
}
.logo-img {
  height: 36px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
  transition: opacity 0.2s;
}
.logo:hover .logo-img { opacity: 0.85; }
.logo-footer .logo-img { height: 32px; }

/* Nav */
.main-nav { display: flex; align-items: center; gap: 40px; }

.nav-list { display: flex; gap: 36px; }

.nav-list a {
  color: rgba(255,255,255,0.8);
  font-size: 14px;
  font-weight: 500;
  position: relative;
}
.nav-list a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--color-cyan);
  transition: var(--transition);
}
.nav-list a:hover { color: var(--color-white); }
.nav-list a:hover::after { width: 100%; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 4px;
  z-index: 1001;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--color-white);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =========================================
   HERO
   ========================================= */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    var(--gradient-primary),
    url('../assets/bg-hero.webp') center center / cover no-repeat;
  background-blend-mode: multiply;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}
.hero-glow-1 {
  width: 600px; height: 600px;
  background: var(--color-accent);
  top: -200px; right: -100px;
  opacity: 0.3;
  animation: float 8s ease-in-out infinite;
}
.hero-glow-2 {
  width: 400px; height: 400px;
  background: var(--color-cyan);
  bottom: -100px; left: 10%;
  opacity: 0.12;
  animation: float 12s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); }
  50%       { transform: translateY(-30px) scale(1.05); }
}

.hero-content {
  position: relative;
  z-index: 10;
  padding-top: 120px;
  padding-bottom: 80px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.9);
  font-size: 13px;
  font-weight: 500;
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 28px;
  backdrop-filter: blur(10px);
}

.badge-dot {
  width: 8px; height: 8px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.6; transform: scale(1.4); }
}

.hero-title {
  font-size: clamp(30px, 3.6vw, 52px);
  font-weight: 900;
  color: var(--color-white);
  line-height: 1.15;
  margin-bottom: 28px;
  letter-spacing: -0.5px;
}

.hero-subtitle {
  font-size: clamp(15px, 1.6vw, 17px);
  color: rgba(255,255,255,0.72);
  line-height: 1.75;
  margin-bottom: 44px;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-trust { display: flex; flex-direction: column; gap: 12px; }
.trust-label { color: rgba(255,255,255,0.45); font-size: 13px; }
.trust-badges { display: flex; gap: 24px; flex-wrap: wrap; }
.trust-badges span {
  display: flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.72);
  font-size: 14px; font-weight: 500;
}
.trust-badges span i { color: var(--color-cyan); font-size: 15px; }

/* Destaque SAP Partner no hero */
.trust-badge-partner {
  background: rgba(0,112,242,0.18) !important;
  border: 1px solid rgba(0,112,242,0.4) !important;
  border-radius: 100px;
  padding: 4px 14px;
  color: #7EC8FF !important;
  font-weight: 700 !important;
}
.trust-badge-partner i { color: #7EC8FF !important; }

.hero-scroll {
  position: absolute;
  bottom: 40px; left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}
.scroll-indicator {
  width: 28px; height: 48px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 14px;
  position: relative;
}
.scroll-indicator::after {
  content: '';
  position: absolute;
  top: 8px; left: 50%;
  transform: translateX(-50%);
  width: 4px; height: 8px;
  background: var(--color-cyan);
  border-radius: 2px;
  animation: scroll-anim 2s ease-in-out infinite;
}
@keyframes scroll-anim {
  0%   { top: 8px; opacity: 1; }
  100% { top: 28px; opacity: 0; }
}

/* =========================================
   HERO 2-COLUMN LAYOUT
   ========================================= */
.hero-content-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
}

.hero-text {
  display: flex;
  flex-direction: column;
}

.hero-illustration {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-visual-img {
  width: 100%;
  max-width: 560px;
  height: auto;
  animation: float-hero 6s ease-in-out infinite;
  filter: drop-shadow(0 24px 48px rgba(0,200,255,0.18));
}

@keyframes float-hero {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-14px); }
}

@media (max-width: 1024px) {
  .hero-content-2col {
    grid-template-columns: 1fr;
  }
  .hero-illustration {
    display: none;
  }
}

/* =========================================
   PARCEIROS & CREDENCIAIS
   ========================================= */
.partners-strip {
  background: #fff;
  border-bottom: 1px solid rgba(0,112,242,0.10);
  padding: 28px 0;
}

.partners-inner {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.partners-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  white-space: nowrap;
  padding-right: 24px;
  border-right: 1px solid var(--color-border);
  flex-shrink: 0;
}

.partners-logos {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  flex: 1;
}

/* Badge SAP Partner — destaque principal */
.partner-highlight {
  padding: 6px 16px 6px 0;
  border-right: 1px solid var(--color-border);
}

.partner-badge {
  height: 56px;
  width: auto;
  display: block;
  filter: drop-shadow(0 2px 8px rgba(0,112,242,0.15));
  transition: filter 0.2s, transform 0.2s;
}
.partner-badge:hover {
  filter: drop-shadow(0 4px 16px rgba(0,112,242,0.3));
  transform: translateY(-2px);
}

/* Credenciais secundárias */
.partner-cred {
  display: flex;
  align-items: center;
  gap: 10px;
}
.partner-cred > i {
  font-size: 22px;
  color: #0070F2;
  flex-shrink: 0;
}
.partner-cred div {
  display: flex;
  flex-direction: column;
}
.partner-cred strong {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.2;
}
.partner-cred span {
  font-size: 11px;
  color: var(--color-text-muted);
}

@media (max-width: 768px) {
  .partners-label { border-right: none; padding-right: 0; }
  .partners-inner { gap: 24px; }
  .partner-highlight { border-right: none; }
}

/* =========================================
   STATS
   ========================================= */
.stats-section {
  position: relative;
  padding: 56px 0;
  background:
    linear-gradient(rgba(6,14,36,0.88), rgba(6,14,36,0.88)),
    url('../assets/bg-stats.webp') center center / cover no-repeat;
}
.stats-section .stats-grid,
.stats-section .stat-item {
  position: relative;
  z-index: 1;
}

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

.stat-item {
  text-align: center;
  padding: 24px;
  position: relative;
}
.stat-item + .stat-item {
  border-left: 1px solid rgba(255,255,255,0.15);
}

.stat-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
}

.stat-number {
  font-size: clamp(40px, 4vw, 56px);
  font-weight: 900;
  color: var(--color-white);
  line-height: 1;
}

.stat-suffix {
  font-size: clamp(24px, 2.5vw, 36px);
  font-weight: 700;
  color: var(--color-cyan);
}

.stat-label {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  margin-top: 8px;
  font-weight: 500;
}

/* =========================================
   ABOUT
   ========================================= */
.about-section {
  padding: var(--section-padding);
  background: var(--color-white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-text {
  color: var(--color-text-muted);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
}
.about-text strong { color: var(--color-primary); font-weight: 700; }

.about-pillars {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.pillar {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.pillar-icon {
  width: 44px; height: 44px;
  background: var(--color-light-2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-accent);
  font-size: 18px;
}

.pillar strong {
  display: block;
  font-size: 15px;
  color: var(--color-text);
  margin-bottom: 4px;
  font-weight: 700;
}
.pillar p { font-size: 14px; color: var(--color-text-muted); margin: 0; }

/* About Visual Image */
.about-visual-img {
  width: 100%;
  max-width: 480px;
  height: auto;
  display: block;
  margin: 0 auto;
  animation: float-hero 7s ease-in-out infinite;
  filter: drop-shadow(0 20px 40px rgba(46,111,225,0.25));
}

/* About Card */
.about-card-main {
  background: var(--gradient-primary);
  border-radius: var(--radius-xl);
  padding: 48px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.about-card-main::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 220px; height: 220px;
  background: rgba(0,200,255,0.12);
  border-radius: 50%;
  filter: blur(40px);
}

.about-icon-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}

.about-icon-item {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  padding: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.about-icon-item:hover {
  background: rgba(255,255,255,0.14);
  transform: translateY(-4px);
}
.about-icon-item i { font-size: 28px; color: var(--color-cyan); }

.about-card-text {
  color: rgba(255,255,255,0.85);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

/* =========================================
   SERVICES
   ========================================= */
.services-section {
  padding: var(--section-padding);
  position: relative;
  background:
    linear-gradient(rgba(6,14,36,0.78), rgba(6,14,36,0.78)),
    url('../assets/bg-servicos.webp') center center / cover no-repeat;
}

/* Ajusta textos da seção para fundo escuro */
.services-section .section-tag {
  color: var(--color-cyan);
  background: rgba(0,200,255,0.1);
  border-color: rgba(0,200,255,0.25);
}
.services-section .section-title,
.services-section .section-subtitle {
  color: var(--color-white);
}
.services-section .section-subtitle {
  color: rgba(255,255,255,0.65);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Glassmorphism cards sobre fundo escuro */
.service-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow:
    0 4px 24px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: var(--transition);
  overflow: hidden;
}
.service-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(0, 200, 255, 0.35);
  box-shadow:
    0 16px 48px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(0, 200, 255, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.service-card-inner { padding: 36px 32px; }

.service-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, rgba(46,111,225,0.9), rgba(0,200,255,0.7));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 4px 20px rgba(0, 200, 255, 0.3);
  border: 1px solid rgba(0, 200, 255, 0.25);
}
.service-icon i { font-size: 22px; color: white; }

.service-number { display: none; }

.service-card h3 {
  font-size: 19px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 12px;
  line-height: 1.3;
}

.service-card p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.75;
  margin-bottom: 20px;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.service-tags li {
  font-size: 12px;
  font-weight: 600;
  color: var(--color-cyan);
  background: rgba(0, 200, 255, 0.10);
  border: 1px solid rgba(0, 200, 255, 0.20);
  padding: 4px 12px;
  border-radius: 100px;
}

.service-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-cyan);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}
.service-link:hover { gap: 14px; color: #fff; }

/* =========================================
   DIFERENCIAIS
   ========================================= */
.differentials-section {
  padding: var(--section-padding);
  background: var(--color-white);
}

.diff-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.section-subtitle-left {
  font-size: 16px;
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: 36px;
}

.diff-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.diff-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  transition: var(--transition);
}
.diff-item:hover {
  border-color: rgba(46,111,225,0.35);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.diff-icon {
  width: 44px; height: 44px;
  background: var(--gradient-accent);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.diff-icon i { font-size: 18px; color: white; }

.diff-text h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 6px;
}
.diff-text p { font-size: 13px; color: var(--color-text-muted); line-height: 1.6; margin: 0; }

.diff-team-photo {
  margin: 28px 0 32px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.diff-team-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.diff-team-photo:hover .diff-team-img {
  transform: scale(1.03);
}

/* =========================================
   DEPOIMENTOS
   ========================================= */
.testimonials-section {
  padding: var(--section-padding);
  background: var(--color-bg);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}

.testimonial-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 36px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.testimonial-card:hover {
  border-color: rgba(46,111,225,0.3);
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}

.testimonial-quote i {
  font-size: 28px;
  color: var(--color-primary);
  opacity: 0.25;
}

.testimonial-text {
  font-size: 15px;
  color: var(--color-text);
  line-height: 1.75;
  flex: 1;
  margin: 0;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid var(--color-border);
  padding-top: 20px;
}

.testimonial-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top center;
  flex-shrink: 0;
  border: 2px solid var(--color-primary);
}

.testimonial-info strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--color-text);
}
.testimonial-info span {
  font-size: 12px;
  color: var(--color-text-muted);
}

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

/* =========================================
   EM AÇÃO — foto full-width com quote
   ========================================= */
.em-acao-section {
  position: relative;
  overflow: hidden;
}

.em-acao-img-wrap {
  position: relative;
  height: 480px;
}

.em-acao-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}

.em-acao-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(6,14,36,0.75) 0%, rgba(6,14,36,0.2) 60%, transparent 100%);
  display: flex;
  align-items: flex-end;
  padding: 48px 64px;
}

.em-acao-card {
  max-width: 520px;
}

.em-acao-quote {
  font-size: clamp(17px, 2vw, 22px);
  color: #fff;
  font-style: italic;
  line-height: 1.65;
  margin-bottom: 16px;
}

.em-acao-author {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
  letter-spacing: 0.5px;
}

@media (max-width: 768px) {
  .em-acao-img-wrap { height: 340px; }
  .em-acao-overlay { padding: 32px 24px; }
  .em-acao-card { max-width: 100%; }
}

/* =========================================
   CTA BANNER
   ========================================= */
.cta-banner {
  position: relative;
  padding: 96px 0;
  overflow: hidden;
}
.cta-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(6,14,36,0.92) 0%, rgba(14,49,121,0.85) 50%, rgba(6,14,36,0.92) 100%),
    url('../assets/bg-cta.webp') center center / cover no-repeat;
}
.cta-glow {
  position: absolute;
  width: 800px; height: 400px;
  background: var(--color-accent);
  border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  filter: blur(120px);
  opacity: 0.28;
}
.cta-content {
  position: relative;
  z-index: 10;
  text-align: center;
}
.cta-content h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: var(--color-white);
  line-height: 1.25;
  margin-bottom: 20px;
}
.cta-content p {
  font-size: 18px;
  color: rgba(255,255,255,0.72);
  margin-bottom: 40px;
}
.cta-content p strong { color: var(--color-cyan); font-weight: 600; }

/* =========================================
   CONTACT
   ========================================= */
.contact-section {
  padding: var(--section-padding);
  background: var(--color-light);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.contact-info p {
  font-size: 16px;
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: 36px;
}
.contact-info p strong { color: var(--color-primary); font-weight: 700; }

.contact-details { display: flex; flex-direction: column; gap: 20px; }

.contact-item { display: flex; align-items: center; gap: 16px; }
.contact-item > i {
  width: 44px; height: 44px;
  background: var(--gradient-accent);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 16px;
  flex-shrink: 0;
}
.contact-item strong {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--color-text);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 2px;
}
.contact-item span { font-size: 15px; color: var(--color-text-muted); }

/* Form */
.contact-form-wrapper {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text);
  letter-spacing: 0.02em;
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 14px 16px;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-size: 15px;
  color: var(--color-text);
  background: var(--color-white);
  transition: var(--transition);
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 4px rgba(46,111,225,0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #CBD5E1;
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%2364748B' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  cursor: pointer;
}

.form-group textarea { resize: vertical; min-height: 120px; }

.form-privacy {
  text-align: center;
  font-size: 13px;
  color: var(--color-text-muted);
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.form-privacy i { color: var(--color-accent); }

/* =========================================
   FOOTER
   ========================================= */
.site-footer {
  background: var(--color-dark);
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
}

.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  line-height: 1.75;
  margin-top: 16px;
  max-width: 280px;
}

.footer-socials { margin-top: 24px; display: flex; gap: 12px; }
.footer-socials a {
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.55);
  font-size: 16px;
  transition: var(--transition);
}
.footer-socials a:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: white;
}

.footer-nav h5,
.footer-contact h5 {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.35);
  margin-bottom: 20px;
}

.footer-nav ul { display: flex; flex-direction: column; gap: 12px; }
.footer-nav ul a {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  transition: var(--transition);
  display: inline-block;
}
.footer-nav ul a:hover { color: var(--color-white); transform: translateX(4px); }

.footer-contact p a {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.footer-contact p a:hover { color: var(--color-white); }

.footer-cta { margin-top: 4px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.3); }

/* =========================================
   SCROLL ANIMATIONS
   ========================================= */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger — services */
.service-card:nth-child(1) { transition-delay: 0.05s; }
.service-card:nth-child(2) { transition-delay: 0.10s; }
.service-card:nth-child(3) { transition-delay: 0.15s; }
.service-card:nth-child(4) { transition-delay: 0.20s; }
.service-card:nth-child(5) { transition-delay: 0.25s; }
.service-card:nth-child(6) { transition-delay: 0.30s; }
.service-card:nth-child(7) { transition-delay: 0.35s; }
.service-card:nth-child(8) { transition-delay: 0.40s; }
.service-card:nth-child(9) { transition-delay: 0.45s; }

/* Stagger — diferenciais */
.diff-item:nth-child(1) { transition-delay: 0.05s; }
.diff-item:nth-child(2) { transition-delay: 0.10s; }
.diff-item:nth-child(3) { transition-delay: 0.15s; }
.diff-item:nth-child(4) { transition-delay: 0.20s; }
.diff-item:nth-child(5) { transition-delay: 0.25s; }
.diff-item:nth-child(6) { transition-delay: 0.30s; }

/* =========================================
   RESPONSIVE — 1024px
   ========================================= */
@media (max-width: 1024px) {
  :root { --section-padding: 80px 0; }

  .about-grid        { grid-template-columns: 1fr; gap: 48px; }
  .diff-grid         { grid-template-columns: 1fr; gap: 48px; }
  .contact-grid      { grid-template-columns: 1fr; gap: 48px; }
  .services-grid     { grid-template-columns: repeat(2, 1fr); }
  .stats-grid        { grid-template-columns: repeat(2, 1fr); }
  .stats-grid .stat-item + .stat-item { border-left: none; }
  .stats-grid .stat-item:nth-child(odd)  { border-right: 1px solid rgba(255,255,255,0.15); }
  .stats-grid .stat-item:nth-child(1),
  .stats-grid .stat-item:nth-child(2)    { border-bottom: 1px solid rgba(255,255,255,0.15); }
  .footer-grid       { grid-template-columns: 1fr 1fr; gap: 40px; }

  /* Novos componentes */
  .testimonials-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .values-grid       { grid-template-columns: repeat(2, 1fr); }
  .blog-grid-home    { grid-template-columns: repeat(2, 1fr); }
  .partners-logos    { gap: 20px; }
  .diff-team-img     { height: 180px; }
}

/* =========================================
   RESPONSIVE — 768px
   ========================================= */
@media (max-width: 768px) {
  :root { --section-padding: 64px 0; }

  /* Header */
  .hamburger { display: flex; }

  .main-nav {
    position: fixed;
    top: 0; right: -100%;
    width: 280px; height: 100vh;
    background: var(--color-dark);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
    transition: right 0.35s cubic-bezier(0.4,0,0.2,1);
    z-index: 999;
    border-left: 1px solid rgba(255,255,255,0.08);
  }
  .main-nav.open { right: 0; }

  .nav-list { flex-direction: column; text-align: center; gap: 24px; }
  .nav-list a { font-size: 18px; }
  .nav-cta { display: none; }

  /* Hero */
  .hero-title { font-size: clamp(32px, 8vw, 48px); }
  .hero-subtitle br { display: none; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { justify-content: center; }

  /* Stats */
  .stats-grid { grid-template-columns: 1fr 1fr; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; }

  /* Diff */
  .diff-items { grid-template-columns: 1fr; }

  /* Form */
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrapper { padding: 32px 24px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

/* =========================================
   RESPONSIVE — 480px
   ========================================= */
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-content { padding-top: 100px; }
  .about-card-main { padding: 32px 24px; }
  .service-card-inner { padding: 28px 24px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .cta-content h2 br { display: none; }

  /* Wave dividers mobile */
  .wave-sep { height: 44px; }

  /* Componentes novos — 480px */
  .em-acao-img-wrap { height: 260px; }
  .em-acao-overlay { padding: 24px 16px; background: linear-gradient(to top, rgba(6,14,36,0.85) 0%, rgba(6,14,36,0.3) 60%, transparent 100%); align-items: flex-end; }
  .em-acao-quote { font-size: 15px; }
  .partners-logos { flex-wrap: wrap; gap: 16px; }
  .partner-badge { height: 44px; }
  /* wa-widget handled inside the widget CSS block */
  .about-lead { font-size: 17px; }
  .blog-card-thumb { min-height: 180px; }
}

/* =========================================
   NAV ACTIVE STATE
   ========================================= */
.nav-list a.nav-active {
  color: var(--color-white);
}
.nav-list a.nav-active::after { width: 100%; }

/* =========================================
   DROPDOWN MENU
   ========================================= */
.has-dropdown { position: relative; }

.has-dropdown > a {
  display: flex;
  align-items: center;
  gap: 6px;
}
.has-dropdown > a i {
  font-size: 11px;
  transition: var(--transition);
}
.has-dropdown:hover > a i { transform: rotate(180deg); }

/* Ponte invisível que mantém o hover enquanto o mouse atravessa o gap */
.has-dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: -16px;
  right: -16px;
  height: 22px;
  background: transparent;
}

.dropdown {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: 0 16px 56px rgba(14,49,121,0.18);
  padding: 8px;
  min-width: 260px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease;
  border: 1px solid var(--color-border);
  z-index: 200;
}
.dropdown::before {
  content: '';
  position: absolute;
  top: -7px; left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 14px; height: 14px;
  background: var(--color-white);
  border-left: 1px solid var(--color-border);
  border-top: 1px solid var(--color-border);
}
.has-dropdown:hover .dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.dropdown li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text);
  border-radius: 8px;
  transition: var(--transition);
}
.dropdown li a i {
  width: 28px; height: 28px;
  background: var(--color-light-2);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--color-accent);
  flex-shrink: 0;
  transition: var(--transition);
}
.dropdown li a:hover {
  background: var(--color-light);
  color: var(--color-accent);
}
.dropdown li a:hover i {
  background: var(--color-accent);
  color: white;
}

/* Mobile dropdown */
@media (max-width: 768px) {
  .dropdown {
    position: static;
    transform: none;
    box-shadow: none;
    border: none;
    border-radius: 0;
    background: rgba(255,255,255,0.05);
    padding: 4px 0;
    opacity: 1;
    pointer-events: auto;
    display: none;
  }
  .dropdown::before { display: none; }
  .has-dropdown.open .dropdown { display: block; }
  .dropdown li a { color: rgba(255,255,255,0.75); font-size: 15px; justify-content: center; }
  .dropdown li a:hover { background: transparent; color: white; }
  .dropdown li a i { display: none; }
}

/* =========================================
   PAGE HERO (inner pages)
   ========================================= */
.page-hero {
  background: var(--gradient-primary);
  padding: 148px 0 72px;
  position: relative;
  overflow: hidden;
}

/* Hero da página Sobre — sala de reunião SP */
.page-sobre .page-hero {
  background:
    linear-gradient(135deg, rgba(6,14,36,0.80) 0%, rgba(14,49,121,0.70) 60%, rgba(6,14,36,0.85) 100%),
    url('../assets/bg-sobre-hero.webp') center center / cover no-repeat;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
.page-hero-glow {
  position: absolute;
  width: 500px; height: 500px;
  background: var(--color-accent);
  border-radius: 50%;
  top: -200px; right: -100px;
  filter: blur(100px);
  opacity: 0.25;
}
.page-hero-content { position: relative; z-index: 1; }

.page-hero h1 {
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 900;
  color: var(--color-white);
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}
.page-hero p {
  font-size: clamp(16px, 1.8vw, 18px);
  color: rgba(255,255,255,0.72);
  max-width: 600px;
  line-height: 1.8;
}

/* =========================================
   BREADCRUMB
   ========================================= */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.breadcrumb a {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
}
.breadcrumb a:hover { color: rgba(255,255,255,0.85); }
.breadcrumb .sep { color: rgba(255,255,255,0.25); font-size: 11px; }
.breadcrumb .current { font-size: 13px; color: rgba(255,255,255,0.85); font-weight: 500; }

/* Breadcrumb (light bg) */
.breadcrumb-light { margin-bottom: 0; padding: 14px 0; }
.breadcrumb-light a { color: var(--color-text-muted); }
.breadcrumb-light a:hover { color: var(--color-accent); }
.breadcrumb-light .sep { color: var(--color-border); }
.breadcrumb-light .current { color: var(--color-text); }

/* =========================================
   ABOUT PAGE
   ========================================= */
.about-page-section {
  padding: var(--section-padding);
  background: var(--color-white);
}

.about-mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin: 64px 0;
}
.about-lead {
  font-size: 20px;
  color: var(--color-text-muted);
  line-height: 1.85;
  margin-bottom: 48px;
  max-width: 760px;
}
.about-lead strong { color: var(--color-primary); }

/* Seção de valores — fundo escuro */
.valores-section {
  padding: var(--section-padding);
  position: relative;
  background:
    linear-gradient(rgba(4,10,28,0.84), rgba(4,10,28,0.84)),
    url('../assets/bg-valores.webp') center center / cover no-repeat;
}
.valores-section .section-tag {
  color: var(--color-cyan);
  background: rgba(0,200,255,0.08);
  border-color: rgba(0,200,255,0.2);
}
.valores-section .section-title { color: var(--color-white); }

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.value-card {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  border: 1px solid var(--color-border);
  transition: var(--transition);
  text-align: center;
}
.value-card:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(0,200,255,0.35);
  box-shadow: 0 16px 40px rgba(0,0,0,0.35), 0 0 0 1px rgba(0,200,255,0.12);
  transform: translateY(-6px);
}
.value-card .value-icon {
  width: 64px; height: 64px;
  background: var(--gradient-accent);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 6px 20px rgba(46,111,225,0.3);
}
.value-card .value-icon i { font-size: 28px; color: white; }
.value-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; color: rgba(255,255,255,0.93); }
.value-card p { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.7; margin: 0; }

.team-section { padding: var(--section-padding); background: var(--color-light); }
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.team-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  border: 1px solid var(--color-border);
  transition: var(--transition);
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.team-avatar {
  width: 80px; height: 80px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 32px;
  color: rgba(255,255,255,0.5);
}
.team-card h4 { font-size: 17px; font-weight: 700; margin-bottom: 4px; }
.team-card span { font-size: 13px; color: var(--color-accent); font-weight: 600; display: block; margin-bottom: 12px; }
.team-card p { font-size: 14px; color: var(--color-text-muted); line-height: 1.65; margin: 0; }

/* =========================================
   SERVICE DETAIL PAGE
   ========================================= */
.service-detail {
  padding: var(--section-padding);
  background: var(--color-white);
}
.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 56px;
  align-items: start;
}
.service-detail-body h2 {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 800;
  color: var(--color-text);
  margin: 36px 0 16px;
  line-height: 1.25;
}
.service-detail-body h2:first-child { margin-top: 0; }
.service-detail-body h3 {
  font-size: 20px; font-weight: 700;
  color: var(--color-text);
  margin: 28px 0 12px;
}
.service-detail-body p {
  font-size: 16px;
  color: var(--color-text-muted);
  line-height: 1.85;
  margin-bottom: 20px;
}
.service-detail-body ul,
.service-detail-body ol {
  margin-left: 24px;
  margin-bottom: 24px;
}
.service-detail-body li {
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: 8px;
}
.service-detail-body strong { color: var(--color-text); }

.benefit-list { list-style: none; margin-left: 0; }
.benefit-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--color-border);
}
.benefit-list li:last-child { border-bottom: none; }
.benefit-list li::before {
  content: '\f058';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: #22c55e;
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Sidebar */
.service-sidebar { display: flex; flex-direction: column; gap: 24px; }

.sidebar-card {
  background: var(--color-light);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--color-border);
}
.sidebar-card h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--color-light-2);
}
.sidebar-card ul { display: flex; flex-direction: column; gap: 8px; }
.sidebar-card ul a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--color-text-muted);
  padding: 8px 0;
  border-bottom: 1px solid var(--color-border);
  transition: var(--transition);
}
.sidebar-card ul li:last-child a { border-bottom: none; }
.sidebar-card ul a:hover { color: var(--color-accent); padding-left: 4px; }
.sidebar-card ul a i { color: var(--color-accent); font-size: 13px; width: 16px; }

.sidebar-cta {
  background: var(--gradient-primary);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.sidebar-cta::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 140px; height: 140px;
  background: rgba(0,200,255,0.1);
  border-radius: 50%;
  filter: blur(30px);
}
.sidebar-cta h4 {
  font-size: 18px;
  font-weight: 700;
  color: white;
  margin-bottom: 10px;
  position: relative;
}
.sidebar-cta p {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 20px;
  line-height: 1.6;
  position: relative;
}
.sidebar-cta .btn { position: relative; width: 100%; justify-content: center; }

/* =========================================
   BLOG LISTING
   ========================================= */
.blog-section {
  padding: var(--section-padding);
  position: relative;
  background:
    linear-gradient(rgba(4,10,28,0.82), rgba(4,10,28,0.82)),
    url('../assets/bg-blog.webp') center center / cover no-repeat;
}
.blog-section .section-tag {
  color: var(--color-cyan);
  background: rgba(0,200,255,0.08);
  border-color: rgba(0,200,255,0.2);
}
.blog-section .section-title { color: var(--color-white); }
.blog-section .section-subtitle { color: rgba(255,255,255,0.55); }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Grid 2×2 exclusivo da home */
.blog-grid-home {
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.blog-grid-home .blog-card {
  display: flex;
  flex-direction: column;
}
.blog-grid-home .blog-card-thumb {
  height: 200px;
  flex-shrink: 0;
}
.blog-grid-home .blog-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.blog-grid-home .blog-card h3 {
  font-size: 17px;
}
.blog-card {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-7px);
  background: rgba(255,255,255,0.08);
  border-color: rgba(0,200,255,0.3);
  box-shadow:
    0 20px 48px rgba(0,0,0,0.4),
    0 0 0 1px rgba(0,200,255,0.12);
}
.blog-card-thumb {
  height: 210px;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.blog-card-thumb i { font-size: 52px; color: rgba(255,255,255,0.2); }
.blog-card-thumb .thumb-glow {
  position: absolute;
  width: 200px; height: 200px;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.3;
}
.blog-card-thumb-img {
  padding: 0;
  background: var(--gradient-primary);
}
.blog-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.blog-card:hover .blog-thumb-img {
  transform: scale(1.04);
}
.blog-card-category {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--color-accent);
  color: white;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  border-radius: 100px;
}
.blog-card-body {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
}
.blog-card-meta span {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  display: flex;
  align-items: center;
  gap: 6px;
}
.blog-card-meta span i { color: var(--color-cyan); }
.blog-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: rgba(255,255,255,0.93);
  line-height: 1.4;
  margin-bottom: 12px;
}
.blog-card h3 a { color: inherit; }
.blog-card h3 a:hover { color: var(--color-cyan); }
.blog-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.52);
  line-height: 1.75;
  margin-bottom: 20px;
  flex: 1;
}
.blog-card-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-cyan);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  transition: var(--transition);
}
.blog-card-link:hover { gap: 14px; color: #fff; }

/* Blog featured card (first post) */
.blog-featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
}
.blog-featured .blog-card-thumb { height: 100%; min-height: 300px; }
.blog-featured .blog-card-body { padding: 40px; }
.blog-featured h3 { font-size: 24px; }

/* =========================================
   BLOG POST (single)
   ========================================= */
.post-section {
  padding: var(--section-padding);
  background: var(--color-light);
}
.post-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  align-items: start;
}
.post-content {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 52px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
}
.post-header { margin-bottom: 40px; padding-bottom: 32px; border-bottom: 2px solid var(--color-light); }
.post-header h1 {
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 900;
  color: var(--color-text);
  line-height: 1.25;
  margin-bottom: 20px;
}
.post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}
.post-meta span {
  font-size: 13px;
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}
.post-meta span i { color: var(--color-accent); }
.post-excerpt {
  font-size: 18px;
  color: var(--color-text-muted);
  line-height: 1.8;
  font-style: italic;
  border-left: 4px solid var(--color-accent);
  padding-left: 20px;
}

.post-body h2 {
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 800;
  color: var(--color-text);
  margin: 40px 0 16px;
  line-height: 1.3;
}
.post-body h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-text);
  margin: 30px 0 12px;
}
.post-body p {
  font-size: 16px;
  color: var(--color-text-muted);
  line-height: 1.9;
  margin-bottom: 20px;
}
.post-body ul, .post-body ol {
  margin: 0 0 24px 24px;
}
.post-body li {
  font-size: 16px;
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: 8px;
}
.post-body strong { color: var(--color-text); font-weight: 700; }
.post-body a { color: var(--color-accent); font-weight: 500; }
.post-body a:hover { text-decoration: underline; }

.post-callout {
  background: var(--color-light-2);
  border-left: 4px solid var(--color-accent);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 20px 24px;
  margin: 28px 0;
}
.post-callout p { margin: 0; color: var(--color-text); font-size: 15px; }

.post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--color-border);
}
.post-tags span { font-size: 13px; color: var(--color-text-muted); font-weight: 600; }
.post-tags a {
  font-size: 13px;
  font-weight: 500;
  color: var(--color-accent);
  background: var(--color-light-2);
  padding: 4px 14px;
  border-radius: 100px;
}
.post-tags a:hover { background: var(--color-accent); color: white; }

/* Sidebar */
.post-sidebar { display: flex; flex-direction: column; gap: 24px; position: sticky; top: 100px; }

/* =========================================
   CONTACT PAGE
   ========================================= */
/* =========================================
   CONTATO PAGE — DARK TECH THEME
   ========================================= */
.page-contato .contact-page {
  position: relative;
  padding: 80px 0 100px;
  background:
    linear-gradient(rgba(4,10,28,0.96), rgba(4,10,28,0.96)),
    url('../assets/bg-cta.webp') center / cover no-repeat;
  overflow: hidden;
}

/* Animated grid overlay */
.contact-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(46,111,225,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(46,111,225,0.05) 1px, transparent 1px);
  background-size: 48px 48px;
  z-index: 0;
  pointer-events: none;
}

/* Glow orbs */
.contact-bg-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(130px);
  pointer-events: none;
  z-index: 0;
}
.contact-bg-glow-1 {
  width: 560px; height: 560px;
  background: rgba(46,111,225,0.18);
  top: -150px; right: -120px;
}
.contact-bg-glow-2 {
  width: 420px; height: 420px;
  background: rgba(0,200,255,0.08);
  bottom: -120px; left: -60px;
}

/* Layout grid */
.contact-page-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 40px;
  align-items: start;
}

/* ===== SIDEBAR ===== */
.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* WhatsApp CTA */
.contact-wa-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  background: linear-gradient(135deg, #0a7a6e 0%, #25D366 100%);
  border-radius: 18px;
  padding: 20px 22px;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 8px 32px rgba(37,211,102,0.3);
  position: relative;
  overflow: hidden;
}
.contact-wa-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.08), transparent);
  border-radius: inherit;
}
.contact-wa-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(37,211,102,0.45);
}
.contact-wa-icon {
  font-size: 36px;
  color: white;
  flex-shrink: 0;
  line-height: 1;
}
.contact-wa-text {
  flex: 1;
}
.contact-wa-text strong {
  display: block;
  color: white;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 2px;
}
.contact-wa-text span {
  color: rgba(255,255,255,0.72);
  font-size: 12px;
}
.contact-wa-arrow {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.contact-wa-cta:hover .contact-wa-arrow { transform: translateX(4px); }

/* Online bar */
.contact-online-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  padding: 0 4px;
}
.contact-online-dot {
  width: 9px; height: 9px;
  background: #22c55e;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 8px rgba(34,197,94,0.7);
  animation: online-pulse 2.2s ease-in-out infinite;
}
@keyframes online-pulse {
  0%, 100% { box-shadow: 0 0 6px rgba(34,197,94,0.6); }
  50%       { box-shadow: 0 0 14px rgba(34,197,94,0.95); }
}
.contact-online-bar strong { color: rgba(255,255,255,0.85); }

/* Glass card base */
.contact-glass-card {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-card-title {
  font-size: 14px;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}
.contact-card-title i { color: var(--color-cyan); font-size: 13px; }

/* Contact info items */
.contact-info-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.contact-info-item:last-child { border-bottom: none; padding-bottom: 0; }

.contact-glass-card .ci-icon {
  width: 40px; height: 40px;
  background: rgba(46,111,225,0.15);
  border: 1px solid rgba(46,111,225,0.25);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-cyan);
  font-size: 15px;
  flex-shrink: 0;
}
.contact-info-item strong {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 2px;
}
.contact-info-item span,
.contact-info-item a {
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  display: block;
}
.contact-info-item a:hover { color: var(--color-cyan); }

/* Reasons card */
.contact-reasons-card {
  background: linear-gradient(135deg, rgba(14,49,121,0.5), rgba(46,111,225,0.15));
  border-color: rgba(46,111,225,0.2);
}
.contact-reasons-list {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.contact-reasons-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.72);
  line-height: 1.5;
}
.contact-reasons-list li i {
  color: #22c55e;
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ===== FORM GLASS ===== */
.contact-form-glass {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 24px;
  padding: 44px 40px;
  box-shadow:
    0 32px 80px rgba(0,0,0,0.45),
    inset 0 1px 0 rgba(255,255,255,0.08);
  position: relative;
  z-index: 1;
}

.contact-form-header {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 36px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.contact-form-icon {
  width: 54px; height: 54px;
  background: var(--gradient-accent);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: white;
  flex-shrink: 0;
  box-shadow: 0 8px 24px rgba(46,111,225,0.4);
}
.contact-form-header h2 {
  font-size: 22px;
  font-weight: 800;
  color: white;
  margin-bottom: 6px;
}
.contact-form-header p {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
}

/* Form labels */
.page-contato .form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}
.page-contato .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 0;
}
.page-contato .form-row .form-group { margin-bottom: 0; }

.page-contato .form-group label {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: flex;
  align-items: center;
  gap: 4px;
}
.req { color: var(--color-cyan); font-size: 14px; }

/* Inputs */
.page-contato .form-group input,
.page-contato .form-group textarea {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  color: white;
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 15px;
  font-family: inherit;
  width: 100%;
  transition: border-color 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}
.page-contato .form-group input::placeholder,
.page-contato .form-group textarea::placeholder {
  color: rgba(255,255,255,0.22);
}
.page-contato .form-group input:focus,
.page-contato .form-group textarea:focus {
  outline: none;
  border-color: rgba(0,200,255,0.55);
  background: rgba(0,200,255,0.04);
  box-shadow: 0 0 0 3px rgba(0,200,255,0.08), 0 0 20px rgba(0,200,255,0.08);
}
.page-contato .form-group textarea {
  resize: vertical;
  min-height: 130px;
}

/* Select wrapper */
.select-wrapper {
  position: relative;
}
.select-wrapper select {
  appearance: none;
  -webkit-appearance: none;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.8);
  border-radius: 12px;
  padding: 14px 44px 14px 16px;
  font-size: 15px;
  font-family: inherit;
  width: 100%;
  cursor: pointer;
  transition: border-color 0.22s ease, background 0.22s ease;
}
.select-wrapper select:focus {
  outline: none;
  border-color: rgba(0,200,255,0.55);
  background: rgba(0,200,255,0.04);
  box-shadow: 0 0 0 3px rgba(0,200,255,0.08);
}
.select-wrapper select option { background: #0B1A3E; color: white; }
.select-arrow {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255,255,255,0.35);
  font-size: 12px;
  pointer-events: none;
}

/* Validation error state */
.page-contato .form-group.error input,
.page-contato .form-group.error textarea {
  border-color: rgba(248,113,113,0.6);
  background: rgba(248,113,113,0.04);
}
.form-error-msg {
  font-size: 12px;
  color: #f87171;
  display: none;
  margin-top: -4px;
}
.page-contato .form-group.error .form-error-msg { display: block; }

/* Submit button */
.btn-wa-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  background: linear-gradient(135deg, #0a7a6e 0%, #25D366 100%);
  color: white;
  font-size: 16px;
  font-weight: 700;
  padding: 18px 32px;
  border-radius: 14px;
  border: none;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.2s ease;
  box-shadow: 0 8px 32px rgba(37,211,102,0.3);
  font-family: inherit;
  margin-top: 8px;
}
.btn-wa-submit i { font-size: 20px; }
.btn-wa-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 48px rgba(37,211,102,0.45);
}
.btn-wa-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

/* Privacy note */
.form-privacy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,0.25);
  margin-top: 16px;
}
.form-privacy i { color: rgba(255,255,255,0.35); }

/* =========================================
   SAP LOGOS — HERO, PARTNERS STRIP, FOOTER
   ========================================= */

/* Hero trust logos row */
.hero-trust-logos {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.hero-sap-logo {
  height: 44px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0,112,242,0.25));
  transition: filter 0.2s ease;
}
.hero-spotlight-logo {
  height: 38px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(255,200,0,0.2));
  transition: filter 0.2s ease;
}
.hero-sap-logo:hover    { filter: drop-shadow(0 4px 14px rgba(0,112,242,0.45)); }
.hero-spotlight-logo:hover { filter: drop-shadow(0 4px 14px rgba(255,200,0,0.45)); }

/* Partners strip logos */
.partner-badge-sap {
  height: 52px;
  width: auto;
  object-fit: contain;
}
.partner-badge-spotlight {
  height: 46px;
  width: auto;
  object-fit: contain;
}
.partner-spotlight {
  padding: 0 20px 0 0;
  border-right: 1px solid var(--color-border);
}

/* Footer badges */
.footer-sap-badges {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 14px 0 12px;
  flex-wrap: wrap;
}
.footer-sap-logo {
  height: 36px;
  width: auto;
  object-fit: contain;
  opacity: 0.85;
  filter: grayscale(20%);
  transition: opacity 0.2s ease, filter 0.2s ease;
}
.footer-spotlight-logo {
  height: 30px;
  width: auto;
  object-fit: contain;
  opacity: 0.75;
  transition: opacity 0.2s ease;
}
.footer-sap-logo:hover    { opacity: 1; filter: grayscale(0%); }
.footer-spotlight-logo:hover { opacity: 1; }

/* =========================================
   SAP SPOTLIGHT+ RECOGNITION SECTION
   ========================================= */
.sap-recognition {
  position: relative;
  padding: 80px 0;
  background:
    linear-gradient(135deg, rgba(6,14,36,0.98) 0%, rgba(14,49,121,0.92) 50%, rgba(6,14,36,0.98) 100%),
    url('../assets/bg-cta.webp') center / cover no-repeat;
  overflow: hidden;
}

/* Decorative glows */
.sap-rec-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
}
.sap-rec-glow-1 {
  width: 500px; height: 500px;
  background: rgba(0,112,242,0.18);
  top: -180px; left: -100px;
}
.sap-rec-glow-2 {
  width: 350px; height: 350px;
  background: rgba(255,200,0,0.08);
  bottom: -100px; right: -60px;
}

/* Main inner layout */
.sap-rec-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 200px 1fr 180px;
  gap: 48px;
  align-items: center;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 28px;
  padding: 48px 52px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow:
    0 24px 80px rgba(0,0,0,0.5),
    inset 0 1px 0 rgba(255,255,255,0.07);
}

/* Badge SAP Spotlight+ */
.sap-rec-badge-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.sap-rec-badge-img {
  width: 100%;
  max-width: 180px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 24px rgba(255,200,0,0.25));
  animation: spotlight-float 5s ease-in-out infinite;
}
@keyframes spotlight-float {
  0%, 100% { transform: translateY(0) scale(1); }
  50%       { transform: translateY(-8px) scale(1.02); }
}

/* Content */
.sap-rec-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-cyan);
  background: rgba(0,200,255,0.08);
  border: 1px solid rgba(0,200,255,0.2);
  border-radius: 100px;
  padding: 5px 14px;
  margin-bottom: 16px;
  display: inline-flex;
}
.sap-rec-label i { font-size: 11px; }

.sap-rec-title {
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 700;
  color: rgba(255,255,255,0.88);
  line-height: 1.3;
  margin-bottom: 14px;
}
.sap-rec-title strong {
  color: white;
  font-weight: 900;
}
.sap-rec-plus {
  color: var(--color-cyan);
}

.sap-rec-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.52);
  line-height: 1.75;
  margin-bottom: 28px;
  max-width: 520px;
}

/* Stats row inside recognition */
.sap-rec-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.sap-rec-stat {
  text-align: center;
}
.sap-rec-stat strong {
  display: block;
  font-size: 20px;
  font-weight: 900;
  color: white;
  line-height: 1.1;
}
.sap-rec-stat span {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}
.sap-rec-stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.12);
  flex-shrink: 0;
}

/* SAP Partner logo (right) */
.sap-rec-logo-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.sap-rec-logo-img {
  width: 100%;
  max-width: 160px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 16px rgba(0,112,242,0.3));
  transition: filter 0.3s ease;
}
.sap-rec-logo-img:hover {
  filter: drop-shadow(0 8px 28px rgba(0,112,242,0.5));
}
.sap-rec-logo-caption {
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  text-align: center;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Responsive */
@media (max-width: 1024px) {
  .sap-rec-inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 40px 32px;
    gap: 32px;
  }
  .sap-rec-badge-img { max-width: 140px; }
  .sap-rec-logo-img  { max-width: 130px; }
  .sap-rec-stats     { justify-content: center; }
  .sap-rec-desc      { max-width: 100%; }
  .hero-sap-logo     { height: 36px; }
  .hero-spotlight-logo { height: 30px; }
}
@media (max-width: 768px) {
  .sap-recognition { padding: 56px 0; }
  .sap-rec-inner   { padding: 28px 22px; gap: 24px; }
  .sap-rec-badge-img { max-width: 110px; }
  .sap-rec-logo-wrap { display: none; }
}

/* =========================================
   SERVICOS OVERVIEW PAGE
   ========================================= */
.services-overview {
  padding: var(--section-padding);
  background: var(--color-white);
}
.services-overview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-overview-card {
  background: var(--color-light);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  border: 1px solid var(--color-border);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.service-overview-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(46,111,225,0.3);
  background: var(--color-white);
}
.service-overview-card .so-icon {
  width: 60px; height: 60px;
  background: var(--gradient-accent);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 4px 16px rgba(46,111,225,0.25);
}
.service-overview-card .so-icon i { font-size: 26px; color: white; }
.service-overview-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 12px; color: var(--color-text); }
.service-overview-card p { font-size: 14px; color: var(--color-text-muted); line-height: 1.75; margin-bottom: 20px; flex: 1; }
.service-overview-card .so-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-accent);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  transition: var(--transition);
}
.service-overview-card .so-link:hover { gap: 14px; }

/* =========================================
   RESPONSIVE — NEW COMPONENTS
   ========================================= */
@media (max-width: 1024px) {
  .service-detail-grid { grid-template-columns: 1fr; }
  .service-detail-grid .service-sidebar { display: grid; grid-template-columns: 1fr 1fr; }
  .post-layout { grid-template-columns: 1fr; }
  .post-sidebar { position: static; }
  .blog-featured { grid-template-columns: 1fr; }
  .blog-featured .blog-card-thumb { min-height: 220px; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .contact-page-grid { grid-template-columns: 1fr; }
  .contact-form-glass { padding: 32px 28px; }
  .contact-form-header { flex-direction: column; gap: 12px; }
  .services-overview-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .blog-grid,
  .blog-grid-home { grid-template-columns: 1fr; }
  .blog-featured { grid-column: 1; }
  .values-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .services-overview-grid { grid-template-columns: 1fr; }
  .service-detail-grid .service-sidebar { grid-template-columns: 1fr; }
  .post-content { padding: 32px 24px; }

  /* Wave dividers */
  .wave-sep { height: 50px; }
  .wave-sep::after { animation-duration: 8s; }

  /* Contato */
  .page-contato .form-row { grid-template-columns: 1fr; }
  .contact-form-glass { padding: 28px 22px; }

  /* Componentes novos — 768px */
  .testimonials-grid { grid-template-columns: 1fr; gap: 16px; }
  .testimonial-card { padding: 28px 22px; }
  .partners-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
  .partners-label { border-right: none; padding-right: 0; border-bottom: 1px solid var(--color-border); padding-bottom: 12px; width: 100%; }
  .diff-team-img { height: 200px; }
  .about-mission-grid { grid-template-columns: 1fr; gap: 40px; margin: 40px 0; }
}


/* =========================================
   WAVE SECTION DIVIDERS
   ========================================= */

/*
  .wave-l2d  →  light section above, dark section below
  .wave-d2l  →  dark section above, light section below
  Wave scrolls slowly, creating a living animated boundary.
  A cyan scan-line sweeps across for the tech effect.
*/

.wave-sep {
  position: relative;
  height: 64px;
  overflow: hidden;
  line-height: 0;
  font-size: 0;
  contain: layout style;
  /* Scan-line glow */
}

/* Secondary softer wave layer (::before) */
.wave-l2d::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 64'%3E%3Cpath fill='%23060E24' fill-opacity='0.35' d='M0%2C15 C200%2C50 400%2C5 720%2C35 C1000%2C58 1200%2C10 1440%2C40 L1440%2C64 L0%2C64 Z'/%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-size: 1440px 64px;
  background-position: 0 bottom;
  animation: wave-scroll-l2d-2 18s linear infinite reverse;
  z-index: 1;
}

.wave-d2l::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 64'%3E%3Cpath fill='%23ffffff' fill-opacity='0.35' d='M0%2C15 C200%2C50 400%2C5 720%2C35 C1000%2C58 1200%2C10 1440%2C40 L1440%2C64 L0%2C64 Z'/%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-size: 1440px 64px;
  background-position: 0 bottom;
  animation: wave-scroll-d2l-2 18s linear infinite reverse;
  z-index: 1;
}

@keyframes wave-scroll-l2d-2 {
  from { background-position-x: 0; }
  to   { background-position-x: 1440px; }
}
@keyframes wave-scroll-d2l-2 {
  from { background-position-x: 0; }
  to   { background-position-x: -1440px; }
}

/* Sweeping cyan scan-line */
.wave-sep::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 160px;
  background: linear-gradient(
    to right,
    transparent 0%,
    rgba(0, 200, 255, 0.18) 40%,
    rgba(0, 200, 255, 0.35) 50%,
    rgba(0, 200, 255, 0.18) 60%,
    transparent 100%
  );
  animation: wave-scan 6s ease-in-out infinite;
  z-index: 3;
  pointer-events: none;
}

@keyframes wave-scan {
  0%   { left: -160px; opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { left: calc(100% + 160px); opacity: 0; }
}

/* Light → Dark : white bg, dark wave at bottom */
.wave-l2d {
  background-color: #ffffff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 64'%3E%3Cpath fill='%23060E24' d='M0%2C32 C360%2C64 1080%2C0 1440%2C32 L1440%2C64 L0%2C64 Z'/%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-size: 1440px 64px;
  background-position: 0 bottom;
  animation: wave-scroll-l2d 24s linear infinite;
}

@keyframes wave-scroll-l2d {
  from { background-position-x: 0; }
  to   { background-position-x: 1440px; }
}

/* Dark → Light : dark bg, white wave at bottom */
.wave-d2l {
  background-color: #060E24;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 64'%3E%3Cpath fill='%23ffffff' d='M0%2C32 C360%2C64 1080%2C0 1440%2C32 L1440%2C64 L0%2C64 Z'/%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-size: 1440px 64px;
  background-position: 0 bottom;
  animation: wave-scroll-d2l 24s linear infinite;
}

@keyframes wave-scroll-d2l {
  from { background-position-x: 0; }
  to   { background-position-x: -1440px; }
}

/* EM-AÇÃO top/bottom gradient fades (blend photo into adjacent dark sections) */
.em-acao-img-wrap::before,
.em-acao-img-wrap::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 110px;
  z-index: 2;
  pointer-events: none;
}
.em-acao-img-wrap::before {
  top: 0;
  background: linear-gradient(to bottom, #060E24 0%, rgba(6,14,36,0.6) 50%, transparent 100%);
}
.em-acao-img-wrap::after {
  bottom: 0;
  background: linear-gradient(to top, #060E24 0%, rgba(6,14,36,0.6) 50%, transparent 100%);
}

/* Ensure overlay text renders above the fades */
.em-acao-overlay { z-index: 3; }

/* =========================================
   WHATSAPP CHAT WIDGET
   ========================================= */

/* Hide legacy simple button (replaced by widget via JS) */
.whatsapp-float { display: none !important; }

/* ---- Widget container ---- */
.wa-widget {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0;
}

/* ---- Trigger row (button + label + badge) ---- */
.wa-trigger {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: flex-end;
}

/* Notification badge */
.wa-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 20px; height: 20px;
  background: #ef4444;
  color: white;
  font-size: 11px;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(239,68,68,0.5);
  animation: badge-pop 0.4s cubic-bezier(0.34,1.56,0.64,1) both;
}
@keyframes badge-pop {
  from { transform: scale(0); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}

/* "Fale conosco" label pill */
.wa-label-pill {
  background: rgba(6,14,36,0.92);
  border: 1px solid rgba(255,255,255,0.12);
  color: white;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 100px;
  white-space: nowrap;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
  opacity: 0;
  transform: translateX(8px);
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.wa-label-pill.visible {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}
.wa-label-pill::after {
  content: '';
  position: absolute;
  right: -7px;
  top: 50%;
  transform: translateY(-50%);
  border: 7px solid transparent;
  border-left-color: rgba(6,14,36,0.92);
  border-right: 0;
}

/* Main button */
.wa-btn {
  position: relative;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #128C7E 0%, #25D366 100%);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 28px rgba(37,211,102,0.45);
  transition: transform 0.25s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.25s ease;
  outline: none;
  flex-shrink: 0;
}
.wa-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 40px rgba(37,211,102,0.6);
}
.wa-btn:focus-visible {
  outline: 3px solid rgba(37,211,102,0.5);
  outline-offset: 3px;
}

/* Icons inside button */
.wa-ico-open, .wa-ico-close {
  position: absolute;
  font-size: 28px;
  color: white;
  transition: opacity 0.2s ease, transform 0.3s cubic-bezier(0.34,1.56,0.64,1);
}
.wa-ico-close { font-size: 22px; opacity: 0; transform: rotate(-90deg) scale(0.5); }
.wa-ico-open  { opacity: 1; transform: rotate(0) scale(1); }

.wa-btn.open .wa-ico-open  { opacity: 0; transform: rotate(90deg) scale(0.5); }
.wa-btn.open .wa-ico-close { opacity: 1; transform: rotate(0) scale(1); }
.wa-btn.open { background: linear-gradient(135deg, #374151, #1f2937); box-shadow: 0 8px 28px rgba(0,0,0,0.35); }

/* Pulsing rings */
.wa-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(37,211,102,0.35);
  animation: wa-ring-pulse 2.5s ease-out infinite;
  pointer-events: none;
}
.wa-ring.r2 { animation-delay: 1.1s; }
@keyframes wa-ring-pulse {
  0%   { transform: scale(1);   opacity: 0.7; }
  100% { transform: scale(2.1); opacity: 0; }
}

/* ---- Chat Modal ---- */
.wa-modal {
  position: absolute;
  bottom: calc(100% + 16px);
  right: 0;
  width: 340px;
  background: rgba(6,14,36,0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 20px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.7), 0 0 0 1px rgba(255,255,255,0.04);
  overflow: hidden;
  transform: translateY(16px) scale(0.94);
  transform-origin: bottom right;
  opacity: 0;
  pointer-events: none;
  transition: transform 0.32s cubic-bezier(0.34,1.56,0.64,1), opacity 0.25s ease;
}
.wa-modal.open {
  transform: translateY(0) scale(1);
  opacity: 1;
  pointer-events: auto;
}

/* Modal header */
.wa-modal-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  background: linear-gradient(135deg, #0a7a6e 0%, #25D366 100%);
  position: relative;
  overflow: hidden;
}
.wa-modal-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 20px 20px;
  pointer-events: none;
}

/* Avatar */
.wa-header-avatar {
  position: relative;
  flex-shrink: 0;
}
.wa-header-avatar > i {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: white;
}
.wa-hdr-dot {
  position: absolute;
  bottom: 1px; right: 1px;
  width: 11px; height: 11px;
  background: #bbf7d0;
  border: 2px solid #25D366;
  border-radius: 50%;
  box-shadow: 0 0 6px rgba(187,247,208,0.8);
}

/* Header info */
.wa-header-info { flex: 1; min-width: 0; }
.wa-header-info strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: white;
  letter-spacing: -0.2px;
}
.wa-header-info span {
  font-size: 12px;
  color: rgba(255,255,255,0.78);
  display: flex;
  align-items: center;
  gap: 5px;
}
.wa-online-indicator {
  display: inline-block;
  width: 7px; height: 7px;
  background: #bbf7d0;
  border-radius: 50%;
  box-shadow: 0 0 5px rgba(187,247,208,0.9);
  animation: online-pulse 2s ease-in-out infinite;
}
@keyframes online-pulse {
  0%, 100% { box-shadow: 0 0 4px rgba(187,247,208,0.7); }
  50%       { box-shadow: 0 0 10px rgba(187,247,208,1); }
}

/* Close button */
.wa-close-btn {
  background: rgba(255,255,255,0.15);
  border: none;
  color: white;
  width: 30px; height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 14px;
  flex-shrink: 0;
  transition: background 0.2s ease;
}
.wa-close-btn:hover { background: rgba(255,255,255,0.28); }

/* Chat area */
.wa-modal-body {
  max-height: 280px;
  overflow-y: auto;
  padding: 20px 16px 12px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: rgba(4,10,28,0.6);
}
.wa-modal-body::-webkit-scrollbar { width: 4px; }
.wa-modal-body::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.1); border-radius: 4px; }

/* Typing indicator */
.wa-typing {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 10px 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px 16px 16px 4px;
  width: fit-content;
}
.wa-typing span {
  width: 7px; height: 7px;
  background: rgba(255,255,255,0.35);
  border-radius: 50%;
  animation: wa-dot-bounce 1.3s ease-in-out infinite;
}
.wa-typing span:nth-child(2) { animation-delay: 0.18s; }
.wa-typing span:nth-child(3) { animation-delay: 0.36s; }
@keyframes wa-dot-bounce {
  0%, 60%, 100% { transform: translateY(0); }
  30% { transform: translateY(-6px); background: rgba(37,211,102,0.8); }
}

/* Chat bubble */
.wa-bubble-wrap { opacity: 0; transform: translateY(6px); }
.wa-bubble-wrap.wa-bubble-in {
  animation: bubble-appear 0.35s ease forwards;
}
@keyframes bubble-appear {
  to { opacity: 1; transform: translateY(0); }
}

.wa-bubble {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px 16px 16px 4px;
  padding: 12px 14px;
  max-width: 92%;
}
.wa-bubble p {
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  line-height: 1.55;
  margin: 0;
}
.wa-bubble p + p { margin-top: 6px; }
.wa-bubble p strong { color: white; font-weight: 700; }
.wa-bubble-time {
  display: block;
  font-size: 10px;
  color: rgba(255,255,255,0.3);
  text-align: right;
  margin-top: 6px;
}

/* Quick replies */
.wa-quick-wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  transform: translateY(8px);
}
.wa-quick-wrap.wa-quick-in {
  animation: quick-appear 0.35s ease forwards;
}
@keyframes quick-appear {
  to { opacity: 1; transform: translateY(0); }
}
.wa-quick-label {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,0.3);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 2px;
}
.wa-quick-label i { color: var(--color-cyan); }

.wa-quick {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(37,211,102,0.25);
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  cursor: pointer;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 9px;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
  font-family: inherit;
}
.wa-quick i { color: #25D366; font-size: 13px; flex-shrink: 0; }
.wa-quick:hover {
  background: rgba(37,211,102,0.1);
  border-color: rgba(37,211,102,0.55);
  color: white;
  transform: translateX(3px);
}

/* Footer */
.wa-modal-footer {
  padding: 12px 14px 14px;
  border-top: 1px solid rgba(255,255,255,0.06);
  background: rgba(4,10,28,0.8);
}

.wa-input-row {
  display: flex;
  gap: 8px;
  align-items: center;
}
#wa-input {
  flex: 1;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 13px;
  color: white;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}
#wa-input::placeholder { color: rgba(255,255,255,0.28); }
#wa-input:focus {
  border-color: rgba(37,211,102,0.5);
  background: rgba(37,211,102,0.04);
  box-shadow: 0 0 0 3px rgba(37,211,102,0.07);
}

.wa-send-btn {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, #128C7E, #25D366);
  border: none;
  border-radius: 10px;
  color: white;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 12px rgba(37,211,102,0.35);
}
.wa-send-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(37,211,102,0.5);
}

.wa-footer-note {
  font-size: 11px;
  color: rgba(255,255,255,0.25);
  text-align: center;
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.wa-footer-note i { color: #25D366; }

/* Mobile adjustments */
@media (max-width: 480px) {
  .wa-widget { bottom: 16px; right: 16px; }
  .wa-modal  { width: calc(100vw - 32px); right: -4px; }
  .wa-btn    { width: 54px; height: 54px; }
  .wa-ico-open { font-size: 24px; }
}

/* =========================================
   PERFORMANCE: content-visibility
   Tells browser to skip off-screen rendering
   ========================================= */
.stats-section,
.about-section,
.services-section,
.differentials-section,
.sap-recognition,
.testimonials-section,
.blog-section,
.em-acao-section,
.cta-banner {
  content-visibility: auto;
  contain-intrinsic-size: 0 600px;
}

/* GPU-accelerate wave animations */
.wave-sep::before,
.wave-sep::after {
  will-change: background-position;
  transform: translateZ(0);
}

/* Prevent invisible icon flash during FA async load */
.fa-brands, .fa-solid, .fa-regular {
  font-display: swap;
}

/* =========================================
   MOBILE PERFORMANCE: reduce animations
   on slow connections / low-end devices
   ========================================= */
@media (prefers-reduced-motion: reduce) {
  .wave-sep::before,
  .wave-sep::after,
  .wa-ring,
  .sap-rec-badge-img,
  .hero-visual-img,
  .stat-number {
    animation: none !important;
    transition: none !important;
  }
}

/* Disable expensive wave scan animation on mobile to reduce TBT */
@media (max-width: 768px) {
  .wave-sep::after {
    animation: none;
    background: none;
  }
  /* Reduce shadow complexity on mobile */
  .service-card,
  .blog-card,
  .diff-item {
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  }
}
