/*
Theme Name: RepararTV Multimarca
Theme URI: https://example.com/
Author: OpenAI
Author URI: https://openai.com/
Description: Tema WordPress para servicio técnico multimarca de televisores.
Version: 1.0
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 7.4
Text Domain: reparartv
*/

:root {
      --primary: #0b132b;
      --secondary: #1c2541;
      --accent: #2563eb;
      --accent-2: #38bdf8;
      --border-light: #dbe4f0;
      --card: #ffffff;
      --text: #0f172a;
      --muted: #475569;
      --shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
      --hero-shadow: 0 20px 44px rgba(2, 6, 23, 0.22);
      --radius: 20px;
      --max: 1260px;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      font-family: Arial, Helvetica, sans-serif;
      color: var(--text);
      background: linear-gradient(180deg, #f7fbff 0%, #ffffff 18%, #ffffff 100%);
      line-height: 1.65;
    }

    a { text-decoration: none; color: inherit; }
    .container { width: min(100% - 32px, var(--max)); margin: 0 auto; }

    .topbar {
      background: var(--primary);
      color: #fff;
      font-size: 15px;
      padding: 11px 0;
    }

    .topbar-inner {
      display: flex;
      justify-content: space-between;
      gap: 16px;
      flex-wrap: wrap;
      align-items: center;
    }

    header {
      position: sticky;
      top: 0;
      z-index: 100;
      background: rgba(255,255,255,0.96);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(226,232,240,0.9);
    }

    .nav {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 18px 0;
      gap: 20px;
    }

    .logo {
      font-size: 31px;
      font-weight: 800;
      letter-spacing: -0.5px;
      color: var(--primary);
    }

    .logo span { color: var(--accent); }

    .menu {
      display: flex;
      gap: 24px;
      align-items: center;
      font-size: 16px;
      color: var(--secondary);
      flex-wrap: wrap;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 15px 24px;
      border-radius: 999px;
      font-weight: 700;
      transition: 0.25s ease;
      font-size: 16px;
    }

    .btn-primary {
      background: linear-gradient(135deg, var(--accent), var(--accent-2));
      color: #fff;
      box-shadow: var(--shadow);
    }

    .btn-outline {
      border: 1px solid var(--border-light);
      color: var(--primary);
      background: #fff;
    }

    .hero {
      background: linear-gradient(180deg, #eaf3ff 0%, #ffffff 100%);
      padding: 84px 0 70px;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 36px;
      align-items: start;
    }

    .eyebrow {
      display: inline-block;
      padding: 9px 15px;
      border-radius: 999px;
      background: #dbeafe;
      color: #1d4ed8;
      font-size: 14px;
      font-weight: 700;
      margin-bottom: 18px;
    }

    h1 {
      margin: 0 0 16px;
      font-size: clamp(38px, 5vw, 60px);
      line-height: 1.04;
      letter-spacing: -1.4px;
      color: var(--primary);
    }

    .hero-copy p {
      margin: 0 0 28px;
      font-size: 19px;
      color: var(--muted);
      max-width: 670px;
    }

    .hero-actions {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
      margin-bottom: 24px;
    }

    .hero-points {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 12px 18px;
      font-size: 16px;
      color: var(--secondary);
      font-weight: 600;
      margin-bottom: 26px;
    }

    .hero-image-block {
      background: #fff;
      border: 1px solid var(--border-light);
      border-radius: 22px;
      padding: 12px;
      box-shadow: var(--shadow);
      overflow: hidden;
      width: 100%;
      aspect-ratio: 16 / 9;
      max-height: 320px;
    }

    .hero-image-block img {
      display: block;
      width: 100%;
      height: 100%;
      border-radius: 16px;
      object-fit: cover;
    }

    .advantages-card {
      background: linear-gradient(135deg, #1f2b44, #324a60);
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 28px;
      padding: 26px;
      color: #fff;
      box-shadow: var(--hero-shadow);
    }

    .advantages-card h2 {
      margin: 0 0 18px;
      font-size: clamp(28px, 3vw, 36px);
      line-height: 1.1;
      letter-spacing: -0.8px;
      color: #fff;
    }

    .adv-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 14px;
    }

    .adv-box {
      background: rgba(12, 20, 42, 0.32);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 18px;
      padding: 18px 16px;
      font-size: 15px;
      font-weight: 700;
      line-height: 1.5;
    }

    .advantages-card .summary {
      margin: 18px 4px 0;
      font-size: 16px;
      line-height: 1.8;
      color: rgba(255,255,255,0.88);
    }

    section { padding: 82px 0; }

    .section-head {
      max-width: 800px;
      margin-bottom: 38px;
    }

    .section-head h2 {
      margin: 0 0 12px;
      font-size: clamp(30px, 4vw, 44px);
      line-height: 1.08;
      letter-spacing: -1px;
      color: var(--primary);
    }

    .section-head p {
      margin: 0;
      color: var(--muted);
      font-size: 18px;
    }

    .services-wrap {
      background: linear-gradient(180deg, #ffffff 0%, #f4f8ff 100%);
    }

    .cards-4 {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 24px;
    }

    .card {
      background: var(--card);
      border: 1px solid var(--border-light);
      border-radius: var(--radius);
      padding: 30px;
      box-shadow: var(--shadow);
      position: relative;
      overflow: hidden;
    }

    .card::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 6px;
      background: linear-gradient(90deg, var(--accent), var(--accent-2));
    }

    .card h3 {
      margin: 8px 0 12px;
      font-size: 24px;
      line-height: 1.2;
      color: var(--primary);
    }

    .card p {
      margin: 0;
      color: var(--muted);
      font-size: 16px;
    }

    .brands {
      background: linear-gradient(180deg, #edf5ff 0%, #f8fbff 100%);
      border-top: 1px solid var(--border-light);
      border-bottom: 1px solid var(--border-light);
    }

    .brands-grid {
      display: grid;
      grid-template-columns: repeat(6, minmax(0, 1fr));
      gap: 16px;
      margin-top: 28px;
    }

    .brand-item {
      background: #fff;
      border: 1px solid var(--border-light);
      border-radius: 16px;
      padding: 20px 12px;
      text-align: center;
      font-weight: 700;
      color: var(--secondary);
      box-shadow: 0 8px 24px rgba(15,23,42,0.05);
      font-size: 16px;
    }

    .issues-wrap {
      background: linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
    }

    .issues-list {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
    }

    .issue {
      background: #fff;
      border: 1px solid var(--border-light);
      border-radius: 16px;
      padding: 24px;
      box-shadow: var(--shadow);
    }

    .issue strong {
      display: block;
      margin-bottom: 8px;
      color: var(--primary);
      font-size: 20px;
      line-height: 1.25;
    }

    .issue span {
      color: var(--muted);
      font-size: 16px;
    }

    .locations-wrap {
      background: linear-gradient(180deg, #eef5ff 0%, #ffffff 100%);
    }

    .locations-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 24px;
    }

    .location-card {
      background: #fff;
      border: 1px solid var(--border-light);
      border-radius: 22px;
      padding: 28px;
      box-shadow: var(--shadow);
    }

    .location-card h3 {
      margin: 0 0 10px;
      font-size: 28px;
      color: var(--primary);
      line-height: 1.15;
    }

    .location-card p,
    .location-card li {
      color: var(--muted);
      font-size: 16px;
    }

    .location-card ul {
      margin: 14px 0 0;
      padding-left: 18px;
    }

    .map-frame {
      margin-top: 20px;
      border-radius: 16px;
      overflow: hidden;
      border: 1px solid var(--border-light);
      box-shadow: 0 8px 24px rgba(15,23,42,0.06);
    }

    .map-frame iframe {
      display: block;
      width: 100%;
      height: 230px;
      border: 0;
    }

    .wa-card {
      background: linear-gradient(135deg, #0f172a, #1d4ed8);
      color: #fff;
    }

    .wa-card h3,
    .wa-card p,
    .wa-card li { color: #fff; }

    .wa-card p,
    .wa-card li { color: rgba(255,255,255,0.9); }

    .whatsapp-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      margin-top: 16px;
      padding: 16px 22px;
      width: 100%;
      border-radius: 999px;
      background: #ffffff;
      color: #0f172a;
      font-weight: 800;
      font-size: 18px;
      box-shadow: 0 12px 24px rgba(0,0,0,0.18);
    }

    .cta {
      background: linear-gradient(135deg, var(--primary), #1d4ed8);
      color: #fff;
      border-radius: 30px;
      padding: 42px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 22px;
      flex-wrap: wrap;
      box-shadow: var(--hero-shadow);
    }

    .cta h2 {
      margin: 0;
      font-size: clamp(30px, 4vw, 42px);
      letter-spacing: -1px;
      line-height: 1.08;
    }

    footer {
      padding: 34px 0 50px;
      color: var(--muted);
      font-size: 15px;
    }

    .footer-grid {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 16px;
      flex-wrap: wrap;
      border-top: 1px solid var(--border-light);
      padding-top: 26px;
      margin-top: 16px;
    }

    @media (max-width: 1180px) {
      .hero-grid,
      .cards-4,
      .locations-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .brands-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
      }

      .issues-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (max-width: 860px) {
      .hero-grid,
      .cards-4,
      .brands-grid,
      .issues-list,
      .locations-grid,
      .hero-points,
      .adv-grid {
        grid-template-columns: 1fr;
      }

      .nav {
        flex-direction: column;
        align-items: flex-start;
      }

      .menu {
        display: flex;
        flex-wrap: wrap;
        gap: 14px;
      }

      .hero {
        padding: 58px 0 48px;
      }

      section {
        padding: 60px 0;
      }

      .cta {
        padding: 28px;
      }

      .hero-image-block {
        aspect-ratio: 4 / 3;
        max-height: none;
      }

      .topbar-inner,
      .footer-grid {
        flex-direction: column;
        align-items: flex-start;
      }
    }
  
    @media (max-width: 1024px) {
      .hero-grid {
        grid-template-columns: 1fr;
        gap: 28px;
      }

      .cards-4 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .brands-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }

      .issues-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .locations-grid {
        grid-template-columns: 1fr;
      }

      .hero-image-block {
        max-width: 100%;
        max-height: 340px;
      }
    }

    @media (max-width: 768px) {
      .container {
        width: min(100% - 24px, var(--max));
      }

      .topbar {
        font-size: 14px;
        padding: 10px 0;
      }

      .topbar-inner {
        align-items: flex-start;
      }

      .nav {
        padding: 14px 0;
      }

      .logo {
        font-size: 27px;
      }

      .menu {
        gap: 12px;
        font-size: 15px;
      }

      .hero {
        padding: 48px 0 42px;
      }

      h1 {
        font-size: clamp(30px, 9vw, 42px);
      }

      .hero-copy p {
        font-size: 17px;
        margin-bottom: 22px;
      }

      .hero-actions {
        flex-direction: column;
        align-items: stretch;
      }

      .btn,
      .btn-primary,
      .btn-outline {
        width: 100%;
      }

      .hero-points {
        grid-template-columns: 1fr;
        font-size: 15px;
        gap: 10px;
      }

      .hero-image-block {
        aspect-ratio: 16 / 10;
        max-height: none;
        padding: 10px;
      }

      .advantages-card {
        padding: 20px;
      }

      .advantages-card h2 {
        font-size: 30px;
      }

      .adv-grid {
        grid-template-columns: 1fr;
      }

      section {
        padding: 52px 0;
      }

      .section-head {
        margin-bottom: 28px;
      }

      .section-head h2 {
        font-size: clamp(26px, 8vw, 34px);
      }

      .section-head p {
        font-size: 16px;
      }

      .cards-4,
      .brands-grid,
      .issues-list {
        grid-template-columns: 1fr;
        gap: 18px;
      }

      .card,
      .issue,
      .location-card {
        padding: 22px;
      }

      .card h3,
      .issue strong,
      .location-card h3 {
        font-size: 22px;
      }

      .card p,
      .issue span,
      .location-card p,
      .location-card li {
        font-size: 15px;
      }

      .map-frame iframe {
        height: 220px;
      }

      .cta {
        padding: 26px;
        flex-direction: column;
        align-items: stretch;
      }

      .cta h2 {
        font-size: clamp(26px, 8vw, 34px);
      }
    }

    @media (max-width: 480px) {
      .container {
        width: min(100% - 18px, var(--max));
      }

      .topbar {
        font-size: 13px;
      }

      .logo {
        font-size: 24px;
      }

      .menu {
        font-size: 14px;
        gap: 10px;
      }

      .hero {
        padding: 40px 0 36px;
      }

      .eyebrow {
        font-size: 12px;
        padding: 8px 12px;
      }

      h1 {
        font-size: clamp(28px, 10vw, 36px);
      }

      .hero-copy p,
      .section-head p {
        font-size: 15px;
      }

      .hero-points {
        font-size: 14px;
      }

      .hero-image-block {
        border-radius: 18px;
      }

      .hero-image-block img {
        border-radius: 12px;
      }

      .advantages-card {
        border-radius: 22px;
        padding: 18px;
      }

      .advantages-card h2 {
        font-size: 26px;
      }

      .adv-box {
        font-size: 14px;
        padding: 16px 14px;
      }

      .advantages-card .summary {
        font-size: 15px;
      }

      .card,
      .issue,
      .location-card {
        padding: 18px;
        border-radius: 18px;
      }

      .card h3,
      .issue strong,
      .location-card h3 {
        font-size: 20px;
      }

      .brand-item {
        font-size: 15px;
        padding: 16px 10px;
      }

      .map-frame iframe {
        height: 200px;
      }

      .whatsapp-btn {
        font-size: 16px;
        padding: 14px 18px;
      }

      .cta {
        border-radius: 22px;
        padding: 22px;
      }

      .cta h2 {
        font-size: 28px;
      }

      footer {
        padding: 26px 0 36px;
      }
    }

.page-content-wrap {
  padding: 60px 0;
}

.page-card {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 22px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.page-card h1 {
  font-size: clamp(30px, 4vw, 42px);
  line-height: 1.1;
  letter-spacing: -1px;
  margin: 0 0 16px;
}

.page-card p,
.page-card li {
  font-size: 16px;
  color: var(--muted);
}

.page-card ul {
  padding-left: 18px;
}

.current-menu-item > a,
.current_page_item > a {
  color: var(--accent);
}

@media (max-width: 768px) {
  .page-content-wrap {
    padding: 40px 0;
  }

  .page-card {
    padding: 22px;
  }
}


.brand-item {
  position: relative;
  overflow: hidden;
  color: #0f172a;
  font-weight: 800;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.brand-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(15,23,42,0.12);
}

.brand-item::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.95;
  z-index: 0;
}

.brand-item {
  position: relative;
}

.brand-item > * {
  position: relative;
  z-index: 1;
}

.brand-item:nth-child(6n+1)::before { background: linear-gradient(135deg, #dbeafe, #bfdbfe); }
.brand-item:nth-child(6n+2)::before { background: linear-gradient(135deg, #dcfce7, #bbf7d0); }
.brand-item:nth-child(6n+3)::before { background: linear-gradient(135deg, #fef3c7, #fde68a); }
.brand-item:nth-child(6n+4)::before { background: linear-gradient(135deg, #fae8ff, #e9d5ff); }
.brand-item:nth-child(6n+5)::before { background: linear-gradient(135deg, #ffe4e6, #fecdd3); }
.brand-item:nth-child(6n)::before { background: linear-gradient(135deg, #e0f2fe, #bae6fd); }

.brand-item span {
  position: relative;
  z-index: 1;
}


.brands-grid a {
  text-decoration: none;
}

.brand-hero {
  background: linear-gradient(180deg, #eaf3ff 0%, #ffffff 100%);
  padding: 72px 0 36px;
}

.brand-hero-card {
  background: linear-gradient(135deg, #1f2b44, #324a60);
  color: #fff;
  border-radius: 28px;
  padding: 34px;
  box-shadow: var(--hero-shadow);
}

.brand-hero-card h1 {
  margin: 0 0 12px;
  color: #fff;
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1.04;
  letter-spacing: -1.2px;
}

.brand-hero-card p {
  margin: 0;
  color: rgba(255,255,255,0.88);
  font-size: 18px;
}

.brand-page-wrap {
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.brand-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.brand-box {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 22px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.brand-box h2 {
  margin: 0 0 14px;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.1;
}

.brand-box ul {
  margin: 0;
  padding-left: 20px;
}

.brand-box li {
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 16px;
}

.brand-back {
  display: inline-flex;
  margin-top: 20px;
}

@media (max-width: 900px) {
  .brand-grid-2 {
    grid-template-columns: 1fr;
  }

  .brand-hero {
    padding: 52px 0 28px;
  }

  .brand-hero-card {
    padding: 24px;
  }

  .brand-hero-card p {
    font-size: 16px;
  }

  .brand-box {
    padding: 22px;
  }
}


.brand-item {
  position: relative;
  overflow: hidden;
  min-height: 126px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 16px;
  border: 1px solid rgba(255,255,255,0.14);
  color: #ffffff;
  font-weight: 800;
  letter-spacing: 0.35px;
  text-shadow: 0 2px 18px rgba(0,0,0,0.42);
  box-shadow: 0 18px 40px rgba(15,23,42,0.16);
  transition: transform 0.28s ease, box-shadow 0.28s ease, filter 0.28s ease;
  isolation: isolate;
}
.brand-item:hover {
  transform: translateY(-5px) scale(1.016);
  box-shadow: 0 24px 54px rgba(15,23,42,0.22);
  filter: saturate(1.08);
}
.brand-item span {
  position: relative;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(8,12,24,0.34);
  border: 1px solid rgba(255,255,255,0.16);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.14);
}
.brand-item::before,
.brand-item::after {
  content: "";
  position: absolute;
  inset: 0;
}
.brand-item::before {
  z-index: 1;
  background-size: cover;
  background-position: center;
}
.brand-item::after {
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.10) 0%, rgba(255,255,255,0.02) 24%, rgba(0,0,0,0.18) 100%),
    radial-gradient(circle at 20% 0%, rgba(255,255,255,0.16), transparent 36%);
}
.brand-item span::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.88);
  margin-right: 10px;
  box-shadow: 0 0 10px rgba(255,255,255,0.5);
}
.brand-item:nth-child(6n+1)::before { background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%20640%20360%22%3E%0A%20%20%20%20%20%20%3Cdefs%3E%0A%20%20%20%20%20%20%20%20%3ClinearGradient%20id%3D%22bg%22%20x1%3D%220%22%20y1%3D%220%22%20x2%3D%221%22%20y2%3D%221%22%3E%0A%20%20%20%20%20%20%20%20%20%20%3Cstop%20offset%3D%220%25%22%20stop-color%3D%22%23091224%22/%3E%0A%20%20%20%20%20%20%20%20%20%20%3Cstop%20offset%3D%2255%25%22%20stop-color%3D%22%230d3b83%22/%3E%0A%20%20%20%20%20%20%20%20%20%20%3Cstop%20offset%3D%22100%25%22%20stop-color%3D%22%2338bdf8%22/%3E%0A%20%20%20%20%20%20%20%20%3C/linearGradient%3E%0A%20%20%20%20%20%20%20%20%3ClinearGradient%20id%3D%22screen%22%20x1%3D%220%22%20y1%3D%220%22%20x2%3D%221%22%20y2%3D%221%22%3E%0A%20%20%20%20%20%20%20%20%20%20%3Cstop%20offset%3D%220%25%22%20stop-color%3D%22rgba%28255%2C255%2C255%2C0.22%29%22/%3E%0A%20%20%20%20%20%20%20%20%20%20%3Cstop%20offset%3D%22100%25%22%20stop-color%3D%22rgba%28255%2C255%2C255%2C0.04%29%22/%3E%0A%20%20%20%20%20%20%20%20%3C/linearGradient%3E%0A%20%20%20%20%20%20%20%20%3ClinearGradient%20id%3D%22shine%22%20x1%3D%220%22%20y1%3D%220%22%20x2%3D%221%22%20y2%3D%221%22%3E%0A%20%20%20%20%20%20%20%20%20%20%3Cstop%20offset%3D%220%25%22%20stop-color%3D%22rgba%28255%2C255%2C255%2C0.34%29%22/%3E%0A%20%20%20%20%20%20%20%20%20%20%3Cstop%20offset%3D%22100%25%22%20stop-color%3D%22rgba%28255%2C255%2C255%2C0%29%22/%3E%0A%20%20%20%20%20%20%20%20%3C/linearGradient%3E%0A%20%20%20%20%20%20%3C/defs%3E%0A%20%20%20%20%20%20%3Crect%20width%3D%22640%22%20height%3D%22360%22%20fill%3D%22url%28%23bg%29%22/%3E%0A%20%20%20%20%20%20%3Ccircle%20cx%3D%22100%22%20cy%3D%2286%22%20r%3D%22120%22%20fill%3D%22%237dd3fc%22%20opacity%3D%220.18%22/%3E%0A%20%20%20%20%20%20%3Ccircle%20cx%3D%22560%22%20cy%3D%2286%22%20r%3D%2296%22%20fill%3D%22%23bfdbfe%22%20opacity%3D%220.26%22/%3E%0A%20%20%20%20%20%20%3Ccircle%20cx%3D%22540%22%20cy%3D%22300%22%20r%3D%22120%22%20fill%3D%22%237dd3fc%22%20opacity%3D%220.12%22/%3E%0A%20%20%20%20%20%20%3Cg%20opacity%3D%220.14%22%20stroke%3D%22white%22%20stroke-width%3D%222%22%3E%0A%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M18%2056%20H622%22/%3E%3Cpath%20d%3D%22M18%2092%20H622%22/%3E%3Cpath%20d%3D%22M18%20128%20H622%22/%3E%3Cpath%20d%3D%22M18%20164%20H622%22/%3E%3Cpath%20d%3D%22M18%20200%20H622%22/%3E%3Cpath%20d%3D%22M18%20236%20H622%22/%3E%0A%20%20%20%20%20%20%3C/g%3E%0A%20%20%20%20%20%20%3Cg%20opacity%3D%220.18%22%20stroke%3D%22white%22%20stroke-width%3D%223%22%3E%0A%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M20%20290%20C130%20220%2C%20220%20210%2C%20330%20250%20S530%20330%2C%20620%20250%22%20fill%3D%22none%22/%3E%0A%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M40%20318%20C160%20256%2C%20280%20240%2C%20390%20276%20S560%20336%2C%20620%20288%22%20fill%3D%22none%22/%3E%0A%20%20%20%20%20%20%3C/g%3E%0A%20%20%20%20%20%20%3Cellipse%20cx%3D%22330%22%20cy%3D%22298%22%20rx%3D%22120%22%20ry%3D%2220%22%20fill%3D%22rgba%280%2C0%2C0%2C0.18%29%22/%3E%0A%20%20%20%20%20%20%3Cg%20transform%3D%22translate%28210%2082%29%22%3E%0A%20%20%20%20%20%20%20%20%3Crect%20x%3D%220%22%20y%3D%220%22%20width%3D%22244%22%20height%3D%22146%22%20rx%3D%2226%22%20fill%3D%22rgba%284%2C10%2C24%2C0.72%29%22%20stroke%3D%22rgba%28255%2C255%2C255%2C0.22%29%22%20stroke-width%3D%223%22/%3E%0A%20%20%20%20%20%20%20%20%3Crect%20x%3D%2214%22%20y%3D%2214%22%20width%3D%22216%22%20height%3D%22108%22%20rx%3D%2218%22%20fill%3D%22url%28%23screen%29%22%20stroke%3D%22rgba%28255%2C255%2C255%2C0.16%29%22%20stroke-width%3D%222%22/%3E%0A%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M18%2018%20L146%2018%20L80%20118%20L18%20118%20Z%22%20fill%3D%22url%28%23shine%29%22%20opacity%3D%220.42%22/%3E%0A%20%20%20%20%20%20%20%20%3Crect%20x%3D%22108%22%20y%3D%22130%22%20width%3D%2228%22%20height%3D%228%22%20rx%3D%224%22%20fill%3D%22rgba%28255%2C255%2C255%2C0.26%29%22/%3E%0A%20%20%20%20%20%20%20%20%3Crect%20x%3D%2288%22%20y%3D%22138%22%20width%3D%2268%22%20height%3D%226%22%20rx%3D%223%22%20fill%3D%22rgba%28255%2C255%2C255%2C0.16%29%22/%3E%0A%20%20%20%20%20%20%3C/g%3E%0A%20%20%20%20%20%20%3Cg%20opacity%3D%220.32%22%20stroke%3D%22white%22%20stroke-width%3D%223%22%20fill%3D%22none%22%3E%0A%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M510%20108%20a18%2018%200%200%201%2018%20-18%22/%3E%0A%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M516%20124%20a30%2030%200%200%201%2030%20-30%22/%3E%0A%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M524%20142%20a42%2042%200%200%201%2042%20-42%22/%3E%0A%20%20%20%20%20%20%3C/g%3E%0A%20%20%20%20%3C/svg%3E"); }
.brand-item:nth-child(6n+2)::before { background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%20640%20360%22%3E%0A%20%20%20%20%20%20%3Cdefs%3E%0A%20%20%20%20%20%20%20%20%3ClinearGradient%20id%3D%22bg%22%20x1%3D%220%22%20y1%3D%220%22%20x2%3D%221%22%20y2%3D%221%22%3E%0A%20%20%20%20%20%20%20%20%20%20%3Cstop%20offset%3D%220%25%22%20stop-color%3D%22%23071b16%22/%3E%0A%20%20%20%20%20%20%20%20%20%20%3Cstop%20offset%3D%2255%25%22%20stop-color%3D%22%2314532d%22/%3E%0A%20%20%20%20%20%20%20%20%20%20%3Cstop%20offset%3D%22100%25%22%20stop-color%3D%22%2322c55e%22/%3E%0A%20%20%20%20%20%20%20%20%3C/linearGradient%3E%0A%20%20%20%20%20%20%20%20%3ClinearGradient%20id%3D%22screen%22%20x1%3D%220%22%20y1%3D%220%22%20x2%3D%221%22%20y2%3D%221%22%3E%0A%20%20%20%20%20%20%20%20%20%20%3Cstop%20offset%3D%220%25%22%20stop-color%3D%22rgba%28255%2C255%2C255%2C0.22%29%22/%3E%0A%20%20%20%20%20%20%20%20%20%20%3Cstop%20offset%3D%22100%25%22%20stop-color%3D%22rgba%28255%2C255%2C255%2C0.04%29%22/%3E%0A%20%20%20%20%20%20%20%20%3C/linearGradient%3E%0A%20%20%20%20%20%20%20%20%3ClinearGradient%20id%3D%22shine%22%20x1%3D%220%22%20y1%3D%220%22%20x2%3D%221%22%20y2%3D%221%22%3E%0A%20%20%20%20%20%20%20%20%20%20%3Cstop%20offset%3D%220%25%22%20stop-color%3D%22rgba%28255%2C255%2C255%2C0.34%29%22/%3E%0A%20%20%20%20%20%20%20%20%20%20%3Cstop%20offset%3D%22100%25%22%20stop-color%3D%22rgba%28255%2C255%2C255%2C0%29%22/%3E%0A%20%20%20%20%20%20%20%20%3C/linearGradient%3E%0A%20%20%20%20%20%20%3C/defs%3E%0A%20%20%20%20%20%20%3Crect%20width%3D%22640%22%20height%3D%22360%22%20fill%3D%22url%28%23bg%29%22/%3E%0A%20%20%20%20%20%20%3Ccircle%20cx%3D%22100%22%20cy%3D%2286%22%20r%3D%22120%22%20fill%3D%22%2386efac%22%20opacity%3D%220.18%22/%3E%0A%20%20%20%20%20%20%3Ccircle%20cx%3D%22560%22%20cy%3D%2286%22%20r%3D%2296%22%20fill%3D%22%23facc15%22%20opacity%3D%220.26%22/%3E%0A%20%20%20%20%20%20%3Ccircle%20cx%3D%22540%22%20cy%3D%22300%22%20r%3D%22120%22%20fill%3D%22%2386efac%22%20opacity%3D%220.12%22/%3E%0A%20%20%20%20%20%20%3Cg%20opacity%3D%220.14%22%20stroke%3D%22white%22%20stroke-width%3D%222%22%3E%0A%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M18%2056%20H622%22/%3E%3Cpath%20d%3D%22M18%2092%20H622%22/%3E%3Cpath%20d%3D%22M18%20128%20H622%22/%3E%3Cpath%20d%3D%22M18%20164%20H622%22/%3E%3Cpath%20d%3D%22M18%20200%20H622%22/%3E%3Cpath%20d%3D%22M18%20236%20H622%22/%3E%0A%20%20%20%20%20%20%3C/g%3E%0A%20%20%20%20%20%20%3Cg%20opacity%3D%220.18%22%20stroke%3D%22white%22%20stroke-width%3D%223%22%3E%0A%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M20%20290%20C130%20220%2C%20220%20210%2C%20330%20250%20S530%20330%2C%20620%20250%22%20fill%3D%22none%22/%3E%0A%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M40%20318%20C160%20256%2C%20280%20240%2C%20390%20276%20S560%20336%2C%20620%20288%22%20fill%3D%22none%22/%3E%0A%20%20%20%20%20%20%3C/g%3E%0A%20%20%20%20%20%20%3Cellipse%20cx%3D%22330%22%20cy%3D%22298%22%20rx%3D%22120%22%20ry%3D%2220%22%20fill%3D%22rgba%280%2C0%2C0%2C0.18%29%22/%3E%0A%20%20%20%20%20%20%3Cg%20transform%3D%22translate%28210%2082%29%22%3E%0A%20%20%20%20%20%20%20%20%3Crect%20x%3D%220%22%20y%3D%220%22%20width%3D%22244%22%20height%3D%22146%22%20rx%3D%2226%22%20fill%3D%22rgba%284%2C10%2C24%2C0.72%29%22%20stroke%3D%22rgba%28255%2C255%2C255%2C0.22%29%22%20stroke-width%3D%223%22/%3E%0A%20%20%20%20%20%20%20%20%3Crect%20x%3D%2214%22%20y%3D%2214%22%20width%3D%22216%22%20height%3D%22108%22%20rx%3D%2218%22%20fill%3D%22url%28%23screen%29%22%20stroke%3D%22rgba%28255%2C255%2C255%2C0.16%29%22%20stroke-width%3D%222%22/%3E%0A%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M18%2018%20L146%2018%20L80%20118%20L18%20118%20Z%22%20fill%3D%22url%28%23shine%29%22%20opacity%3D%220.42%22/%3E%0A%20%20%20%20%20%20%20%20%3Crect%20x%3D%22108%22%20y%3D%22130%22%20width%3D%2228%22%20height%3D%228%22%20rx%3D%224%22%20fill%3D%22rgba%28255%2C255%2C255%2C0.26%29%22/%3E%0A%20%20%20%20%20%20%20%20%3Crect%20x%3D%2288%22%20y%3D%22138%22%20width%3D%2268%22%20height%3D%226%22%20rx%3D%223%22%20fill%3D%22rgba%28255%2C255%2C255%2C0.16%29%22/%3E%0A%20%20%20%20%20%20%3C/g%3E%0A%20%20%20%20%20%20%3Cg%20opacity%3D%220.32%22%20stroke%3D%22white%22%20stroke-width%3D%223%22%20fill%3D%22none%22%3E%0A%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M510%20108%20a18%2018%200%200%201%2018%20-18%22/%3E%0A%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M516%20124%20a30%2030%200%200%201%2030%20-30%22/%3E%0A%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M524%20142%20a42%2042%200%200%201%2042%20-42%22/%3E%0A%20%20%20%20%20%20%3C/g%3E%0A%20%20%20%20%3C/svg%3E"); }
.brand-item:nth-child(6n+3)::before { background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%20640%20360%22%3E%0A%20%20%20%20%20%20%3Cdefs%3E%0A%20%20%20%20%20%20%20%20%3ClinearGradient%20id%3D%22bg%22%20x1%3D%220%22%20y1%3D%220%22%20x2%3D%221%22%20y2%3D%221%22%3E%0A%20%20%20%20%20%20%20%20%20%20%3Cstop%20offset%3D%220%25%22%20stop-color%3D%22%2322140a%22/%3E%0A%20%20%20%20%20%20%20%20%20%20%3Cstop%20offset%3D%2255%25%22%20stop-color%3D%22%2392400e%22/%3E%0A%20%20%20%20%20%20%20%20%20%20%3Cstop%20offset%3D%22100%25%22%20stop-color%3D%22%23f59e0b%22/%3E%0A%20%20%20%20%20%20%20%20%3C/linearGradient%3E%0A%20%20%20%20%20%20%20%20%3ClinearGradient%20id%3D%22screen%22%20x1%3D%220%22%20y1%3D%220%22%20x2%3D%221%22%20y2%3D%221%22%3E%0A%20%20%20%20%20%20%20%20%20%20%3Cstop%20offset%3D%220%25%22%20stop-color%3D%22rgba%28255%2C255%2C255%2C0.22%29%22/%3E%0A%20%20%20%20%20%20%20%20%20%20%3Cstop%20offset%3D%22100%25%22%20stop-color%3D%22rgba%28255%2C255%2C255%2C0.04%29%22/%3E%0A%20%20%20%20%20%20%20%20%3C/linearGradient%3E%0A%20%20%20%20%20%20%20%20%3ClinearGradient%20id%3D%22shine%22%20x1%3D%220%22%20y1%3D%220%22%20x2%3D%221%22%20y2%3D%221%22%3E%0A%20%20%20%20%20%20%20%20%20%20%3Cstop%20offset%3D%220%25%22%20stop-color%3D%22rgba%28255%2C255%2C255%2C0.34%29%22/%3E%0A%20%20%20%20%20%20%20%20%20%20%3Cstop%20offset%3D%22100%25%22%20stop-color%3D%22rgba%28255%2C255%2C255%2C0%29%22/%3E%0A%20%20%20%20%20%20%20%20%3C/linearGradient%3E%0A%20%20%20%20%20%20%3C/defs%3E%0A%20%20%20%20%20%20%3Crect%20width%3D%22640%22%20height%3D%22360%22%20fill%3D%22url%28%23bg%29%22/%3E%0A%20%20%20%20%20%20%3Ccircle%20cx%3D%22100%22%20cy%3D%2286%22%20r%3D%22120%22%20fill%3D%22%23fdba74%22%20opacity%3D%220.18%22/%3E%0A%20%20%20%20%20%20%3Ccircle%20cx%3D%22560%22%20cy%3D%2286%22%20r%3D%2296%22%20fill%3D%22%23fde68a%22%20opacity%3D%220.26%22/%3E%0A%20%20%20%20%20%20%3Ccircle%20cx%3D%22540%22%20cy%3D%22300%22%20r%3D%22120%22%20fill%3D%22%23fdba74%22%20opacity%3D%220.12%22/%3E%0A%20%20%20%20%20%20%3Cg%20opacity%3D%220.14%22%20stroke%3D%22white%22%20stroke-width%3D%222%22%3E%0A%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M18%2056%20H622%22/%3E%3Cpath%20d%3D%22M18%2092%20H622%22/%3E%3Cpath%20d%3D%22M18%20128%20H622%22/%3E%3Cpath%20d%3D%22M18%20164%20H622%22/%3E%3Cpath%20d%3D%22M18%20200%20H622%22/%3E%3Cpath%20d%3D%22M18%20236%20H622%22/%3E%0A%20%20%20%20%20%20%3C/g%3E%0A%20%20%20%20%20%20%3Cg%20opacity%3D%220.18%22%20stroke%3D%22white%22%20stroke-width%3D%223%22%3E%0A%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M20%20290%20C130%20220%2C%20220%20210%2C%20330%20250%20S530%20330%2C%20620%20250%22%20fill%3D%22none%22/%3E%0A%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M40%20318%20C160%20256%2C%20280%20240%2C%20390%20276%20S560%20336%2C%20620%20288%22%20fill%3D%22none%22/%3E%0A%20%20%20%20%20%20%3C/g%3E%0A%20%20%20%20%20%20%3Cellipse%20cx%3D%22330%22%20cy%3D%22298%22%20rx%3D%22120%22%20ry%3D%2220%22%20fill%3D%22rgba%280%2C0%2C0%2C0.18%29%22/%3E%0A%20%20%20%20%20%20%3Cg%20transform%3D%22translate%28210%2082%29%22%3E%0A%20%20%20%20%20%20%20%20%3Crect%20x%3D%220%22%20y%3D%220%22%20width%3D%22244%22%20height%3D%22146%22%20rx%3D%2226%22%20fill%3D%22rgba%284%2C10%2C24%2C0.72%29%22%20stroke%3D%22rgba%28255%2C255%2C255%2C0.22%29%22%20stroke-width%3D%223%22/%3E%0A%20%20%20%20%20%20%20%20%3Crect%20x%3D%2214%22%20y%3D%2214%22%20width%3D%22216%22%20height%3D%22108%22%20rx%3D%2218%22%20fill%3D%22url%28%23screen%29%22%20stroke%3D%22rgba%28255%2C255%2C255%2C0.16%29%22%20stroke-width%3D%222%22/%3E%0A%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M18%2018%20L146%2018%20L80%20118%20L18%20118%20Z%22%20fill%3D%22url%28%23shine%29%22%20opacity%3D%220.42%22/%3E%0A%20%20%20%20%20%20%20%20%3Crect%20x%3D%22108%22%20y%3D%22130%22%20width%3D%2228%22%20height%3D%228%22%20rx%3D%224%22%20fill%3D%22rgba%28255%2C255%2C255%2C0.26%29%22/%3E%0A%20%20%20%20%20%20%20%20%3Crect%20x%3D%2288%22%20y%3D%22138%22%20width%3D%2268%22%20height%3D%226%22%20rx%3D%223%22%20fill%3D%22rgba%28255%2C255%2C255%2C0.16%29%22/%3E%0A%20%20%20%20%20%20%3C/g%3E%0A%20%20%20%20%20%20%3Cg%20opacity%3D%220.32%22%20stroke%3D%22white%22%20stroke-width%3D%223%22%20fill%3D%22none%22%3E%0A%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M510%20108%20a18%2018%200%200%201%2018%20-18%22/%3E%0A%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M516%20124%20a30%2030%200%200%201%2030%20-30%22/%3E%0A%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M524%20142%20a42%2042%200%200%201%2042%20-42%22/%3E%0A%20%20%20%20%20%20%3C/g%3E%0A%20%20%20%20%3C/svg%3E"); }
.brand-item:nth-child(6n+4)::before { background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%20640%20360%22%3E%0A%20%20%20%20%20%20%3Cdefs%3E%0A%20%20%20%20%20%20%20%20%3ClinearGradient%20id%3D%22bg%22%20x1%3D%220%22%20y1%3D%220%22%20x2%3D%221%22%20y2%3D%221%22%3E%0A%20%20%20%20%20%20%20%20%20%20%3Cstop%20offset%3D%220%25%22%20stop-color%3D%22%23180a2e%22/%3E%0A%20%20%20%20%20%20%20%20%20%20%3Cstop%20offset%3D%2255%25%22%20stop-color%3D%22%236d28d9%22/%3E%0A%20%20%20%20%20%20%20%20%20%20%3Cstop%20offset%3D%22100%25%22%20stop-color%3D%22%23ec4899%22/%3E%0A%20%20%20%20%20%20%20%20%3C/linearGradient%3E%0A%20%20%20%20%20%20%20%20%3ClinearGradient%20id%3D%22screen%22%20x1%3D%220%22%20y1%3D%220%22%20x2%3D%221%22%20y2%3D%221%22%3E%0A%20%20%20%20%20%20%20%20%20%20%3Cstop%20offset%3D%220%25%22%20stop-color%3D%22rgba%28255%2C255%2C255%2C0.22%29%22/%3E%0A%20%20%20%20%20%20%20%20%20%20%3Cstop%20offset%3D%22100%25%22%20stop-color%3D%22rgba%28255%2C255%2C255%2C0.04%29%22/%3E%0A%20%20%20%20%20%20%20%20%3C/linearGradient%3E%0A%20%20%20%20%20%20%20%20%3ClinearGradient%20id%3D%22shine%22%20x1%3D%220%22%20y1%3D%220%22%20x2%3D%221%22%20y2%3D%221%22%3E%0A%20%20%20%20%20%20%20%20%20%20%3Cstop%20offset%3D%220%25%22%20stop-color%3D%22rgba%28255%2C255%2C255%2C0.34%29%22/%3E%0A%20%20%20%20%20%20%20%20%20%20%3Cstop%20offset%3D%22100%25%22%20stop-color%3D%22rgba%28255%2C255%2C255%2C0%29%22/%3E%0A%20%20%20%20%20%20%20%20%3C/linearGradient%3E%0A%20%20%20%20%20%20%3C/defs%3E%0A%20%20%20%20%20%20%3Crect%20width%3D%22640%22%20height%3D%22360%22%20fill%3D%22url%28%23bg%29%22/%3E%0A%20%20%20%20%20%20%3Ccircle%20cx%3D%22100%22%20cy%3D%2286%22%20r%3D%22120%22%20fill%3D%22%23f5d0fe%22%20opacity%3D%220.18%22/%3E%0A%20%20%20%20%20%20%3Ccircle%20cx%3D%22560%22%20cy%3D%2286%22%20r%3D%2296%22%20fill%3D%22%23c4b5fd%22%20opacity%3D%220.26%22/%3E%0A%20%20%20%20%20%20%3Ccircle%20cx%3D%22540%22%20cy%3D%22300%22%20r%3D%22120%22%20fill%3D%22%23f5d0fe%22%20opacity%3D%220.12%22/%3E%0A%20%20%20%20%20%20%3Cg%20opacity%3D%220.14%22%20stroke%3D%22white%22%20stroke-width%3D%222%22%3E%0A%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M18%2056%20H622%22/%3E%3Cpath%20d%3D%22M18%2092%20H622%22/%3E%3Cpath%20d%3D%22M18%20128%20H622%22/%3E%3Cpath%20d%3D%22M18%20164%20H622%22/%3E%3Cpath%20d%3D%22M18%20200%20H622%22/%3E%3Cpath%20d%3D%22M18%20236%20H622%22/%3E%0A%20%20%20%20%20%20%3C/g%3E%0A%20%20%20%20%20%20%3Cg%20opacity%3D%220.18%22%20stroke%3D%22white%22%20stroke-width%3D%223%22%3E%0A%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M20%20290%20C130%20220%2C%20220%20210%2C%20330%20250%20S530%20330%2C%20620%20250%22%20fill%3D%22none%22/%3E%0A%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M40%20318%20C160%20256%2C%20280%20240%2C%20390%20276%20S560%20336%2C%20620%20288%22%20fill%3D%22none%22/%3E%0A%20%20%20%20%20%20%3C/g%3E%0A%20%20%20%20%20%20%3Cellipse%20cx%3D%22330%22%20cy%3D%22298%22%20rx%3D%22120%22%20ry%3D%2220%22%20fill%3D%22rgba%280%2C0%2C0%2C0.18%29%22/%3E%0A%20%20%20%20%20%20%3Cg%20transform%3D%22translate%28210%2082%29%22%3E%0A%20%20%20%20%20%20%20%20%3Crect%20x%3D%220%22%20y%3D%220%22%20width%3D%22244%22%20height%3D%22146%22%20rx%3D%2226%22%20fill%3D%22rgba%284%2C10%2C24%2C0.72%29%22%20stroke%3D%22rgba%28255%2C255%2C255%2C0.22%29%22%20stroke-width%3D%223%22/%3E%0A%20%20%20%20%20%20%20%20%3Crect%20x%3D%2214%22%20y%3D%2214%22%20width%3D%22216%22%20height%3D%22108%22%20rx%3D%2218%22%20fill%3D%22url%28%23screen%29%22%20stroke%3D%22rgba%28255%2C255%2C255%2C0.16%29%22%20stroke-width%3D%222%22/%3E%0A%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M18%2018%20L146%2018%20L80%20118%20L18%20118%20Z%22%20fill%3D%22url%28%23shine%29%22%20opacity%3D%220.42%22/%3E%0A%20%20%20%20%20%20%20%20%3Crect%20x%3D%22108%22%20y%3D%22130%22%20width%3D%2228%22%20height%3D%228%22%20rx%3D%224%22%20fill%3D%22rgba%28255%2C255%2C255%2C0.26%29%22/%3E%0A%20%20%20%20%20%20%20%20%3Crect%20x%3D%2288%22%20y%3D%22138%22%20width%3D%2268%22%20height%3D%226%22%20rx%3D%223%22%20fill%3D%22rgba%28255%2C255%2C255%2C0.16%29%22/%3E%0A%20%20%20%20%20%20%3C/g%3E%0A%20%20%20%20%20%20%3Cg%20opacity%3D%220.32%22%20stroke%3D%22white%22%20stroke-width%3D%223%22%20fill%3D%22none%22%3E%0A%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M510%20108%20a18%2018%200%200%201%2018%20-18%22/%3E%0A%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M516%20124%20a30%2030%200%200%201%2030%20-30%22/%3E%0A%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M524%20142%20a42%2042%200%200%201%2042%20-42%22/%3E%0A%20%20%20%20%20%20%3C/g%3E%0A%20%20%20%20%3C/svg%3E"); }
.brand-item:nth-child(6n+5)::before { background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%20640%20360%22%3E%0A%20%20%20%20%20%20%3Cdefs%3E%0A%20%20%20%20%20%20%20%20%3ClinearGradient%20id%3D%22bg%22%20x1%3D%220%22%20y1%3D%220%22%20x2%3D%221%22%20y2%3D%221%22%3E%0A%20%20%20%20%20%20%20%20%20%20%3Cstop%20offset%3D%220%25%22%20stop-color%3D%22%232b0a12%22/%3E%0A%20%20%20%20%20%20%20%20%20%20%3Cstop%20offset%3D%2255%25%22%20stop-color%3D%22%23be123c%22/%3E%0A%20%20%20%20%20%20%20%20%20%20%3Cstop%20offset%3D%22100%25%22%20stop-color%3D%22%23fb7185%22/%3E%0A%20%20%20%20%20%20%20%20%3C/linearGradient%3E%0A%20%20%20%20%20%20%20%20%3ClinearGradient%20id%3D%22screen%22%20x1%3D%220%22%20y1%3D%220%22%20x2%3D%221%22%20y2%3D%221%22%3E%0A%20%20%20%20%20%20%20%20%20%20%3Cstop%20offset%3D%220%25%22%20stop-color%3D%22rgba%28255%2C255%2C255%2C0.22%29%22/%3E%0A%20%20%20%20%20%20%20%20%20%20%3Cstop%20offset%3D%22100%25%22%20stop-color%3D%22rgba%28255%2C255%2C255%2C0.04%29%22/%3E%0A%20%20%20%20%20%20%20%20%3C/linearGradient%3E%0A%20%20%20%20%20%20%20%20%3ClinearGradient%20id%3D%22shine%22%20x1%3D%220%22%20y1%3D%220%22%20x2%3D%221%22%20y2%3D%221%22%3E%0A%20%20%20%20%20%20%20%20%20%20%3Cstop%20offset%3D%220%25%22%20stop-color%3D%22rgba%28255%2C255%2C255%2C0.34%29%22/%3E%0A%20%20%20%20%20%20%20%20%20%20%3Cstop%20offset%3D%22100%25%22%20stop-color%3D%22rgba%28255%2C255%2C255%2C0%29%22/%3E%0A%20%20%20%20%20%20%20%20%3C/linearGradient%3E%0A%20%20%20%20%20%20%3C/defs%3E%0A%20%20%20%20%20%20%3Crect%20width%3D%22640%22%20height%3D%22360%22%20fill%3D%22url%28%23bg%29%22/%3E%0A%20%20%20%20%20%20%3Ccircle%20cx%3D%22100%22%20cy%3D%2286%22%20r%3D%22120%22%20fill%3D%22%23fecdd3%22%20opacity%3D%220.18%22/%3E%0A%20%20%20%20%20%20%3Ccircle%20cx%3D%22560%22%20cy%3D%2286%22%20r%3D%2296%22%20fill%3D%22%23fb923c%22%20opacity%3D%220.26%22/%3E%0A%20%20%20%20%20%20%3Ccircle%20cx%3D%22540%22%20cy%3D%22300%22%20r%3D%22120%22%20fill%3D%22%23fecdd3%22%20opacity%3D%220.12%22/%3E%0A%20%20%20%20%20%20%3Cg%20opacity%3D%220.14%22%20stroke%3D%22white%22%20stroke-width%3D%222%22%3E%0A%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M18%2056%20H622%22/%3E%3Cpath%20d%3D%22M18%2092%20H622%22/%3E%3Cpath%20d%3D%22M18%20128%20H622%22/%3E%3Cpath%20d%3D%22M18%20164%20H622%22/%3E%3Cpath%20d%3D%22M18%20200%20H622%22/%3E%3Cpath%20d%3D%22M18%20236%20H622%22/%3E%0A%20%20%20%20%20%20%3C/g%3E%0A%20%20%20%20%20%20%3Cg%20opacity%3D%220.18%22%20stroke%3D%22white%22%20stroke-width%3D%223%22%3E%0A%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M20%20290%20C130%20220%2C%20220%20210%2C%20330%20250%20S530%20330%2C%20620%20250%22%20fill%3D%22none%22/%3E%0A%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M40%20318%20C160%20256%2C%20280%20240%2C%20390%20276%20S560%20336%2C%20620%20288%22%20fill%3D%22none%22/%3E%0A%20%20%20%20%20%20%3C/g%3E%0A%20%20%20%20%20%20%3Cellipse%20cx%3D%22330%22%20cy%3D%22298%22%20rx%3D%22120%22%20ry%3D%2220%22%20fill%3D%22rgba%280%2C0%2C0%2C0.18%29%22/%3E%0A%20%20%20%20%20%20%3Cg%20transform%3D%22translate%28210%2082%29%22%3E%0A%20%20%20%20%20%20%20%20%3Crect%20x%3D%220%22%20y%3D%220%22%20width%3D%22244%22%20height%3D%22146%22%20rx%3D%2226%22%20fill%3D%22rgba%284%2C10%2C24%2C0.72%29%22%20stroke%3D%22rgba%28255%2C255%2C255%2C0.22%29%22%20stroke-width%3D%223%22/%3E%0A%20%20%20%20%20%20%20%20%3Crect%20x%3D%2214%22%20y%3D%2214%22%20width%3D%22216%22%20height%3D%22108%22%20rx%3D%2218%22%20fill%3D%22url%28%23screen%29%22%20stroke%3D%22rgba%28255%2C255%2C255%2C0.16%29%22%20stroke-width%3D%222%22/%3E%0A%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M18%2018%20L146%2018%20L80%20118%20L18%20118%20Z%22%20fill%3D%22url%28%23shine%29%22%20opacity%3D%220.42%22/%3E%0A%20%20%20%20%20%20%20%20%3Crect%20x%3D%22108%22%20y%3D%22130%22%20width%3D%2228%22%20height%3D%228%22%20rx%3D%224%22%20fill%3D%22rgba%28255%2C255%2C255%2C0.26%29%22/%3E%0A%20%20%20%20%20%20%20%20%3Crect%20x%3D%2288%22%20y%3D%22138%22%20width%3D%2268%22%20height%3D%226%22%20rx%3D%223%22%20fill%3D%22rgba%28255%2C255%2C255%2C0.16%29%22/%3E%0A%20%20%20%20%20%20%3C/g%3E%0A%20%20%20%20%20%20%3Cg%20opacity%3D%220.32%22%20stroke%3D%22white%22%20stroke-width%3D%223%22%20fill%3D%22none%22%3E%0A%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M510%20108%20a18%2018%200%200%201%2018%20-18%22/%3E%0A%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M516%20124%20a30%2030%200%200%201%2030%20-30%22/%3E%0A%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M524%20142%20a42%2042%200%200%201%2042%20-42%22/%3E%0A%20%20%20%20%20%20%3C/g%3E%0A%20%20%20%20%3C/svg%3E"); }
.brand-item:nth-child(6n)::before { background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%20640%20360%22%3E%0A%20%20%20%20%20%20%3Cdefs%3E%0A%20%20%20%20%20%20%20%20%3ClinearGradient%20id%3D%22bg%22%20x1%3D%220%22%20y1%3D%220%22%20x2%3D%221%22%20y2%3D%221%22%3E%0A%20%20%20%20%20%20%20%20%20%20%3Cstop%20offset%3D%220%25%22%20stop-color%3D%22%230a1b27%22/%3E%0A%20%20%20%20%20%20%20%20%20%20%3Cstop%20offset%3D%2255%25%22%20stop-color%3D%22%23155e75%22/%3E%0A%20%20%20%20%20%20%20%20%20%20%3Cstop%20offset%3D%22100%25%22%20stop-color%3D%22%2306b6d4%22/%3E%0A%20%20%20%20%20%20%20%20%3C/linearGradient%3E%0A%20%20%20%20%20%20%20%20%3ClinearGradient%20id%3D%22screen%22%20x1%3D%220%22%20y1%3D%220%22%20x2%3D%221%22%20y2%3D%221%22%3E%0A%20%20%20%20%20%20%20%20%20%20%3Cstop%20offset%3D%220%25%22%20stop-color%3D%22rgba%28255%2C255%2C255%2C0.22%29%22/%3E%0A%20%20%20%20%20%20%20%20%20%20%3Cstop%20offset%3D%22100%25%22%20stop-color%3D%22rgba%28255%2C255%2C255%2C0.04%29%22/%3E%0A%20%20%20%20%20%20%20%20%3C/linearGradient%3E%0A%20%20%20%20%20%20%20%20%3ClinearGradient%20id%3D%22shine%22%20x1%3D%220%22%20y1%3D%220%22%20x2%3D%221%22%20y2%3D%221%22%3E%0A%20%20%20%20%20%20%20%20%20%20%3Cstop%20offset%3D%220%25%22%20stop-color%3D%22rgba%28255%2C255%2C255%2C0.34%29%22/%3E%0A%20%20%20%20%20%20%20%20%20%20%3Cstop%20offset%3D%22100%25%22%20stop-color%3D%22rgba%28255%2C255%2C255%2C0%29%22/%3E%0A%20%20%20%20%20%20%20%20%3C/linearGradient%3E%0A%20%20%20%20%20%20%3C/defs%3E%0A%20%20%20%20%20%20%3Crect%20width%3D%22640%22%20height%3D%22360%22%20fill%3D%22url%28%23bg%29%22/%3E%0A%20%20%20%20%20%20%3Ccircle%20cx%3D%22100%22%20cy%3D%2286%22%20r%3D%22120%22%20fill%3D%22%23bae6fd%22%20opacity%3D%220.18%22/%3E%0A%20%20%20%20%20%20%3Ccircle%20cx%3D%22560%22%20cy%3D%2286%22%20r%3D%2296%22%20fill%3D%22%2367e8f9%22%20opacity%3D%220.26%22/%3E%0A%20%20%20%20%20%20%3Ccircle%20cx%3D%22540%22%20cy%3D%22300%22%20r%3D%22120%22%20fill%3D%22%23bae6fd%22%20opacity%3D%220.12%22/%3E%0A%20%20%20%20%20%20%3Cg%20opacity%3D%220.14%22%20stroke%3D%22white%22%20stroke-width%3D%222%22%3E%0A%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M18%2056%20H622%22/%3E%3Cpath%20d%3D%22M18%2092%20H622%22/%3E%3Cpath%20d%3D%22M18%20128%20H622%22/%3E%3Cpath%20d%3D%22M18%20164%20H622%22/%3E%3Cpath%20d%3D%22M18%20200%20H622%22/%3E%3Cpath%20d%3D%22M18%20236%20H622%22/%3E%0A%20%20%20%20%20%20%3C/g%3E%0A%20%20%20%20%20%20%3Cg%20opacity%3D%220.18%22%20stroke%3D%22white%22%20stroke-width%3D%223%22%3E%0A%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M20%20290%20C130%20220%2C%20220%20210%2C%20330%20250%20S530%20330%2C%20620%20250%22%20fill%3D%22none%22/%3E%0A%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M40%20318%20C160%20256%2C%20280%20240%2C%20390%20276%20S560%20336%2C%20620%20288%22%20fill%3D%22none%22/%3E%0A%20%20%20%20%20%20%3C/g%3E%0A%20%20%20%20%20%20%3Cellipse%20cx%3D%22330%22%20cy%3D%22298%22%20rx%3D%22120%22%20ry%3D%2220%22%20fill%3D%22rgba%280%2C0%2C0%2C0.18%29%22/%3E%0A%20%20%20%20%20%20%3Cg%20transform%3D%22translate%28210%2082%29%22%3E%0A%20%20%20%20%20%20%20%20%3Crect%20x%3D%220%22%20y%3D%220%22%20width%3D%22244%22%20height%3D%22146%22%20rx%3D%2226%22%20fill%3D%22rgba%284%2C10%2C24%2C0.72%29%22%20stroke%3D%22rgba%28255%2C255%2C255%2C0.22%29%22%20stroke-width%3D%223%22/%3E%0A%20%20%20%20%20%20%20%20%3Crect%20x%3D%2214%22%20y%3D%2214%22%20width%3D%22216%22%20height%3D%22108%22%20rx%3D%2218%22%20fill%3D%22url%28%23screen%29%22%20stroke%3D%22rgba%28255%2C255%2C255%2C0.16%29%22%20stroke-width%3D%222%22/%3E%0A%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M18%2018%20L146%2018%20L80%20118%20L18%20118%20Z%22%20fill%3D%22url%28%23shine%29%22%20opacity%3D%220.42%22/%3E%0A%20%20%20%20%20%20%20%20%3Crect%20x%3D%22108%22%20y%3D%22130%22%20width%3D%2228%22%20height%3D%228%22%20rx%3D%224%22%20fill%3D%22rgba%28255%2C255%2C255%2C0.26%29%22/%3E%0A%20%20%20%20%20%20%20%20%3Crect%20x%3D%2288%22%20y%3D%22138%22%20width%3D%2268%22%20height%3D%226%22%20rx%3D%223%22%20fill%3D%22rgba%28255%2C255%2C255%2C0.16%29%22/%3E%0A%20%20%20%20%20%20%3C/g%3E%0A%20%20%20%20%20%20%3Cg%20opacity%3D%220.32%22%20stroke%3D%22white%22%20stroke-width%3D%223%22%20fill%3D%22none%22%3E%0A%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M510%20108%20a18%2018%200%200%201%2018%20-18%22/%3E%0A%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M516%20124%20a30%2030%200%200%201%2030%20-30%22/%3E%0A%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M524%20142%20a42%2042%200%200%201%2042%20-42%22/%3E%0A%20%20%20%20%20%20%3C/g%3E%0A%20%20%20%20%3C/svg%3E"); }
@media (max-width: 768px) {
  .brand-item {
    min-height: 104px;
    padding: 12px;
  }
  .brand-item span {
    padding: 8px 14px;
  }
}



/* Brand cards CTA */
.brand-item {
  align-items: stretch;
}

.brand-inner {
  position: relative;
  z-index: 4;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  min-height: 100%;
  gap: 14px;
}

.brand-item .brand-name {
  position: relative;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(8,12,24,0.34);
  border: 1px solid rgba(255,255,255,0.16);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.14);
}

.brand-item .brand-name::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.88);
  margin-right: 10px;
  box-shadow: 0 0 10px rgba(255,255,255,0.5);
}

.brand-item .brand-cta {
  position: relative;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.92);
  color: #0f172a;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.2px;
  text-transform: uppercase;
  box-shadow: 0 10px 24px rgba(0,0,0,0.16);
}

.brand-item .brand-cta::after {
  content: "›";
  font-size: 16px;
  line-height: 1;
  margin-left: 8px;
}

@media (max-width: 768px) {
  .brand-inner {
    gap: 10px;
  }

  .brand-item .brand-name,
  .brand-item .brand-cta {
    padding: 8px 14px;
  }

  .brand-item .brand-cta {
    font-size: 12px;
  }
}


/* Ajuste fino CTA marcas v3 */
.brand-item {
  min-height: 132px;
}

.brand-inner {
  gap: 12px;
}

.brand-item .brand-cta {
  padding: 8px 13px;
  font-size: 12px;
  letter-spacing: 0.15px;
}

.brand-item .brand-cta::after {
  font-size: 14px;
  margin-left: 6px;
}

@media (max-width: 768px) {
  .brand-item {
    min-height: 108px;
  }

  .brand-inner {
    gap: 8px;
  }

  .brand-item .brand-cta {
    padding: 7px 12px;
    font-size: 11px;
  }
}
