/* Start custom CSS for wp-widget-custom_html, class: .elementor-element-07f7ce2 */* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --neon-pink: #ff0080;
  --neon-magenta: #e91e8c;
  --neon-orange: #ff6b4a;
  --neon-coral: #ff5733;
  --dark-bg: #0a0a0a;
  --darker-bg: #050505;
  --card-bg: #1a1a1a;
  --text-primary: #ffffff;
  --text-secondary: #b0b0b0;
  --border-color: #333;
}

body {
  font-family: "Space Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background-color: var(--dark-bg);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 50%, rgba(233, 30, 140, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 0, 128, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 40% 20%, rgba(255, 107, 74, 0.04) 0%, transparent 50%);
  animation: gradientShift 20s ease infinite;
  z-index: -1;
  pointer-events: none;
}

@keyframes gradientShift {
  0%,
  100% {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
  33% {
    opacity: 0.8;
    transform: scale(1.05) rotate(3deg);
  }
  66% {
    opacity: 0.9;
    transform: scale(1.02) rotate(-3deg);
  }
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.header {
  padding: 30px 0;
  background-color: transparent;
  position: sticky;
  top: 0;
  z-index: 100;
  /* Added smooth transition for scrolled state */
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Added liquid glass effect when header is scrolled */
.header.scrolled {
  background: linear-gradient(135deg, rgba(10, 10, 10, 0.7) 0%, rgba(15, 15, 15, 0.7) 100%);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(233, 30, 140, 0.15);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4), 0 0 20px rgba(233, 30, 140, 0.05);
  padding: 20px 0;
}

.logo {
  height: 40px;
  animation: fadeInDown 0.8s ease-out;
  filter: drop-shadow(0 0 3px rgba(255, 0, 128, 0.15));
  /* Added smooth transition for logo size */
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Slightly reduce logo size when scrolled */
.header.scrolled .logo {
  height: 36px;
}

.hero {
  padding: 60px 0 80px;
  background: transparent;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.badge {
  display: inline-block;
  padding: 10px 28px;
  border: 1.5px solid var(--neon-magenta);
  border-radius: 30px;
  color: var(--neon-magenta);
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 40px;
  animation: fadeInUp 0.8s ease-out 0.2s both;
  box-shadow: 0 0 10px rgba(233, 30, 140, 0.25);
}

.hero-title {
  font-size: 52px;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 30px;
  animation: fadeInUp 0.8s ease-out 0.3s both;
  letter-spacing: -0.02em;
}

.highlight {
  background: linear-gradient(120deg, #ff0080 0%, #ff1a8c 30%, #ff4d7d 60%, #ff6b6b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 8px rgba(255, 0, 128, 0.2));
}

.hero-description {
  font-size: 19px;
  color: var(--text-secondary);
  margin-bottom: 25px;
  animation: fadeInUp 0.8s ease-out 0.4s both;
  line-height: 1.5;
}

.hero-note {
  font-size: 14px;
  color: var(--text-secondary);
  animation: fadeInUp 0.8s ease-out 0.5s both;
}

.hero-note::before {
  content: "●";
  color: var(--neon-pink);
  margin-right: 8px;
}

.form-card {
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.4) 0%, rgba(20, 20, 20, 0.4) 100%);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-radius: 24px;
  padding: 40px;
  border: 1.5px solid rgba(233, 30, 140, 0.4);
  box-shadow: 0 0 20px rgba(233, 30, 140, 0.15), 0 8px 32px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  animation: fadeInRight 0.8s ease-out 0.4s both;
  position: relative;
}

.form-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 24px;
  padding: 1.5px;
  background: linear-gradient(135deg, rgba(233, 30, 140, 0.3), rgba(255, 107, 74, 0.2));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.6;
}

.form-header {
  text-align: center;
  margin-bottom: 35px;
}

.form-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: linear-gradient(135deg, var(--neon-orange) 0%, var(--neon-coral) 100%);
  border-radius: 30px;
  border: 1px solid rgba(255, 107, 74, 0.3);
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 0 12px rgba(255, 107, 74, 0.25);
}

.form-card input {
  width: 100%;
  padding: 16px 18px;
  margin-bottom: 24px;
  background-color: rgba(10, 10, 10, 0.5);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(233, 30, 140, 0.2);
  border-radius: 10px;
  color: var(--text-primary);
  font-size: 15px;
  font-family: inherit;
  transition: all 0.3s ease;
}

.form-card input:focus {
  outline: none;
  border-color: rgba(233, 30, 140, 0.5);
  background-color: rgba(10, 10, 10, 0.7);
  box-shadow: 0 0 12px rgba(233, 30, 140, 0.15);
  transform: translateY(-1px);
}

.form-card input::placeholder {
  color: var(--text-secondary);
  opacity: 0.7;
}

.btn-primary {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, var(--neon-orange) 0%, var(--neon-coral) 100%);
  border: none;
  border-radius: 10px;
  color: var(--text-primary);
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 107, 74, 0.25);
  font-family: inherit;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 74, 0.35);
}

