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

:root {
  --bg-root:       #080c14;
  --bg-card:       #0d1422;
  --bg-card2:      #111827;
  --border:        rgba(99,179,237,0.12);
  --border-glow:   rgba(56,189,248,0.4);
  --neon-cyan:     #38bdf8;
  --neon-blue:     #3b82f6;
  --neon-purple:   #a78bfa;
  --neon-green:    #34d399;
  --text-primary:  #f1f5f9;
  --text-secondary:#94a3b8;
  --text-muted:    #64748b;
  --cta-bg:        linear-gradient(135deg,#06b6d4,#3b82f6);
  --cta-glow:      0 0 30px rgba(56,189,248,0.45);
  --wpp-bg:        linear-gradient(135deg,#25d366,#128c7e);
  --wpp-glow:      0 0 30px rgba(37,211,102,0.4);
  --radius-card:   20px;
  --radius-btn:    12px;
  --transition:    0.25s cubic-bezier(.4,0,.2,1);
  --nav-bg:        rgba(8,12,20,0.80);
  --nav-border:    rgba(99,179,237,0.10);
  --orb-opacity:   1;
  --hero-overlay:  rgba(8, 12, 20, 0.75);
}

/* ─── LIGHT MODE THEME ─────────────────────────────────────────── */
body.light-mode {
  --bg-root:       #f0f4f8;
  --bg-card:       #ffffff;
  --bg-card2:      #f8fafc;
  --border:        rgba(0,0,0,0.09);
  --border-glow:   rgba(2,132,199,0.4);
  --neon-cyan:     #0284c7;
  --neon-blue:     #2563eb;
  --neon-purple:   #7c3aed;
  --neon-green:    #059669;
  --text-primary:  #0f172a;
  --text-secondary:#475569;
  --text-muted:    #64748b;
  --cta-glow:      0 0 24px rgba(2,132,199,0.35);
  --wpp-glow:      0 0 24px rgba(5,150,105,0.35);
  --orb-opacity:   0;
  --hero-overlay:  rgba(240, 244, 248, 0.88);
}
body.light-mode .bg-orb { opacity: 0; }
body.light-mode body::before { opacity: 0; }
body.light-mode .hero-headline .gradient-text {
  background: linear-gradient(135deg,#0284c7,#2563eb,#7c3aed);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
body.light-mode .demand-numbers {
  background: linear-gradient(135deg,#059669,#0284c7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
body.light-mode .tool-card,
body.light-mode .result-card,
body.light-mode .content-tile,
body.light-mode .cta-box {
  box-shadow: 0 2px 20px rgba(0,0,0,0.07);
}
body.light-mode .form-input,
body.light-mode .form-select {
  background: #f8fafc;
  border-color: rgba(0,0,0,0.12);
  color: #0f172a;
}
body.light-mode .form-input::placeholder { color: #94a3b8; }
body.light-mode .demand-block {
  background: rgba(5,150,105,0.05);
  border-color: rgba(5,150,105,0.18);
}
body.light-mode .result-card { border-color: rgba(5,150,105,0.2); }
body.light-mode .hero-eyebrow {
  background: rgba(2,132,199,0.07);
  border-color: rgba(2,132,199,0.18);
}
body.light-mode .result-badge {
  background: rgba(5,150,105,0.08);
  border-color: rgba(5,150,105,0.2);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-root);
  color: var(--text-primary);
  line-height: 1.7;
  min-height: 100vh;
  overflow-x: hidden;
}

/* ─── NOISE TEXTURE OVERLAY ───────────────────────────────────── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

/* ─── BACKGROUND GLOW ORBS ────────────────────────────────────── */
.bg-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
}
.bg-orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(56,189,248,0.08) 0%, transparent 70%);
  top: -150px; left: -150px;
}
.bg-orb-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(167,139,250,0.07) 0%, transparent 70%);
  bottom: 200px; right: -100px;
}
.bg-orb-3 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(59,130,246,0.06) 0%, transparent 70%);
  top: 50%; left: 40%;
  transform: translate(-50%,-50%);
}

