/* ============================================
   DENTEO · Sistema de diseño
   Inspirado en voxelargentina.com.ar
   White/light bg · black text · red accent
   ============================================ */

:root {
  /* Colores */
  --bg: #ffffff;
  --bg-soft: #fafafa;
  --bg-muted: #f4f4f4;
  --ink: #0a0a0a;
  --ink-soft: #1a1a1a;
  --text: #2a2a2a;
  --text-muted: #6a6a6a;
  --text-faint: #9a9a9a;
  --border: #e5e5e5;
  --border-strong: #d4d4d4;
  --accent: #e63946;
  --accent-dark: #c82d3a;
  --accent-soft: #fef2f3;
  --success: #10b981;

  /* Tipografía */
  --font-display: 'Manrope', -apple-system, sans-serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* Espaciado y geometría */
  --radius: 4px;
  --radius-md: 6px;
  --radius-lg: 8px;
  --container: 1240px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================
   TOPBAR (negra)
   ============================================ */
.topbar {
  background: var(--ink);
  color: #d4d4d4;
  font-size: 12.5px;
  letter-spacing: 0.01em;
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 36px;
}
.topbar-text { color: #c4c4c4; }
.topbar-links { display: flex; gap: 24px; align-items: center; }
.topbar-links a { color: #c4c4c4; transition: color .15s; }
.topbar-links a:hover { color: #fff; }
.topbar-login { color: #fff !important; font-weight: 500; }

/* ============================================
   HEADER
   ============================================ */
.header {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 48px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.logo-mark {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--ink);
  color: #fff;
  border-radius: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  line-height: 1;
  text-transform: lowercase;
}
.logo-mark::after {
  content: '';
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 10px;
  height: 10px;
  background: #22c55e;
  border-radius: 50%;
  border: 2px solid var(--bg);
}
.logo-text {
  color: var(--ink);
  text-transform: lowercase;
  letter-spacing: -0.02em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  margin-left: 24px;
}
.nav-item {
  position: relative;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  transition: color .15s;
  cursor: pointer;
}
.nav-item:hover { color: var(--ink); }
.nav-arrow { font-size: 10px; color: var(--text-faint); }

.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
  min-width: 280px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: all .15s;
}
.nav-item:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown a {
  display: block;
  padding: 10px 12px;
  border-radius: var(--radius);
  transition: background .12s;
}
.nav-dropdown a:hover { background: var(--bg-muted); }
.nav-dropdown strong {
  display: block;
  font-weight: 600;
  color: var(--ink);
  font-size: 14px;
}
.nav-dropdown span {
  display: block;
  font-size: 12.5px;
  color: var(--text-muted);
  margin-top: 2px;
}

.header-cta {
  display: flex;
  gap: 8px;
  align-items: center;
}

/* ============================================
   BOTONES
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 9px 16px;
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius);
  transition: all .15s;
  white-space: nowrap;
  cursor: pointer;
  border: 1px solid transparent;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(230,57,70,0.25);
}
.btn-ghost {
  color: var(--ink);
  background: transparent;
}
.btn-ghost:hover { background: var(--bg-muted); }
.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--border-strong);
}
.btn-outline:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--bg);
}
.btn-outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.3);
}
.btn-outline-light:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.1);
}
.btn-lg {
  padding: 13px 22px;
  font-size: 15px;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  padding: 80px 0 100px;
  overflow: hidden;
}
.hero-decoration {
  position: absolute;
  top: 0; right: 0;
  width: 50%; height: 100%;
  background:
    radial-gradient(circle at 70% 30%, rgba(230,57,70,0.04), transparent 60%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
}
.hero-content { position: relative; z-index: 2; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-size: 12.5px;
  font-weight: 600;
  border-radius: 100px;
  margin-bottom: 24px;
  border: 1px solid rgba(230,57,70,0.15);
}
.dot {
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero-title {
  font-family: var(--font-display);
  font-size: 60px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.035em;
  color: var(--ink);
  margin-bottom: 24px;
}
.hero-title .accent { color: var(--accent); }

.hero-subtitle {
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 540px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin-bottom: 48px;
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 32px;
}
.meta-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.meta-item span {
  font-size: 12.5px;
  color: var(--text-muted);
}
.meta-divider {
  width: 1px; height: 32px;
  background: var(--border);
}

/* ============================================
   HERO MOCKUP
   ============================================ */
.hero-visual {
  position: relative;
  height: 480px;
}
.mockup {
  position: absolute;
  inset: 0;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.8) inset,
    0 24px 48px -12px rgba(0,0,0,0.12),
    0 0 0 1px rgba(0,0,0,0.02);
  overflow: hidden;
  transform: rotate(0.5deg);
}
.mockup-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: var(--bg-soft);
  border-bottom: 1px solid var(--border);
}
.dot-r, .dot-y, .dot-g {
  width: 11px; height: 11px;
  border-radius: 50%;
}
.dot-r { background: #ff5f57; }
.dot-y { background: #febc2e; }
.dot-g { background: #28c840; }
.mockup-url {
  margin-left: 14px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--text-muted);
}
.mockup-body {
  display: grid;
  grid-template-columns: 60px 1fr;
  height: calc(100% - 40px);
}
.mockup-sidebar {
  background: var(--ink);
  padding: 16px 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}
.ms-logo {
  width: 36px; height: 36px;
  background: #fff;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  line-height: 1;
  text-transform: lowercase;
  margin-bottom: 12px;
}
.ms-item {
  width: 36px; height: 32px;
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius);
}
.ms-item.active { background: rgba(255,255,255,0.18); }

.mockup-main { padding: 24px; }
.mm-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.mm-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
}
.mm-badge {
  background: var(--accent-soft);
  color: var(--accent-dark);
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 11.5px;
  font-weight: 600;
}
.mm-cal {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.cal-row {
  display: grid;
  grid-template-columns: 50px 1fr;
  align-items: center;
  gap: 12px;
}
.cal-time {
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--text-faint);
}
.cal-block {
  height: 32px;
  border-radius: var(--radius);
  padding: 0 12px;
  display: flex;
  align-items: center;
  font-size: 12.5px;
  font-weight: 500;
}
.cal-confirmed {
  background: #d1fae5;
  color: #065f46;
  border-left: 3px solid #10b981;
}
.cal-attending {
  background: var(--accent-soft);
  color: var(--accent-dark);
  border-left: 3px solid var(--accent);
}
.cal-waiting {
  background: #fef3c7;
  color: #92400e;
  border-left: 3px solid #f59e0b;
}
.cal-scheduled {
  background: #e0e7ff;
  color: #3730a3;
  border-left: 3px solid #6366f1;
}
.cal-empty {
  background: var(--bg-soft);
  border: 1px dashed var(--border);
}

/* Floating cards */
.float-card {
  position: absolute;
  background: var(--bg);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
  z-index: 3;
  animation: float 6s ease-in-out infinite;
}
.float-card-1 {
  bottom: -20px;
  left: -30px;
}
.float-card-2 {
  top: 60px;
  right: -40px;
  animation-delay: -2s;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.fc-icon {
  display: none;
}
.fc-title {
  font-weight: 600;
  color: var(--ink);
  font-size: 12.5px;
}
.fc-sub {
  color: var(--text-muted);
  font-size: 11.5px;
}

/* ============================================
   TRUST
   ============================================ */
.trust {
  padding: 48px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-soft);
}
.trust-label {
  text-align: center;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-faint);
  font-weight: 600;
  margin-bottom: 20px;
}
.trust-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}
.trust-logos span {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  color: var(--text-muted);
  opacity: 0.7;
  transition: opacity .2s;
}
.trust-logos span:hover { opacity: 1; }