.btn-center {
  display: block;
  margin: 40px auto 0;
  max-width: 300px;
}

section {
  padding: 80px 0;
  position: relative;
}

.section-title {
  font-size: 42px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 15px;
  background: linear-gradient(120deg, #ff0080 0%, #ff1a8c 30%, #ff4d7d 70%, #ff6b6b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 8px rgba(255, 0, 128, 0.15));
  animation: fadeInUp 0.8s ease-out;
  letter-spacing: -0.02em;
}

.section-title.orange {
  background: linear-gradient(135deg, var(--neon-orange) 0%, var(--neon-coral) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 8px rgba(255, 107, 74, 0.15));
}

.section-subtitle {
  text-align: center;
  color: var(--text-secondary);
  font-size: 18px;
  margin-bottom: 50px;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.benefits {
  background-color: transparent;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}

.benefit-card {
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.4) 0%, rgba(20, 20, 20, 0.4) 100%);
  backdrop-filter: blur(15px) saturate(150%);
  padding: 30px;
  border-radius: 16px;
  border: 1px solid rgba(233, 30, 140, 0.15);
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: all 0.3s ease;
  animation: fadeInUp 0.8s ease-out;
}

.benefit-card:hover {
  transform: translateY(-3px);
  border-color: rgba(233, 30, 140, 0.3);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.benefit-icon {
  font-size: 32px;
  flex-shrink: 0;
  color: var(--neon-magenta);
}

.benefit-card p {
  font-size: 16px;
  line-height: 1.5;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.audience-card {
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.4) 0%, rgba(20, 20, 20, 0.4) 100%);
  backdrop-filter: blur(15px) saturate(150%);
  padding: 40px 30px;
  border-radius: 16px;
  border: 1px solid rgba(255, 107, 74, 0.15);
  text-align: center;
  transition: all 0.3s ease;
  animation: fadeInUp 0.8s ease-out;
}

.audience-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 107, 74, 0.3);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.audience-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--neon-orange) 0%, var(--neon-coral) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 700;
  margin: 0 auto 20px;
  box-shadow: 0 0 15px rgba(255, 107, 74, 0.25);
}

.why-section {
  background-color: transparent;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto 40px;
}

.why-card {
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.4) 0%, rgba(20, 20, 20, 0.4) 100%);
  backdrop-filter: blur(15px) saturate(150%);
  padding: 30px;
  border-radius: 16px;
  border: 1px solid rgba(233, 30, 140, 0.15);
  text-align: center;
  transition: all 0.3s ease;
  animation: fadeInUp 0.8s ease-out;
}

.why-card:hover {
  transform: translateY(-3px);
  border-color: rgba(233, 30, 140, 0.3);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.why-icon {
  font-size: 40px;
  margin-bottom: 15px;
  color: var(--neon-magenta);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.testimonial-card {
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.4) 0%, rgba(20, 20, 20, 0.4) 100%);
  backdrop-filter: blur(15px) saturate(150%);
  padding: 30px;
  border-radius: 16px;
  border: 1px solid rgba(255, 107, 74, 0.15);
  transition: all 0.3s ease;
  animation: fadeInUp 0.8s ease-out;
}

.testimonial-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 107, 74, 0.3);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.stars {
  font-size: 20px;
  margin-bottom: 10px;
  color: var(--neon-orange);
}

.testimonial-rating {
  font-size: 24px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--neon-pink) 0%, var(--neon-magenta) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 15px;
}

.testimonial-text {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
  color: var(--text-secondary);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.author-avatar {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--neon-orange) 0%, var(--neon-coral) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  box-shadow: 0 0 12px rgba(255, 107, 74, 0.2);
}

.author-name {
  font-weight: 600;
  margin-bottom: 3px;
}

.author-role {
  font-size: 14px;
  color: var(--text-secondary);
}

.faq {
  background-color: transparent;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 15px;
  animation: fadeInUp 0.8s ease-out;
}

.faq-question {
  width: 100%;
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.4) 0%, rgba(20, 20, 20, 0.4) 100%);
  backdrop-filter: blur(15px) saturate(150%);
  border: 1px solid rgba(233, 30, 140, 0.15);
  border-radius: 12px;
  padding: 20px;
  color: var(--text-primary);
  font-size: 16px;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  font-family: inherit;
}

