html {
  margin: 0 !important;
  padding: 0 !important;
  width: 100% !important;
  height: 100% !important;
  overflow-x: hidden !important;
  overflow-y: auto !important;
  box-sizing: border-box !important;
  background: #000 !important;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE e Edge */
}

body {
  background: #000 !important;
  width: 100vw;
  min-width: 100vw;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  overflow-y: auto;
  height: auto;
  min-height: 100%;
  box-sizing: border-box;
  background-attachment: scroll;
  font-family: "Inter";
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE e Edge */
}

body {
  font-family: "Inter";
  overflow-x: hidden;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter" !important;
}

.container {
  width: 100%;
  max-width: 1920px;
  height: auto;
  min-height: 100vh;
  position: relative;
  margin: 0 auto;
  z-index: 999;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%) translateY(0) !important;
  display: flex;
  align-items: center;
  gap: 50px;
  padding: 0 22px;
  min-height: 48px;
  border-radius: 13px;
  border: 1.5px solid #bbb;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(10px);
  z-index: 1000;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  transition: none !important;
  height: auto !important;
  margin-top: 22px;
}

.logo {
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  text-decoration: none;
}

.logo .blue {
  color: #0093ff;
}

.logo img {
  width: 56px;
  height: 56px;
  aspect-ratio: 1/1;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  vertical-align: middle;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 50px;
  list-style: none;
}

.nav-links a {
  color: #888;
  text-decoration: none;
  font-size: 18px;
  font-weight: 400;
  transition: color 0.3s, transform 0.18s, box-shadow 0.18s;
}

.nav-links a:hover {
  color: #fff;
}

.contact-btn {
  padding: 7px 18px;
  background: transparent;
  border: 2px solid #fff;
  border-radius: 10px;
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  transition: background 0.3s, box-shadow 0.3s, border 0.3s, color 0.3s,
    transform 0.18s cubic-bezier(0.23, 1, 0.32, 1);
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.contact-btn:hover {
  background: #0093ff;
  border-color: #0093ff;
  color: #fff;
  box-shadow: 0 0 16px 0 #0093ff80, 0 4px 18px 0 rgba(0, 147, 255, 0.18) !important;
  transform: translateY(-2px) scale(1.04);
  animation: none !important;
}

/* Menu hambúrguer - oculto por padrão */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1201;
  margin-left: 8px;
}

.hamburger span {
  display: block;
  width: 28px;
  height: 3px;
  margin: 4px 0;
  background: #fff;
  border-radius: 2px;
  transition: 0.3s;
}

/* Menu mobile - oculto por padrão */
.mobile-menu {
  display: none;
}

/* Main Content - Desktop */
.main-content {
  width: 100%;
  max-width: 620px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  margin-left: 180px;
  padding-left: 0;
  padding-right: 0;
  padding-top: 0;
  z-index: 10;
  border-radius: 0;
  box-shadow: none;
  position: relative;
  text-align: left;
  gap: 32px;
}

/* Imagem de fundo para mobile - oculta por padrão */
.mobile-bg-image {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.7;
}

.main-title {
  display: flex;
  height: auto;
  flex-direction: column;
  justify-content: center;
  align-self: stretch;
  margin-bottom: 25px;
  position: relative;
  z-index: 11;
  align-items: flex-start;
}

.main-title h1 {
  color: #fff;
  font-family: Inter;
  font-size: 38px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  margin-bottom: 15px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
  position: relative;
  z-index: 11;
  text-align: left;
}

.blue-text {
  color: #0093ff;
}

.description {
  height: auto;
  align-self: stretch;
  margin-bottom: 30px;
  position: relative;
  z-index: 11;
}

.description p {
  color: #888;
  font-family: Inter;
  font-size: 18px;
  font-style: normal;
  line-height: 1.4;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
  position: relative;
  z-index: 11;
}

.description .bold {
  font-weight: 700;
  color: #fff;
}

.description .normal {
  font-weight: 400;
  color: #888;
}

.whatsapp-btn {
  display: flex;
  width: 350px;
  height: 60px;
  padding: 10px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 5px;
  background: #00cf75;
  text-decoration: none;
  color: #000;
  font-weight: 700;
  font-size: 16px;
  transition: background 0.3s, box-shadow 0.3s,
    transform 0.18s cubic-bezier(0.23, 1, 0.32, 1);
  cursor: pointer;
  position: relative;
  z-index: 11;
}

.whatsapp-btn:hover {
  background: #00b366;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 32px 0 rgba(0, 207, 117, 0.18);
}