/* ============================================
   SECTION HEADERS (genéricos)
   ============================================ */
.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}
.section-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 16px;
}
.section-sub {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ============================================
   PRODUCTS
   ============================================ */
.products { padding: 100px 0; }
.products-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: auto auto;
  gap: 20px;
}
.products-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.product-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: all .2s;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.product-card:hover {
  border-color: var(--ink);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.06);
}
.product-card-feature {
  grid-row: span 2;
  background: linear-gradient(135deg, var(--bg) 0%, var(--bg-soft) 100%);
  border-color: var(--border-strong);
}
.product-card-dark {
  background: var(--ink);
  border-color: var(--ink);
  color: #d4d4d4;
}
.product-card-dark:hover {
  background: #1a1a1a;
  border-color: var(--accent);
}
.product-card-dark h3 { color: #fff; }
.product-card-dark p { color: #b4b4b4; }
.product-card-dark .pc-features li { color: #b4b4b4; }
.product-card-dark .pc-features li::before { background: var(--accent); }
.product-card-dark .pc-link { color: var(--accent); }

.pc-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 16px;
}
.pc-tag-light { color: var(--accent); }

.product-card h3 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 12px;
}
.product-card-feature h3 { font-size: 36px; }

.product-card p {
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 24px;
}

.pc-features {
  list-style: none;
  margin-bottom: 24px;
  flex: 1;
}
.pc-features li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 8px;
  font-size: 14px;
  color: var(--text);
}
.pc-features li::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 12px; height: 2px;
  background: var(--accent);
}