/* ─── NAV ───────────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  --nav-bg:        rgba(8,12,20,0.80);
  --nav-border:    rgba(99,179,237,0.10);
  --text-primary:  #f1f5f9;
  --text-secondary:#94a3b8;
  --text-muted:    #64748b;
  --border:        rgba(99,179,237,0.12);
  background: var(--nav-bg);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--nav-border);
  transition: background 0.3s ease, border-color 0.3s ease;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo img {
  height: 52px;
  width: auto;
  display: block;
  object-fit: contain;
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid transparent;
  border-radius: 9px;
  background: transparent;
  cursor: pointer;
  color: var(--text-muted);
  transition: var(--transition);
  text-decoration: none;
}
.nav-icon-btn:hover {
  background: rgba(255,255,255,0.07);
  border-color: var(--border);
  color: var(--text-secondary);
}
/* Lâmpada apagada (padrão) */
#theme-toggle { color: var(--text-muted); }
/* Lâmpada acesa */
body.light-mode #theme-toggle {
  color: #f59e0b;
  background: rgba(245,158,11,0.1);
  border-color: rgba(245,158,11,0.25);
}
body.light-mode #theme-toggle svg {
  filter: drop-shadow(0 0 5px rgba(245,158,11,0.6));
}

/* ─── WRAPPER ─────────────────────────────────────────────────── */
.wrapper {
  position: relative;
  z-index: 1;
}

/* ─── SECTIONS ────────────────────────────────────────────────── */
section { padding: 80px 24px; }

.container {
  max-width: 860px;
  margin: 0 auto;
}
.container-wide {
  max-width: 1100px;
  margin: 0 auto;
}

/* ─── HERO ────────────────────────────────────────────────────── */
#hero {
  position: relative;
  overflow: hidden;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
}
#hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: linear-gradient(var(--hero-overlay), var(--hero-overlay)), url('assets/hero-bg.webp');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: -1;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--neon-cyan);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(56,189,248,0.08);
  border: 1px solid rgba(56,189,248,0.2);
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 28px;
  animation: fadeSlideDown 0.7s ease both;
}
.hero-eyebrow .dot {
  width: 6px; height: 6px;
  background: var(--neon-cyan);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-headline {
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  animation: fadeSlideDown 0.7s 0.1s ease both;
}
.hero-headline .gradient-text {
  background: linear-gradient(135deg, var(--neon-cyan) 0%, var(--neon-blue) 50%, var(--neon-purple) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto 40px;
  font-weight: 400;
  animation: fadeSlideDown 0.7s 0.2s ease both;
}
.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  background: var(--cta-bg);
  border: none;
  padding: 16px 36px;
  border-radius: var(--radius-btn);
  cursor: pointer;
  box-shadow: var(--cta-glow);
  transition: var(--transition);
  text-decoration: none;
  animation: fadeSlideDown 0.7s 0.3s ease both;
  position: relative;
  overflow: hidden;
}
.hero-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,rgba(255,255,255,0.15),transparent);
  opacity: 0;
  transition: var(--transition);
}
.hero-btn:hover { transform: translateY(-2px); box-shadow: 0 0 50px rgba(56,189,248,0.6); }
.hero-btn:hover::after { opacity: 1; }

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 60px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeSlideDown 0.7s 0.4s ease both;
}
.hero-stat {
  text-align: center;
}
.hero-stat .value {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--neon-cyan);
  letter-spacing: -0.02em;
}
.hero-stat .label {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: 4px;
}

