@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Clash+Display:wght@500;600;700&display=swap');

/* ═══════════════════════════════════════════
   VARIABLES
═══════════════════════════════════════════ */
:root {
  --c:       #06b6d4;
  --c2:      #0891b2;
  --c3:      #22d3ee;
  --cg:      linear-gradient(135deg,#06b6d4,#0284c7,#6366f1);
  --cg2:     linear-gradient(135deg,#06b6d4,#22d3ee);
  --bg:      #ffffff;
  --bg2:     #f0f9ff;
  --bg3:     #e0f2fe;
  --dark:    #020617;
  --dark2:   #0f172a;
  --text:    #0f172a;
  --muted:   #64748b;
  --muted2:  #94a3b8;
  --border:  rgba(6,182,212,0.15);
  --bh:      rgba(6,182,212,0.4);
  --r:       14px;
  --r2:      20px;
  --r3:      28px;
  --sh:      0 4px 24px rgba(6,182,212,0.12);
  --sh2:     0 20px 60px rgba(6,182,212,0.2);
  --sh3:     0 2px 8px rgba(0,0,0,0.06);
}

/* ═══════════════════════════════════════════
   BASE
═══════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ═══════════════════════════════════════════
   MESH GRADIENT BACKGROUND
═══════════════════════════════════════════ */
.mesh-bg {
  position: fixed; inset: 0; z-index: -2; pointer-events: none;
  background:
    radial-gradient(ellipse 80% 50% at 20% -10%, rgba(6,182,212,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 10%,  rgba(99,102,241,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 10% 80%,  rgba(6,182,212,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 70% 50% at 90% 90%,  rgba(2,132,199,0.08) 0%, transparent 60%),
    #ffffff;
}
.mesh-bg::after {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Ccircle cx='30' cy='30' r='1' fill='%2306b6d4' opacity='0.08'/%3E%3C/svg%3E");
  background-size: 60px 60px;
}

/* ═══════════════════════════════════════════
   NAV
═══════════════════════════════════════════ */
#navbar {
  position: fixed; top: 16px; left: 50%; transform: translateX(-50%);
  z-index: 1000; width: calc(100% - 48px); max-width: 1200px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 24px; height: 60px;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.8);
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06), 0 0 0 1px rgba(6,182,212,0.08);
  transition: all .3s;
}
#navbar.scrolled {
  background: rgba(255,255,255,0.95);
  box-shadow: 0 8px 40px rgba(0,0,0,0.1), 0 0 0 1px rgba(6,182,212,0.12);
}

.nav-logo {
  font-family: 'Inter', sans-serif; font-size: 18px; font-weight: 700;
  color: var(--dark); display: flex; align-items: center; gap: 10px;
}
.logo-icon {
  width: 44px; height: 44px; border-radius: 8px;
  background: white;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 16px; font-weight: 900;
}

.nav-links { display: flex; gap: 2px; list-style: none; }
.nav-links a {
  font-size: 13px; font-weight: 500; color: var(--muted);
  padding: 6px 14px; border-radius: 10px; transition: all .2s;
}
.nav-links a:hover { color: var(--c2); background: rgba(6,182,212,0.08); }
.nav-links a.active { color: var(--c2); background: rgba(6,182,212,0.12); font-weight: 600; }

.nav-actions { display: flex; align-items: center; gap: 8px; }

.btn-nav-login {
  font-size: 13px; font-weight: 600; color: var(--muted);
  padding: 7px 16px; border: 1px solid rgba(0,0,0,0.1);
  border-radius: 10px; transition: all .2s;
}
.btn-nav-login:hover { color: var(--dark); border-color: rgba(0,0,0,0.2); background: rgba(0,0,0,0.03); }

.btn-nav-primary {
  font-size: 13px; font-weight: 600; color: #fff;
  background: var(--cg);
  padding: 8px 18px; border-radius: 10px;
  box-shadow: 0 4px 14px rgba(6,182,212,0.4);
  transition: all .25s;
}
.btn-nav-primary:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(6,182,212,0.5); }

