/* ═══════════════════════════════════════════════
   ALEX PORTA ENROLAR AUTOMÁTICA
   CSS – Premium Senior Level
   ═══════════════════════════════════════════════ */

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body { font-family: 'Inter', system-ui, -apple-system, sans-serif; background: #fff; color: #1a1a2e; line-height: 1.6; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea, button { font-family: inherit; }

/* ── Design Tokens ──
   Direção: Industrial / Técnico. Acento primário = aço-azul (--teal, nome
   mantido por compatibilidade com o restante da folha, valor trocado).
   Âmbar é reservado para urgência/CTA (plantão 24h); verde é exclusivo do
   WhatsApp (--wa) para não competir com o âmbar. ── */
:root {
  /* Brand */
  --teal:         #1E3A5F;
  --teal-dark:    #14283F;
  --teal-light:   #EEF1F5;
  --green-dark:   #1B5E20;
  --green-mid:    #2E7D32;
  --blue-deep:    #1A237E;
  --blue-mid:     #283593;
  --blue-light:   #3E9BFF;
  --steel-line:   #B8C4D0;

  /* Neutrals */
  --ink:          #0f172a;
  --ink-80:       #1e293b;
  --ink-60:       #334155;
  --ink-40:       #64748b;
  --ink-20:       #94a3b8;
  --border:       #dbe1e8;
  --bg:           #ffffff;
  --bg-gray:      #f4f6f8;
  --bg-dark:      #0d1a1f;

  /* CTA */
  --wa:           #25D366;
  --wa-dark:      #128C7E;
  --amber:        #F59E0B;
  --amber-dark:   #B45309;

  /* Tipografia */
  --font-display: 'Space Grotesk', system-ui, sans-serif;
  --font-mono:    'Space Grotesk', ui-monospace, monospace;

  /* Spacing */
  --s1: 0.25rem; --s2: 0.5rem; --s3: 0.75rem; --s4: 1rem;
  --s5: 1.25rem; --s6: 1.5rem; --s8: 2rem; --s10: 2.5rem;
  --s12: 3rem; --s16: 4rem; --s20: 5rem; --s24: 6rem;

  /* Radius — cantos discretos, sem pílulas */
  --r-sm: 6px; --r-md: 10px; --r-lg: 14px; --r-xl: 18px; --r-full: 10px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(15,23,42,.08), 0 1px 1px rgba(15,23,42,.05);
  --shadow-md: 0 6px 16px rgba(15,23,42,.12);
  --shadow-lg: 0 16px 36px rgba(15,23,42,.16);
  --shadow-xl: 0 24px 48px rgba(15,23,42,.2), 3px 6px 0 rgba(15,23,42,.4);

  /* Transitions */
  --ease: 0.25s cubic-bezier(0.4,0,0.2,1);
  --ease-spring: 0.4s cubic-bezier(0.34,1.56,0.64,1);
}

/* ── Layout ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 var(--s5); }
.section { padding: var(--s20) 0; }
.section--gray { background: var(--bg-gray); }
.section--dark { background: var(--bg-dark); }
.section--teal { background: linear-gradient(135deg, var(--green-dark) 0%, var(--blue-deep) 100%); }

/* ── Animations ── */
[data-animate] { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
[data-animate].is-visible { opacity: 1; transform: none; }

/* ── Section Headers ── */
.section-header { text-align: center; max-width: 640px; margin: 0 auto var(--s12); }
.section-eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--teal);
  background: var(--teal-light); padding: var(--s1) var(--s3);
  border-left: 3px solid var(--amber);
  border-radius: 0 var(--r-sm) var(--r-sm) 0; margin-bottom: var(--s3);
}
.section-eyebrow--light { background: rgba(255,255,255,0.1); color: #fff; border-left-color: var(--amber); }
.section-title {
  font-family: 'Space Grotesk', system-ui, sans-serif; font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800; color: var(--ink); line-height: 1.15; margin-bottom: var(--s3);
}
.section-title--light { color: #fff; }
.section-sub { font-size: 1.05rem; color: var(--ink-40); line-height: 1.7; }
.section-sub--light { color: rgba(255,255,255,0.75); }

/* ═══════════════════════════════════════
   FLOATING WHATSAPP
═══════════════════════════════════════ */
.wa-float {
  position: fixed; bottom: var(--s6); right: var(--s6); z-index: 1000;
  display: flex; align-items: center; gap: var(--s3);
  background: var(--wa); color: #fff;
  padding: var(--s3) var(--s5); border-radius: var(--r-full);
  box-shadow: 0 8px 24px rgba(37,211,102,0.4);
  font-weight: 700; font-size: 0.9rem;
  transition: transform var(--ease), box-shadow var(--ease);
  animation: wa-pulse 2.5s ease-in-out infinite;
}
.wa-float:hover { transform: translateY(-3px) scale(1.04); box-shadow: 0 12px 32px rgba(37,211,102,0.5); }
@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 8px 24px rgba(37,211,102,0.4); }
  50%       { box-shadow: 0 8px 40px rgba(37,211,102,0.65); }
}
@media (max-width: 480px) { .wa-float span { display: none; } }

/* ═══════════════════════════════════════
   HEADER (Elegante & Glassmorphism)
═══════════════════════════════════════ */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  height: 96px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  transition: background var(--ease), box-shadow var(--ease);
}
.header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}
.header-inner {
  height: 100%; display: flex; align-items: center; justify-content: space-between; gap: var(--s6);
}

/* Logo */
.logo { display: flex; align-items: center; }
.logo-img-header {
  height: 72px;
  width: auto;
  display: block;
  transition: transform 0.3s ease;
}
.logo:hover .logo-img-header {
  transform: scale(1.03);
}
.logo-img-footer {
  height: 82px;
  width: auto;
  display: block;
  border-radius: 6px;
}