.scroll-indicator {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 48px;
  animation: bounce 2s infinite;
  color: var(--text-muted);
  font-size: 1.4rem;
}
@keyframes bounce {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* ─── TOOL CARD ───────────────────────────────────────────────── */
#ferramenta {
  padding-top: 40px;
}
.tool-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 48px 48px 44px;
  position: relative;
  overflow: hidden;
}
.tool-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--neon-cyan), var(--neon-blue), var(--neon-purple), transparent);
}
.tool-card-label {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--neon-cyan);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.tool-card-title {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 36px;
  line-height: 1.2;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-group.full { grid-column: 1 / -1; }
.form-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.02em;
}
.form-input,
.form-select {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 16px;
  color: var(--text-primary);
  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: var(--transition);
  appearance: none;
  -webkit-appearance: none;
}
.form-input:focus,
.form-select:focus {
  border-color: var(--neon-cyan);
  box-shadow: 0 0 0 3px rgba(56,189,248,0.12);
  background: rgba(56,189,248,0.04);
}
.form-input::placeholder { color: var(--text-muted); }
.form-select option { background: #0d1422; color: var(--text-primary); }

.select-wrapper {
  position: relative;
}
.select-wrapper::after {
  content: '▾';
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  pointer-events: none;
  font-size: 0.9rem;
}

.simulate-btn {
  width: 100%;
  padding: 17px;
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  background: var(--cta-bg);
  border: none;
  border-radius: var(--radius-btn);
  cursor: pointer;
  box-shadow: var(--cta-glow);
  transition: var(--transition);
  letter-spacing: 0.01em;
  margin-top: 8px;
  position: relative;
  overflow: hidden;
}
.simulate-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.12), transparent);
  opacity: 0;
  transition: var(--transition);
}
.simulate-btn:hover { transform: translateY(-2px); box-shadow: 0 0 50px rgba(56,189,248,0.55); }
.simulate-btn:hover::after { opacity: 1; }
.simulate-btn:active { transform: translateY(0); }
.simulate-btn .btn-icon { margin-right: 6px; }

/* ─── DEMAND LEVELS ────────────────────────────────────────────── */
.level-baixa { color: #f87171 !important; }
.level-moderada { color: #fbbf24 !important; }
.level-alta { color: #34d399 !important; }
.level-muito-alta { color: #10b981 !important; text-shadow: 0 0 15px rgba(16,185,129,0.4); }

.simulator-demand-level {
  display: inline-flex;
  align-items: center;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
  border: 1px solid currentColor;
  background: rgba(255,255,255,0.03);
}

.simulator-demand-level.level-baixa { background: rgba(248,113,113,0.1); border-color: rgba(248,113,113,0.3); }
.simulator-demand-level.level-moderada { background: rgba(251,191,36,0.1); border-color: rgba(251,191,36,0.3); }
.simulator-demand-level.level-alta { background: rgba(52,211,153,0.1); border-color: rgba(52,211,153,0.3); }
.simulator-demand-level.level-muito-alta { background: rgba(16,185,129,0.15); border-color: rgba(16,185,129,0.4); box-shadow: 0 0 20px rgba(16,185,129,0.1); }


/* ─── RESULT ──────────────────────────────────────────────────── */
#resultado {
  display: none;
  padding-top: 0;
  padding-bottom: 0;
}
#resultado.visible { display: block; }

.result-card {
  background: var(--bg-card);
  border: 1px solid rgba(52,211,153,0.25);
  border-radius: var(--radius-card);
  padding: 48px;
  position: relative;
  overflow: hidden;
  margin-top: 28px;
  animation: resultReveal 0.55s cubic-bezier(.22,1,.36,1) both;
}
@keyframes resultReveal {
  from { opacity: 0; transform: translateY(24px) scale(0.98); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.result-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--neon-green), #06b6d4, transparent);
}

.result-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--neon-green);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(52,211,153,0.1);
  border: 1px solid rgba(52,211,153,0.25);
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
}
.result-badge .live-dot {
  width: 6px; height: 6px;
  background: var(--neon-green);
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

.result-headline {
  font-size: clamp(1.2rem, 3vw, 1.7rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  line-height: 1.2;
}

.demand-block {
  background: rgba(52,211,153,0.06);
  border: 1px solid rgba(52,211,153,0.15);
  border-radius: 14px;
  padding: 28px;
  margin: 24px 0;
}
.demand-numbers {
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  background: linear-gradient(135deg, var(--neon-green), var(--neon-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
}
.demand-desc {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.5;
}
.demand-desc strong { color: var(--text-primary); }

.result-text { color: var(--text-secondary); font-size: 0.95rem; margin-bottom: 16px; line-height: 1.65; }
.result-impact {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

/* ─── CTA BUTTON ──────────────────────────────────────────────── */
.cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 18px 24px;
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  background: var(--wpp-bg);
  border: none;
  border-radius: var(--radius-btn);
  cursor: pointer;
  box-shadow: var(--wpp-glow);
  transition: var(--transition);
  text-decoration: none;
  margin-top: 28px;
  letter-spacing: 0.01em;
  position: relative;
  overflow: hidden;
}
.cta-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.12), transparent);
  opacity: 0;
  transition: var(--transition);
}
.cta-btn:hover { transform: translateY(-2px); box-shadow: 0 0 55px rgba(37,211,102,0.55); }
.cta-btn:hover::after { opacity: 1; }
.cta-btn svg { flex-shrink: 0; }

/* ─── SEO CONTENT ─────────────────────────────────────────────── */
#conteudo {
  background: transparent;
}
.section-label {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--neon-cyan);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.section-title {
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
  line-height: 1.2;
}
.section-body {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 10px;
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 48px;
}
.content-tile {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.content-tile::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--cta-bg);
  opacity: 0;
  transition: var(--transition);
}
.content-tile:hover { border-color: rgba(56,189,248,0.3); transform: translateY(-4px); }
.content-tile:hover::before { opacity: 1; }

