:root {
  --indigo: #3a3a9e;
  --navy: #0b0b2e;
  --navy-2: #13133a;
  --yellow: #ffd60a;
  --sky: #18a8f0;
  --green: #25d366;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  background: var(--navy);
  color: #fff;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  display: flex;
  justify-content: center;
  padding: 44px 18px 56px;
  position: relative;
  overflow-x: hidden;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.curtain {
  position: fixed;
  inset: 0;
  z-index: 900;
  background: var(--navy);
  pointer-events: none;
  animation: curtain-lift 0.7s 0.1s var(--ease) forwards;
}

@keyframes curtain-lift {
  to {
    opacity: 0;
  }
}

#particles {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.55;
}

.bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.bg::before {
  content: "";
  position: absolute;
  top: -8%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(58, 58, 158, 0.6), transparent 60%);
  filter: blur(24px);
}

.bg::after {
  content: "";
  position: absolute;
  bottom: -8%;
  right: -8%;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 214, 10, 0.18),
    transparent 62%
  );
  filter: blur(22px);
}

.stars {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.4;
  background-image:
    radial-gradient(
      1.5px 1.5px at 12% 22%,
      rgba(255, 255, 255, 0.7),
      transparent
    ),
    radial-gradient(
      1.5px 1.5px at 78% 14%,
      rgba(255, 255, 255, 0.6),
      transparent
    ),
    radial-gradient(1px 1px at 35% 8%, rgba(255, 255, 255, 0.5), transparent),
    radial-gradient(
      1.5px 1.5px at 88% 42%,
      rgba(255, 255, 255, 0.5),
      transparent
    ),
    radial-gradient(1px 1px at 22% 60%, rgba(255, 255, 255, 0.4), transparent),
    radial-gradient(
      1.5px 1.5px at 65% 78%,
      rgba(255, 255, 255, 0.5),
      transparent
    ),
    radial-gradient(1px 1px at 8% 84%, rgba(255, 255, 255, 0.4), transparent);
}

.wrap {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 420px;
}

.lb-logo {
  width: 116px;
  height: 116px;
  margin: 0 auto 16px;
  position: relative;
  border-radius: 50%;
  padding: 4px;
  background: conic-gradient(
    from 180deg,
    var(--yellow),
    var(--sky),
    var(--indigo),
    var(--yellow)
  );
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.08),
    0 16px 44px rgba(58, 58, 158, 0.55);
}

.lb-logo::after {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 1px solid rgba(255, 214, 10, 0.3);
  animation: halo 3s ease-out infinite;
}

.lb-logo img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  background: var(--navy-2);
}

@keyframes halo {
  0% {
    transform: scale(1);
    opacity: 0.65;
  }

  100% {
    transform: scale(1.22);
    opacity: 0;
  }
}

.lb-brand {
  text-align: center;
  font-family: "Archivo", sans-serif;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 4px;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.lb-head {
  text-align: center;
  font-family: "Anton", sans-serif;
  text-transform: uppercase;
  line-height: 0.94;
  letter-spacing: 0.5px;
  font-size: clamp(26px, 7vw, 34px);
  margin-bottom: 16px;
}

.lb-head .y {
  color: var(--yellow);
  display: block;
}

.lb-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 6px 10px;
  margin-bottom: 28px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 600;
}

.lb-meta span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.lb-meta .sep {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  flex: none;
}

.lb-meta svg {
  width: 13px;
  height: 13px;
  color: var(--yellow);
  flex: none;
}

.links {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.link {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.13);
  color: #fff;
  transition:
    transform 0.3s var(--ease),
    background 0.25s,
    border-color 0.25s,
    box-shadow 0.3s;
  text-decoration: none;
  cursor: pointer;
  backdrop-filter: blur(10px);
}

.link:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

.link:active {
  transform: scale(0.98);
}

.link__ic {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  flex: none;
  display: grid;
  place-items: center;
  color: #fff;
}

.link__ic svg {
  width: 22px;
  height: 22px;
}