/* Nav */
.nav-list { display: flex; align-items: center; gap: var(--s1); flex-wrap: nowrap; }
.nav-link {
  padding: var(--s2) var(--s3); border-radius: var(--r-full);
  font-size: 0.92rem; font-weight: 600; color: #334155;
  white-space: nowrap;
  transition: color var(--ease), background var(--ease);
}
.nav-link:hover { color: var(--teal); background: #F1F5F9; }
.nav-cta {
  padding: var(--s3) var(--s5); border-radius: var(--r-full);
  background: var(--teal); color: #fff;
  font-size: 0.9rem; font-weight: 700; white-space: nowrap; flex-shrink: 0;
  transition: transform var(--ease), box-shadow var(--ease), background var(--ease);
  box-shadow: 0 4px 12px rgba(30, 58, 95, 0.25);
}
.nav-cta:hover { transform: translateY(-2px); background: var(--teal-dark); box-shadow: 0 8px 20px rgba(30, 58, 95, 0.35); }

/* Mobile toggle */
.menu-toggle {
  display: none; flex-direction: column; gap: 5px;
  padding: var(--s2); background: none; border: none; cursor: pointer;
}
.menu-toggle span {
  display: block; width: 24px; height: 2.5px;
  background: #0F172A; border-radius: 2px;
  transition: transform var(--ease), opacity var(--ease);
}

/* ═══════════════════════════════════════
   HERO HUMANIZADO E ELEGANTE
═══════════════════════════════════════ */
.hero-elegant {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #F7F8FA 0%, #EEF1F5 55%, #E3E9EF 100%);
  overflow: hidden;
  padding-top: 80px;
}
.hero-elegant-bg {
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(0deg, rgba(30,58,95,0.05) 0, rgba(30,58,95,0.05) 1px, transparent 1px, transparent 48px),
    repeating-linear-gradient(90deg, rgba(30,58,95,0.05) 0, rgba(30,58,95,0.05) 1px, transparent 1px, transparent 48px);
  -webkit-mask-image: radial-gradient(circle at 78% 32%, black 0%, transparent 62%);
  mask-image: radial-gradient(circle at 78% 32%, black 0%, transparent 62%);
  pointer-events: none;
}
.hero-elegant-inner {
  position: relative; z-index: 2;
  padding: 80px var(--s5) 80px;
  width: 100%;
}
.hero-elegant-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: var(--s12);
  align-items: center;
}
.hero-copy { max-width: 620px; }
.badge-trust-pill {
  display: inline-flex; align-items: center; gap: var(--s2);
  background: #ffffff;
  border: 1px solid rgba(30, 58, 95, 0.3);
  color: #0F172A; border-radius: var(--r-full);
  padding: var(--s2) var(--s4); font-size: 0.85rem; font-weight: 600;
  margin-bottom: var(--s5);
  box-shadow: 0 4px 15px rgba(30, 58, 95, 0.08);
}
.star-icon { color: var(--amber); font-size: 1rem; }
.hero-title {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 800; color: #0F172A; line-height: 1.12;
  margin-bottom: var(--s5);
  letter-spacing: -0.02em;
}
.hero-title span {
  background: linear-gradient(90deg, var(--teal), var(--blue-deep));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  color: #475569; line-height: 1.7;
  margin-bottom: var(--s8);
}
.hero-sub strong { color: var(--teal); font-weight: 700; }