.tile-icon {
  font-size: 1.8rem;
  margin-bottom: 16px;
}
.tile-title {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-primary);
}
.tile-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.tile-list li {
  font-size: 0.875rem;
  color: var(--text-secondary);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.tile-list li::before {
  content: '→';
  color: var(--neon-cyan);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ─── FINAL CTA ───────────────────────────────────────────────── */
#cta-final {
  padding: 100px 24px;
}
.cta-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 64px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--wpp-bg);
}
.cta-box-title {
  font-size: clamp(1.4rem, 3.5vw, 2.1rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 12px;
}
.cta-box-sub {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 36px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.cta-box .cta-btn { max-width: 400px; margin: 0 auto; }

/* ─── FOOTER ──────────────────────────────────────────────────── */
footer {
  border-top: 1px solid var(--border);
  padding: 32px 24px;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.8rem;
}
footer a { color: var(--neon-cyan); text-decoration: none; }
footer a:hover { text-decoration: underline; }

/* ─── DIVIDER ─────────────────────────────────────────────────── */
.divider {
  height: 1px;
  background: var(--border);
  border: none;
  margin: 0;
}

/* ─── ANIMATIONS ──────────────────────────────────────────────── */
@keyframes fadeSlideDown {
  from { opacity: 0; transform: translateY(-16px); }
  to   { opacity: 1; transform: translateY(0); }
}

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── SVG ICONS ────────────────────────────────────────────────── */
.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.icon svg {
  display: block;
}
.tile-icon .icon svg {
  width: 28px;
  height: 28px;
}
.tile-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  margin-bottom: 18px;
}
.tile-icon.icon-search   { background: rgba(56,189,248,0.1);  color: var(--neon-cyan); }
.tile-icon.icon-warning  { background: rgba(251,191,36,0.1);  color: #fbbf24; }
.tile-icon.icon-trophy   { background: rgba(167,139,250,0.1); color: var(--neon-purple); }
.scroll-indicator svg { display: block; }
.result-impact .icon { vertical-align: middle; margin-right: 6px; }

.form-input-error { border-color: #ff4d4d !important; background: rgba(255,77,77,0.05) !important; }
