:root {
  --bg: #f9fafc;
  --bg-soft: #f1f4fa;
  --bg-mid: #eaeef6;
  --bg-deep: #dce3ef;
  --dark: #121826;
  --dark-1: #1e1e2f;
  --dark-2: #1e2b5a;
  --dark-3: #2f4177;
  --dark-4: #1e2740;
  --dark-5: #0b1b33;
  --text: #2d374b;
  --text-muted: #3e4a63;
  --gold: #ffd966;
  --gold-dark: #f5b342;
  --green: #2a6e3b;
  --card-bg: rgba(255,255,255,0.85);
  --border: rgba(72, 84, 114, 0.12);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "DM Sans", system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--dark-1);
  line-height: 1.55;
  overflow-x: hidden;
}

h1, h2, h3, .section-title, .platform-name, .logo {
  font-family: "Syne", system-ui, sans-serif;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(249, 250, 252, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.navbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0;
}
.logo {
  font-size: 1.5rem;
  background: linear-gradient(130deg, var(--dark-2), var(--dark-3));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.logo span {
  -webkit-text-fill-color: var(--dark-3);
  font-weight: 400;
}
.nav-links {
  display: flex;
  gap: 2rem;
}
.nav-link {
  text-decoration: none;
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s;
}
.nav-link:hover {
  color: var(--dark-2);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  z-index: 102;
  position: relative;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--dark-2);
  border-radius: 1px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.navbar.is-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.navbar.is-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}
.navbar.is-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 98;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.navbar.is-open .nav-backdrop {
  opacity: 1;
  pointer-events: auto;
}

.section-hero {
  min-height: 52vh;
  display: flex;
  align-items: center;
  padding: 5rem 2rem 3.5rem;
  position: relative;
  background: var(--bg);
}
.section-hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  background: linear-gradient(165deg, var(--bg-soft) 0%, var(--bg-mid) 100%);
  clip-path: polygon(25% 0, 100% 0, 100% 100%, 0 100%);
  z-index: 0;
}
.section-hero::after {
  content: "";
  position: absolute;
  bottom: 15%;
  right: 10%;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(200,210,240,0.5) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 14s infinite alternate ease-in-out;
  z-index: 0;
}
.hero .container {
  position: relative;
  z-index: 1;
}
.hero-label {
  display: inline-block;
  font-family: "DM Sans", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--dark-3);
  margin-bottom: 0.75rem;
}
.hero-title {
  font-size: clamp(2.25rem, 4.5vw, 3.25rem);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.04em;
  max-width: 680px;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 45%, var(--dark-3) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 480px;
  line-height: 1.65;
  font-weight: 500;
}
.section-hero .section-sub {
  font-size: 1.05rem;
  max-width: 480px;
  font-weight: 500;
}

@keyframes float {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(30px, -20px) scale(1.1); }
}

.section {
  position: relative;
  padding: 5rem 2rem;
}
.section-bg-1 {
  background: var(--bg);
}
.section-bg-2 {
  background: var(--bg-mid);
  clip-path: polygon(0 4rem, 100% 0, 100% calc(100% - 4rem), 0 100%);
  padding: 6rem 2rem 5rem;
}
.section-bg-3 {
  background: var(--bg-soft);
  clip-path: polygon(0 0, 100% 4rem, 100% 100%, 0 calc(100% - 4rem));
  padding: 6rem 2rem 5rem;
}
.section-bg-1.section-padding-lg {
  padding: 5rem 2rem;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

.section-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--dark);
  margin-bottom: 0.5rem;
}
.section-title + .section-sub {
  margin-bottom: 2.5rem;
}
.section-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
}

.cards-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1.5rem;
  margin-top: 1.5rem;
}
.cards-grid .platform-card:nth-child(1) {
  grid-column: 1;
  grid-row: 1 / 3;
  align-self: stretch;
}
.cards-grid .platform-card:nth-child(2) {
  grid-column: 2;
  grid-row: 1;
}
.cards-grid .platform-card:nth-child(3) {
  grid-column: 2;
  grid-row: 2;
}
.cards-grid .platform-card:nth-child(4) {
  grid-column: 3;
  grid-row: 1;
}
.cards-grid .platform-card:nth-child(5) {
  grid-column: 3;
  grid-row: 2;
}

