:root {
  --bg: #0b0b0d;
  --bg-2: #111114;
  --bg-3: #17171c;
  --line: #23232b;
  --fg: #f5f5f7;
  --muted: #a4a4ad;
  --red: #e51c25;
  --red-2: #ff2d36;
  --radius: 14px;
  --maxw: 1180px;
  --shadow: 0 20px 60px rgba(0,0,0,.45);
  --shadow-sm: 0 6px 18px rgba(0,0,0,.35);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--red-2); }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 22px; border-radius: 999px; font-weight: 700;
  font-size: 15px; transition: transform .15s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
  border: 1px solid transparent; cursor: pointer; line-height: 1;
}
.btn-sm { padding: 9px 16px; font-size: 14px; }
.btn-lg { padding: 16px 28px; font-size: 17px; }
.btn-primary {
  background: linear-gradient(180deg, var(--red-2), var(--red));
  color: #fff; box-shadow: 0 10px 30px rgba(229,28,37,.35);
}
.btn-primary:hover { transform: translateY(-2px); color: #fff; box-shadow: 0 14px 36px rgba(229,28,37,.5); }
.btn-ghost {
  background: rgba(255,255,255,.04); color: var(--fg);
  border-color: rgba(255,255,255,.12);
}
.btn-ghost:hover { background: rgba(255,255,255,.08); color: #fff; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(11,11,13,.85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; padding: 14px 22px; gap: 16px; }
.brand img { height: 42px; width: auto; }
.nav-links { display: flex; gap: 22px; }
.nav-links a { color: var(--muted); font-weight: 500; font-size: 14.5px; }
.nav-links a:hover { color: #fff; }
@media (max-width: 820px) { .nav-links { display: none; } }

/* Hero */
.hero { position: relative; padding: 70px 0 80px; overflow: hidden; }
.hero-bg {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(700px 360px at 80% 20%, rgba(229,28,37,.25), transparent 60%),
    radial-gradient(900px 500px at 10% 90%, rgba(229,28,37,.10), transparent 60%),
    linear-gradient(180deg, #0b0b0d 0%, #0b0b0d 60%, #111114 100%);
}
.hero-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center;
}
@media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; gap: 36px; } }

.tag {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 14px; border-radius: 999px;
  background: rgba(229,28,37,.12); color: #ffb1b5;
  font-size: 13px; font-weight: 600; letter-spacing: .3px;
  border: 1px solid rgba(229,28,37,.35);
}
.dot { width: 8px; height: 8px; background: var(--red-2); border-radius: 50%; box-shadow: 0 0 0 4px rgba(229,28,37,.25); }

.hero h1 {
  font-size: clamp(34px, 5vw, 56px); line-height: 1.05; margin: 18px 0 14px;
  letter-spacing: -.02em; font-weight: 800;
}
.hero h1 .accent { color: var(--red-2); }
.hero .lead { color: var(--muted); font-size: 18px; max-width: 560px; }
.hero-list { list-style: none; padding: 0; margin: 22px 0 28px; display: grid; gap: 10px; }
.hero-list li { display: flex; gap: 10px; align-items: center; color: #d8d8df; font-size: 15.5px; }
.check {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px; border-radius: 50%;
  background: rgba(229,28,37,.18); color: var(--red-2); font-size: 12px; font-weight: 800;
}
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }

/* Hero card / device mock */
.hero-card { position: relative; display: flex; align-items: center; justify-content: center; }
.device {
  width: 100%; max-width: 460px; aspect-ratio: 16 / 10;
  background: linear-gradient(160deg, #1a1a22, #0e0e12);
  border: 1px solid var(--line); border-radius: 22px; padding: 14px;
  box-shadow: var(--shadow);
  position: relative;
}
.device::before, .device::after {
  content:""; position:absolute; width: 10px; height: 30px; background:#222; border-radius: 4px;
  top: 50%; transform: translateY(-50%);
}
.device::before { left: -6px; }
.device::after { right: -6px; }
.device-screen {
  width:100%; height:100%; border-radius: 14px; overflow: hidden;
  background:
    radial-gradient(500px 200px at 30% 0%, rgba(229,28,37,.18), transparent 70%),
    linear-gradient(180deg, #0e0e14, #06060a);
  display:flex; flex-direction:column;
}
.screen-grid {
  flex:1; display:grid; grid-template-columns: repeat(3, 1fr); gap: 10px; padding: 16px;
}
.app {
  display:flex; flex-direction:column; align-items:center; justify-content:center; gap:6px;
  background: rgba(255,255,255,.04); border:1px solid rgba(255,255,255,.06);
  border-radius: 12px; padding: 10px; color:#e8e8ee;
}
.app span { font-size: 22px; }
.app b { font-size: 11.5px; letter-spacing: .3px; font-weight: 600; color:#cfcfd7; }
.app.red { background: linear-gradient(180deg, rgba(229,28,37,.35), rgba(229,28,37,.15)); border-color: rgba(229,28,37,.4); }
.screen-bar {
  display:flex; justify-content:space-between; align-items:center;
  padding: 10px 16px; font-size: 12px; color:#bdbdc7;
  border-top:1px solid rgba(255,255,255,.06); background: rgba(0,0,0,.25);
}
.hero-card-badge {
  position:absolute; right: -6px; bottom: -10px;
  background: var(--red); color:#fff; border-radius: 16px;
  padding: 12px 16px; text-align:center; box-shadow: 0 12px 30px rgba(229,28,37,.5);
  border: 1px solid rgba(255,255,255,.15);
}
.hero-card-badge strong { display:block; font-size: 26px; line-height: 1; font-weight: 900; }
.hero-card-badge span { font-size: 11px; opacity:.9; letter-spacing:.4px; text-transform: uppercase; }

/* Sections */
section { padding: 80px 0; }
.section-head { text-align:center; max-width: 720px; margin: 0 auto 44px; }
.eyebrow {
  color: var(--red-2); font-size: 13px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase;
}
.section-head h2 {
  font-size: clamp(28px, 4vw, 42px); margin: 8px 0 10px; font-weight: 800; letter-spacing: -.02em;
}
.section-head p { color: var(--muted); font-size: 17px; margin: 0; }

/* Featured */
.featured { background: var(--bg-2); border-top:1px solid var(--line); border-bottom:1px solid var(--line); }
.feature-grid {
  display:grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
@media (max-width: 880px) { .feature-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px) { .feature-grid { grid-template-columns: 1fr; } }
.feature-card {
  background: linear-gradient(180deg, #15151b, #101015);
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px; transition: transform .2s ease, border-color .2s ease;
}
.feature-card:hover { transform: translateY(-4px); border-color: rgba(229,28,37,.45); }
.feature-card .icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: rgba(229,28,37,.15); border:1px solid rgba(229,28,37,.35);
  display:flex; align-items:center; justify-content:center; font-size: 24px; margin-bottom: 14px;
}
.feature-card h3 { margin: 6px 0 6px; font-size: 18px; }
.feature-card p { color: var(--muted); margin: 0; font-size: 14.5px; }

/* Services */
.services-grid { display:grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
@media (max-width: 880px) { .services-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px) { .services-grid { grid-template-columns: 1fr; } }
.service {
  background: var(--bg-3); border:1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; transition: transform .2s ease, border-color .2s ease;
}
.service:hover { transform: translateY(-4px); border-color: rgba(229,28,37,.4); }
.service h3 { margin: 14px 18px 6px; font-size: 17px; }
.service p { margin: 0 18px 18px; color: var(--muted); font-size: 14.5px; }
.service-thumb { aspect-ratio: 16/10; background-size: cover; background-position: center; position: relative; }
.service-thumb::after {
  content:""; position:absolute; inset:0; background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,.55));
}
.svc-1 { background: radial-gradient(circle at 30% 40%, #2a2a35, #0d0d12), linear-gradient(45deg,#1a1a22,#101015); }
.svc-2 { background: linear-gradient(135deg, #2a0d10, #0d0d12); }
.svc-3 { background: linear-gradient(135deg, #1a1a22, #2a0d10); }
.svc-4 { background: linear-gradient(135deg, #11131f, #1a1a22); }
.svc-5 { background: linear-gradient(135deg, #1f1f29, #0d0d12); }
.svc-6 { background: linear-gradient(135deg, #2a0d10, #1a1a22); }
.svc-1, .svc-2, .svc-3, .svc-4, .svc-5, .svc-6 {
  background-image:
    radial-gradient(circle at 50% 60%, rgba(229,28,37,.25), transparent 60%),
    linear-gradient(135deg, #1a1a22, #0e0e12);
}
.svc-1::before, .svc-2::before, .svc-3::before, .svc-4::before, .svc-5::before, .svc-6::before {
  content: ""; position:absolute; inset:0; z-index:1;
  background-repeat: no-repeat; background-position: center; background-size: 56px 56px; opacity: .85;
}
.svc-1::before { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ffffff'><path d='M3 5h18v12H3z M2 19h20v2H2z'/></svg>"); }
.svc-2::before { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ffffff'><circle cx='12' cy='12' r='9' fill='none' stroke='%23ffffff' stroke-width='1.5'/><circle cx='12' cy='12' r='3'/></svg>"); }
.svc-3::before { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ffffff'><rect x='4' y='4' width='16' height='16' rx='3' fill='none' stroke='%23ffffff' stroke-width='1.5'/><circle cx='12' cy='12' r='5'/></svg>"); }
.svc-4::before { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='1.6'><rect x='3' y='6' width='18' height='12' rx='2'/><path d='M7 10v4M11 10v4M15 10v4M19 10v4'/></svg>"); }
.svc-5::before { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='1.6'><rect x='3' y='7' width='14' height='10' rx='2'/><path d='M17 10l4-2v8l-4-2z'/></svg>"); }
.svc-6::before { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='1.6'><path d='M4 18l5-12 3 7 3-4 5 9z'/></svg>"); }

/* Gallery */
.gallery { background: var(--bg-2); border-top:1px solid var(--line); border-bottom:1px solid var(--line); }
.gallery-grid {
  display:grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
}
@media (max-width: 880px) { .gallery-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px) { .gallery-grid { grid-template-columns: 1fr; } }
.g {
  position: relative; aspect-ratio: 4/3; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line); margin: 0;
  background-size: cover; background-position: center;
}
.g figcaption {
  position:absolute; left:14px; bottom:12px; right:14px; color:#fff; font-weight:700;
  text-shadow: 0 2px 10px rgba(0,0,0,.7);
}
.g::after { content:""; position:absolute; inset:0; background: linear-gradient(180deg, transparent 45%, rgba(0,0,0,.7)); }
.g1 { background-image: radial-gradient(circle at 50% 55%, rgba(229,28,37,.35), transparent 60%), linear-gradient(135deg,#2a2a35,#0d0d12); }
.g2 { background-image: radial-gradient(circle at 30% 50%, rgba(0,140,255,.25), transparent 60%), linear-gradient(135deg,#1a1a22,#0d0d12); }
.g3 { background-image: radial-gradient(circle at 70% 50%, rgba(229,28,37,.35), transparent 60%), linear-gradient(135deg,#1a1a22,#06060a); }
.g4 { background-image: radial-gradient(circle at 40% 70%, rgba(255,170,0,.20), transparent 60%), linear-gradient(135deg,#1a1a22,#0d0d12); }
.g5 { background-image: radial-gradient(circle at 60% 40%, rgba(0,200,140,.22), transparent 60%), linear-gradient(135deg,#1a1a22,#0d0d12); }
.g6 { background-image: radial-gradient(circle at 50% 50%, rgba(229,28,37,.30), transparent 60%), linear-gradient(135deg,#2a2a35,#0d0d12); }
.gallery-note { text-align:center; color: var(--muted); font-size: 14px; margin-top: 18px; }

/* Location */
.location { background: var(--bg); }
.loc-grid {
  display:grid; grid-template-columns: 1fr 1.1fr; gap: 36px; align-items: center;
}
@media (max-width: 900px) { .loc-grid { grid-template-columns: 1fr; } }
.location h2 { font-size: clamp(28px, 4vw, 38px); margin: 8px 0 10px; }
.addr { font-size: 18px; color: #ddd; }
.loc-list { list-style:none; padding:0; margin: 18px 0 24px; display:grid; gap: 10px; color:#d8d8df; }
.loc-cta { display:flex; gap: 10px; flex-wrap: wrap; }
.map {
  background: var(--bg-3); border:1px solid var(--line); border-radius: var(--radius); overflow:hidden;
  aspect-ratio: 4/3;
}
.map iframe { width:100%; height:100%; border:0; display:block; filter: invert(.92) hue-rotate(180deg) saturate(.8); }

/* Contact */
.contact { background: linear-gradient(180deg, #0b0b0d, #15070a); }
.contact-box {
  text-align:center; padding: 30px 22px; max-width: 760px; margin: 0 auto;
}
.contact-box h2 { font-size: clamp(26px, 4vw, 38px); margin: 0 0 10px; }
.contact-box p { color: var(--muted); margin: 0 0 24px; font-size: 17px; }

/* Footer */
.site-footer { background: #07070a; border-top: 1px solid var(--line); padding-top: 50px; }
.foot { display:grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 30px; padding-bottom: 30px; }
@media (max-width: 800px) { .foot { grid-template-columns: 1fr; } }
.foot-logo { height: 44px; margin-bottom: 12px; }
.foot h4 { margin: 0 0 10px; font-size: 14px; letter-spacing:.12em; text-transform: uppercase; color: #fff; }
.foot ul { list-style:none; padding:0; margin: 0; color: var(--muted); display:grid; gap: 6px; font-size: 14.5px; }
.foot a { color: var(--muted); }
.foot a:hover { color: #fff; }
.copyright { text-align:center; padding: 16px; color: #6b6b75; border-top:1px solid var(--line); font-size: 13px; }

/* Featured alt (segundo bloco com cor diferente) */
.featured.alt { background: var(--bg); }

/* Categorias */
.cat-grid {
  display:grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
@media (max-width: 980px) { .cat-grid { grid-template-columns: repeat(3,1fr); } }
@media (max-width: 760px)  { .cat-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 460px)  { .cat-grid { grid-template-columns: 1fr; } }
.cat-card {
  display:block; background: var(--bg-3); border:1px solid var(--line);
  border-radius: var(--radius); overflow:hidden; color: var(--fg);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.cat-card:hover {
  transform: translateY(-4px); border-color: rgba(229,28,37,.45); color: #fff;
  box-shadow: 0 14px 30px rgba(0,0,0,.45);
}
.cat-card h3 { margin: 14px 16px 4px; font-size: 16px; }
.cat-card p { margin: 0 16px 16px; color: var(--muted); font-size: 13.5px; }
.cat-thumb {
  aspect-ratio: 4/3; position: relative; overflow: hidden;
  background: linear-gradient(135deg, #1a1a22, #0e0e12);
}
.cat-thumb::after {
  content:""; position:absolute; inset:0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,.55));
}
.cat-thumb::before {
  content:""; position:absolute; inset:0; z-index:1;
  background-repeat:no-repeat; background-position:center; background-size: 60px 60px; opacity:.92;
}
.cat-1 { background-image: radial-gradient(circle at 50% 60%, rgba(229,28,37,.30), transparent 60%), linear-gradient(135deg,#1a1a22,#0d0d12); }
.cat-1::before { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='1.5'><rect x='3' y='5' width='18' height='12' rx='2'/><path d='M2 19h20'/></svg>"); }
.cat-2 { background-image: radial-gradient(circle at 30% 50%, rgba(0,140,255,.20), transparent 60%), linear-gradient(135deg,#16161e,#0d0d12); }
.cat-2::before { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='1.5'><circle cx='12' cy='12' r='9'/><circle cx='12' cy='12' r='4'/><circle cx='12' cy='12' r='1.4' fill='%23ffffff'/></svg>"); }
.cat-3 { background-image: radial-gradient(circle at 50% 50%, rgba(229,28,37,.35), transparent 60%), linear-gradient(135deg,#1a1a22,#06060a); }
.cat-3::before { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='1.5'><rect x='4' y='4' width='16' height='16' rx='3'/><circle cx='12' cy='12' r='5.5'/><circle cx='12' cy='12' r='1.5' fill='%23ffffff'/></svg>"); }
.cat-4 { background-image: radial-gradient(circle at 60% 60%, rgba(255,170,0,.20), transparent 60%), linear-gradient(135deg,#11131f,#1a1a22); }
.cat-4::before { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='1.6'><rect x='3' y='6' width='18' height='12' rx='2'/><path d='M7 10v4M11 10v4M15 10v4M19 10v4'/></svg>"); }
.cat-5 { background-image: radial-gradient(circle at 50% 50%, rgba(0,200,140,.18), transparent 60%), linear-gradient(135deg,#1a1a22,#0d0d12); }
.cat-5::before { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='1.6'><path d='M4 14h3l2-6 3 12 3-8 2 4h3'/></svg>"); }
.cat-6 { background-image: radial-gradient(circle at 50% 50%, rgba(229,28,37,.25), transparent 60%), linear-gradient(135deg,#16161e,#0d0d12); }
.cat-6::before { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='1.6'><rect x='3' y='7' width='14' height='10' rx='2'/><path d='M17 10l4-2v8l-4-2z'/></svg>"); }
.cat-7 { background-image: radial-gradient(circle at 50% 50%, rgba(0,140,255,.18), transparent 60%), linear-gradient(135deg,#1a1a22,#0d0d12); }
.cat-7::before { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='1.6'><rect x='5' y='10' width='14' height='10' rx='2'/><path d='M8 10V7a4 4 0 018 0v3'/></svg>"); }
.cat-8 { background-image: radial-gradient(circle at 50% 50%, rgba(255,200,0,.25), transparent 60%), linear-gradient(135deg,#1a1a22,#0d0d12); }
.cat-8::before { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='1.6'><path d='M9 18h6M10 21h4M12 3a6 6 0 00-3 11c.7.5 1 1.3 1 2v1h4v-1c0-.7.3-1.5 1-2a6 6 0 00-3-11z'/></svg>"); }

/* Steps (Projetos) */
.steps-grid { display:grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
@media (max-width: 980px) { .steps-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 520px)  { .steps-grid { grid-template-columns: 1fr; } }
.step {
  position:relative; background: linear-gradient(180deg,#15151b,#101015);
  border:1px solid var(--line); border-radius: var(--radius);
  padding: 26px 22px 22px; transition: transform .2s ease, border-color .2s ease;
}
.step:hover { transform: translateY(-4px); border-color: rgba(229,28,37,.45); }
.step-num {
  font-family: 'Inter', sans-serif; font-weight: 900; font-size: 42px; line-height: 1;
  background: linear-gradient(180deg, var(--red-2), var(--red));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
}
.step h3 { margin: 4px 0 8px; font-size: 18px; }
.step p { color: var(--muted); margin: 0; font-size: 14.5px; }

/* Gallery extras (g7, g8) */
.g7 { background-image: radial-gradient(circle at 50% 50%, rgba(255,170,0,.28), transparent 60%), linear-gradient(135deg,#1a1a22,#0d0d12); }
.g8 { background-image: radial-gradient(circle at 50% 50%, rgba(0,180,255,.22), transparent 60%), linear-gradient(135deg,#1a1a22,#0d0d12); }

/* Marcas */
.brands { background: var(--bg-2); border-top:1px solid var(--line); border-bottom:1px solid var(--line); }
.brand-grid {
  display:flex; flex-wrap: wrap; gap: 12px; justify-content: center;
}
.brand-pill {
  padding: 12px 22px; border-radius: 999px;
  background: rgba(255,255,255,.04); border:1px solid var(--line);
  color: #e8e8ee; font-weight: 600; font-size: 15px; letter-spacing: .02em;
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}
.brand-pill:hover { border-color: rgba(229,28,37,.45); background: rgba(229,28,37,.08); transform: translateY(-2px); }

/* Float WhatsApp */
.whats-float {
  position: fixed; bottom: 18px; right: 18px; z-index: 100;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; color:#fff;
  display:flex; align-items:center; justify-content:center;
  box-shadow: 0 12px 30px rgba(37,211,102,.4);
  transition: transform .2s ease;
}
.whats-float:hover { transform: scale(1.06); color: #fff; }