.hero-cta-group { display: flex; flex-wrap: wrap; gap: var(--s4); margin-bottom: var(--s8); }
.btn-elegant-primary {
  display: inline-flex; align-items: center; gap: var(--s3);
  background: var(--wa); color: #ffffff;
  padding: 16px 32px; border-radius: var(--r-full);
  font-weight: 700; font-size: 1.05rem;
  box-shadow: 0 10px 25px rgba(37,211,102, 0.3);
  transition: transform var(--ease-spring), box-shadow var(--ease), background var(--ease);
}
.btn-elegant-primary:hover { transform: translateY(-3px) scale(1.02); background: var(--wa-dark); box-shadow: 0 15px 35px rgba(37,211,102, 0.45); color: #fff; }
.btn-elegant-secondary {
  display: inline-flex; align-items: center;
  padding: 16px 32px; border-radius: var(--r-full);
  font-weight: 700; font-size: 1.05rem;
  background: #ffffff; color: #0F172A;
  border: 1.5px solid #CBD5E1;
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
  transition: border-color var(--ease), background var(--ease), color var(--ease);
}
.btn-elegant-secondary:hover { border-color: var(--teal); color: var(--teal); background: #F8FAFC; }

.hero-human-proof {
  display: flex; align-items: center; gap: var(--s6);
  padding-top: var(--s6);
  border-top: 1px solid rgba(15, 23, 42, 0.1);
}
.proof-item { display: flex; flex-direction: column; }
.proof-item strong { font-size: 1.1rem; font-weight: 800; color: #0F172A; }
.proof-item span { font-size: 0.8rem; color: #64748B; font-weight: 500; }
.proof-sep { width: 1px; height: 36px; background: rgba(15, 23, 42, 0.15); }

/* Right Column Card */
.showcase-card-elegant {
  background: #ffffff;
  padding: 14px;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border);
  position: relative;
}
.showcase-card-elegant::before,
.showcase-card-elegant::after {
  content: ''; position: absolute; width: 26px; height: 26px; pointer-events: none;
}
.showcase-card-elegant::before { top: -8px; left: -8px; border-top: 3px solid var(--amber); border-left: 3px solid var(--amber); }
.showcase-card-elegant::after { bottom: -8px; right: -8px; border-bottom: 3px solid var(--amber); border-right: 3px solid var(--amber); }
.showcase-img-wrapper {
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  height: 400px;
}
.img-main-hero {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.showcase-card-elegant:hover .img-main-hero { transform: scale(1.04); }

.live-status-badge {
  position: absolute; top: 16px; right: 16px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  padding: 6px 14px; border-radius: var(--r-full);
  display: flex; align-items: center; gap: 8px;
  font-size: 0.8rem; font-weight: 700; color: #0F172A;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.status-dot-green {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--wa); animation: blink 1.2s ease-in-out infinite;
}
.location-badge {
  position: absolute; bottom: 16px; left: 16px;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(8px);
  padding: 6px 14px; border-radius: var(--r-full);
  font-size: 0.8rem; font-weight: 600; color: #ffffff;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}
.showcase-testimonial {
  display: flex; gap: 14px; align-items: flex-start;
  margin-top: 18px; padding: 14px;
  background: var(--bg-gray); border-radius: var(--r-md);
  border: 1px solid var(--border); border-left: 3px solid var(--amber);
}
.testi-avatar {
  width: 44px; height: 44px; border-radius: var(--r-sm);
  background: var(--teal-light); display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; flex-shrink: 0;
}
.testi-stars { font-size: 0.85rem; margin-bottom: 4px; }
.testi-text p { font-size: 0.88rem; color: #334155; font-style: italic; line-height: 1.45; margin-bottom: 6px; }
.testi-text span { font-size: 0.75rem; color: #64748B; font-weight: 600; }

/* ═══════════════════════════════════════
   STATS BAR
═══════════════════════════════════════ */
.stats-bar {
  background: var(--bg-dark); border-top: 1px solid rgba(255,255,255,0.06);
  padding: var(--s8) 0;
}
.stats-inner {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; align-items: center;
}
.stat-item {
  text-align: center; padding: var(--s5);
  display: flex; flex-direction: column; align-items: center; gap: var(--s2);
}
.stat-num {
  font-family: 'Space Grotesk', system-ui, sans-serif; font-size: 2.8rem;
  font-weight: 800; color: var(--amber); line-height: 1;
}
.stat-plus { font-size: 1.8rem; font-weight: 800; color: var(--amber); margin-left: 2px; }
.stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.5); font-weight: 500; text-transform: uppercase; letter-spacing: 0.05em; }
.stat-divider { width: 1px; background: rgba(255,255,255,0.08); height: 50px; align-self: center; }

/* ═══════════════════════════════════════
   SERVIÇOS
═══════════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--s5);
}
.service-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--r-xl); padding: var(--s8);
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--blue-light));
  opacity: 0; transition: opacity var(--ease);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); border-color: transparent; }
.service-card:hover::before { opacity: 1; }
.service-card--featured {
  background: linear-gradient(135deg, var(--ink) 0%, var(--ink-80) 100%);
  border-color: rgba(30,58,95,0.3);
  color: #fff;
}
.service-card--featured::before { opacity: 1; }
.service-card--emergency { border-color: rgba(239,68,68,0.2); }
.service-card-img {
  width: calc(100% + var(--s8) * 2);
  margin: calc(var(--s8) * -1) calc(var(--s8) * -1) var(--s6) calc(var(--s8) * -1);
  height: 190px;
  overflow: hidden;
  position: relative;
  border-bottom: 1px solid var(--border);
}
.service-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.service-card:hover .service-card-img img {
  transform: scale(1.05);
}
.service-badge-top {
  position: absolute; top: var(--s4); right: var(--s4);
  background: var(--amber); color: var(--ink);
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.05em;
  padding: 2px var(--s3); border-radius: var(--r-full);
}
.service-icon {
  width: 56px; height: 56px; border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--s5);
}
.service-icon--teal  { background: var(--teal-light); color: var(--teal-dark); }
.service-icon--amber { background: #fef3c7; color: #d97706; }
.service-icon--green { background: #dcfce7; color: var(--green-dark); }
.service-icon--red   { background: #fee2e2; color: #dc2626; }
.service-card--featured .service-icon--amber { background: rgba(245,158,11,0.15); color: var(--amber); }
.service-title {
  font-family: 'Space Grotesk', system-ui, sans-serif; font-size: 1.15rem; font-weight: 800;
  color: var(--ink); margin-bottom: var(--s3); line-height: 1.3;
}
.service-card--featured .service-title { color: #fff; }
.service-desc {
  font-size: 0.9rem; color: var(--ink-40); line-height: 1.65; margin-bottom: var(--s5);
}
.service-card--featured .service-desc { color: rgba(255,255,255,0.6); }
.service-list { display: flex; flex-direction: column; gap: var(--s2); }
.service-list li {
  font-size: 0.85rem; color: var(--ink-60);
  padding-left: var(--s4); position: relative;
}
.service-list li::before {
  content: '→'; position: absolute; left: 0;
  color: var(--teal); font-size: 0.8rem;
}
.service-card--featured .service-list li { color: rgba(255,255,255,0.65); }
.service-card--featured .service-list li::before { color: var(--amber); }

/* ═══════════════════════════════════════
   CORES E ACABAMENTO ELETROSTÁTICO
═══════════════════════════════════════ */
.cores-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s8);
  align-items: center;
}
.cores-photo {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  aspect-ratio: 16 / 10;
}
.cores-photo img { width: 100%; height: 100%; object-fit: cover; }
.swatch-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s3);
  margin-bottom: var(--s6);
}
.swatch-list li {
  display: flex; align-items: center; gap: var(--s3);
  background: #fff; border: 1px solid var(--border); border-radius: var(--r-sm);
  padding: var(--s3);
}
.swatch-chip {
  width: 28px; height: 28px; border-radius: var(--r-sm); flex-shrink: 0;
  box-shadow: inset 0 0 0 1px rgba(15,23,42,0.08);
}
.swatch-chip--border { border: 1px solid var(--border); }
.swatch-list strong { display: block; font-size: 0.88rem; color: var(--ink); font-weight: 700; }
.swatch-list code { font-family: var(--font-mono); font-size: 0.75rem; color: var(--ink-40); }
.cores-note { font-size: 0.9rem; color: var(--ink-40); line-height: 1.6; margin-bottom: var(--s5); }
.btn-cores {
  display: inline-flex; align-items: center; gap: var(--s3);
  background: var(--teal); color: #fff;
  padding: var(--s4) var(--s8); border-radius: var(--r-full);
  font-weight: 700; font-size: 1rem;
  transition: transform var(--ease), box-shadow var(--ease), background var(--ease);
  box-shadow: 0 4px 16px rgba(30,58,95,0.3);
}
.btn-cores:hover { transform: translateY(-2px); background: var(--teal-dark); box-shadow: 0 8px 24px rgba(30,58,95,0.4); }

/* ═══════════════════════════════════════
   PORTFÓLIO
═══════════════════════════════════════ */
.portfolio-grid-clean {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: var(--s6);
}
.portfolio-card-clean {
  background: #fff;
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform var(--ease), box-shadow var(--ease);
  display: flex;
  flex-direction: column;
}
.portfolio-card-clean:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}
.portfolio-img-clean {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  position: relative;
}
.portfolio-img-clean img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.portfolio-card-clean:hover .portfolio-img-clean img {
  transform: scale(1.06);
}
.portfolio-content-clean {
  padding: var(--s6);
  display: flex;
  flex-direction: column;
  gap: var(--s2);
}
.portfolio-content-clean p {
  font-size: 0.92rem;
  color: var(--ink-60);
  line-height: 1.45;
  font-weight: 600;
}
.portfolio-masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 260px;
  gap: var(--s3);
}
.portfolio-item {
  position: relative; overflow: hidden;
  border-radius: var(--r-lg); cursor: pointer;
}
.portfolio-item--tall { grid-row: span 2; }
.portfolio-item--wide { grid-column: span 2; }
.portfolio-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.portfolio-item:hover img { transform: scale(1.06); }
.portfolio-caption {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 50%, transparent 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: var(--s5); opacity: 0; transition: opacity 0.3s ease;
}
.portfolio-item:hover .portfolio-caption { opacity: 1; }
.p-tag {
  display: inline-block; width: fit-content;
  background: var(--amber); color: var(--ink);
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 2px var(--s3); border-radius: var(--r-full); margin-bottom: var(--s2);
}
.portfolio-caption p { font-size: 0.88rem; color: #fff; line-height: 1.4; }

.portfolio-footer {
  margin-top: var(--s10); text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: var(--s4);
}
.portfolio-more-text { color: rgba(255,255,255,0.5); font-size: 0.95rem; }
.btn-ig {
  display: inline-flex; align-items: center; gap: var(--s3);
  padding: var(--s3) var(--s6); border-radius: var(--r-full);
  background: linear-gradient(135deg, #E1306C, #833AB4);
  color: #fff; font-weight: 700; font-size: 0.95rem;
  transition: transform var(--ease), box-shadow var(--ease);
  box-shadow: 0 4px 16px rgba(225,48,108,0.35);
}
.btn-ig:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(225,48,108,0.5); }

/* ═══════════════════════════════════════
   DIFERENCIAIS
═══════════════════════════════════════ */
.dif-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: var(--s16); align-items: center;
}
.dif-text { display: flex; flex-direction: column; }
.dif-desc {
  font-size: 1rem; color: var(--ink-60); line-height: 1.7; margin-bottom: var(--s8);
}
.dif-list { display: flex; flex-direction: column; gap: var(--s5); margin-bottom: var(--s8); }
.dif-list li {
  display: flex; gap: var(--s4); align-items: flex-start;
}
.dif-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: var(--teal-light); border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
}
.dif-list strong { display: block; font-weight: 700; color: var(--ink); margin-bottom: 2px; }
.dif-list p { font-size: 0.88rem; color: var(--ink-40); line-height: 1.5; }