.faq-question:hover {
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.6) 0%, rgba(20, 20, 20, 0.6) 100%);
  border-color: rgba(233, 30, 140, 0.3);
}

.faq-icon {
  font-size: 24px;
  color: var(--neon-magenta);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.4) 0%, rgba(20, 20, 20, 0.4) 100%);
  backdrop-filter: blur(15px) saturate(150%);
  border-radius: 0 0 12px 12px;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 20px;
  border-top: 1px solid rgba(233, 30, 140, 0.15);
}

.faq-answer p {
  color: var(--text-secondary);
  line-height: 1.6;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.social-btn {
  padding: 12px 30px;
  border: 2px solid;
  border-radius: 10px;
  text-decoration: none;
  color: var(--text-primary);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  animation: fadeInUp 0.8s ease-out;
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.4) 0%, rgba(20, 20, 20, 0.4) 100%);
  backdrop-filter: blur(15px) saturate(150%);
}

.social-btn.linkedin {
  border-color: #0077b5;
}

.social-btn.linkedin:hover {
  box-shadow: 0 4px 20px rgba(0, 119, 181, 0.3);
  transform: translateY(-2px);
}

.social-btn.instagram {
  border-color: #e4405f;
}

.social-btn.instagram:hover {
  box-shadow: 0 4px 20px rgba(228, 64, 95, 0.3);
  transform: translateY(-2px);
}

.social-btn.facebook {
  border-color: #1877f2;
}

.social-btn.facebook:hover {
  box-shadow: 0 4px 20px rgba(24, 119, 242, 0.3);
  transform: translateY(-2px);
}

.social-btn.youtube {
  border-color: #ff0000;
}

.social-btn.youtube:hover {
  box-shadow: 0 4px 20px rgba(255, 0, 0, 0.3);
  transform: translateY(-2px);
}

.social-icon {
  font-weight: 700;
}

.footer {
  padding: 30px 0;
  background: linear-gradient(135deg, rgba(5, 5, 5, 0.6) 0%, rgba(10, 10, 10, 0.6) 100%);
  backdrop-filter: blur(15px);
  text-align: center;
  color: var(--text-secondary);
  font-size: 14px;
  border-top: 1px solid rgba(233, 30, 140, 0.1);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (max-width: 968px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-title {
    font-size: 36px;
  }

  .benefits-grid,
  .audience-grid,
  .why-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 32px;
  }
}