.pc-link {
  font-weight: 600;
  font-size: 14px;
  color: var(--accent);
  margin-top: auto;
}

/* ============================================
   COMPARISON
   ============================================ */
.comparison {
  padding: 100px 0;
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.comp-table {
  max-width: 980px;
  margin: 0 auto;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.comp-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.2fr;
  border-bottom: 1px solid var(--border);
}
.comp-row:last-child { border-bottom: none; }
.comp-row-head {
  background: var(--bg-soft);
}
.comp-cell {
  padding: 18px 24px;
  font-size: 14.5px;
}
.comp-cell-old {
  color: var(--text-faint);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 11.5px;
  letter-spacing: 0.12em;
}
.comp-cell-denteo {
  color: var(--accent);
  font-weight: 700;
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 11.5px;
  letter-spacing: 0.12em;
  background: linear-gradient(90deg, transparent, rgba(230,57,70,0.04));
}
.comp-feature {
  font-weight: 600;
  color: var(--ink);
  background: var(--bg-soft);
}
.check {
  color: var(--accent);
  font-weight: 700;
  margin-right: 6px;
}
.comp-row .comp-cell:last-child:not(.comp-cell-denteo) {
  background: linear-gradient(90deg, transparent, rgba(230,57,70,0.025));
  color: var(--ink);
  font-weight: 500;
}

/* ============================================
   STATS
   ============================================ */
.stats { padding: 100px 0; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.stat {
  background: var(--bg);
  padding: 36px 28px;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 16px;
}
.stat-label {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  padding: 100px 0;
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
}
.t-quote {
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--ink);
  margin-bottom: 24px;
  flex: 1;
  position: relative;
  padding-top: 28px;
}
.t-quote::before {
  content: '"';
  position: absolute;
  top: -8px;
  left: -4px;
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}
.t-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.t-avatar {
  width: 44px; height: 44px;
  background: var(--ink);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
}
.t-author strong {
  display: block;
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
}
.t-author span {
  display: block;
  color: var(--text-muted);
  font-size: 12.5px;
}

/* ============================================
   CTA FINAL
   ============================================ */
.cta-final { padding: 100px 0; }
.cta-box {
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 64px 56px;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.cta-box::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 80%; height: 200%;
  background: radial-gradient(circle, rgba(230,57,70,0.18), transparent 60%);
  pointer-events: none;
}
.cta-content { position: relative; z-index: 1; }
.cta-box h2 {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 12px;
}
.cta-box p {
  color: #b4b4b4;
  font-size: 16px;
  line-height: 1.55;
}
.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  z-index: 1;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--ink);
  color: #b4b4b4;
  padding: 64px 0 32px;
  font-size: 13.5px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid #2a2a2a;
}
.logo-light { color: #fff; }
.logo-light .logo-text { color: #fff; }
.logo-light .logo-mark {
  background: #fff;
  color: var(--ink);
}
.logo-light .logo-mark::after {
  border-color: var(--ink);
}

.footer-tag {
  margin: 16px 0 8px;
  color: #b4b4b4;
  line-height: 1.55;
}
.footer-by {
  color: #6a6a6a;
  font-size: 12.5px;
}
.footer-by strong { color: #c4c4c4; }

.footer-col h4 {
  font-family: var(--font-display);
  color: #fff;
  font-weight: 600;
  font-size: 13.5px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.footer-col a {
  display: block;
  color: #b4b4b4;
  margin-bottom: 8px;
  transition: color .15s;
}
.footer-col a:hover { color: #fff; }

.footer-bottom {
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12.5px;
  color: #6a6a6a;
}
.footer-legal {
  display: flex;
  gap: 24px;
}
.footer-legal a { transition: color .15s; }
.footer-legal a:hover { color: #fff; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
  .hero { padding: 56px 0; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-title { font-size: 40px; }
  .hero-visual { height: 360px; }
  .nav, .header-cta .btn-ghost { display: none; }
  .section-title { font-size: 32px; }
  .products-grid { grid-template-columns: 1fr; }
  .products-grid-3 { grid-template-columns: 1fr; }
  .product-card-feature { grid-row: auto; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .cta-box { grid-template-columns: 1fr; padding: 40px 28px; }
  .cta-box h2 { font-size: 28px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .comp-row { grid-template-columns: 1fr; }
  .comp-cell { padding: 12px 18px; }
  .float-card-1, .float-card-2 { display: none; }
  .hero-meta { flex-wrap: wrap; gap: 16px; }
  .meta-divider { display: none; }
}

/* Hover rojo para botones de login (Clínica / Lab). Override del default ghost hover gris. */
.btn-login:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