.link__txt {
  flex: 1;
  min-width: 0;
  text-align: center;
}

.link__txt b {
  font-family: "Archivo", sans-serif;
  font-weight: 800;
  font-size: 15.5px;
  display: block;
  line-height: 1.25;
}

.link__txt span {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 1px;
  display: block;
}

.link__arrow {
  flex: none;
  color: rgba(255, 255, 255, 0.4);
  transition:
    transform 0.3s var(--ease),
    color 0.25s;
}

.link__arrow svg {
  width: 18px;
  height: 18px;
}

.link:hover .link__arrow {
  transform: translateX(5px);
  color: rgba(255, 255, 255, 0.9);
}

.link--wa {
  background: linear-gradient(
    135deg,
    rgba(37, 211, 102, 0.18),
    rgba(37, 211, 102, 0.06)
  );
  border-color: rgba(37, 211, 102, 0.45);
}

.link--wa .link__ic {
  background: linear-gradient(135deg, #2bd07a, #18a85f);
}

.link--wa:hover {
  background: linear-gradient(
    135deg,
    rgba(37, 211, 102, 0.26),
    rgba(37, 211, 102, 0.1)
  );
}

.link--solar {
  border-color: rgba(255, 214, 10, 0.3);
}

.link--solar .link__ic {
  background: linear-gradient(135deg, var(--yellow), #f5901a);
  color: #2e1f00;
}

.link--sec {
  border-color: rgba(24, 168, 240, 0.3);
}

.link--sec .link__ic {
  background: linear-gradient(135deg, var(--sky), var(--indigo));
}

.link--about {
  border-color: rgba(107, 107, 214, 0.3);
}

.link--about .link__ic {
  background: linear-gradient(135deg, #7b7bd8, var(--indigo));
}

.link--site {
  border-color: rgba(58, 58, 158, 0.5);
}

.link--site .link__ic {
  background: linear-gradient(135deg, #4a4ab4, #1a1a5e);
}

.link--ig {
  border-color: rgba(214, 41, 118, 0.35);
}

.link--ig .link__ic {
  background: linear-gradient(
    135deg,
    #feda75,
    #d62976 45%,
    #962fbf 80%,
    #4f5bd5
  );
}

.link--google {
  border-color: rgba(66, 133, 244, 0.3);
}

.link--google .link__ic {
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.08);
}

.link--li {
  border-color: rgba(10, 102, 194, 0.35);
}

.link--li .link__ic {
  background: #0a66c2;
}

.divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 24px 2px 14px;
  color: rgba(255, 255, 255, 0.35);
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  font-size: 10.5px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
}

.divider::before,
.divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.lb-foot {
  text-align: center;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.lb-foot__brand {
  font-family: "Archivo", sans-serif;
  font-weight: 800;
  letter-spacing: 3px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
}

.lb-foot__brand b {
  color: var(--yellow);
}

.lb-foot__tagline {
  margin-top: 6px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.3px;
}

.lb-foot__copy {
  margin-top: 4px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.22);
}

.rv {
  opacity: 0;
  transform: translateY(16px);
  animation: rise 0.55s var(--ease) forwards;
}

@keyframes rise {
  to {
    opacity: 1;
    transform: none;
  }
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 600;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease);
}

.modal.open {
  opacity: 1;
  pointer-events: all;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 5, 25, 0.7);
  backdrop-filter: blur(6px);
}

.modal__panel {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 420px;
  background: linear-gradient(180deg, #161648, #0f0f38);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px 24px 0 0;
  padding: 10px 20px 44px;
  max-height: 92vh;
  overflow-y: auto;
  transform: translateY(100%);
  transition: transform 0.45s var(--ease);
}

.modal.open .modal__panel {
  transform: translateY(0);
}

.modal__handle {
  width: 40px;
  height: 4px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.2);
  margin: 10px auto 20px;
}

.modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
  display: grid;
  place-items: center;
  transition: background 0.2s;
  line-height: 1;
}