.whatsapp-icon {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.hero-section {
  position: relative;
  background: radial-gradient(
      80% 90% at 50% 50%,
      rgba(255, 255, 255, 0) 70%,
      rgba(0, 0, 0, 0.4) 100%
    ),
    #fff;
  width: 100vw;
  min-height: 480px;
  padding: 80px 0 100px 0;
  overflow: hidden;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 0;
}

.hero-title {
  font-size: 56px;
  font-weight: 700;
  color: #111;
  text-align: center;
  margin-bottom: 32px;
  letter-spacing: -1px;
}

.hero-title .blue-text {
  color: #0093ff;
}

.hero-tag {
  display: flex;
  align-items: center;
  background: #222;
  border-radius: 32px;
  padding: 12px 32px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.hero-tag-icon {
  width: 18px;
  height: 18px;
  background: #0093ff;
  border-radius: 50%;
  margin-right: 16px;
  display: inline-block;
  box-shadow: 0 0 16px 6px #0093ff80, 0 0 32px 12px #0093ff40;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.8;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.hero-tag-text {
  color: #fff;
  font-size: 20px;
  font-weight: 500;
}

.hero-pills-container {
  width: 100%;
  max-width: 1029px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-left: 0;
  padding-right: 0;
  box-sizing: border-box;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px 40px;
  margin-top: 32px;
}

.pill {
  display: inline-flex;
  padding: 10px;
  padding-right: 20px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background: linear-gradient(180deg, #0093ff 0%, #0268b3 100%);
  color: rgba(0, 0, 0, 0.56);
  font-family: Inter;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  border-radius: 30px;
  border: 3px solid #0093ff;
  box-shadow: 0 4px 18px rgba(0, 147, 255, 0.15);
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
}

.pill:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 8px 32px rgba(0, 147, 255, 0.22);
}

.pill-icon {
  width: 22px;
  height: 22px;
  margin-right: 12px;
}

.pill .emoji {
  color: initial;
  filter: none;
  font-size: 1.3em;
  margin-right: 10px;
  display: flex;
  align-items: center;
}

/* Fundo animado ou estático das bg-tags */
.hero-bg-tags-flex {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0.09;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  padding: 50px 0;
  --time: 120s;
}

.bg-tag-row {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 120px;
  position: relative;
  overflow: hidden;
}

.bg-tag-row.row-1 {
  margin-top: 50px;
}

.bg-tag-row.row-2 {
  margin-bottom: 50px;
}

.scroll {
  display: flex;
  width: 100%;
  overflow: hidden;
}

.scroll-content {
  display: flex;
  gap: 100px;
  padding: 0 50px;
  white-space: nowrap;
  flex-shrink: 0;
}

.scroll-content:nth-child(2) {
  animation: scroll2 var(--time) linear infinite;
  animation-delay: calc(var(--time) / -2);
}

.scroll-content:first-child {
  animation: scroll var(--time) linear infinite;
}

.hero-bg-tags-flex .bg-tag {
  display: inline-flex;
  padding: 5px 70px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background: linear-gradient(180deg, #0093ff 0%, #0268b3 100%);
  color: rgba(0, 0, 0, 0.56);
  font-family: Inter;
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  border-radius: 30px;
  border: 3px solid #0093ff;
  box-shadow: 0 4px 18px rgba(0, 147, 255, 0.15);
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
  user-select: none;
  pointer-events: none;
  text-align: center;
  white-space: nowrap;
  box-sizing: border-box;
  min-width: 260px;
  min-height: 70px;
}

/* Faixa 1 - movimento da esquerda para direita */
.row-1 .scroll-content:first-child {
  animation: scroll var(--time) linear infinite;
}

.row-1 .scroll-content:nth-child(2) {
  animation: scroll2 var(--time) linear infinite;
  animation-delay: calc(var(--time) / -2);
}

/* Faixa 2 - movimento da direita para esquerda */
.row-2 .scroll-content:first-child {
  animation: scroll var(--time) linear infinite reverse;
}

.row-2 .scroll-content:nth-child(2) {
  animation: scroll2 var(--time) linear infinite reverse;
  animation-delay: calc(var(--time) / -2);
}

@keyframes scroll {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}

@keyframes scroll2 {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-200%);
  }
}

.bg-card:nth-child(2) {
  animation-delay: 2s;
}
.bg-card:nth-child(3) {
  animation-delay: 4s;
}
.bg-card:nth-child(4) {
  animation-delay: 6s;
}

@keyframes moveCard {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(120px);
  }
}

.servicos-pills {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
  margin-top: 60px;
}

.servicos-pills .pill {
  background: #0093ff;
  color: #fff;
  font-weight: 600;
  font-size: 18px;
  border-radius: 32px;
  padding: 12px 28px;
  box-shadow: 0 4px 18px rgba(0, 147, 255, 0.15);
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.servicos-pills .pill:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 8px 32px rgba(0, 147, 255, 0.22);
}

.servicos-pills .pill-icon {
  width: 22px;
  height: 22px;
  margin-right: 12px;
}

.Prancheta2 {
  width: 100vw;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: radial-gradient(
    57.1% 51.5% at 50% 119.87%,
    #0093ff 0%,
    #000 100%
  );
  padding: 100px 0 60px 0;
}

.Prancheta2 h1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #fff;
  text-align: center;
  font-family: Inter, Arial, sans-serif;
  font-size: 46px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 10px;
  letter-spacing: -1px;
}

.Prancheta2 h1 span {
  color: #0093ff;
  font-size: 46px;
  font-weight: 800;
  margin-top: 2px;
}

.Prancheta2 > span {
  color: #888;
  text-align: center;
  font-family: Inter, Arial, sans-serif;
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 60px;
  margin-top: 10px;
  max-width: 600px;
}

.cards {
  width: 100%;
  max-width: 1160px;
  display: grid;
  height: 1388px;
  row-gap: 35px;
  column-gap: 60px;
  flex-shrink: 0;
  grid-template-rows: repeat(3, minmax(0, 1fr));
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-left: auto;
  margin-right: auto;
}