.platform-card,
.testimonial-card {
  animation: fadeInUp 0.6s both;
}
.cards-grid .platform-card:nth-child(1) { animation-delay: 0s; }
.cards-grid .platform-card:nth-child(2) { animation-delay: 0.1s; }
.cards-grid .platform-card:nth-child(3) { animation-delay: 0.2s; }
.cards-grid .platform-card:nth-child(4) { animation-delay: 0.3s; }
.cards-grid .platform-card:nth-child(5) { animation-delay: 0.4s; }
.testimonials-grid .testimonial-card:nth-child(1) { animation-delay: 0s; }
.testimonials-grid .testimonial-card:nth-child(2) { animation-delay: 0.1s; }
.testimonials-grid .testimonial-card:nth-child(3) { animation-delay: 0.2s; }
.testimonials-grid .testimonial-card:nth-child(4) { animation-delay: 0.3s; }

.platform-card {
  display: flex;
  flex-direction: column;
  background: var(--card-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  padding: 2rem 1.75rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 0;
  border-left: 4px solid var(--dark-3);
}
.platform-card::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, rgba(47,65,119,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.platform-card:hover {
  transform: translate(-4px, -4px);
  box-shadow: 12px 12px 0 var(--dark-4);
}
.card-logo {
  margin-bottom: 1rem;
}
.card-logo img {
  display: block;
  width: 80px;
  height: 80px;
  object-fit: contain;
}
.card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}
.platform-name {
  font-size: 1.75rem;
  color: var(--dark-2);
  background: none;
  -webkit-text-fill-color: var(--dark-2);
}
.rating {
  background: var(--dark-4);
  color: var(--gold);
  padding: 0.4rem 0.9rem;
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.rating i {
  color: var(--gold-dark);
}
.platform-desc {
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.6;
  flex: 1;
  margin: 0 0 1.25rem;
}

.platform-desc-lebull {
  flex: 0;
}
.payment-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}
.card-banner {
  flex: 1;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  margin-bottom: 1.25rem;
  padding: 1.25rem 1.25rem 1.5rem;
  background: linear-gradient(145deg, rgba(30, 43, 90, 0.08) 0%, rgba(47, 65, 119, 0.05) 100%);
  border-left: 3px solid var(--dark-3);
}
.platform-card:not(.platform-card-featured) .card-banner {
  display: none;
}
.card-banner-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dark-3);
  margin-bottom: 0.6rem;
}
.card-banner-text {
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--text);
  margin-bottom: 0.65rem;
}
.card-banner-text:last-of-type {
  margin-bottom: 0.85rem;
}
.card-banner-list {
  list-style: none;
  font-size: 0.85rem;
  color: var(--dark-2);
  margin-top: auto;
}
.card-banner-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.4rem;
}
.card-banner-list li i {
  color: var(--green);
  flex-shrink: 0;
}
.payment-badge {
  background: var(--bg-deep);
  padding: 0.4rem 0.9rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--dark-5);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border: 1px solid var(--border);
}
.btn-link {
  margin-top: auto;
  background: var(--dark-4);
  color: white;
  text-decoration: none;
  padding: 1rem 1.5rem;
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: background 0.2s, transform 0.2s;
  border: none;
  cursor: pointer;
  align-self: flex-start;
}
.btn-link:hover {
  background: var(--dark-2);
  transform: translateX(4px);
}
.btn-link i {
  transition: transform 0.2s;
}
.btn-link:hover i {
  transform: translateX(3px);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  margin: 2rem 0;
  border: 2px solid var(--dark-3);
}
.feature-item {
  padding: 2rem 1.5rem;
  border-right: 2px solid var(--dark-3);
  border-bottom: 2px solid var(--dark-3);
  transition: background 0.2s;
}
.feature-item:nth-child(2n) {
  border-right: none;
}
.feature-item:nth-last-child(-n+2) {
  border-bottom: none;
}
.feature-item:hover {
  background: rgba(255,255,255,0.6);
}
.feature-item i {
  font-size: 2rem;
  color: var(--dark-3);
  margin-bottom: 0.75rem;
  display: block;
}
.feature-item h3 {
  font-size: 1.1rem;
  margin-bottom: 0.35rem;
  color: var(--dark);
}
.feature-item p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.comparison-table {
  background: var(--dark-4);
  color: #e8ecf4;
  padding: 0;
  border: none;
  font-size: 0.9rem;
}
.comparison-row {
  display: grid;
  grid-template-columns: 1.4fr repeat(5, 1fr);
  padding: 1rem 1rem;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.comparison-row:first-child {
  background: var(--dark-2);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.8rem;
}
.comparison-row:last-child {
  border-bottom: none;
}
.comparison-row:nth-child(even):not(:first-child) {
  background: rgba(0,0,0,0.15);
}
.comparison-feature {
  font-weight: 600;
  color: #c8d0e0;
}
.comparison-value {
  color: #e0e6f0;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.comparison-value i.fa-check { color: #7bc98a; }
.comparison-value i.fa-times { color: #e07a7a; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin: 2rem 0;
}
.testimonial-card {
  background: var(--card-bg);
  border: 2px solid var(--border);
  padding: 2rem;
  position: relative;
  transition: border-color 0.2s, transform 0.2s;
}
.testimonial-card:nth-child(odd) {
  margin-right: 2rem;
}
.testimonial-card:nth-child(even) {
  margin-left: 2rem;
  margin-top: 2rem;
}
.testimonial-card:hover {
  border-color: var(--dark-3);
  transform: translateY(-2px);
}
.testimonial-card::before {
  content: "“";
  position: absolute;
  top: 0.5rem;
  left: 1rem;
  font-family: Syne, sans-serif;
  font-size: 4rem;
  line-height: 1;
  color: var(--dark-3);
  opacity: 0.25;
}
.testimonial-photo {
  width: 56px;
  height: 56px;
  border-radius: 0;
  margin-bottom: 1rem;
  object-fit: cover;
  display: block;
  flex-shrink: 0;
  background-color: var(--bg-mid);
  border: 2px solid var(--dark-3);
}
.testimonial-text {
  font-style: italic;
  margin: 0 0 1rem;
  color: var(--dark-1);
  font-size: 1rem;
  line-height: 1.6;
}
.testimonial-name {
  font-weight: 700;
  color: var(--dark-2);
  font-size: 0.9rem;
}

.section-responsible {
  margin-bottom: 0;
  padding: 0 2rem 4rem;
}
.responsible-box {
  background: var(--dark-4);
  color: #e8ecf4;
  padding: 4rem 3rem;
  text-align: center;
  position: relative;
  clip-path: polygon(0 0, 100% 2rem, 100% 100%, 0 calc(100% - 2rem));
  background-image: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(47,65,119,0.4), var(--dark-4));
}
.responsible-box h3 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  margin-bottom: 1rem;
}
.responsible-box h3 i {
  margin-right: 0.5rem;
}
.responsible-box p {
  max-width: 640px;
  margin: 0 auto 1.5rem;
  opacity: 0.95;
  font-size: 1rem;
  line-height: 1.65;
}
.responsible-badges {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.responsible-badge {
  background: rgba(255,255,255,0.12);
  padding: 0.65rem 1.25rem;
  font-size: 0.9rem;
  border: 1px solid rgba(255,255,255,0.2);
}

.footer {
  margin-top: -1px;
}
.footer-logos {
  background: var(--bg-mid);
  padding: 2rem;
}
.footer-logos-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2rem 3rem;
}
.footer-logo-link {
  display: block;
  line-height: 0;
  transition: opacity 0.2s;
}
.footer-logo-link:hover {
  opacity: 0.8;
}
.footer-logo-img {
  height: 40px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  filter: contrast(0.9);
}
.footer-main {
  position: relative;
  background: var(--dark-4);
  color: #e8ecf4;
  padding: 3rem 2rem 4rem;
  overflow: hidden;
}
.footer-main-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: radial-gradient(ellipse 80% 60% at 100% 50%, rgba(47, 65, 119, 0.35) 0%, transparent 60%);
  pointer-events: none;
}
.footer-main-inner {
  position: relative;
  z-index: 1;
  max-width: 800px;
}
.footer-mandatory {
  font-family: "Syne", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 2rem;
  color: #c8d0e0;
}
.footer-block {
  margin-bottom: 2rem;
}
.footer-block-title {
  font-family: "Syne", sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 0.6rem;
}
.footer-block-text {
  font-size: 0.95rem;
  line-height: 1.65;
  color: #d0d8e8;
}
.footer-block-text a.footer-link-inline {
  color: #9eb8e8;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.footer-block-text a.footer-link-inline:hover {
  color: #c0d4f4;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem 2rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.footer-nav-link {
  font-family: "Syne", sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: #e0e6f0;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-nav-link:hover {
  color: #fff;
}
.footer-copyright {
  background: #fff;
  color: var(--text-muted);
  font-size: 0.85rem;
  text-align: center;
  padding: 1rem 2rem;
}
.footer-copyright .container {
  margin: 0 auto;
}