/* user menu */
.nav-user-menu { position: relative; }
.nav-avatar-btn {
  display: flex; align-items: center; gap: 8px;
  background: none; border: 1px solid rgba(0,0,0,0.1);
  border-radius: 40px; padding: 4px 12px 4px 4px;
  cursor: pointer; transition: all .2s; font-family: 'Inter', sans-serif;
}
.nav-avatar-btn:hover { border-color: var(--c); background: rgba(6,182,212,0.04); }
.avatar-img { width: 30px; height: 30px; border-radius: 50%; object-fit: cover; }
.avatar-initials {
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--cg); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700;
}
.nav-user-name { font-size: 13px; font-weight: 600; }
.chevron { font-size: 11px; color: var(--muted2); transition: transform .3s; }
.nav-user-menu.open .chevron { transform: rotate(180deg); }
.user-dropdown {
  display: none; position: absolute; top: calc(100% + 10px); right: 0;
  background: rgba(255,255,255,0.98); backdrop-filter: blur(20px);
  border: 1px solid rgba(0,0,0,0.08); border-radius: 16px;
  min-width: 200px; box-shadow: 0 20px 60px rgba(0,0,0,0.12);
  overflow: hidden; animation: dropIn .18s ease;
}
.nav-user-menu.open .user-dropdown { display: block; }
.user-dropdown a { display: flex; align-items: center; gap: 8px; padding: 11px 16px; font-size: 13px; font-weight: 500; color: var(--text); transition: background .15s; }
.user-dropdown a:hover { background: rgba(6,182,212,0.06); }
.user-dropdown hr { border: none; border-top: 1px solid rgba(0,0,0,0.06); }
.admin-link { color: var(--c2)!important; font-weight: 600; }
.logout-link { color: #ef4444!important; }
@keyframes dropIn { from{opacity:0;transform:translateY(-6px)} to{opacity:1;transform:none} }

.nav-hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.nav-hamburger span { width: 22px; height: 2px; background: var(--dark); border-radius: 2px; transition: all .3s; }

/* ═══════════════════════════════════════════
   HERO
═══════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; text-align: center;
  padding: 120px 24px 80px;
  position: relative; overflow: hidden;
}

/* Orbs animados */
.hero-orb {
  position: absolute; border-radius: 50%; pointer-events: none;
  filter: blur(60px); opacity: 0.35;
  animation: orbFloat 12s ease-in-out infinite;
}
.orb-1 { width: 500px; height: 500px; background: radial-gradient(circle, rgba(6,182,212,0.5), transparent 70%); top: -100px; right: -100px; animation-delay: 0s; }
.orb-2 { width: 400px; height: 400px; background: radial-gradient(circle, rgba(99,102,241,0.3), transparent 70%); bottom: -80px; left: -80px; animation-delay: -4s; }
.orb-3 { width: 300px; height: 300px; background: radial-gradient(circle, rgba(6,182,212,0.25), transparent 70%); top: 40%; left: 5%; animation-delay: -8s; }
@keyframes orbFloat {
  0%,100% { transform: translate(0,0) scale(1); }
  33%      { transform: translate(30px,-20px) scale(1.04); }
  66%      { transform: translate(-15px,25px) scale(0.97); }
}

/* Grid de linhas hero */
.hero-grid {
  position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(rgba(6,182,212,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(6,182,212,0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 75% 65% at 50% 50%, black 30%, transparent 100%);
}

/* Badge */
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(6,182,212,0.07);
  border: 1px solid rgba(6,182,212,0.25);
  color: var(--c2); font-size: 12px; font-weight: 600; letter-spacing: 0.5px;
  padding: 6px 16px 6px 10px; border-radius: 100px; margin-bottom: 28px;
  animation: fadeUp .7s ease both;
}
.hero-badge-dot {
  width: 22px; height: 22px; border-radius: 50%;
  background: rgba(6,182,212,0.15);
  display: flex; align-items: center; justify-content: center;
}
.hero-badge-dot::after {
  content: ''; width: 8px; height: 8px; border-radius: 50%;
  background: var(--c); animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{transform:scale(1);opacity:1} 50%{transform:scale(1.3);opacity:0.7} }

/* Título hero */
.hero-title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(52px, 9vw, 112px);
  font-weight: 800; line-height: 0.92;
  letter-spacing: -4px; margin-bottom: 0;
  animation: fadeUp .7s .12s ease both;
}
.hero-title .t1 {
  display: block; color: var(--dark);
  background: linear-gradient(180deg, var(--dark) 0%, #334155 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-title .t2 {
  display: block;
  background: linear-gradient(90deg, #06b6d4 0%, #0284c7 40%, #6366f1 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  position: relative;
}

.hero-sub {
  font-size: 18px; font-weight: 400; color: var(--muted);
  max-width: 480px; margin: 28px auto 44px; line-height: 1.75;
  animation: fadeUp .7s .24s ease both;
}

.hero-btns {
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
  animation: fadeUp .7s .36s ease both;
}

/* Botões globais */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--cg);
  color: #fff; padding: 14px 32px; border-radius: 12px;
  font-size: 15px; font-weight: 600; letter-spacing: -0.2px;
  box-shadow: 0 6px 24px rgba(6,182,212,0.4), 0 1px 2px rgba(0,0,0,0.1);
  transition: all .25s; border: none; cursor: pointer; font-family: 'Inter', sans-serif;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(6,182,212,0.5); }
.btn-primary:active { transform: translateY(0); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.8); backdrop-filter: blur(10px);
  color: var(--text); padding: 14px 32px; border-radius: 12px;
  font-size: 15px; font-weight: 600;
  border: 1px solid rgba(0,0,0,0.12);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  transition: all .25s; font-family: 'Inter', sans-serif;
}
.btn-outline:hover { border-color: var(--c); color: var(--c2); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(6,182,212,0.15); }

/* Stats hero */
.hero-stats {
  display: flex; gap: 0; margin-top: 72px; flex-wrap: wrap; justify-content: center;
  animation: fadeUp .7s .48s ease both;
  background: rgba(255,255,255,0.7); backdrop-filter: blur(20px);
  border: 1px solid rgba(0,0,0,0.07); border-radius: 20px;
  padding: 28px 48px; gap: 0;
  box-shadow: var(--sh3);
}
.stat {
  text-align: center; padding: 0 36px;
  border-right: 1px solid rgba(0,0,0,0.07);
}
.stat:last-child { border-right: none; }
.stat-num {
  font-size: 36px; font-weight: 800; display: block; line-height: 1;
  background: var(--cg2);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.stat-label { font-size: 11px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--muted2); margin-top: 6px; display: block; }

@keyframes fadeUp { from{opacity:0;transform:translateY(28px)} to{opacity:1;transform:none} }

/* ═══════════════════════════════════════════
   SECTIONS
═══════════════════════════════════════════ */
section { padding: 100px 24px; }
.container { max-width: 1200px; margin: 0 auto; }