.dif-img-wrap {
  position: relative; border-radius: var(--r-xl); overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.dif-img-wrap img { width: 100%; height: 420px; object-fit: cover; }
.dif-img-wrap--card img {
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  background: var(--surface);
  padding: var(--s4);
}
.dif-img-badge {
  position: absolute; bottom: var(--s5); left: var(--s5);
  display: flex; align-items: center; gap: var(--s2);
  background: rgba(255,255,255,0.95); color: var(--ink);
  font-size: 0.8rem; font-weight: 700;
  padding: var(--s2) var(--s4); border-radius: var(--r-full);
  box-shadow: var(--shadow-md);
}

.btn-primary {
  display: inline-flex; align-items: center; gap: var(--s3);
  background: var(--wa); color: #fff;
  padding: var(--s4) var(--s8); border-radius: var(--r-full);
  font-weight: 700; font-size: 1rem; align-self: flex-start;
  transition: transform var(--ease), box-shadow var(--ease);
  box-shadow: 0 4px 16px rgba(37,211,102,0.3);
}
.btn-primary:hover { transform: translateY(-2px); background: var(--wa-dark); box-shadow: 0 8px 24px rgba(37,211,102,0.4); }

/* ═══════════════════════════════════════
   IDEAL PARA (APLICAÇÕES)
═══════════════════════════════════════ */
.section--ideal {
  background: var(--bg-light);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.ideal-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s5);
  margin-top: var(--s8);
}
.ideal-card {
  background: #fff; padding: var(--s6); border-radius: var(--r-xl);
  border: 1.5px solid var(--border); box-shadow: var(--shadow-sm);
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
  text-align: center;
}
.ideal-card:hover {
  transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--teal);
}
.ideal-icon {
  font-size: 2.5rem; margin-bottom: var(--s4); display: inline-block;
  padding: var(--s3); background: var(--teal-light); border-radius: var(--r-lg);
}
.ideal-name {
  font-family: 'Space Grotesk', system-ui, sans-serif; font-size: 1.15rem; font-weight: 700;
  color: var(--ink); margin-bottom: var(--s2);
}
.ideal-card p {
  font-size: 0.88rem; color: var(--ink-40); line-height: 1.5;
}