.navbar .logo {
  text-decoration: none;
}
#plataformas,
#comparar {
  scroll-margin-top: 5rem;
}

@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(16px); }
  100% { opacity: 1; transform: translateY(0); }
}

@media (max-width: 900px) {
  .cards-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .cards-grid .platform-card:nth-child(1),
  .cards-grid .platform-card:nth-child(2),
  .cards-grid .platform-card:nth-child(3),
  .cards-grid .platform-card:nth-child(4),
  .cards-grid .platform-card:nth-child(5) {
    grid-column: 1;
    grid-row: auto;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .feature-item {
    border-right: none;
    border-bottom: 2px solid var(--dark-3);
  }
  .feature-item:nth-last-child(-n+2) {
    border-bottom: 2px solid var(--dark-3);
  }
  .feature-item:last-child {
    border-bottom: none;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .testimonial-card:nth-child(odd),
  .testimonial-card:nth-child(even) {
    margin: 0 0 1rem;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }
  .nav-backdrop {
    display: block;
  }
  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    max-width: 85vw;
    height: 100vh;
    flex-direction: column;
    justify-content: flex-start;
    padding: 5rem 1.5rem 2rem;
    gap: 0;
    background: var(--bg);
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.12);
    z-index: 101;
    transform: translateX(100%);
    transition: transform 0.25s ease;
    overflow-y: auto;
  }
  .navbar.is-open .nav-links {
    transform: translateX(0);
  }
  .nav-link {
    display: block;
    padding: 1rem 0;
    font-size: 1.1rem;
    border-bottom: 1px solid var(--border);
  }
  .nav-link:last-child {
    border-bottom: none;
  }
}