.modal__close:hover {
  background: rgba(255, 255, 255, 0.2);
}

.modal__title {
  font-family: "Archivo", sans-serif;
  font-weight: 800;
  font-size: 18px;
  margin-bottom: 4px;
  text-align: center;
}

.modal__sub {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 20px;
  text-align: center;
}

.att-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 4px;
}

.att {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 18px 12px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-decoration: none;
  color: #fff;
  transition:
    transform 0.3s var(--ease),
    background 0.2s,
    border-color 0.2s;
}

.att:hover {
  transform: translateY(-3px);
  background: rgba(37, 211, 102, 0.1);
  border-color: rgba(37, 211, 102, 0.35);
}

.att:active {
  transform: scale(0.97);
}

.att__photo {
  position: relative;
  width: 72px;
  height: 72px;
}

.att__avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(135deg, #2a2a6e, #4a4ab4);
  display: grid;
  place-items: center;
  border: 2.5px solid rgba(255, 255, 255, 0.15);
}

.att__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.att__avatar svg {
  width: 34px;
  height: 34px;
  color: rgba(255, 255, 255, 0.5);
}

.att__badge {
  position: absolute;
  bottom: 3px;
  right: 3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2.5px solid #161648;
  display: none;
}

.att__badge--online {
  background: #25d366;
}

.att.is-online .att__badge--online {
  display: block;
}

.att__name {
  font-family: "Archivo", sans-serif;
  font-weight: 800;
  font-size: 13.5px;
  text-align: center;
  line-height: 1.2;
}

.att__role {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
}

.att__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  padding: 8px 18px;
  border-radius: 100px;
  background: var(--green);
  color: #fff;
  font-size: 13px;
  font-family: "Archivo", sans-serif;
  font-weight: 800;
  letter-spacing: 0.2px;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.45);
  transition:
    transform 0.25s var(--ease),
    box-shadow 0.25s var(--ease),
    background 0.2s;
  animation: pulse-wa 2.4s ease-in-out infinite;
}

.att__cta svg {
  width: 14px;
  height: 14px;
}

.att:hover .att__cta {
  transform: scale(1.06);
  box-shadow: 0 6px 22px rgba(37, 211, 102, 0.6);
  background: #1fc05c;
  animation: none;
}

@keyframes pulse-wa {
  0%,
  100% {
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.45);
  }

  50% {
    box-shadow:
      0 4px 24px rgba(37, 211, 102, 0.75),
      0 0 0 5px rgba(37, 211, 102, 0.12);
  }
}

.about-modal__team {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 20px;
  border: 2px solid rgba(255, 214, 10, 0.35);
  box-shadow:
    0 12px 36px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(255, 214, 10, 0.15);
}

.about-modal__team img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.about-modal__team-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 16px;
  background: linear-gradient(transparent, rgba(5, 5, 25, 0.88));
  font-family: "Archivo", sans-serif;
  font-weight: 800;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.3px;
}

.about-modal__team-caption span {
  color: var(--yellow);
}

.about-modal__text {
  text-align: center;
}

.about-modal__text p {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.68;
  margin-bottom: 12px;
}

.about-modal__text p strong {
  color: var(--yellow);
}

.about-modal__text p:last-of-type {
  margin-bottom: 0;
}

.about-modal__values {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 22px;
  justify-content: center;
}

.about-modal__value {
  padding: 6px 14px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 12px;
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
}

.btn-wa-full {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px;
  border-radius: 14px;
  background: linear-gradient(135deg, #2bd07a, #18a85f);
  color: #fff;
  font-family: "Archivo", sans-serif;
  font-weight: 800;
  font-size: 16px;
  text-decoration: none;
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s;
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.35);
}

.btn-wa-full:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(37, 211, 102, 0.45);
}

.btn-wa-full svg {
  width: 22px;
  height: 22px;
}

.clientes-section {
  margin-top: 28px;
}

.clientes-section__header {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  padding: 0 2px;
}