/* HOVER ESPECÍFICO PARA CARDS DA PRANCHETA2 */
.card {
  display: flex;
  width: 550px;
  height: 421.053px;
  padding: 60px 30px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
  flex-shrink: 0;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 25px;
  border: 1px solid #222;
  box-shadow: 0 4px 32px 0 rgba(0, 147, 255, 0.08);
  transition: box-shadow 0.25s cubic-bezier(0.23, 1, 0.32, 1),
    transform 0.22s cubic-bezier(0.23, 1, 0.32, 1),
    border 0.22s cubic-bezier(0.23, 1, 0.32, 1);
  z-index: 1;
  position: relative;
  will-change: transform;
  transform-style: preserve-3d;
  transition: transform 0.35s cubic-bezier(0.23, 1, 0.32, 1),
    box-shadow 0.25s cubic-bezier(0.23, 1, 0.32, 1);
}

.card:hover {
  box-shadow: 0 12px 48px 0 rgba(0, 147, 255, 0.22);
  transform: translateY(-8px) scale(1.04);
  z-index: 10;
  border: 2.5px solid #0093ff;
  /* NÃO altera o background! */
}

/* Hover bonito e simples para .component (dúvidas) */
.component {
  display: flex;
  width: 467px;
  height: 480px;
  padding: 100px 45px;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: flex-start;
  gap: 22px;
  flex-shrink: 0;
  border-radius: 31px;
  background: #fff;
  border: none;
  box-shadow: 0 4px 32px 0 rgba(0, 147, 255, 0.08);
  transition: box-shadow 0.25s cubic-bezier(0.23, 1, 0.32, 1),
    transform 0.22s cubic-bezier(0.23, 1, 0.32, 1),
    border 0.22s cubic-bezier(0.23, 1, 0.32, 1),
    background 0.22s cubic-bezier(0.23, 1, 0.32, 1);
  z-index: 1;
  position: relative;
  will-change: transform;
  transform-style: preserve-3d;
  transition: transform 0.35s cubic-bezier(0.23, 1, 0.32, 1),
    box-shadow 0.25s cubic-bezier(0.23, 1, 0.32, 1);
  transform: none !important;
}

.component:hover {
  box-shadow: 0 12px 48px 0 rgba(0, 147, 255, 0.22);
  transform: translateY(-8px) scale(1.04) !important;
  z-index: 10;
  border: 2.5px solid #0093ff;
  background: #f8fbff;
  transition: box-shadow 0.25s cubic-bezier(0.23, 1, 0.32, 1),
    transform 0.22s cubic-bezier(0.23, 1, 0.32, 1),
    border 0.22s cubic-bezier(0.23, 1, 0.32, 1),
    background 0.22s cubic-bezier(0.23, 1, 0.32, 1);
}

.component > * {
  transform: none !important;
  box-shadow: none !important;
}

/* Remover hover global para evitar conflitos */
.card:hover,
.component:hover {
  /* vazio para sobrescrever regras antigas */
}

.card img {
  object-fit: contain;
}

.card h2,
.card span,
.card img,
.component i,
.component span,
.component p,
.component img {
  background: none !important;
  box-shadow: none !important;
}

.card h2 {
  color: #fff;
  font-family: Inter, Arial, sans-serif;
  font-size: 25px;
  font-weight: 700;
  margin-bottom: 0;
}

.card span {
  color: #888;
  font-family: Inter, Arial, sans-serif;
  font-size: 20px;
  font-weight: 500;
  margin-top: 0;
  line-height: 1.4;
  max-width: 90%;
}

.duvidas {
  display: flex;
  flex-direction: column;
  padding: 68px 0px;
  justify-content: center;
  align-items: center;

  background: radial-gradient(
      47.01% 47.01% at 50% 52.99%,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0.08) 100%
    ),
    radial-gradient(251.87% 54.09% at 49.35% 54.02%, #0093ff 0%, #fff 76.44%);
}