.section-head { text-align: center; margin-bottom: 64px; }
.section-tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 600; letter-spacing: 1px;
  text-transform: uppercase; color: var(--c2);
  background: rgba(6,182,212,0.07); border: 1px solid rgba(6,182,212,0.2);
  padding: 5px 14px; border-radius: 100px; margin-bottom: 16px;
}
.section-title {
  font-size: clamp(30px, 4vw, 48px); font-weight: 800;
  color: var(--dark); letter-spacing: -1.5px; line-height: 1.1;
}
.cyan {
  background: linear-gradient(90deg, #06b6d4, #0284c7);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.section-desc { font-size: 17px; color: var(--muted); max-width: 500px; margin: 16px auto 0; line-height: 1.8; }

/* ═══════════════════════════════════════════
   FEATURES
═══════════════════════════════════════════ */
#features { background: #fafbfc; }
.features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  max-width: 1100px; margin: 0 auto;
}
.feature-card {
  background: #fff; border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--r2); padding: 32px 28px;
  position: relative; overflow: hidden;
  transition: transform .3s cubic-bezier(.34,1.56,.64,1), box-shadow .3s;
  cursor: default;
}
.feature-card::before {
  content: ''; position: absolute; inset: 0; border-radius: var(--r2);
  background: linear-gradient(135deg, rgba(6,182,212,0.04) 0%, transparent 60%);
  opacity: 0; transition: opacity .3s;
}
.feature-card:hover { transform: translateY(-6px) scale(1.01); box-shadow: 0 20px 50px rgba(6,182,212,0.12), 0 4px 12px rgba(0,0,0,0.06); }
.feature-card:hover::before { opacity: 1; }

.feature-icon {
  width: 48px; height: 48px; border-radius: 12px; margin-bottom: 18px;
  background: linear-gradient(135deg, rgba(6,182,212,0.12), rgba(6,182,212,0.04));
  border: 1px solid rgba(6,182,212,0.15);
  display: flex; align-items: center; justify-content: center; font-size: 20px;
  transition: transform .3s;
}
.feature-card:hover .feature-icon { transform: scale(1.1) rotate(-5deg); }
.feature-card h3 { font-size: 16px; font-weight: 700; color: var(--dark); margin-bottom: 8px; letter-spacing: -0.3px; }
.feature-card p  { font-size: 14px; color: var(--muted); line-height: 1.75; }

/* ═══════════════════════════════════════════
   PLANOS — CARROSSEL
═══════════════════════════════════════════ */
/* ── Carrossel wrapper ── */
.plans-carousel-wrap {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 64px;
  position: relative;
  box-sizing: border-box;
}

.plans-carousel-row {
  width: 100%;
}

.plans-carousel {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.plans-track {
  display: flex;
  gap: 12px;
  will-change: transform;
  align-items: stretch;
}

/* ── Card base ── */
.plan-card {
  position: relative;
  border-radius: 20px;
  padding: 32px 28px 28px;
  background: #fff;
  border: 1px solid #e8f4fd;
  box-shadow: 0 8px 32px rgba(6,182,212,0.25);
  transition: box-shadow .3s ease, border-color .3s ease, transform .3s ease;
  cursor: default;
  overflow: hidden;
  flex: 0 0 calc(33.333% - 8px);
  width: calc(33.333% - 8px);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}

.plan-card .btn-plan { margin-top: auto; }

.plan-card:hover {
  box-shadow: 0 12px 40px rgba(6,182,212,0.12), 0 2px 8px rgba(0,0,0,0.04);
  border-color: rgba(6,182,212,0.25);
  transform: translateY(-4px);
}

/* ── Card destaque ── */
.plan-card.featured {
  background: #0f172a;
  border: 1px solid rgba(6,182,212,0.3);
  box-shadow: 0 16px 48px rgba(6,182,212,0.15), 0 4px 16px rgba(0,0,0,0.2);
}
.plan-card.featured:hover {
  box-shadow: 0 24px 64px rgba(6,182,212,0.22), 0 4px 16px rgba(0,0,0,0.25);
  border-color: rgba(6,182,212,0.5);
  transform: translateY(-6px);
}
.plan-card.featured::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent 5%, #06b6d4 40%, #22d3ee 60%, transparent 95%);
}
.plan-card.featured .plan-name { color: #f1f5f9; }
.plan-card.featured .plan-desc { color: #64748b; }
.plan-card.featured .plan-price-label { color: #475569; }
.plan-card.featured .plan-price-period { color: #475569; }
.plan-card.featured .plan-features li { color: #cbd5e1; border-bottom-color: rgba(255,255,255,0.05); }
.plan-card.featured .plan-price-block {
  background: rgba(6,182,212,0.08);
  border-color: rgba(6,182,212,0.18);
}

/* ── Badge ── */
.plan-badge {
  position: absolute; top: 18px; right: 18px;
  background: linear-gradient(135deg, #06b6d4, #0284c7);
  color: #fff; font-size: 9px; font-weight: 800;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
}

/* ── Header ── */
.plan-header {
  display: flex; align-items: flex-start;
  gap: 14px; margin-bottom: 22px;
}
.plan-icon-wrap {
  width: 48px; height: 48px;
  border-radius: 13px; flex-shrink: 0;
  display: flex; align-items: center;
  justify-content: center; font-size: 20px;
  background: rgba(6,182,212,0.08);
  border: 1px solid rgba(6,182,212,0.15);
  transition: transform .3s ease;
}
.plan-card:hover .plan-icon-wrap { transform: scale(1.08); }
.plan-card.featured .plan-icon-wrap {
  background: rgba(6,182,212,0.15);
  border-color: rgba(6,182,212,0.3);
}
.plan-header-text { flex: 1; padding-top: 2px; }
.plan-name {
  font-size: 18px; font-weight: 700;
  color: #0f172a; letter-spacing: -0.4px; line-height: 1.2;
}
.plan-desc {
  font-size: 12.5px; color: #94a3b8;
  margin-top: 4px; line-height: 1.5;
}

/* ── Preço ── */
.plan-price-block {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 16px 20px;
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.plan-price-left {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}
.plan-price-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #94a3b8;
}
.plan-price-range {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -1px;
  color: #06b6d4;
  white-space: nowrap;
}
.plan-card.featured .plan-price-range { color: #22d3ee; }
.plan-price-range sup {
  font-size: 13px;
  vertical-align: super;
}
.plan-price-sep {
  color: #cbd5e1;
  font-weight: 400;
  margin: 0 8px;
}

/* ── Features ── */
.plan-features { list-style: none; margin-bottom: 26px; flex: 1; }
.plan-features li {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 0; font-size: 13px; font-weight: 500;
  color: #334155;
  border-bottom: 1px solid rgba(0,0,0,0.04);
}
.plan-features li:last-child { border-bottom: none; }
.plan-features li .check {
  width: 20px; height: 20px;
  border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, #06b6d4, #0284c7);
  display: flex; align-items: center; justify-content: center;
}
.plan-features li .check::after {
  content: '';
  width: 9px; height: 5px;
  border-left: 1.8px solid #fff; border-bottom: 1.8px solid #fff;
  transform: rotate(-45deg) translateY(-1px);
  display: block;
}

/* ── Botão ── */
.btn-plan {
  display: block; width: 100%; text-align: center;
  padding: 13px; border-radius: 12px;
  font-size: 13.5px; font-weight: 600; letter-spacing: 0.1px;
  transition: all .22s ease;
  cursor: pointer; border: none;
  font-family: 'Inter', sans-serif;
}
.btn-plan-primary {
  background: linear-gradient(135deg, #06b6d4, #0284c7);
  color: #fff;
  box-shadow: 0 4px 16px rgba(6,182,212,0.35);
}
.btn-plan-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(6,182,212,0.45);
}
.btn-plan-outline {
  background: transparent;
  border: 1.5px solid rgba(6,182,212,0.25) !important;
  color: #0891b2;
}
.btn-plan-outline:hover {
  background: rgba(6,182,212,0.05);
  border-color: rgba(6,182,212,0.4) !important;
  transform: translateY(-2px);
}

/* ── Setas laterais — posicionadas nas bordas do wrap ── */
.carousel-side-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(6,182,212,0.2);
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #0891b2;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .22s ease;
  box-shadow: 0 4px 20px rgba(6,182,212,0.15), 0 1px 4px rgba(0,0,0,0.08);
}
.carousel-prev { left: 8px; }
.carousel-next { right: 8px; }
.carousel-side-btn:hover:not(:disabled) {
  background: #06b6d4;
  border-color: #06b6d4;
  color: #fff;
  box-shadow: 0 8px 28px rgba(6,182,212,0.45);
  transform: translateY(-50%) scale(1.08);
}
.carousel-side-btn:disabled {
  opacity: .25;
  cursor: default;
  box-shadow: none;
}

/* ── Dots ── */
.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}
.carousel-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #cbd5e1;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all .3s ease;
}
.carousel-dot.active {
  background: #06b6d4;
  width: 22px;
  border-radius: 4px;
}


/* ── CTA orçamento ── */
.quote-cta {
  padding: 48px;
  background: #0f172a;
  border-radius: 20px; text-align: center;
  position: relative; overflow: hidden;
  border: 1px solid rgba(6,182,212,0.15);
}
.quote-cta::before {
  content: ''; position: absolute;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(6,182,212,0.1), transparent 70%);
  top: -150px; right: -100px; pointer-events: none;
}
.quote-cta h3 { font-size: 24px; font-weight: 700; color: #f1f5f9; letter-spacing: -0.4px; margin-bottom: 8px; }
.quote-cta p { color: #64748b; font-size: 15px; margin-bottom: 24px; }
.btn-whatsapp {
  display: inline-flex; align-items: center; gap: 8px;
  background: #25d366; color: #fff; padding: 13px 28px; border-radius: 11px;
  font-size: 14px; font-weight: 700;
  box-shadow: 0 4px 16px rgba(37,211,102,0.35);
  transition: all .22s;
}
.btn-whatsapp:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,0.45); }

/* ═══════════════════════════════════════════
   FAQ
═══════════════════════════════════════════ */
#duvidas { background: #fafbfc; }
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item {
  background: #fff; border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--r); margin-bottom: 10px; overflow: hidden;
  transition: border-color .25s, box-shadow .25s;
}
.faq-item.open { border-color: rgba(6,182,212,0.35); box-shadow: 0 4px 20px rgba(6,182,212,0.08); }
.faq-q {
  width: 100%; background: none; border: none;
  padding: 20px 22px; font-size: 15px; font-weight: 600;
  color: var(--dark); text-align: left; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  font-family: 'Inter', sans-serif; transition: color .2s;
}
.faq-q:hover { color: var(--c2); }
.faq-arrow {
  width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0;
  background: rgba(6,182,212,0.08); border: 1px solid rgba(6,182,212,0.15);
  display: flex; align-items: center; justify-content: center;
  color: var(--c); font-size: 16px; transition: transform .3s, background .2s;
}
.faq-item.open .faq-arrow { transform: rotate(45deg); background: rgba(6,182,212,0.15); }
.faq-a {
  max-height: 0; overflow: hidden; padding: 0 22px;
  font-size: 15px; color: var(--muted); line-height: 1.8;
  transition: max-height .4s ease, padding .3s;
}
.faq-item.open .faq-a { max-height: 300px; padding: 0 22px 20px; }

/* ═══════════════════════════════════════════
   LOGIN / REGISTER
═══════════════════════════════════════════ */
.auth-wrap {
  min-height: 100vh; display: grid; grid-template-columns: 1fr 1fr;
  position: relative; overflow: hidden;
}
.auth-left {
  background: linear-gradient(145deg, var(--dark2) 0%, #0f2744 100%);
  display: flex; flex-direction: column; justify-content: center; padding: 80px 60px;
  position: relative; overflow: hidden;
}
.auth-left::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 30% 30%, rgba(6,182,212,0.2), transparent),
    radial-gradient(ellipse 50% 60% at 80% 80%, rgba(99,102,241,0.15), transparent);
}
.auth-left-content { position: relative; z-index: 1; }
.auth-left h2 { font-size: 40px; font-weight: 800; color: #fff; letter-spacing: -1.5px; line-height: 1.1; margin-bottom: 16px; }
.auth-left p  { font-size: 16px; color: #94a3b8; line-height: 1.75; margin-bottom: 40px; }
.auth-left-features { display: flex; flex-direction: column; gap: 16px; }
.auth-feat {
  display: flex; align-items: center; gap: 12px;
  font-size: 14px; font-weight: 500; color: #cbd5e1;
}
.auth-feat-icon {
  width: 36px; height: 36px; border-radius: 10px;
  background: rgba(6,182,212,0.15); border: 1px solid rgba(6,182,212,0.25);
  display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0;
}

.auth-right {
  display: flex; align-items: center; justify-content: center;
  padding: 80px 60px; background: #fff;
}
.auth-card {
  width: 100%; max-width: 420px;
  animation: fadeUp .6s ease both;
}
.auth-logo { display: flex; align-items: center; gap: 8px; font-size: 17px; font-weight: 700; color: var(--dark); margin-bottom: 36px; }
.auth-title { font-size: 26px; font-weight: 800; color: var(--dark); letter-spacing: -0.8px; margin-bottom: 6px; }
.auth-sub   { font-size: 15px; color: var(--muted); margin-bottom: 32px; }
.auth-tabs {
  display: flex; background: rgba(0,0,0,0.04); border-radius: 10px;
  padding: 4px; margin-bottom: 28px; gap: 4px;
}
.auth-tab {
  flex: 1; text-align: center; padding: 9px; border-radius: 8px;
  font-size: 14px; font-weight: 600; cursor: pointer; transition: all .2s;
  color: var(--muted); border: none; background: none; font-family: 'Inter', sans-serif;
}
.auth-tab.active { background: #fff; color: var(--dark); box-shadow: 0 2px 8px rgba(0,0,0,0.1); }

/* inputs */
.input-group { margin-bottom: 16px; }
.input-label { display: block; font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 7px; }
.input-wrap { position: relative; }
.input-wrap input {
  width: 100%; padding: 12px 16px; border: 1.5px solid rgba(0,0,0,0.1);
  border-radius: 11px; font-size: 15px; font-family: 'Inter', sans-serif;
  color: var(--dark); background: #fff; transition: all .2s; outline: none;
}
.input-wrap input:focus { border-color: var(--c); box-shadow: 0 0 0 3px rgba(6,182,212,0.1); }
.input-wrap input::placeholder { color: var(--muted2); }

/* Separador */
.auth-sep {
  display: flex; align-items: center; gap: 12px; margin: 20px 0;
  font-size: 13px; color: var(--muted2); font-weight: 500;
}
.auth-sep::before,.auth-sep::after { content:''; flex:1; height:1px; background: rgba(0,0,0,0.08); }

/* Google btn */
.btn-google {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%; padding: 13px; border-radius: 11px;
  font-size: 14px; font-weight: 600; font-family: 'Inter', sans-serif;
  border: 1.5px solid rgba(0,0,0,0.1); background: #fff;
  color: var(--text); cursor: pointer; transition: all .25s;
}
.btn-google:hover { border-color: rgba(0,0,0,0.2); box-shadow: 0 4px 16px rgba(0,0,0,0.08); transform: translateY(-1px); }
.google-icon { width: 18px; height: 18px; flex-shrink: 0; }

.auth-switch { text-align: center; margin-top: 20px; font-size: 14px; color: var(--muted); }
.auth-switch a { color: var(--c2); font-weight: 600; }
.auth-switch a:hover { text-decoration: underline; }
.auth-note { font-size: 12px; color: var(--muted2); text-align: center; margin-top: 20px; line-height: 1.6; }
.auth-note a { color: var(--c2); }
.auth-error { background: rgba(239,68,68,0.07); border: 1px solid rgba(239,68,68,0.2); color: #dc2626; padding: 12px 16px; border-radius: 10px; font-size: 13px; font-weight: 500; margin-bottom: 16px; }
.auth-success { background: rgba(16,185,129,0.07); border: 1px solid rgba(16,185,129,0.2); color: #059669; padding: 12px 16px; border-radius: 10px; font-size: 13px; font-weight: 500; margin-bottom: 16px; }

/* ═══════════════════════════════════════════
   DASHBOARD
═══════════════════════════════════════════ */
.page-wrap { padding-top: 88px; min-height: 100vh; }
.dash-header { padding: 40px 24px; background: #fff; border-bottom: 1px solid rgba(0,0,0,0.06); }
.dash-header-inner { max-width: 1200px; margin: 0 auto; }
.dash-header h1 { font-size: 26px; font-weight: 800; color: var(--dark); letter-spacing: -0.8px; }
.dash-header p  { color: var(--muted); margin-top: 4px; }
.dash-body { padding: 32px 24px; max-width: 1200px; margin: 0 auto; }
.dash-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px,1fr)); gap: 16px; margin-bottom: 32px; }
.dash-card {
  background: #fff; border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--r2); padding: 24px; transition: box-shadow .2s;
}
.dash-card:hover { box-shadow: var(--sh); }
.dash-card-label { font-size: 12px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--muted2); }
.dash-card-value { font-size: 30px; font-weight: 800; margin-top: 8px; background: var(--cg2); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* ═══════════════════════════════════════════
   ADMIN
═══════════════════════════════════════════ */
.admin-layout { display: flex; padding-top: 88px; min-height: 100vh; }
.admin-sidebar {
  width: 240px; flex-shrink: 0; position: fixed; top: 88px; bottom: 0; left: 0;
  background: var(--dark2); border-right: 1px solid rgba(255,255,255,0.06);
  padding: 24px 0; overflow-y: auto;
}
.admin-sidebar-title { font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: #475569; padding: 0 20px; margin-bottom: 8px; margin-top: 20px; }
.admin-sidebar a {
  display: flex; align-items: center; gap: 8px; padding: 10px 20px;
  font-size: 13px; font-weight: 500; color: #64748b; transition: all .2s;
  border-left: 2px solid transparent;
}
.admin-sidebar a:hover, .admin-sidebar a.active { color: #e2e8f0; background: rgba(255,255,255,0.05); border-left-color: var(--c); }
.admin-main { margin-left: 240px; flex: 1; padding: 36px 32px; }
.admin-main h1 { font-size: 22px; font-weight: 800; color: var(--dark); margin-bottom: 28px; letter-spacing: -0.5px; }
.admin-table { width: 100%; border-collapse: collapse; background: #fff; border-radius: var(--r2); overflow: hidden; border: 1px solid rgba(0,0,0,0.06); }
.admin-table th { background: #f8fafc; padding: 12px 16px; font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--muted2); text-align: left; border-bottom: 1px solid rgba(0,0,0,0.06); }
.admin-table td { padding: 14px 16px; font-size: 14px; color: var(--text); border-top: 1px solid rgba(0,0,0,0.04); }
.admin-table tr:hover td { background: rgba(6,182,212,0.03); }
.badge { display: inline-block; padding: 3px 10px; border-radius: 100px; font-size: 11px; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; }
.badge-admin { background: rgba(6,182,212,0.1); color: var(--c2); }
.badge-user  { background: rgba(0,0,0,0.06); color: var(--muted); }

/* ═══════════════════════════════════════════
   ABOUT / FORMS / FOOTER
═══════════════════════════════════════════ */
.about-hero { padding: 140px 24px 80px; text-align: center; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; max-width: 1100px; margin: 0 auto; align-items: center; }
.about-circle {
  width: 260px; height: 260px; border-radius: 50%;
  background: linear-gradient(135deg, rgba(6,182,212,0.08), rgba(6,182,212,0.02));
  border: 1.5px solid rgba(6,182,212,0.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 64px; color: var(--c); font-weight: 800;
  animation: floatY 5s ease-in-out infinite; position: relative;
}
.about-circle::before { content:''; position:absolute; width:320px; height:320px; border-radius:50%; border:1px dashed rgba(6,182,212,0.18); animation:spin 20s linear infinite; }
@keyframes floatY { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-14px)} }
@keyframes spin    { to{transform:rotate(360deg)} }
.about-text h2 { font-size: 30px; font-weight: 800; color: var(--dark); margin-bottom: 18px; letter-spacing: -0.8px; }
.about-text p  { font-size: 16px; color: var(--muted); line-height: 1.9; margin-bottom: 16px; }

.form-group { margin-bottom: 14px; }
.form-group label { display: block; font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.8px; color: var(--muted); margin-bottom: 6px; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 11px 14px; border: 1.5px solid rgba(0,0,0,0.1); border-radius: 10px;
  font-size: 14px; font-family: 'Inter', sans-serif; color: var(--dark); background: #fff; transition: all .2s;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { outline: none; border-color: var(--c); box-shadow: 0 0 0 3px rgba(6,182,212,0.1); }

.flash { padding: 12px 18px; border-radius: 10px; margin-bottom: 18px; font-size: 14px; font-weight: 600; }
.flash-error   { background: rgba(239,68,68,0.07); border: 1px solid rgba(239,68,68,0.2); color: #dc2626; }
.flash-success { background: rgba(16,185,129,0.07); border: 1px solid rgba(16,185,129,0.2); color: #059669; }

footer {
  background: var(--dark2); color: #64748b;
  padding: 72px 24px 0; border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; max-width: 1200px; margin: 0 auto 56px; }
.footer-nav h4 { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--c); margin-bottom: 16px; }
.footer-nav a { display: block; font-size: 14px; color: #64748b; margin-bottom: 10px; transition: color .2s; }
.footer-nav a:hover { color: #e2e8f0; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.05); padding: 20px 0; text-align: center; max-width: 1200px; margin: 0 auto; font-size: 13px; color: #475569; }

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .plan-card { flex: 0 0 calc(50% - 6px); width: calc(50% - 6px); }
  .features-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 900px) {
  #navbar { top:0; border-radius: 0; width: 100%; max-width: none; left: 0; transform: none; }
  .nav-links,.nav-actions { display: none; }
  .nav-hamburger { display: flex; }
  .nav-links.mobile-open {
    display: flex; flex-direction: column;
    position: fixed; top: 60px; left: 0; right: 0;
    background: rgba(255,255,255,0.98); backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0,0,0,0.08);
    padding: 16px 24px; gap: 2px; z-index: 999;
  }
  .nav-links.mobile-open a { padding: 12px 16px; font-size: 15px; }
  .nav-actions.mobile-open {
    display: flex; flex-direction: column;
    position: fixed; left: 0; right: 0;
    background: rgba(255,255,255,0.98); backdrop-filter: blur(20px);
    padding: 12px 24px 20px; z-index: 998;
  }
  .page-wrap { padding-top: 60px; }
  .admin-layout { padding-top: 60px; }
  .auth-wrap { grid-template-columns: 1fr; }
  .auth-left { display: none; }
  .auth-right { padding: 40px 24px; }
  .about-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .admin-sidebar { display: none; }
  .admin-main { margin-left: 0; padding: 24px; }
}
@media (max-width: 700px) {
  .plan-card { flex: 0 0 100%; width: 100%; }
  .features-grid { grid-template-columns: 1fr; }
  .carousel-side-btn { width: 38px; height: 38px; }
  .plans-carousel-wrap { padding: 0 50px; }
  .hero-stats { flex-direction: column; padding: 20px 28px; gap: 16px; }
  .stat { border-right: none!important; border-bottom: 1px solid rgba(0,0,0,0.07); padding: 12px 0; }
  .stat:last-child { border-bottom: none; }
  .footer-inner { grid-template-columns: 1fr; }
  .quote-cta { padding: 32px 24px; }
}

/* ═══════════════════════════════════════════
   HERO — SERVICES BAR (replace stats)
═══════════════════════════════════════════ */
.hero-services {
  display: flex; align-items: center; gap: 0;
  margin-top: 64px; flex-wrap: wrap; justify-content: center;
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.9);
  border-radius: 20px; padding: 18px 36px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  animation: fadeUp .7s .48s ease both;
}
.hero-service-item {
  display: flex; align-items: center; gap: 10px;
  padding: 6px 28px; font-size: 14px; font-weight: 600; color: var(--dark);
  white-space: nowrap;
}
.hero-service-icon { font-size: 20px; }
.hero-service-sep {
  width: 1px; height: 32px; background: rgba(0,0,0,0.08); flex-shrink: 0;
}

/* ═══════════════════════════════════════════
   PROCESS STEPS
═══════════════════════════════════════════ */
.process-steps {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 20px;
  max-width: 1100px; margin: 0 auto; position: relative;
}
.process-steps::before {
  content: ''; position: absolute;
  top: 40px; left: calc(12.5% + 24px); right: calc(12.5% + 24px);
  height: 2px;
  background: linear-gradient(90deg, var(--c) 0%, rgba(6,182,212,0.1) 100%);
  z-index: 0;
}
.process-step {
  text-align: center; padding: 32px 20px;
  background: #fff; border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--r2); position: relative; z-index: 1;
  transition: transform .3s, box-shadow .3s;
}
.process-step:hover { transform: translateY(-5px); box-shadow: var(--sh); }
.process-num {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--cg); color: #fff;
  width: 28px; height: 28px; border-radius: 50%;
  font-size: 12px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(6,182,212,0.4);
}
.process-icon { font-size: 32px; margin-bottom: 14px; display: block; }
.process-step h3 { font-size: 15px; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.process-step p  { font-size: 13px; color: var(--muted); line-height: 1.7; }

/* ═══════════════════════════════════════════
   NAVBAR — força fixed no topo
═══════════════════════════════════════════ */
#navbar {
  position: fixed !important;
  top: 16px !important;
}
/* Compensa altura no scroll */
.hero { padding-top: 140px; }
.page-wrap { padding-top: 100px; }
.admin-layout { padding-top: 100px; }
.admin-sidebar { top: 100px; }
.auth-wrap { padding-top: 0; }

/* ═══════════════════════════════════════════
   DASHBOARD — PLAN ACTIVE BLOCK
═══════════════════════════════════════════ */
.dash-plan-active {
  background: #fff; border: 1.5px solid rgba(6,182,212,0.25);
  border-radius: var(--r3); padding: 32px 36px; margin-bottom: 24px;
  position: relative; overflow: hidden;
}
.dash-plan-active::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, #06b6d4, #0284c7, #6366f1);
}
.dash-plan-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(5,150,105,0.1); border: 1px solid rgba(5,150,105,0.25);
  color: #059669; font-size: 12px; font-weight: 700; letter-spacing: 0.5px;
  padding: 4px 14px; border-radius: 100px; margin-bottom: 20px;
}
.dash-plan-info {
  display: grid; grid-template-columns: 1fr auto; gap: 24px;
  align-items: start; margin-bottom: 8px;
}
.dash-plan-label { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted2); margin-bottom: 6px; }
.dash-plan-name  { font-size: 22px; font-weight: 800; color: var(--dark); letter-spacing: -0.5px; }
.dash-plan-desc  { font-size: 14px; color: var(--muted); margin-top: 4px; }
.dash-plan-note {
  background: rgba(6,182,212,0.05); border: 1px solid rgba(6,182,212,0.15);
  border-radius: 10px; padding: 14px 18px; font-size: 14px; color: var(--muted);
  line-height: 1.7; margin-top: 16px;
}
.dash-plan-status-wrap { text-align: right; }
.dash-status-pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 18px; border-radius: 100px; font-size: 13px; font-weight: 700;
}
.dash-status-em_andamento { background: rgba(8,145,178,0.1); color: #0891b2; }
.dash-status-concluido { background: rgba(5,150,105,0.1); color: #059669; }
.dash-status-aguardando_aprovacao { background: rgba(217,119,6,0.1); color: #d97706; }
.dash-status-aguardando_pagamento { background: rgba(124,58,237,0.1); color: #7c3aed; }
.dash-status-em_revisao { background: rgba(8,145,178,0.1); color: #0891b2; }

/* ═══════════════════════════════════════════
   DASHBOARD — NO PLAN BLOCK
═══════════════════════════════════════════ */
.dash-no-plan {
  background: linear-gradient(135deg, #f0fdff, #fff);
  border: 1.5px solid rgba(6,182,212,0.2);
  border-radius: var(--r3); padding: 36px;
  margin-bottom: 24px;
}
.dash-no-plan-left {
  display: flex; align-items: flex-start; gap: 20px; margin-bottom: 28px;
}
.dash-no-plan-icon {
  font-size: 40px; line-height: 1;
  width: 64px; height: 64px; border-radius: 16px;
  background: rgba(6,182,212,0.1); border: 1px solid rgba(6,182,212,0.2);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.dash-no-plan-left h3 { font-size: 20px; font-weight: 800; color: var(--dark); letter-spacing: -0.5px; margin-bottom: 8px; }
.dash-no-plan-left p  { font-size: 15px; color: var(--muted); line-height: 1.7; }
.dash-no-plan-steps {
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
  padding-top: 24px; border-top: 1px solid rgba(0,0,0,0.06);
}
.dash-mini-step {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; color: var(--dark);
}
.dash-mini-step span {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--cg); color: #fff;
  font-size: 11px; font-weight: 800;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.dash-mini-arrow { color: var(--muted2); font-size: 16px; }

/* ═══════════════════════════════════════════
   DASHBOARD — GRID INFERIOR
═══════════════════════════════════════════ */
.dash-grid-2 {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
}
.dash-card-block {
  background: #fff; border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--r2); padding: 28px;
}
.dash-block-title {
  font-size: 16px; font-weight: 800; color: var(--dark);
  letter-spacing: -0.3px; margin-bottom: 20px;
}
.dash-service-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 0; border-bottom: 1px solid rgba(0,0,0,0.04);
}
.dash-service-row:last-child { border-bottom: none; }
.dash-account-rows { display: flex; flex-direction: column; gap: 0; }
.dash-account-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 11px 0; border-bottom: 1px solid rgba(0,0,0,0.04);
  font-size: 14px; color: var(--muted);
}
.dash-account-row:last-child { border-bottom: none; }
.dash-account-row strong { color: var(--dark); font-weight: 600; }
.dash-process-list { display: flex; flex-direction: column; gap: 16px; }
.dash-process-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 16px; background: #fafbfc; border-radius: 12px;
}
.dash-process-icon {
  font-size: 22px; width: 44px; height: 44px; border-radius: 12px;
  background: rgba(6,182,212,0.08); border: 1px solid rgba(6,182,212,0.15);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}

/* ═══════════════════════════════════════════
   RESPONSIVE UPDATES
═══════════════════════════════════════════ */
@media (max-width: 900px) {
  #navbar { top: 0 !important; border-radius: 0; width: 100%; max-width: none; left: 0; transform: none; }
  .hero { padding-top: 100px; }
  .page-wrap, .admin-layout { padding-top: 80px; }
  .hero-services { padding: 16px 20px; }
  .hero-service-item { padding: 6px 16px; font-size: 13px; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .process-steps::before { display: none; }
  .dash-plan-info { grid-template-columns: 1fr; }
  .dash-plan-status-wrap { text-align: left; }
  .dash-grid-2 { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .hero-services { flex-direction: column; gap: 8px; }
  .hero-service-sep { width: 60px; height: 1px; }
  .process-steps { grid-template-columns: 1fr; }
  .dash-no-plan-left { flex-direction: column; }
  .dash-no-plan-steps { flex-direction: column; align-items: flex-start; }
  .dash-mini-arrow { transform: rotate(90deg); }
}


/* ═══════════════════════════════════════════
   PAGE TRANSITION — FADE SUAVE
═══════════════════════════════════════════ */

#page-transition {
  position: fixed;
  inset: 0;
  z-index: 99999;
  pointer-events: none;
  background: #fff;
  opacity: 0;
  transition: opacity 0s;
}
#page-transition.sweep-in {
  opacity: 1;
  pointer-events: all;
  transition: opacity .18s ease;
}
#page-transition.sweep-out {
  opacity: 0;
  transition: opacity .28s ease;
}

/* Fade-in da página ao carregar */
body { animation: page-fadein .3s ease both; }
@keyframes page-fadein {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ═══════════════════════════════════════════
   PLANS — Melhorias de conversão (VelkonLabs v2)
═══════════════════════════════════════════ */

/* Hint de comparação acima dos cards */
.plan-compare-hint {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: linear-gradient(135deg, rgba(6,182,212,0.07), rgba(99,102,241,0.05));
  border: 1px solid rgba(6,182,212,0.2);
  border-radius: 14px;
  padding: 16px 20px;
  font-size: 13.5px;
  color: #334155;
  line-height: 1.55;
}
.compare-icon { font-size: 20px; flex-shrink: 0; margin-top: 1px; }
.plan-compare-hint strong { color: #0891b2; }

/* Badges extras (entrada / automação) */
.plan-badge-entry {
  background: linear-gradient(135deg, #64748b, #475569) !important;
}
.plan-badge-auto {
  background: linear-gradient(135deg, #10b981, #059669) !important;
}

/* ROI tag dentro do bloco de preço */
.plan-roi-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #22d3ee;
  background: rgba(6,182,212,0.12);
  border: 1px solid rgba(6,182,212,0.2);
  border-radius: 100px;
  padding: 4px 10px;
  white-space: nowrap;
  align-self: flex-end;
}

/* Nota de limitação (plano entrada) */
.plan-limit-note {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 11.5px;
  color: #94a3b8;
  background: rgba(0,0,0,0.03);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 8px;
  padding: 8px 12px;
  margin-bottom: 16px;
  line-height: 1.4;
}
.plan-limit-icon {
  font-size: 13px;
  color: #cbd5e1;
  flex-shrink: 0;
}

/* Featured card — destaque ainda mais forte */
.plan-card.featured {
  box-shadow: 0 20px 60px rgba(6,182,212,0.22), 0 0 0 1px rgba(6,182,212,0.3), 0 4px 16px rgba(0,0,0,0.2) !important;
  transform: translateY(-6px);
}
.plan-card.featured:hover {
  transform: translateY(-10px) !important;
}

/* CTA primário — mais chamativo para o plano destaque */
.btn-plan-primary {
  font-size: 14px !important;
  padding: 15px !important;
  letter-spacing: 0.2px;
}