@media (max-width: 640px) {
  .hero {
    padding: 40px 0;
  }

  .hero-title {
    font-size: 28px;
  }

  .hero-description {
    font-size: 16px;
  }

  section {
    padding: 50px 0;
  }

  .section-title {
    font-size: 28px;
  }

  .section-subtitle {
    font-size: 16px;
  }

  .social-links {
    flex-direction: column;
    align-items: stretch;
  }

  .social-btn {
    justify-content: center;
  }
}/* End custom CSS */
/* Start custom CSS for section, class: .elementor-element-5ece582 *//* Componentes: Depoimentos + Logos (tema escuro) */
        :root{
          --qi-bg: #0b0b10;
          --qi-card: #14141b;
          --qi-text: #f5f5f7;
          --qi-muted: #a1a1aa;
          --qi-border: rgba(255,255,255,0.10);
          --qi-shadow: 0 18px 50px rgba(0,0,0,0.55);
          --qi-shadow-sm: 0 12px 28px rgba(0,0,0,0.45);
          --qi-accent: #ff7a18;
          --qi-accent2: #ff2f92;
          --qi-radius: 16px;
        }

        /* Ajustes de tipografia dentro das seções escuras */
        .testimonials-section .section-title,
        .logos-section .section-title{
          color: var(--qi-text);
        }
        .testimonials-section .section-subtitle,
        .logos-section .section-subtitle{
          color: var(--qi-muted);
        }

        /* DEPOIMENTOS */
        .testimonials-section{
          padding: 80px 0;
          background:
            radial-gradient(900px 220px at 10% 0%, rgba(255,47,146,0.10), transparent 60%),
            radial-gradient(900px 220px at 90% 100%, rgba(255,122,24,0.10), transparent 60%),
            var(--qi-bg);
        }

        .testimonials-grid{
          display: grid;
          grid-template-columns: repeat(3, 1fr);
          gap: 24px;
          margin-top: 32px;
          align-items: stretch;
        }
        @media (max-width: 900px){
          .testimonials-grid{ grid-template-columns: 1fr; }
        }

        .testimonial-card{
          padding: 26px;
          border-radius: var(--qi-radius);
          background: rgba(20,20,27,0.86);
          border: 1px solid var(--qi-border);
          box-shadow: var(--qi-shadow-sm);
          position: relative;
          overflow: hidden;
        }

        .testimonial-card.featured{
          border-color: rgba(255,122,24,0.35);
          box-shadow: var(--qi-shadow);
          background:
            radial-gradient(1200px 200px at 10% 0%, rgba(255,47,146,0.14), transparent 60%),
            radial-gradient(1200px 200px at 90% 100%, rgba(255,122,24,0.14), transparent 60%),
            rgba(20,20,27,0.92);
        }

        .testimonial-quote{
          color: var(--qi-text);
          font-size: 1rem;
          line-height: 1.75;
          margin-bottom: 16px;
        }

        /* remove qualquer caractere automático antes/depois */
        .testimonial-quote::before,
        .testimonial-quote::after{
          content: none;
        }

        .testimonial-author{
          display: flex;
          align-items: center;
          gap: 12px;
          margin-top: 6px;
        }

        .testimonial-avatar{
          width: 44px;
          height: 44px;
          border-radius: 999px;
          object-fit: cover;
          border: 1px solid rgba(255,255,255,0.14);
          box-shadow: 0 16px 34px rgba(0,0,0,0.35);
          flex: 0 0 auto;
          background: linear-gradient(135deg, rgba(255,47,146,0.85), rgba(255,122,24,0.85));
        }

        .testimonial-meta b{
          display: block;
          font-size: 0.95rem;
          font-weight: 800;
          color: var(--qi-text);
        }

        .testimonial-meta span{
          display: block;
          font-size: 0.875rem;
          color: var(--qi-muted);
          margin-top: 2px;
        }

        /* LOGOS CAROUSEL */
        .logos-section{
          padding: 50px 0 80px;
          background: var(--qi-bg);
        }

        .logos-head{
          text-align: center;
          max-width: 760px;
          margin: 0 auto;
        }

        .logos-shell{
          margin-top: 22px;
          display: grid;
          grid-template-columns: auto 1fr auto;
          gap: 14px;
          align-items: center;
        }

        @media (max-width: 900px){
          .logos-shell{ grid-template-columns: 1fr; }
        }

        .logo-nav{
          display: inline-flex;
          align-items: center;
          justify-content: center;
          width: 46px;
          height: 46px;
          border-radius: 14px;
          background: rgba(20,20,27,0.9);
          border: 1px solid var(--qi-border);
          color: var(--qi-text);
          cursor: pointer;
          transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
          box-shadow: 0 12px 22px rgba(0,0,0,0.35);
        }

        .logo-nav:hover{ transform: translateY(-1px); }
        .logo-nav:active{ transform: translateY(0); }
        .logo-nav:focus-visible{
          outline: 3px solid rgba(255,122,24,0.40);
          outline-offset: 3px;
        }

        @media (max-width: 900px){
          .logo-nav{ display: none; }
        }

        .logos-viewport{
          overflow: hidden;
          border-radius: var(--qi-radius);
          border: 1px solid var(--qi-border);
          background: rgba(255,255,255,0.02);
          box-shadow: 0 18px 36px rgba(0,0,0,0.35);
          position: relative;
        }

        .logos-viewport::before,
        .logos-viewport::after{
          content:"";
          position:absolute;
          top:0;
          bottom:0;
          width: 56px;
          pointer-events:none;
          z-index: 2;
        }

        .logos-viewport::before{
          left:0;
          background: linear-gradient(90deg, rgba(11,11,16,1) 0%, rgba(11,11,16,0) 100%);
        }

        .logos-viewport::after{
          right:0;
          background: linear-gradient(270deg, rgba(11,11,16,1) 0%, rgba(11,11,16,0) 100%);
        }

        .logos-track{
          display: flex;
          gap: 16px;
          padding: 16px;
          overflow-x: auto;
          scroll-snap-type: x mandatory;
          scroll-behavior: smooth;
          -webkit-overflow-scrolling: touch;
          scrollbar-width: none;
        }
        .logos-track::-webkit-scrollbar{ display: none; }

        .logo-item{
          scroll-snap-align: start;
          flex: 0 0 auto;
          width: 180px;
          height: 84px;
          border-radius: 14px;
          background: rgba(20,20,27,0.9);
          border: 1px solid var(--qi-border);
          display:flex;
          align-items:center;
          justify-content:center;
          padding: 12px;
          opacity: .95;
          transition: transform .18s ease, opacity .18s ease;
        }

        .logo-item:hover{
          transform: translateY(-1px);
          opacity: 1;
        }

        .logo-item img{
          max-width: 100%;
          max-height: 100%;
          display:block;
          filter: grayscale(100%);
          opacity: .9;
        }

        .logo-item:hover img{
          filter: grayscale(0%);
          opacity: 1;
        }/* End custom CSS */