.clientes-section__label {
  font-family: "Anton", sans-serif;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
}

.clientes-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  user-select: none;
  touch-action: pan-y;
  cursor: grab;
}

.clientes-carousel:active {
  cursor: grabbing;
}

.clientes-track {
  position: relative;
  width: 100%;
}

/* estado padrão: card fica oculto e entra vindo da direita */
.cliente-card {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: #0e0e32;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  z-index: 0;
  transform: translateX(48px);
  transition:
    transform 0.52s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.42s ease;
  will-change: transform, opacity;
}

.cliente-card.is-active {
  opacity: 1;
  z-index: 10;
  pointer-events: auto;
  transform: translateX(0);
}

/* ao trocar de slide, o card anterior sai pela esquerda */
.cliente-card.is-exiting {
  opacity: 0;
  z-index: 5;
  pointer-events: none;
  transform: translateX(-48px);
  transition:
    transform 0.38s cubic-bezier(0.55, 0, 1, 0.45),
    opacity 0.32s ease;
}

.clientes-dots {
  position: relative;
  z-index: 10;
  margin-top: 14px;
}

.cliente-card__img {
  width: 100%;
  height: 300px;
  overflow: hidden;
  position: relative;
}

.cliente-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}

/* object-position por slide (ordem dos cards no HTML) */
.cliente-card:nth-child(1) .cliente-card__img img {
  object-position: center 22%;
} /* aperto de mão porta */
.cliente-card:nth-child(2) .cliente-card__img img {
  object-position: center 12%;
} /* senhora + consultora */
.cliente-card:nth-child(3) .cliente-card__img img {
  object-position: center 18%;
} /* dois homens */
.cliente-card:nth-child(4) .cliente-card__img img {
  object-position: center 10%;
} /* champagne GL logo */
.cliente-card:nth-child(5) .cliente-card__img img {
  object-position: center 25%;
} /* selfie 4 pessoas */
.cliente-card:nth-child(6) .cliente-card__img img {
  object-position: center 18%;
} /* sino GL */
.cliente-card:nth-child(7) .cliente-card__img img {
  object-position: center 12%;
} /* família + consultora */

.cliente-card__img::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(transparent, rgba(10, 10, 35, 0.85));
}

.cliente-card__body {
  padding: 16px 18px 20px;
}

.cliente-card__stars {
  font-size: 14px;
  color: var(--yellow);
  margin-bottom: 8px;
  letter-spacing: 1px;
}

.cliente-card__quote {
  font-size: 13.5px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.8);
  font-style: italic;
  margin-bottom: 12px;
}

.cliente-card__name {
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.clientes-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 12px;
}

.clientes-dots__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  cursor: pointer;
  padding: 0;
  transition:
    background 0.25s,
    transform 0.25s;
}

.clientes-dots__dot.active {
  background: var(--yellow);
  transform: scale(1.3);
}

.solar-modal__hero {
  text-align: center;
  padding: 8px 0 20px;
}

.solar-modal__mascot {
  width: 155px;
  margin: 0 auto 8px;
  position: relative;
  z-index: 1;
}

.solar-modal__mascot::before {
  content: "";
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(245, 192, 0, 0.35) 0%,
    rgba(30, 127, 224, 0.15) 55%,
    transparent 75%
  );
  filter: blur(12px);
  z-index: -1;
  animation: mascot-glow 2.8s ease-in-out infinite;
}

@keyframes mascot-glow {
  0%,
  100% {
    opacity: 0.7;
    transform: translateX(-50%) scale(1);
  }
  50% {
    opacity: 1;
    transform: translateX(-50%) scale(1.2);
  }
}

.solar-modal__mascot img {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 4px 16px rgba(245, 192, 0, 0.3));
}

.solar-modal__title {
  font-family: "Anton", sans-serif;
  font-weight: 400;
  font-size: 28px;
  line-height: 1.05;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.solar-modal__title span {
  color: var(--yellow);
  display: block;
  font-size: 38px;
}

.solar-modal__sub {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
}

.solar-modal__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 22px;
}