.duvidas h1 {
  flex-shrink: 0;

  color: #000;
  text-align: center;
  font-family: Inter;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.duvidas span {
  flex-shrink: 0;
  color: #0093ff;
  font-family: Inter;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 50px;
}

.components-wrapper {
  width: 100%;
  max-width: 1948px;
  height: 600px;
  overflow: hidden;
  position: relative;
  margin: 0 auto;
}

.components {
  display: flex;
  gap: 20px;
  align-items: center;
  width: max-content;
  animation: scroll-components 30s linear infinite;
  will-change: transform;
  height: 600px;
}

.components.paused {
  animation-play-state: paused;
}

@keyframes scroll-components {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.component i {
  color: #0093ff;
  width: 35px;
  height: 35px;
  font-size: 35px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.component span {
  color: #0093ff;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.component p {
  flex-shrink: 0;

  color: #000;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.component p span {
  display: block;
  margin-bottom: 8px;
  color: #0093ff;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.components.paused .component:hover {
  box-shadow: 0 12px 48px 0 rgba(0, 147, 255, 0.22);
  transform: translateY(-8px) scale(1.04);
  z-index: 2;
}

.hero-inicio {
  display: flex;
  width: 100vw;
  height: 100vh;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

.main-image-bg {
  width: 100vw;
  height: 100vh;
  position: absolute;
  right: -16vw;
  top: 0;
  z-index: 1;
  background: linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.85) 0%,
      rgba(0, 0, 0, 0.2) 60%,
      rgba(0, 0, 0, 0) 100%
    ),
    url("../img/BG-LP-1.png") center center / cover no-repeat;
  pointer-events: none;
}

.Prancheta4 {
  width: 100vw;
  height: auto;
  min-height: 1171px;
  margin: 0 auto;
  background: radial-gradient(
    96.42% 96.4% at 53.54% 152.03%,
    #0093ff 0%,
    #000 100%
  );
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.quadrados {
  display: flex;
  width: 100%;
  max-width: 1595px;
  height: auto;
  min-height: 784px;
  justify-content: center;
  align-items: center;
  gap: 80px;
  flex-shrink: 0;
}

.quadrado {
  width: 464.996px;
  height: 637.44px;
  flex-shrink: 0;
  border-radius: 30px;
  border: 1px solid #888;
  background: transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
  padding: 0;
  justify-content: center;
}

.quadrado h1 {
  color: #fff;
  font-family: Inter;
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin: 32px 0 0 0;
  width: 100%;
  text-align: center;
  padding-bottom: 24px;
  border-bottom: 0.5px solid #888;
}

.quadrado span {
  color: #bbb;
  text-align: center;
  font-size: 20px;
  font-weight: 300;
  line-height: 1.2;
  width: 100%;
  box-sizing: border-box;
  margin: 0;
  padding: 24px 0 0 0;
  border-bottom: 0.5px solid #888;
  display: block;
}

.quadradao {
  width: 594.051px;
  height: 634.633px;
  margin-top: -100px;
  flex-shrink: 0;
  border-radius: 30px;
  border: 1px solid #fff;
  background: radial-gradient(
    161.36% 75.03% at 49.98% 40.97%,
    rgba(0, 207, 117, 0.37) 0%,
    rgba(0, 0, 0, 0) 100%
  );
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
  padding: 0;
  justify-content: center;
}

.quadradao img {
  width: 246px;
  height: 71px;
  flex-shrink: 0;
  aspect-ratio: 246/71;
  margin-top: 32px;
  margin-bottom: 16px;
  padding-bottom: 0;
  object-fit: contain;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.quadradao-spans {
  display: flex;
  width: 100%;
  height: 370px;
  flex-direction: column;
  align-items: flex-start;
  flex-shrink: 0;
  justify-content: space-between;
  gap: 0;
  margin: 0 auto;
}

.quadradao-spans span {
  width: 100%;
  height: 74px;
  box-sizing: border-box;
  color: #fff;
  text-align: center;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.2;
  margin: 0;
  padding: 0;
  border-bottom: 0.5px solid #888888;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.25);
}

.quadradao-spans span:last-child {
  border-bottom: none;
}

.quadradao button {
  width: 300px;
  height: 60px;
  border-radius: 12px;
  background: #00cf75;
  color: #000;
  font-weight: 700;
  font-size: 20px;
  border: 2.5px solid #00cf75;
  margin: 16px auto 32px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  transition: background 0.2s, border 0.2s, box-shadow 0.3s,
    transform 0.18s cubic-bezier(0.23, 1, 0.32, 1);
  border-bottom: none;
}

.quadradao button:hover {
  background: #00b366;
  border-color: #00b366;
  box-shadow: 0 8px 32px 0 rgba(0, 207, 117, 0.18);
  transform: translateY(-4px) scale(1.04);
}

.quadrado-spans {
  display: flex;
  width: 464px;
  height: 405px;
  flex-direction: column;
  align-items: flex-start;
  flex-shrink: 0;
  justify-content: space-between;
  gap: 0;
  margin: 0 auto;
}

.quadrado-spans span {
  width: 100%;
  height: 101.25px;
  box-sizing: border-box;
  color: #bbb;
  text-align: center;
  font-size: 20px;
  font-weight: 300;
  line-height: 1.2;
  margin: 0;
  padding: 0;
  border-bottom: 0.5px solid #888888;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quadrado-spans span:last-child {
  border-bottom: none;
}

/* --- Footer --- */
.footer {
  width: 100vw;
  background: #000;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  position: relative;
  font-family: "Inter", Arial, sans-serif;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1920px;
  margin: 0 auto;
  padding: 48px 100px 0 100px;
  min-height: 140px;
}

.footer-logo svg {
  display: block;
}

.footer-logo-img {
  height: 40px;
  width: auto;
  display: block;
}

.footer-social {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.footer-social-title {
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 8px;
}

.footer-social-icons {
  display: flex;
  gap: 24px;
}

.footer-social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.22s cubic-bezier(0.23, 1, 0.32, 1);
  text-decoration: none !important;
  box-shadow: none;
}

.footer-social-icons a:visited {
  color: inherit;
  text-decoration: none;
}

.footer-social-icons .bi-linkedin {
  font-size: 28px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s, transform 0.2s;
  position: relative;
  z-index: 1;
}

.footer-social-icons a:hover .bi-linkedin {
  color: transparent;
  background: linear-gradient(135deg, #0a66c2 0%, #0077b5 60%, #004182 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  transform: translateY(-3px) scale(1.13);
  filter: drop-shadow(0 0 8px #0a66c2cc);
  animation: linkedin-gradient 1.2s linear infinite alternate;
}

@keyframes linkedin-gradient {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}

.footer-social-icons .bi-instagram {
  font-size: 28px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s, transform 0.2s;
  position: relative;
  z-index: 1;
}

.footer-social-icons a:hover .bi-instagram {
  color: transparent;
  background: linear-gradient(135deg, #f9ce34 0%, #ee2a7b 40%, #6228d7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  transform: translateY(-3px) scale(1.13) rotate(-8deg);
  filter: drop-shadow(0 0 8px #ee2a7b80);
  animation: insta-gradient 1.2s linear infinite alternate;
}

@keyframes insta-gradient {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}

.footer-social-icons .bi-whatsapp {
  font-size: 28px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s, transform 0.2s;
}

.footer-social-icons a:hover .bi-whatsapp {
  color: #00cf75;
  animation: pulse-whatsapp 0.7s alternate infinite;
  transform: translateY(-3px) scale(1.13) rotate(6deg);
}

@keyframes pulse-whatsapp {
  0% {
    filter: drop-shadow(0 0 0 #00cf75);
  }
  100% {
    filter: drop-shadow(0 0 8px #00cf75);
  }
}

.footer-link {
  display: flex;
  align-items: center;
  height: 100%;
}

.footer-exclusive {
  color: #0093ff;
  font-size: 16px;
  font-weight: 400;
  text-decoration: underline;
  transition: color 0.2s;
}

.footer-exclusive:hover {
  color: #fff;
}

.footer-divider {
  border: none;
  border-top: 1px solid #888888;
  margin: 32px 100px 0 100px;
}

.footer-bottom {
  color: #888;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  margin: 24px 0 0 0;
  padding-bottom: 24px;
}

/* --- Animações Suaves e Fluidas --- */
.fade-in {
  opacity: 0;
  animation: fadeIn 1.2s ease-out forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.slide-up {
  opacity: 0;
  transform: translateY(40px);
  animation: slideUp 1.2s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Delay utilitário para animações em cascata */
[data-anim-delay] {
  animation-delay: var(--anim-delay, 0s);
}

/* --- Melhorias de Hover --- */

/* Links com underline animado */
.nav-links a,
.footer-exclusive {
  position: relative;
  overflow: hidden;
}
.nav-links a::after,
.footer-exclusive::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #0093ff 0%, #00cf75 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}
.nav-links a:hover::after,
.footer-exclusive:hover::after {
  transform: scaleX(1);
}

.card:hover,
.component:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 8px 32px 0 rgba(0, 147, 255, 0.18);
  animation: none !important;
}

.card,
.component {
  transition: transform 0.2s ease, box-shadow 0.2s ease !important;
  animation: none !important;
}

.card:hover,
.component:hover {
  transform: translateY(-4px) scale(1.02) !important;
  box-shadow: 0 8px 32px 0 rgba(0, 147, 255, 0.18) !important;
  animation: none !important;
}

/* Animações 3D para desktop */
.card:hover,
.component:hover {
  box-shadow: 0 16px 48px 0 rgba(0, 147, 255, 0.28);
}

@keyframes card-3d-rotate {
  0% {
    transform: translateY(-8px) scale(1.04) rotateY(6deg) rotateX(0deg);
  }
  50% {
    transform: translateY(-8px) scale(1.04) rotateY(-6deg) rotateX(3deg);
  }
  100% {
    transform: translateY(-8px) scale(1.04) rotateY(6deg) rotateX(0deg);
  }
}

/* Tilt 3D nos cards ao hover - desktop */
.card:hover {
  --tilt: 6deg;
}
.component:hover {
  --tilt: -6deg;
}

/* Pulsar/brilho animado nos botões principais ao hover - desktop */
.whatsapp-btn:hover,
.quadradao button:hover,
.contact-btn:hover {
  animation: pulse-btn 0.7s alternate infinite;
  box-shadow: 0 0 0 0 #00cf75, 0 8px 32px 0 rgba(0, 207, 117, 0.18);
}

@keyframes pulse-btn {
  0% {
    box-shadow: 0 0 0 0 #00cf75;
  }
  100% {
    box-shadow: 0 0 16px 6px #00cf7580;
  }
}

/* Manter gradiente de luz/reflexo no hover - desktop */
.card::after,
.component::after {
  content: "";
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.3s;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.18) 0%,
    rgba(255, 255, 255, 0.04) 60%,
    rgba(255, 255, 255, 0) 100%
  );
  z-index: 2;
}

.card:hover::after,
.component:hover::after {
  opacity: 1;
}

.card > *,
.component > * {
  position: relative;
  z-index: 3;
  will-change: transform;
  transition: transform 0.35s cubic-bezier(0.23, 1, 0.32, 1);
}

.tilt-inner {
  transform: translateZ(40px);
  will-change: transform;
  transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

.Prancheta2 .cards {
  perspective: 800px !important;
  perspective-origin: 50% 50% !important;
  will-change: perspective;
}

.card {
  backface-visibility: visible !important;
  transform-style: preserve-3d !important;
  will-change: transform;
}

.icon-glow {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  margin-bottom: 18px;
}
.icon-glow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 240px;
  height: 240px;
  background: radial-gradient(
    circle,
    rgba(0, 147, 255, 0.1) 0%,
    #0093ff33 60%,
    transparent 100%
  );
  filter: blur(24px);
  opacity: 0.25;
  z-index: 0;
  pointer-events: none;
}
.icon-glow img {
  position: relative;
  z-index: 1;
}
@media (max-width: 900px) {
  body {
    background: #000 !important;
  }
  .header {
    width: 90vw;
    max-width: 721px;
    padding: 0 2px;
    margin: 22px auto 0 auto;
    border-radius: 5px;
    border: 1px solid #888;
    background: rgba(0, 0, 0, 0.35);
    justify-content: center;
    align-items: center;
    min-height: 32px;
    height: 32px;
    gap: 0;
    display: flex;
  }
  .logo {
    background: rgba(0, 147, 255, 0.13);
    border-radius: 50%;
    padding: 4px;
    box-shadow: 0 2px 8px 0 rgba(0, 147, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .logo img {
    width: 28px;
    height: 28px;
  }
  .hamburger {
    width: 24px;
    height: 24px;
    margin-left: 4px;
  }
  .hamburger span {
    width: 16px;
    height: 2px;
    margin: 2px 0;
  }
  .contact-btn {
    font-size: 11px;
    padding: 2px 7px;
    min-height: 22px;
    border-radius: 5px;
    margin-left: 4px;
  }
  .nav-links {
    gap: 8px;
  }
  .nav-links a {
    font-size: 13px;
    padding: 0 2px;
    margin: 0 2px;
  }
  .main-content {
    width: 90vw;
    max-width: 900px;
    min-height: 0;
    opacity: 1;
    background: none;
    margin: 0 auto;
    border-radius: 0 !important;
    box-sizing: border-box;
    padding: 0 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 18px;
    margin-top: 18px;
  }
  .main-title,
  .description {
    width: 90vw;
    max-width: 708px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin: 0 auto 6px auto;
    text-align: center;
  }
  .main-title h1 {
    font-size: 20px;
    line-height: 1.12;
    margin-bottom: 6px;
    text-align: center;
  }
  .description p {
    font-size: 13px;
    line-height: 1.25;
    margin-bottom: 8px;
    text-align: center;
  }
  .whatsapp-btn {
    width: 100%;
    max-width: 340px;
    height: 44px;
    font-size: 15px;
    margin: 10px auto 0 auto;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .hero-inicio {
    flex-direction: column;
    height: auto;
    min-height: 100vh;
    padding-top: 32px;
    position: relative;
    background: none;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .main-image-bg {
    display: none;
  }
  .mobile-bg-image {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-width: 100vw;
    min-height: 100vh;
    object-fit: cover;
    object-position: right bottom;
    z-index: 0;
    opacity: 1;
    pointer-events: none;
  }
  /* Gradiente preto à esquerda para contraste do texto */
  .hero-inicio::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(
      90deg,
      #000 0%,
      rgba(0, 0, 0, 0.7) 40%,
      rgba(0, 0, 0, 0.2) 100%
    );
    z-index: 1;
    border-radius: 0 0 20px 20px;
    pointer-events: none;
  }
  .hero-inicio::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.72);
    z-index: 1;
    pointer-events: none;
    border-radius: 0 0 20px 20px;
  }
  .main-content,
  .main-title,
  .description,
  .whatsapp-btn {
    position: relative;
    z-index: 2;
  }
  .header .contact-btn {
    display: none !important;
  }
  .hero-section {
    width: 100vw;
    min-height: 420px;
    padding: 32px 0 32px 0;
    overflow: hidden;
    position: relative;
  }
  .hero-bg-tags-flex {
    opacity: 0.04;
    pointer-events: none;
    z-index: 0;
  }
  .hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 0;
    padding: 0 8px;
  }
  .hero-title {
    font-size: 28px;
    margin-bottom: 18px;
    text-align: center;
    width: 100%;
    max-width: 90vw;
  }
  .hero-tag {
    padding: 8px 18px;
    font-size: 15px;
    border-radius: 24px;
    margin-bottom: 12px;
  }
  .hero-tag-text {
    font-size: 15px;
  }
  .hero-pills-container {
    max-width: 100vw;
    padding: 0;
  }
  .hero-pills {
    flex-wrap: wrap;
    gap: 10px 8px;
    margin-top: 18px;
    justify-content: center;
  }
  .pill {
    font-size: 14px;
    padding: 7px 14px;
    border-radius: 20px;
    min-width: 0;
    max-width: 90vw;
    box-shadow: 0 2px 8px rgba(0, 147, 255, 0.08);
  }
  .pill .emoji {
    font-size: 1.1em;
    margin-right: 6px;
  }
  .Prancheta2 {
    width: 100vw;
    min-height: 0;
    padding: 32px 0 32px 0;
    background: radial-gradient(
      57.1% 51.5% at 50% 119.87%,
      #0093ff 0%,
      #000 100%
    );
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
  }
  .Prancheta2 h1 {
    font-size: 22px;
    text-align: center;
    margin-bottom: 8px;
  }
  .Prancheta2 h1 span {
    font-size: 22px;
  }
  .Prancheta2 > span {
    font-size: 15px;
    margin-bottom: 24px;
    margin-top: 4px;
    max-width: 90vw;
  }
  .cards {
    width: 100vw;
    max-width: 98vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    height: auto;
    margin: 0 auto;
  }
  .card {
    width: 92vw;
    max-width: 370px;
    min-width: 0;
    height: auto;
    min-height: 0;
    padding: 28px 12px;
    border-radius: 18px;
    box-shadow: 0 2px 12px 0 rgba(0, 147, 255, 0.1);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }
  .card img {
    width: 54px !important;
    height: auto !important;
    margin-bottom: 8px;
  }
  .card h2 {
    font-size: 17px;
    text-align: center;
    margin-bottom: 4px;
  }
  .card span {
    font-size: 14px;
    text-align: center;
    max-width: 90%;
  }
  .duvidas {
    padding: 32px 0 32px 0;
    align-items: center;
    min-height: 0;
  }
  .duvidas h1 {
    font-size: 20px;
    text-align: center;
    margin-bottom: 6px;
  }
  .duvidas span {
    font-size: 15px;
    margin-bottom: 18px;
  }
  .components-wrapper {
    width: 100vw;
    max-width: 100vw;
    height: auto;
    overflow-x: auto;
    overflow-y: visible;
    margin: 0 auto;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE e Edge */
  }
  .components-wrapper::-webkit-scrollbar {
    display: none;
  }
  .components {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 14px;
    width: max-content;
    height: auto;
    animation: scroll-components 30s linear infinite;
    will-change: transform;
  }
  .component {
    width: 260px;
    min-width: 220px;
    max-width: 80vw;
    height: 320px;
    min-height: 0;
    padding: 18px 10px;
    border-radius: 14px;
    box-shadow: 0 2px 12px 0 rgba(0, 147, 255, 0.1);
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    background: #fff;
  }
  .component i {
    font-size: 22px;
    width: 22px;
    height: 22px;
    margin-bottom: 4px;
  }
  .component p {
    font-size: 13px;
    text-align: left;
    line-height: 1.35;
  }
  .component p span {
    font-size: 14px;
    margin-bottom: 2px;
  }
  .component:hover {
    /* Remover hover no mobile */
    box-shadow: none !important;
    transform: none !important;
    border: 1.5px solid #0093ff22 !important;
    background: #fff !important;
  }
  .component:active {
    box-shadow: 0 2px 12px 0 #0093ff33 !important;
    border: 2px solid #0093ff55 !important;
    background: #f4faff !important;
    transition: none !important;
  }
  .Prancheta4 {
    width: 100vw;
    min-height: 0;
    padding: 32px 0 32px 0;
    background: radial-gradient(
      96.42% 96.4% at 53.54% 152.03%,
      #0093ff 0%,
      #000 100%
    );
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
  }
  .Prancheta4 h1 {
    font-size: 20px;
    text-align: center;
    margin-bottom: 10px;
  }
  .quadrados {
    width: 100vw;
    max-width: 98vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    min-height: 0;
    margin: 0 auto;
  }
  .quadrado,
  .quadradao {
    width: 92vw;
    max-width: 370px;
    min-width: 0;
    height: auto;
    min-height: 0;
    padding: 22px 10px;
    border-radius: 18px;
    box-shadow: 0 2px 12px 0 rgba(0, 147, 255, 0.1);
    border: 1.5px solid #bbb;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: rgba(0, 0, 0, 0.12);
  }
  .quadradao {
    background: radial-gradient(
      161.36% 75.03% at 49.98% 40.97%,
      rgba(0, 207, 117, 0.37) 0%,
      rgba(0, 0, 0, 0) 100%
    ) !important;
    border: 1.5px solid #fff !important;
  }
  .quadradao-spans,
  .quadrado-spans {
    width: 100%;
    height: auto;
    gap: 0;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .quadradao-spans span,
  .quadrado-spans span {
    height: auto;
    min-height: 0;
    padding: 10px 0;
    font-size: 14px;
    border-bottom: 1.5px solid #888888;
    width: 100%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .quadradao-spans span:last-child,
  .quadrado-spans span:last-child {
    border-bottom: none;
  }
  .quadradao-btn {
    background: #00cf75;
    color: #000;
    font-weight: 700;
    border: 2.5px solid #00cf75;
    text-decoration: none;
    font-size: 20px;
    height: 60px;
    min-width: 0;
    width: 300px;
    border-radius: 12px;
    margin: 16px auto 32px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: background 0.2s, border 0.2s, box-shadow 0.3s,
      transform 0.18s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 8px 32px 0 rgba(0, 207, 117, 0.18);
  }
  .quadradao-btn:hover {
    background: #00b366;
    border-color: #00b366;
    box-shadow: 0 8px 32px 0 rgba(0, 207, 117, 0.28);
    transform: translateY(-4px) scale(1.04);
  }
  .footer {
    width: 100vw;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    position: relative;
    font-family: "Inter", Arial, sans-serif;
  }
  .footer-content {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 28px 12px 0 12px;
    min-height: 0;
    gap: 18px;
  }
  .footer-logo-img {
    height: 32px;
    width: auto;
    margin-bottom: 8px;
  }
  .footer-social {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  .footer-social-title {
    font-size: 15px;
    margin-bottom: 4px;
  }
  .footer-social-icons {
    gap: 18px;
  }
  .footer-social-icons a {
    font-size: 28px;
    width: 38px;
    height: 38px;
    justify-content: center;
    align-items: center;
  }
  .footer-link {
    margin-top: 8px;
    margin-bottom: 0;
  }
  .footer-exclusive {
    font-size: 14px;
  }
  .footer-divider {
    margin: 18px 12px 0 12px;
  }
  .footer-bottom {
    font-size: 13px;
    margin: 14px 0 0 0;
    padding-bottom: 14px;
  }
  /* Sombra suave em cards e botões */
  .card,
  .component,
  .quadrado,
  .quadradao,
  .whatsapp-btn,
  .quadradao button {
    box-shadow: 0 4px 18px 0 rgba(0, 147, 255, 0.1),
      0 1.5px 8px 0 rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.22s cubic-bezier(0.23, 1, 0.32, 1),
      transform 0.22s cubic-bezier(0.23, 1, 0.32, 1);
  }
  /* Transições suaves em botões e links */
  .whatsapp-btn,
  .contact-btn,
  .footer-exclusive,
  .pill,
  .quadradao button {
    transition: background 0.22s, color 0.22s, box-shadow 0.22s, transform 0.22s;
  }
  /* Gradiente nos títulos principais */
  .main-title h1,
  .hero-title,
  .Prancheta2 h1,
  .Prancheta4 h1 {
    background: none;
    -webkit-background-clip: initial;
    -webkit-text-fill-color: initial;
    background-clip: initial;
    text-fill-color: initial;
    color: #fff;
  }
  /* Animação de entrada nos cards ao rolar */
  .card,
  .component,
  .quadrado,
  .quadradao {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.23, 1, 0.32, 1),
      transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
  }
  .card.visible,
  .component.visible,
  .quadrado.visible,
  .quadradao.visible {
    opacity: 1;
    transform: translateY(0);
  }
  /* Animação de pulso no botão WhatsApp */
  .whatsapp-btn {
    animation: pulse-btn-mobile 1.3s infinite alternate;
  }
  @keyframes pulse-btn-mobile {
    0% {
      box-shadow: 0 0 0 0 #00cf7533;
    }
    100% {
      box-shadow: 0 0 16px 6px #00cf7580;
    }
  }
  /* Espaçamento extra no topo e base do site */
  body {
    padding-top: env(safe-area-inset-top, 16px);
    padding-bottom: env(safe-area-inset-bottom, 18px);
  }
  .prancheta4-title {
    display: none !important;
  }
}
.prancheta4-title {
  color: #fff;
  font-family: Inter;
  font-size: 36px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.prancheta4-title span {
  color: #fff;
  font-family: Inter;
  font-size: 36px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
}

/* --- Equipe Cards --- */
.equipe {
  width: 100vw;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: radial-gradient(50% 83.01% at 50% 133.01%, #0093ff 0%, #000 100%);
  padding: 120px 0 80px 0;
}
.equipe-cards {
  display: inline-flex;
  padding: 10px;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

.equipe-card {
  width: 400px;
  height: 500px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid #fff;
  border-radius: 22px;
  filter: drop-shadow(0px 4px 22.8px rgba(0, 0, 0, 0.25));
  backdrop-filter: blur(32.3px);
  padding: 36px 32px 32px 32px;
  min-height: unset;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.22s, border 0.22s;
  position: relative;
}
.equipe-card:hover {
  box-shadow: 0 16px 48px 0 rgba(0, 147, 255, 0.22);
  border: 2.5px solid #0093ff;
}
.equipe-info-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  margin-bottom: 10px;
}
.equipe-foto {
  width: 90px;
  height: 90px;
  border-radius: 90px;
  border: 1px solid #bcbcbc;
  background: #d3d3d3;
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.equipe-foto img {
  width: 90px;
  height: 90px;
  border-radius: 90px;
  object-fit: cover;
  display: block;
}
.equipe-info {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.equipe-nome {
  color: #fff;
  font-family: Inter;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 2px;
}
.equipe-cargo {
  align-self: flex-start;
  color: #fff;
  font-family: Inter;
  font-size: 10px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 0;
  opacity: 1;
}
.equipe-desc {
  color: #fff;
  font-family: Inter;
  font-size: 11px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  width: 320px;
  height: 230px;
  flex-shrink: 0;
  opacity: 1;
  margin-top: 18px;
}
@media (max-width: 900px) {
  .equipe-info-header {
    flex-direction: column;
    align-items: center;
    gap: 6px;
    margin-bottom: 8px;
  }
  .equipe-foto,
  .equipe-foto img {
    width: 64px;
    height: 64px;
    border-radius: 64px;
  }
  .equipe-nome {
    font-size: 16px;
  }
  .equipe-cargo {
    font-size: 9px;
    margin-bottom: 0;
  }
  .equipe-desc {
    width: 90vw;
    max-width: 320px;
    height: auto;
    font-size: 10px;
    margin-top: 10px;
  }
}