/* ═══════════════════════════════════════
   NOSSO PROCESSO EM 4 PASSOS
═══════════════════════════════════════ */
.section--process {
  background: linear-gradient(135deg, #091316 0%, #0d1a1f 100%);
  color: #fff;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.section--process .section-title { color: #fff; }
.section--process .section-sub { color: rgba(255,255,255,0.75); }
.section--process .section-eyebrow {
  background: rgba(245, 158, 11, 0.12); color: var(--amber);
  border: 1px solid rgba(245, 158, 11, 0.35); border-left: 3px solid var(--amber);
}
.process-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: stretch; gap: var(--s3); margin-top: var(--s10);
}
.process-step {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-xl); padding: var(--s6) var(--s5); text-align: center;
  position: relative; transition: transform var(--ease), border-color var(--ease), background var(--ease);
  display: flex; flex-direction: column; align-items: center; justify-content: flex-start;
}
.process-step:hover {
  transform: translateY(-5px); border-color: var(--amber);
  background: rgba(255,255,255,0.08);
}
.process-num {
  font-family: 'Space Grotesk', system-ui, sans-serif; font-size: 2rem; font-weight: 800;
  color: rgba(245, 158, 11, 0.2); line-height: 1;
  position: absolute; top: var(--s4); right: var(--s4);
}
.process-icon {
  font-size: 2.4rem; margin-bottom: var(--s4); display: inline-block;
}
.process-name {
  font-family: 'Space Grotesk', system-ui, sans-serif; font-size: 1.15rem; font-weight: 700;
  color: #fff; margin-bottom: var(--s2);
}
.process-step p {
  font-size: 0.88rem; color: rgba(255,255,255,0.7); line-height: 1.5;
}
.process-arrow {
  color: var(--amber); font-size: 1.4rem; font-weight: 800;
  align-self: center; text-align: center; opacity: 0.8;
}

/* ═══════════════════════════════════════
   PLANOS
═══════════════════════════════════════ */
.plans-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s5);
}
.plan-card {
  background: #fff; border: 1.5px solid var(--border);
  border-radius: var(--r-xl); padding: var(--s8);
  display: flex; flex-direction: column; gap: var(--s5);
  position: relative; transition: transform var(--ease), box-shadow var(--ease);
}
.plan-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.plan-card--featured {
  background: var(--ink); border-color: var(--amber);
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}
.plan-card--featured:hover { transform: translateY(-12px); }
.plan-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--amber); color: var(--ink);
  font-size: 0.72rem; font-weight: 800; letter-spacing: 0.06em;
  padding: 4px var(--s4); border-radius: var(--r-sm);
  white-space: nowrap;
}
.plan-header { display: flex; flex-direction: column; gap: var(--s1); }
.plan-name {
  font-family: 'Space Grotesk', system-ui, sans-serif; font-size: 1.35rem; font-weight: 800;
  color: var(--ink);
}
.plan-card--featured .plan-name { color: #fff; }
.plan-tag { font-size: 0.78rem; color: var(--ink-40); font-weight: 500; }
.plan-card--featured .plan-tag { color: rgba(255,255,255,0.5); }
.plan-freq {
  display: inline-block; background: var(--teal-light); color: var(--teal-dark);
  font-weight: 700; font-size: 0.85rem;
  padding: var(--s2) var(--s4); border-radius: var(--r-sm); width: fit-content;
}
.plan-card--featured .plan-freq { background: rgba(245,158,11,0.15); color: var(--amber); }
.plan-features { display: flex; flex-direction: column; gap: var(--s3); flex: 1; }
.plan-features li { font-size: 0.88rem; color: var(--ink-60); }
.plan-card--featured .plan-features li { color: rgba(255,255,255,0.7); }
.plan-features li.disabled { opacity: 0.4; }
.plan-btn {
  display: block; text-align: center;
  padding: var(--s3) var(--s6); border-radius: var(--r-full);
  background: var(--bg-gray); color: var(--ink); font-weight: 700; font-size: 0.9rem;
  border: 1.5px solid var(--border);
  transition: background var(--ease), border-color var(--ease), color var(--ease);
}
.plan-btn:hover { background: var(--teal-light); border-color: var(--teal); color: var(--teal-dark); }
.plan-btn--featured {
  background: var(--amber); color: var(--ink); border-color: var(--amber);
  box-shadow: 0 4px 16px rgba(245,158,11,0.35);
}
.plan-btn--featured:hover { background: var(--amber-dark); color: #fff; }

/* ═══════════════════════════════════════
   ORÇAMENTO
═══════════════════════════════════════ */
.orc-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: var(--s16); align-items: start;
}
.orc-sub {
  font-size: 1rem; color: rgba(255,255,255,0.7); line-height: 1.7;
  margin-bottom: var(--s8);
}
.orc-contact-list { display: flex; flex-direction: column; gap: var(--s4); }
.orc-contact-item {
  display: flex; align-items: center; gap: var(--s4);
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-lg); padding: var(--s4);
  transition: background var(--ease), border-color var(--ease);
}
.orc-contact-item:hover { background: rgba(255,255,255,0.14); border-color: var(--amber); }
.orc-contact-icon {
  width: 44px; height: 44px; border-radius: var(--r-md);
  background: rgba(255,255,255,0.1); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  color: var(--amber);
}
.orc-contact-item strong { display: block; font-weight: 700; color: #fff; font-size: 0.95rem; }
.orc-contact-item span { font-size: 0.78rem; color: rgba(255,255,255,0.5); }

.orc-form-wrap {
  background: #fff; border-radius: var(--r-xl);
  padding: var(--s8); box-shadow: var(--shadow-xl);
}
.form-title {
  font-family: 'Space Grotesk', system-ui, sans-serif; font-size: 1.25rem; font-weight: 800;
  color: var(--ink); margin-bottom: var(--s6);
}
.orc-form { display: flex; flex-direction: column; gap: var(--s4); }
.form-field { display: flex; flex-direction: column; gap: var(--s2); }
.form-field label { font-size: 0.82rem; font-weight: 600; color: var(--ink-60); }
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%; padding: var(--s3) var(--s4);
  border: 1.5px solid var(--border); border-radius: var(--r-md);
  font-size: 0.92rem; color: var(--ink); background: #fff;
  transition: border-color var(--ease), box-shadow var(--ease);
  outline: none;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(30,58,95,0.12);
}
.form-field input.error,
.form-field select.error { border-color: #ef4444; }
.form-submit {
  display: flex; align-items: center; justify-content: center; gap: var(--s3);
  background: var(--wa); color: #fff;
  padding: var(--s4) var(--s8); border-radius: var(--r-full);
  font-weight: 700; font-size: 1rem; width: 100%;
  transition: transform var(--ease), box-shadow var(--ease);
  box-shadow: 0 4px 16px rgba(37,211,102,0.3);
  cursor: pointer;
}
.form-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,0.45); }
.form-note {
  text-align: center; font-size: 0.75rem; color: var(--ink-20);
}