@media (max-width: 700px) {
  .card-banner {
    display: none;
  }
  .navbar-inner {
    padding: 1rem 0 1rem 0.75rem;
  }
  .section-hero {
    padding: 5rem 1.25rem 3rem;
  }
  .section-hero::before {
    width: 100%;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 95%);
  }
  .section-bg-2,
  .section-bg-3 {
    clip-path: none;
    padding: 3rem 1rem;
  }
  .section-title {
    font-size: 1.65rem;
  }
  .comparison-table {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding: 0;
  }
  .comparison-row {
    grid-template-columns: 1.25fr repeat(5, minmax(108px, 1fr));
    min-width: 760px;
    gap: 0;
    font-size: 0.82rem;
    padding: 0.75rem 1rem;
  }
  .comparison-row :first-child {
    grid-column: auto;
    padding-bottom: 0;
  }
  .footer-main {
    padding: 2rem 1rem 3rem;
  }
  .footer-logos-inner {
    gap: 1.5rem 2rem;
  }
  .footer-nav {
    gap: 1rem;
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 550px) {
  .comparison-row {
    min-width: 700px;
    font-size: 0.78rem;
  }
}

/* Inline SVG icons (replaces Font Awesome CDN) */
i.fas,
i.fab {
  display: inline-block;
  width: 1em;
  height: 1em;
  font-style: normal;
  line-height: 1;
  vertical-align: -0.125em;
  flex-shrink: 0;
  background-color: currentColor;
  -webkit-mask: var(--icon) center / contain no-repeat;
  mask: var(--icon) center / contain no-repeat;
}
.feature-item > i.fas,
.feature-item > i.fab {
  width: 2rem;
  height: 2rem;
}
.fa-star { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M12 2l2.4 4.9 5.4.8-3.9 3.8.9 5.4L12 14.9 7.2 17l.9-5.4L4.2 7.7l5.4-.8L12 2z'/%3E%3C/svg%3E"); }
.fa-check { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M9.5 16.6L4.9 12l1.4-1.4 3.2 3.2 7.6-7.6 1.4 1.4-9 9z'/%3E%3C/svg%3E"); }
.fa-times { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M6.4 6.4 12 12l5.6-5.6 1.4 1.4L13.4 13.4l5.6 5.6-1.4 1.4-5.6-5.6-5.6 5.6-1.4-1.4 5.6-5.6-5.6-5.6z'/%3E%3C/svg%3E"); }
.fa-arrow-right { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M13.2 5.2 12 6.4l4.6 4.6H4v2h12.6l-4.6 4.6 1.2 1.2 6.8-6.8-6.8-6.8z'/%3E%3C/svg%3E"); }
.fa-mobile-alt { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M8 2h8a2 2 0 0 1 2 2v16a2 2 0 0 1-2 2H8a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2zm0 2v16h8V4H8zm4 14a1 1 0 1 0 0-2 1 1 0 0 0 0 2z'/%3E%3C/svg%3E"); }
.fa-credit-card { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M3 5h18a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2V7a2 2 0 0 1 2-2zm0 4h18V9H3v2zm2 6h4v2H5v-2z'/%3E%3C/svg%3E"); }
.fa-university { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M12 3 2 9v2h20V9L12 3zm-7 9v7h2v-7H5zm5 0v7h2v-7h-2zm5 0v7h2v-7h-2zm5 0v7h2v-7h-2zM4 21h16v2H4v-2z'/%3E%3C/svg%3E"); }
.fa-shield-alt { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M12 2 4 5v6c0 5 3.4 9.7 8 11 4.6-1.3 8-6 8-11V5l-8-3zm0 2.2 6 2.25V11c0 3.9-2.5 7.6-6 8.8-3.5-1.2-6-4.9-6-8.8V6.45l6-2.25z'/%3E%3C/svg%3E"); }
.fa-tachometer-alt { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M12 4a8 8 0 1 0 8 8h-2a6 6 0 1 1-6-6V4zm0 2v5l4.2 2.4-.9 1.6L10 13V6h2z'/%3E%3C/svg%3E"); }
.fa-euro-sign { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M18 6.5A7.5 7.5 0 0 0 6.9 12H4v2h2.9a7.5 7.5 0 0 0 11.1 5.5l1.4-1.4A9.5 9.5 0 0 1 7.5 14H16v-2H7.5a9.5 9.5 0 0 1 11.9-5.1L18 6.5z'/%3E%3C/svg%3E"); }
.fa-heart { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M12 21s-8-5.2-8-11a4.5 4.5 0 0 1 8-2.3A4.5 4.5 0 0 1 20 10c0 5.8-8 11-8 11z'/%3E%3C/svg%3E"); }
.fa-brain { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M9 4a3 3 0 0 0-3 3v1A3 3 0 0 0 3 10v1a3 3 0 0 0 3 3v1a3 3 0 0 0 6 0v-1a3 3 0 0 0 3-3V9a3 3 0 0 0-3-3H9zm6 7a5 5 0 0 1 5 5v1a5 5 0 0 1-5 5h-1v-2h1a3 3 0 0 0 3-3v-1a3 3 0 0 0-3-3h-1V9h1z'/%3E%3C/svg%3E"); }
.fa-hourglass-half { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M6 2h12v3l-4 5 4 5v3H6v-3l4-5-4-5V2zm2 2v1.3l3.2 4-3.2 4V20h8v-1.7l-3.2-4 3.2-4V4H8z'/%3E%3C/svg%3E"); }
.fa-ban { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M12 2a10 10 0 1 0 0 20 10 10 0 0 0 0-20zm0 2a8 8 0 0 1 6.3 3.1L5.1 18.3A8 8 0 0 1 12 4zm0 16a8 8 0 0 1-6.3-3.1l13.2-13.2A8 8 0 0 1 12 20z'/%3E%3C/svg%3E"); }
.fa-calendar-alt { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M7 2v2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2h-2V2h-2v2H9V2H7zm12 8H5v10h14V10z'/%3E%3C/svg%3E"); }
.fa-cc-visa { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M3 6h18v12H3V6zm2 3v6h2.5l1.2-4.2.9 4.2H12l1.5-6H9.8L8.6 13 7.5 9H5zm8.5 0L12 15h2.2l.3-6h-2.5zm4 0c-.8 0-1.4.4-1.7 1l2.8 5c.3-.6.9-1 1.7-1 .8 0 1.4-.4 1.7-1l-2.8-5c-.3.6-.9 1-1.7 1z'/%3E%3C/svg%3E"); }
.fa-cc-mastercard { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M3 6h18v12H3V6zm4.5 3a3.5 3.5 0 1 0 0 6 3.5 3.5 0 0 0 0-6zm7 0a3.5 3.5 0 1 0 0 6 3.5 3.5 0 0 0 0-6z'/%3E%3C/svg%3E"); }