.solar-modal__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 14px 8px;
  border-radius: 14px;
  background: rgba(245, 192, 0, 0.08);
  border: 1px solid rgba(245, 192, 0, 0.2);
  text-align: center;
}

.solar-modal__stat strong {
  font-family: "Archivo", sans-serif;
  font-weight: 900;
  font-size: 20px;
  color: var(--yellow);
  line-height: 1;
}

.solar-modal__stat span {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.3;
}

.solar-modal__triggers {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 24px;
}

.solar-modal__trigger {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.solar-modal__trigger-ic {
  font-size: 22px;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 1px;
}

.solar-modal__trigger div b {
  display: block;
  font-family: "Archivo", sans-serif;
  font-weight: 800;
  font-size: 13.5px;
  color: #fff;
  margin-bottom: 3px;
}

.solar-modal__trigger div p {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.5;
  margin: 0;
}

.solar-modal__note {
  text-align: center;
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 10px;
}

@media (max-width: 359px) {
  body {
    padding: 32px 14px 44px;
  }

  .lb-logo {
    width: 100px;
    height: 100px;
  }

  .lb-head {
    font-size: 24px;
  }

  .link {
    padding: 13px 14px;
    gap: 12px;
  }

  .link__ic {
    width: 40px;
    height: 40px;
    border-radius: 11px;
  }

  .link__txt b {
    font-size: 14px;
  }

  .link__txt span {
    font-size: 11.5px;
  }

  .att-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .att {
    padding: 14px 8px 12px;
  }

  .att__avatar {
    width: 60px;
    height: 60px;
  }

  .att__photo {
    width: 60px;
    height: 60px;
  }

  .modal__panel {
    padding: 10px 16px 36px;
  }
}

@media (min-width: 360px) and (max-width: 420px) {
  .att-grid {
    gap: 10px;
  }
}

@media (min-width: 480px) {
  body {
    padding: 56px 24px 64px;
  }

  .wrap {
    max-width: 440px;
  }

  .modal__panel {
    max-width: 440px;
  }

  .link {
    padding: 17px 22px;
  }

  .lb-head {
    font-size: 36px;
  }
}

@media (max-height: 600px) and (orientation: landscape) {
  body {
    padding: 24px 18px 32px;
  }

  .lb-logo {
    width: 80px;
    height: 80px;
    margin-bottom: 10px;
  }

  .lb-head {
    font-size: 22px;
    margin-bottom: 10px;
  }

  .lb-meta {
    margin-bottom: 18px;
  }

  .modal__panel {
    max-height: 96vh;
  }
}

/* --tilt-x e --tilt-y não têm valor aqui — vêm do JS do giroscópio */
.links,
.clientes-section {
  transform: translateX(var(--tilt-x, 0px)) translateY(var(--tilt-y, 0px));
  transition: transform 0.12s ease-out;
}

.lb-logo,
.lb-brand,
.lb-head,
.lb-meta {
  transform: translateX(var(--tilt-x2, 0px)) translateY(var(--tilt-y2, 0px));
  transition: transform 0.12s ease-out;
}

/* isso aqui é só o repouso — o tilt em si é transform inline aplicado pelo JS */
.link {
  will-change: transform;
}

@keyframes gl-ptc-burst {
  0% {
    opacity: 0.9;
    transform: translate(0, 0) scale(1);
  }

  100% {
    opacity: 0;
    transform: translate(var(--pdx, 0px), var(--pdy, 0px)) scale(0);
  }
}

#gl-pull-glow {
  position: fixed;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 320px;
  height: 130px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  opacity: 0;
  background: radial-gradient(
    ellipse at 50% 30%,
    rgba(30, 127, 224, 0.75) 0%,
    rgba(107, 47, 160, 0.45) 45%,
    transparent 75%
  );
  filter: blur(20px);
  transition:
    opacity 0.3s,
    top 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