/* ═══════════════════════════════════════
   CONTACT CARDS
═══════════════════════════════════════ */
.contact-cards {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s5);
}
.contact-card {
  display: flex; align-items: center; gap: var(--s4);
  padding: var(--s6); border-radius: var(--r-xl);
  border: 1.5px solid var(--border); background: #fff;
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
  text-decoration: none;
}
.contact-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-xl); }
.contact-card--wa:hover   { border-color: var(--wa); }
.contact-card--ig:hover   { border-color: #E1306C; }
.contact-card--mail:hover { border-color: #3b82f6; }
.contact-card--info { cursor: default; }
.contact-card-icon {
  width: 56px; height: 56px; border-radius: var(--r-lg); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.contact-card--wa   .contact-card-icon { background: #dcfce7; color: var(--wa-dark); }
.contact-card--ig   .contact-card-icon { background: #fce7f3; color: #E1306C; }
.contact-card--mail .contact-card-icon { background: #eff6ff; color: #3b82f6; }
.contact-card--exp  .contact-card-icon { background: #fef3c7; color: #d97706; }
.contact-card--info .contact-card-icon { background: var(--teal-light); color: var(--teal-dark); }
.contact-card strong { display: block; font-weight: 800; color: var(--ink); font-size: 1.05rem; margin-bottom: 2px; }
.contact-card span { font-size: 0.85rem; color: var(--ink-40); line-height: 1.3; }

/* ═══════════════════════════════════════
   FOOTER SÊNIOR EXECUTIVO
═══════════════════════════════════════ */
.footer {
  background: #0B1120;
  color: #94A3B8;
  padding: var(--s12) 0 var(--s8);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: var(--s8);
  margin-bottom: var(--s10);
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: var(--s3);
}
.footer-bio {
  font-size: 0.92rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.65);
  margin-top: var(--s2);
}
.footer-heading {
  color: #fff;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  margin-bottom: var(--s2);
  display: flex;
  align-items: center;
  gap: var(--s2);
}
.footer-heading::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--amber);
  border-radius: 1px;
}
.footer-nav-list {
  display: flex;
  flex-direction: column;
  gap: var(--s3);
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-nav-list li a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.92rem;
  text-decoration: none;
  transition: color var(--ease), transform var(--ease);
  display: inline-flex;
  align-items: center;
}
.footer-nav-list li a:hover {
  color: var(--amber);
  transform: translateX(4px);
}
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--s3);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.92rem;
  line-height: 1.4;
  text-decoration: none;
  margin-bottom: var(--s2);
}
.footer-contact-item strong {
  color: #fff;
  display: block;
  font-weight: 600;
}
.footer-contact-item span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.82rem;
}
.footer-contact-icon {
  color: var(--amber);
  flex-shrink: 0;
  margin-top: 2px;
}
.footer-bottom {
  padding-top: var(--s8);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--s4);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
}
.footer-badge-dev {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  background: rgba(255, 255, 255, 0.05);
  padding: var(--s2) var(--s4);
  border-radius: var(--r-full);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
}

/* ═══════════════════════════════════════
   AVISO DE ARMAZENAMENTO BLOQUEADO
═══════════════════════════════════════ */
.storage-warning-bar {
  position: relative; z-index: 950; background: #fef3c7; color: #92400e;
  border-bottom: 1px solid #fbbf24; font-size: 0.8rem; text-align: center;
  padding: var(--s2) var(--s5); line-height: 1.5;
}

/* ═══════════════════════════════════════
   NAV – LINKS SECUNDÁRIOS (Área do cliente / interna)
═══════════════════════════════════════ */
.nav-link--muted { opacity: 0.65; font-size: 0.82rem; }
.nav-link--muted:hover { opacity: 1; }

/* ═══════════════════════════════════════
   POR QUE O VALOR PODE VARIAR
═══════════════════════════════════════ */
.valor-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s5);
  margin-bottom: var(--s8);
}
.valor-card {
  background: var(--bg-gray); border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: var(--s6); text-align: center; transition: transform var(--ease), box-shadow var(--ease);
}
.valor-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.valor-icon { font-size: 2rem; margin-bottom: var(--s3); }
.valor-card h3 { font-size: 1rem; font-weight: 700; color: var(--ink); margin-bottom: var(--s2); }
.valor-card p { font-size: 0.9rem; color: var(--ink-40); line-height: 1.6; }
.valor-note {
  max-width: 820px; margin: 0 auto; text-align: center; font-size: 0.95rem;
  color: var(--ink-60); background: var(--teal-light); border: 1px solid var(--teal);
  border-radius: var(--r-md); padding: var(--s5) var(--s6);
}

/* ═══════════════════════════════════════
   CARTÃO DE VISITA
═══════════════════════════════════════ */
.cartao-grid {
  display: grid; grid-template-columns: 1fr auto; gap: var(--s8);
  align-items: center; margin-bottom: var(--s8); max-width: 640px; margin-left: auto; margin-right: auto;
}
.cartao-face { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.cartao-qr {
  display: flex; flex-direction: column; align-items: center; gap: var(--s3);
  text-align: center; max-width: 180px; justify-self: center;
}
.cartao-qr img { width: 140px; border-radius: var(--r-md); box-shadow: var(--shadow-md); }
.cartao-qr span { font-size: 0.85rem; color: var(--ink-40); }
.cartao-actions { text-align: center; }

/* ═══════════════════════════════════════
   FAQ
═══════════════════════════════════════ */
.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: var(--s3); }
.faq-item {
  background: var(--bg); border: 1px solid var(--border); border-radius: var(--r-md);
  padding: var(--s5) var(--s6);
}
.faq-item summary {
  cursor: pointer; font-weight: 700; color: var(--ink); list-style: none;
  display: flex; justify-content: space-between; align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 1.4rem; color: var(--teal); margin-left: var(--s3); }
.faq-item[open] summary::after { content: '−'; }
.faq-item p { margin-top: var(--s3); color: var(--ink-40); line-height: 1.7; }
.faq-item a { color: var(--teal-dark); font-weight: 600; text-decoration: underline; }

/* ═══════════════════════════════════════
   ORÇAMENTO – AVISO E CONFIRMAÇÃO
═══════════════════════════════════════ */
.form-warning {
  font-size: 0.8rem; color: var(--ink-40); background: var(--bg-gray);
  border-radius: var(--r-sm); padding: var(--s3); line-height: 1.5;
}
.orc-confirmacao {
  text-align: center; background: var(--bg); border-radius: var(--r-lg);
  padding: var(--s8) var(--s6); box-shadow: var(--shadow-lg);
}
.orc-confirmacao-icon { font-size: 2.5rem; margin-bottom: var(--s3); }
.orc-confirmacao h3 { font-size: 1.3rem; color: var(--ink); margin-bottom: var(--s2); }
.orc-protocolo {
  display: inline-block; font-size: 1.5rem; font-weight: 800; color: var(--teal-dark);
  background: var(--teal-light); padding: var(--s2) var(--s6); border-radius: var(--r-full);
  margin: var(--s3) 0; letter-spacing: 0.05em;
}
.orc-confirmacao-note { color: var(--ink-40); font-size: 0.9rem; max-width: 420px; margin: 0 auto var(--s6); }
.orc-confirmacao-actions { display: flex; gap: var(--s3); justify-content: center; flex-wrap: wrap; }

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-elegant-grid { grid-template-columns: 1fr; gap: var(--s8); }
  .hero-visual { max-width: 580px; margin: 0 auto; width: 100%; }
  .showcase-img-wrapper { height: 340px; }
  .dif-grid { grid-template-columns: 1fr; }
  .dif-image { order: -1; }
  .dif-img-wrap img { height: 300px; }
  .orc-grid { grid-template-columns: 1fr; gap: var(--s10); }
}
@media (max-width: 900px) {
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-divider { display: none; }
  .ideal-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: 1fr; gap: var(--s4); }
  .process-arrow { display: none; }
  .cores-grid { grid-template-columns: 1fr; }
  .portfolio-grid-clean { grid-template-columns: repeat(2, 1fr); }
  .portfolio-masonry { grid-template-columns: repeat(2, 1fr); }
  .portfolio-item--tall { grid-row: span 1; }
  .portfolio-item--wide { grid-column: span 2; }
  .plans-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .plan-card--featured { transform: none; }
  .contact-cards { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--s6); }
  .valor-grid { grid-template-columns: repeat(2, 1fr); }
  .cartao-grid { grid-template-columns: 1fr; justify-items: center; }
  .cartao-qr { grid-column: span 1; }
}
@media (max-width: 768px) {
  .header { height: 80px; }
  .logo-img-header { height: 60px; }
  .nav { display: none; position: fixed; inset: 80px 0 0 0; background: var(--bg-dark); flex-direction: column; padding: var(--s8) var(--s5); overflow-y: auto; }
  .nav.open { display: flex; }
  .nav-list { flex-direction: column; align-items: stretch; gap: var(--s2); }
  .nav-link { padding: var(--s4); font-size: 1.1rem; color: #fff; }
  .nav-cta { text-align: center; padding: var(--s4); }
  .menu-toggle { display: flex; }
  .hero-title { font-size: clamp(2.2rem, 8vw, 3rem); }
  .services-grid { grid-template-columns: 1fr; }
  .swatch-list { grid-template-columns: 1fr; }
  .portfolio-grid-clean { grid-template-columns: 1fr; }
  .portfolio-masonry { grid-template-columns: 1fr; }
  .portfolio-item--wide { grid-column: span 1; }
  .contact-cards { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .valor-grid { grid-template-columns: 1fr; }
  .cartao-grid { grid-template-columns: 1fr; }
  .cartao-qr { grid-column: span 1; }
  .orc-confirmacao-actions { flex-direction: column; }
}
@media (max-width: 480px) {
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .ideal-grid { grid-template-columns: 1fr; }
  .hero-cta-group { flex-direction: column; }
  .btn-elegant-primary, .btn-elegant-secondary { justify-content: center; }
  .section { padding: var(--s12) 0; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ═══════════════════════════════════════════════
   PORTAL DO CLIENTE – ORÇAMENTO DETALHADO & ACOMPANHAMENTO (OPÇÃO OCULTA)
═══════════════════════════════════════════════ */
.modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 99999;
  overflow-y: auto;
}
.modal-overlay[hidden] {
  display: none !important;
}
.modal-box {
  background: #ffffff;
  border-radius: 20px;
  padding: 32px;
  max-width: 780px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.35);
  position: relative;
  z-index: 100000;
}
.modal-box-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}
.modal-close {
  font-size: 28px;
  line-height: 1;
  color: #64748b;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 8px;
  transition: all 0.2s;
}
.modal-close:hover {
  background: #f1f5f9;
  color: #0f172a;
}
.portal-box {
  max-width: 780px;
  background: var(--bg, #fff);
  border-radius: var(--r-xl, 20px);
  padding: var(--s8, 32px);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(0, 0, 0, 0.08);
}
.portal-tabs {
  display: flex;
  gap: var(--s2, 8px);
  border-bottom: 2px solid var(--border, #e2e8f0);
  margin-bottom: var(--s6, 24px);
}
.portal-tab {
  flex: 1;
  padding: var(--s3, 12px) var(--s4, 16px);
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink-60, #64748b);
  cursor: pointer;
  transition: all 0.2s ease;
  margin-bottom: -2px;
}
.portal-tab:hover {
  color: var(--ink, #0f172a);
  background: var(--bg-gray, #f8fafc);
}
.portal-tab.active {
  color: var(--teal-dark, #0f4c81);
  border-bottom-color: var(--amber, #f59e0b);
  background: rgba(245, 158, 11, 0.05);
}
.portal-tab-content {
  display: none;
}
.portal-tab-content.active {
  display: block;
  animation: fadeIn 0.3s ease;
}
.portal-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s4, 16px);
}
.po-sucesso {
  padding: var(--s6, 24px);
  background: var(--bg-gray, #f8fafc);
  border-radius: var(--r-lg, 16px);
  border: 1px solid var(--border, #e2e8f0);
}
.po-num {
  font-family: 'Space Grotesk', monospace;
  font-size: 2rem;
  font-weight: 800;
  color: var(--teal-dark, #0f4c81);
  background: #e0f2fe;
  display: inline-block;
  padding: var(--s2, 8px) var(--s6, 24px);
  border-radius: var(--r-md, 12px);
  border: 2px dashed #0284c7;
  letter-spacing: 0.05em;
}
.po-box-info {
  background: #fff;
  padding: var(--s4, 16px);
  border-radius: var(--r-md, 12px);
  border: 1px solid var(--border, #e2e8f0);
  font-size: 0.92rem;
  color: var(--ink, #0f172a);
  margin-bottom: var(--s5, 20px);
}
.po-acoes-duplas {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s3, 12px);
}
.btn-wapo, .btn-empo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s2, 8px);
  padding: var(--s3, 12px) var(--s4, 16px);
  border-radius: var(--r-md, 12px);
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  text-align: center;
}
.btn-wapo {
  background: #25d366;
  color: #fff !important;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.25);
}
.btn-wapo:hover {
  background: #1ebc57;
  transform: translateY(-2px);
}
.btn-empo {
  background: var(--teal-dark, #0f4c81);
  color: #fff !important;
  box-shadow: 0 4px 12px rgba(15, 76, 129, 0.25);
}
.btn-empo:hover {
  background: #0a365c;
  transform: translateY(-2px);
}
.po-erro {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #f87171;
  padding: var(--s3, 12px) var(--s4, 16px);
  border-radius: var(--r-sm, 8px);
  font-size: 0.88rem;
  font-weight: 600;
}
.pt-resultado-box {
  background: var(--bg-gray, #f8fafc);
  padding: var(--s6, 24px);
  border-radius: var(--r-lg, 16px);
  border: 1px solid var(--border, #e2e8f0);
}
.pt-res-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: var(--s5, 20px);
  padding-bottom: var(--s4, 16px);
  border-bottom: 1px solid var(--border, #e2e8f0);
}
.pt-grid-dt {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s3, 12px) var(--s4, 16px);
}
.pt-grid-dt dt {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ink-40, #94a3b8);
  font-weight: 600;
}
.pt-grid-dt dd {
  font-size: 0.95rem;
  color: var(--ink, #0f172a);
  font-weight: 600;
  margin: 0;
}
.pt-timeline {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--s3, 12px);
}
.pt-timeline li {
  position: relative;
  padding-left: var(--s6, 24px);
  border-left: 2px solid var(--border, #cbd5e1);
  padding-bottom: var(--s2, 8px);
}
.pt-timeline li::before {
  content: '';
  position: absolute;
  left: -5px;
  top: 2px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal-dark, #0f4c81);
}
.tl-date {
  font-size: 0.75rem;
  color: var(--ink-40, #94a3b8);
}
.tl-label {
  font-size: 0.92rem;
}
.tl-obs {
  font-size: 0.85rem;
  color: var(--ink-60, #64748b);
  margin-top: 2px;
}
.pt-notify-box {
  background: #fff;
  padding: var(--s5, 20px);
  border-radius: var(--r-md, 12px);
  border: 1px solid var(--border, #e2e8f0);
  margin-top: var(--s6, 24px);
}
@media (max-width: 640px) {
  .portal-grid, .po-acoes-duplas, .pt-grid-dt {
    grid-template-columns: 1fr;
  }
  .portal-box {
    padding: var(--s5, 20px);
  }
  .portal-tabs {
    flex-direction: column;
  }
}

/* ── BARRA DE PROGRESSO VISUAL ESTILO MERCADO LIVRE / AMAZON ── */
.ml-tracker-box {
  background: #f8fafc;
  border: 1px solid #cbd5e1;
  border-radius: 12px;
  padding: 20px 16px;
  margin-bottom: 24px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}
.ml-tracker-title {
  font-size: 0.95rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.ml-stepper {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
  width: 100%;
}
.ml-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  z-index: 2;
  flex: 1;
  position: relative;
}
.ml-step-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #e2e8f0;
  color: #64748b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  border: 3px solid #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}
.ml-step-label {
  font-size: 0.75rem;
  color: #64748b;
  font-weight: 600;
  margin-top: 8px;
  line-height: 1.25;
}
.ml-step.active .ml-step-icon {
  background: #0099ff;
  color: #fff;
  transform: scale(1.15);
  box-shadow: 0 0 0 4px rgba(0,153,255,0.25);
  border-color: #0099ff;
}
.ml-step.active .ml-step-label {
  color: #0f172a;
  font-weight: 800;
}
.ml-step.completed .ml-step-icon {
  background: #10b981;
  color: #fff;
  border-color: #10b981;
}
.ml-step.completed .ml-step-label {
  color: #059669;
  font-weight: 700;
}
.ml-step-line {
  flex: 1;
  height: 4px;
  background: #e2e8f0;
  margin-top: 17px;
  z-index: 1;
  margin-left: -10px;
  margin-right: -10px;
  border-radius: 2px;
  transition: background 0.4s ease;
}
.ml-step-line.active {
  background: #10b981;
}
@media (max-width: 580px) {
  .ml-stepper {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding-left: 10px;
  }
  .ml-step {
    flex-direction: row;
    text-align: left;
    gap: 12px;
    width: 100%;
  }
  .ml-step-label {
    margin-top: 0;
    font-size: 0.85rem;
  }
  .ml-step-line {
    width: 4px;
    height: 20px;
    margin: -10px 0 -10px 17px;
  }
}

