/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Prevent horizontal overflow globally */
html {
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: var(--font-family-space-grotesk);
  background-color: #000;
  color: var(--color-white);
  cursor: default;
  overflow-x: hidden;
  width: 100%;
}

input,
select,
textarea,
button {
  cursor: pointer;
}

form select option {
  color: #000;
}

body ::selection {
  background-color: none;
  color: inherit;
}



.site-header .container {
  display: flex;
}

/* Header content wrapper - Desktop only */
@media (min-width: 768px) {
  .header-content {
    display: flex;
    gap: 2rem;
    flex: 1;
    align-items: center;
    justify-content: space-between;
  }

  .site-header .container {
    flex-flow: column;
  }
}

.logo img {
  height: 24px;
  margin-top: 6px;
}

/* Menu ocupa todo o espaço entre logo e botão */
.main-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex: 1;
  gap: 32px;
  z-index: 100;
}

.main-nav a {
  color: var(--color-gray-medium);
  text-decoration: none;
  font-size: 15px;
}

/* Grupos de links */
.nav-group {
  display: flex;
  align-items: center;
  gap: 44px;
  justify-content: center;
}

.primary-links {
  flex: 1;
}

.access-links {
  margin-left: auto;
}

/* Links gerais */


.main-nav a:hover {
  color: var(--color-white);
}

/* Menu padrão */
/* Menu Hover */
.nav-solutions {
  position: relative;
}

.submenu-solutions.feature-container,
.submenu-recursos.feature-container {
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
  display: none;
  gap: 40px;
}

/* Disable CSS transitions when GSAP is handling animations */
.gsap-enabled .submenu-solutions.feature-container,
.gsap-enabled .submenu-recursos.feature-container {
  transition: none;
}

/* Desktop hover behavior - show dropdowns on hover */
@media (min-width: 768px) {

  /* Hover states for desktop */
  body.hover-solutions .submenu-solutions.feature-container,
  body.hover-recursos .submenu-recursos.feature-container {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    display: flex;
  }

  /* Show header expanded state on hover */
  body.hover-solutions .site-header,
  body.hover-recursos .site-header {
    --header-expanded: true;
  }
}

/* Click-based behavior (for mobile and when JavaScript is handling) */
.site-header.expanded~.submenu-solutions.feature-container,
.site-header.expanded~.submenu-recursos.feature-container {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  display: flex;
}

.nav-trigger,
.nav-trigger-recursos {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.nav-trigger:after,
.nav-trigger-recursos:after {
  content: '▼';
  font-size: 8px;
  margin-left: 4px;
  transition: transform 0.3s ease;
}

/* Desktop hover arrow rotation */
@media (min-width: 768px) {

  body.hover-solutions .nav-solutions-solucoes .nav-trigger:after,
  body.hover-recursos .nav-solutions-recursos .nav-trigger-recursos:after {
    transform: rotate(180deg);
  }
}

/* Botão CTA */
.btn-cta {
  padding: var(--spacing-xs) var(--spacing-md);
  background-color: var(--color-white);
  color: var(--color-black) !important;
  border-radius: var(--border-radius-sm);
  font-weight: 500;
  text-decoration: none;
  font-size: 14px;
}

.btn-cta:hover {
  background-color: var(--color-gray-light);
}


.btn-cta:hover {
  background-color: #f2f2f2;
}


/* Seção Hero */
.hero-top-link {
  font-size: 16px;
  color: var(--color-gray-dark);
}

.hero-top-link a {
  color: #00ffae;
  text-decoration: none;
  font-weight: 500;
}

.hero-title {
  color: var(--color-white);
  line-height: 1.2;
}

.hero-title span {
  background: radial-gradient(var(--color-primary) 15%, var(--color-secondary) 85%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: var(--font-family-space-grotesk);
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: -0.6px;
  animation: colorChange 10s ease infinite;
  background-size: 400% 400%;
}

@keyframes colorChange {
  50% {
    background-position: 0% 50%;
  }

  0%,
  100% {
    background-position: 100% 50%;
  }
}

.hero-subtitle {
  color: var(--color-gray-medium);
  line-height: 1.5;
  width: 67%;
}

.btn-hero-cta {
  display: inline-block;
  background-color: var(--color-white);
  color: var(--color-dark);
  padding: var(--spacing-md) var(--spacing-xl);
  border-radius: var(--border-radius-sm);
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s;
  margin-top: 0;
  margin-bottom: 160px;
}

.btn-hero-cta:hover {
  background-color: var(--color-gray-light);
}

.hero-trust-text {
  color: var(--color-gray-dark);
  padding: 0 var(--spacing-xxl);
}

.hero-logos-wrapper {
  width: 100vw;
  overflow: hidden;
  margin: 0 auto;
  padding: 10px 0;
}

.hero-logos-track img {
  height: 30px;
  flex-shrink: 0;
}

span.destak {
  padding: var(--spacing-sm) var(--spacing-lg);
  align-items: center;
  gap: var(--spacing-sm);
  border-radius: var(--border-radius-full);
  background: rgba(255, 255, 255, 0.05);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.hero {
  background: radial-gradient(circle at top, var(--color-dark) 0%, var(--color-black) 100%);
  display: flex;
  justify-content: center;
  gap: 160px;
  padding: 160px 34px 60px;
  text-align: center;
  overflow: hidden;
  position: relative;
  min-height: 110dvh;
}


.hero-decor {
  position: absolute;
  width: 180px;
  height: 180px;
  background: var(--color-white);
  /* ou um radial-gradient se quiser algo mais elaborado */
  fill: var(--color-white);
  filter: blur(237.6999969482422px);
  flex-shrink: 0;
}

.decor-left {
  top: 10%;
  left: -90px;
  transform: rotate(-30deg);
}

.decor-right {
  bottom: 10%;
  right: -90px;
  transform: rotate(30deg);
}

.hero-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 160px;
  flex-shrink: 0;
  max-width: 1040px;
  width: 100%;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

.hero-footer {
  display: flex;
  /* width: 1280px; */
  flex-direction: column;
  align-items: center;
  gap: 60px;
}

.hero-logos-track {
  display: flex;
  width: max-content;
  gap: 40px;
  align-items: center;
  opacity: 0.6;
  margin-bottom: 20px;
  animation: scroll 20s linear infinite;
}

.hero svg {
  width: 181.283px;
  height: 181.283px;
  transform: rotate(-30deg);
  flex-shrink: 0;
  fill: #FFF;
  filter: blur(237.6999969482422px);
}

/* Seção Benefícios */
.benefits-v2 {
  background-color: var(--color-white);
  padding: 60px 20px;
  color: #444;
}

.benefits-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 56px;
  margin: 0 auto;
  max-width: 1164px;
}

.benefits-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

.benefits-header h2 {
  margin-bottom: 12px;
  letter-spacing: -0.4px;
  color: var(--color-black);
}

.benefits-header p {
  color: var(--color-gray-dark);
  line-height: 1.5;
  letter-spacing: -0.18px;
}

/* GRID */
.benefits-grid {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 16px;
}

/* CARD GRANDE */
.benefit-large {
  background: linear-gradient(135deg, #1fcdf2, #2064e5);
  border-radius: 16px;
  padding: 30px;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: end;
  position: relative;
  overflow: hidden;
}

.benefit-large img {
  width: 64px;
  height: 64px;
  margin-bottom: 20px;
}

.benefit-large h3 {
  color: var(--color-white);
  font-family: var(--font-family-space-grotesk);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.22px;
}

.benefit-large p {
  color: rgba(255, 255, 255, 0.75);
  font-family: "Space Grotesk";
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.18px;
}

.benefit-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 10px;
}

.benefit-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
  mix-blend-mode: plus-lighter;
  border-radius: 16px;
}

.benefits-grid-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
  align-self: stretch;
}

/* COLUNA COM 2 CARDS */
.benefit-column {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.benefit-small {
  background-color: rgba(0, 0, 255, 0.03);
  border-radius: var(--border-radius-lg);
  padding: 40px 25px;
  display: flex;
  gap: 27px;
  align-items: center;
}

.benefit-small img {
  width: 62px;
  height: 62px;
  flex-shrink: 0;
}

.benefit-small h3 {
  color: var(--color-text-dark);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.22px;
}

.benefit-small p {
  color: var(--color-text-dark);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.18px;
}

/* Icons */
.payment-icons {
  display: flex;
  height: 85px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  align-self: stretch;
}

.payment-icon {
  display: flex;
  align-items: center;
  background-color: rgba(0, 0, 255, 0.03);
  border-radius: var(--border-radius-md);
  padding: var(--spacing-md) var(--spacing-lg);
  font-weight: 400;
  color: var(--color-text-dark);
  width: 100%;
  box-sizing: border-box;
  transition: background 0.3s;
}

.icon-circle {
  background-color: rgba(0, 0, 255, 0.03);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
  flex-shrink: 0;
}

.icon-circle img {
  width: 22px;
  height: 22px;
}

/* Seção Como Funciona */
.integration-dark {
  background: radial-gradient(circle at top left, var(--color-dark) 0%, var(--color-black) 100%);
  color: var(--color-white);
  padding: 60px 40px 40px;
  position: relative;
  overflow: hidden;
}

.integration-dark-card {
  position: relative;
  z-index: 0;
  display: flex;
  justify-content: center;
}

.integration-dark-card::before {
  width: 408px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.05);
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  transform: scale(1);
  transition: transform 0.4s ease;
  background-image: url(assets/icon-basspago.svg);
  background-repeat: no-repeat;
  background-position: top 20px right 20px;
  left: 76px;
}

.integration-dark-card:hover::before {
  transform: scale(0.96);
}

.integration-dark-container {
  max-width: 1180px;
  margin: 0 auto;
}

.integration-dark-header {
  text-align: center;
  margin-bottom: 60px;
}

.integration-dark-header h2 {
  font-weight: 400;
  margin-bottom: 16px;
  letter-spacing: -0.4px;
}

.integration-dark-header p {
  color: var(--color-gray-medium);
  line-height: 1.6;
}

/* Grid para imagem + texto */
.integration-dark-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Placeholder da imagem */
.dark-placeholder {
  background: #1a1a1a;
  width: 100%;
  height: 320px;
  border-radius: 30px;
  box-shadow: inset 0 0 60px #000;
}

/* Texto lateral */
.integration-dark-text h2 {
  margin-bottom: 20px;
}

.integration-dark-text p {
  line-height: 1.7;
  color: #ddd;
  margin-bottom: 20px;
}

/* Seção Tecnologia */
.tech-section {
  background-color: #000;
  color: white;
  padding: 60px 40px;
  position: relative;
  overflow: hidden;
}

.tech-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* Título à esquerda, descrição à direita */
.tech-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
}

.tech-header h2 {
  font-weight: 400;
  flex: 1 1 300px;
  letter-spacing: -0.4px;
}

.tech-header p {
  color: rgba(255, 255, 255, 0.75);
  flex: 1 1 300px;
  line-height: 1.6;
}

.tech-header strong {
  color: white;
  font-weight: 600;
}

/* Cards */
.tech-cards-wrapper {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  gap: 13px;
}

.tech-card {
  position: relative;
  background-color: #0d0d0d;
  border-radius: 24px;
  padding: 24px;
  min-width: 290px;
  color: white;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  margin: 0;
  scroll-snap-align: start;
  text-decoration: none;
}

.tech-card p {
  color: #ddd;
  line-height: 1.4;
}

.badge-top-left {
  top: 76px;
  left: 46px;
  transition: transform 0.6s ease-in-out;
}

/* Scrollbar escondida */
.tech-cards-wrapper::-webkit-scrollbar {
  display: none;
}

.tech-decor.decor-center {
  position: absolute;
  left: 25%;
  bottom: -21px;
  border-radius: 835px;
  background: #FFF;
  filter: blur(127.7px);
  width: 835px;
  height: 35px;
  opacity: 0.3;
}

/* Compare Section */
.compare-section {
  background-color: #000;
  color: white;
  padding: 60px 20px;
  position: relative;
}

.compare-text {
  padding-right: 79px;
}

.compare-container {
  max-width: 1280px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  align-items: center;
}

/* Texto */
.compare-text h2 {
  font-weight: 400;
  margin-bottom: 30px;
}

.compare-text p {
  color: #ccc;
  line-height: 1.6;
}

/* Tabela */
.compare-table {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

.compare-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.compare-column {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.compare-header b {
  color: #fff;
}

.compare-header {
  font-weight: 400;
  color: #aaa;
  margin-bottom: 8px;
  text-align: center;
}

.item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #1f1f1f;
  padding: 12px 16px;
  border-radius: 8px;
  color: white;
  font-weight: 400;
  min-height: 66px;
}

.foreign-section {
  background: #000;
  padding: 190px 20px 60px 20px !important;
  display: flex;
  justify-content: center;
}

.foreign-content {
  background: #fff;
  border-radius: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  position: relative;
  z-index: 2;
  max-width: 1318px;
  width: 100%;
  height: 400px;
  max-width: 1280px;
}

.foreign-text {
  flex: 1;
  display: flex;
  flex-direction: column;
}

@media (min-width: 768px) {
  .foreign-content {
    padding: 70px 70px 70px 120px;
  }
}

.foreign-text .cta-button {
  background: black;
  width: 150px;
  color: white !important;
}

.foreign-text h2 {
  color: #111;
  font-weight: 400;
  margin-bottom: 20px;
  font-family: 'Space Grotesk', sans-serif;
}

.foreign-text p {
  color: #555;
  line-height: 1.6;
  margin-bottom: 24px;
}


/* Imagem fora do cartão branco */
.foreign-image-stack {
  flex: 1.2;
  min-width: 320px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: -143px;
  right: 0px;
}


@media (max-width: 1000px) {
  .foreign-content {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }

  .foreign-image-stack {
    margin: 0 auto;
    height: 380px;
  }

  .foreign-text {
    padding: 38px 18px 20px 28px;
    text-align: left;
    align-items: flex-start;
    min-width: 250px;
  }
}

@media (max-width: 700px) {

  .foreign-box {
    border-radius: 22px;
  }

  .foreign-image-stack {
    min-width: 0;
    width: 100%;
    height: 220px;
  }

  .foreign-card-bg,
  .foreign-img-mockup {
    width: 170px;
    margin-right: 0;
    margin-bottom: -20px;
  }
}




/* Seção de Uso */
.use-case-section {
  background-color: #000;
  color: white;
  padding: 60px 20px;
  overflow: hidden;
}

.use-case-container {
  max-width: 980px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* Header */
.use-case-header {
  display: grid;
  /* justify-content: space-between; */
  align-items: center;
  /* flex-wrap: wrap; */
  gap: 40px;
  grid-template-columns: 1fr 2fr;
}

.use-case-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

@media (max-width: 768px) {
  .use-case-header {
    grid-template-columns: 1fr;
  }

  .use-case-tabs {
    gap: 18px;
  }
}

.tab-button {
  background-color: #1a1a1a;
  color: #ccc;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;
  transition: background 0.2s;
}

.tab-button.active {
  background-color: #2b2b2b;
  color: white;
}

/* Conteúdo */
.use-case-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  align-items: stretch;
}

/* Imagem à esquerda */
.use-case-image {
  background-image: url('images/cards-infraestrutura.png');
  background-position: center;
  background-repeat: no-repeat;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  height: 320px;
}

.use-case-text-block {
  width: 100%;
  height: 100%;
  padding: 40px;
  background: rgba(255, 255, 255, 0.09);
  border-radius: 20px;
  justify-content: space-between;
  align-items: center;
  display: inline-flex;
}

/* Texto à direita */
.use-case-text {
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  display: inline-flex;
  gap: 20px;
}

.use-case-text h3 {
  color: white;
  word-wrap: break-word;
}

.use-case-text p {
  color: rgba(255, 255, 255, 0.75);
  word-wrap: break-word;
}

.case-link {
  align-self: flex-end;
  font-size: 20px;
  color: #999;
  text-decoration: none;
  transition: color 0.3s;
}

.case-link:hover {
  color: white;
}



/* Teste Grátis */
.cta-section {
  background-color: #000;
  padding: 60px 20px;
  display: flex;
  justify-content: center;
  overflow: hidden;
}

.cta-box {
  background: linear-gradient(135deg, #207ce5, #2ee7a6);
  border-radius: 40px;
  text-align: center;
  padding: 60px 40px;
  color: white;
  max-width: 717px;
  width: 100%;
  fill: linear-gradient(234deg, #41FE95 -9.25%, #00F 138.52%);
}

.cta-box h2 {
  font-weight: 500;
  margin-bottom: 20px;
}

.cta-box p {
  color: #e6e6e6;
  margin-bottom: 30px;
  line-height: 1.6;
}

/* Footer */
.footer {
  max-width: 1280px;
  margin: 0 auto;
  color: white;
  padding: 60px 40px;
}

.footer-wrapper {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr 200px;
  gap: 60px;
}

/* Coluna 1 */
.footer-col.left {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.footer-logo {
  width: 120px;
}

.footer-desc {
  color: #ffffff75;
  font-size: 14px;
}

.app-buttons {
  display: flex;
  gap: 10px;
}

.app-buttons img {
  height: 36px;
}

.footer-cnpj {
  color: #888;
  margin: 20px auto;
  border-top: 1px solid rgba(255, 255, 2550, 0.10);
  padding: 10px 0;
}

.footer-cnpj p {
  font-size: 12px;
  text-align: center;
  color: #888;
  margin: 0 auto;
  max-width: 710px;
  width: 100%;
}

.mobile .footer-cnpj p {
  width: 100%;
  text-align: left;
}

/* Coluna 2 - centro */
.footer-col.center {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.footer-menus {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.menu h4 {
  font-size: 14px;
  color: #444;
  margin-bottom: 10px;
  font-weight: 100;
}

.menu a {
  display: block;
  color: rgb(255 255 255 / 50%);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
}

.menu a:hover {
  opacity: 0.8;
}

.footer-cert {
  display: flex;
  align-items: baseline;
  gap: 32px;
  margin-top: 30px;
  justify-content: center;
  color: #888;
  font-size: 13px;
  flex-direction: column;
}

.footer-cert p {
  font-size: 13px;
}

.footer-cert img {
  height: 36px;
}

/* Coluna 3 - direita */
.footer-col.right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-col.right h4 {
  font-size: 14px;
  color: #aaa;
  margin-bottom: 4px;
}

.footer-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 5px;
}

.footer-form input {
  background-color: #111;
  border: 1px solid transparent;
  padding: 10px;
  color: white;
  border-radius: 6px;
  width: 100%;
  font-size: 13px;
}

.footer-form input.error {
  border-color: #ff4d4d;
}

.footer-form input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.footer-form button {
  background-color: white;
  color: black;
  border: none;
  border-radius: 6px;
  padding: 10px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.3s, opacity 0.2s;
  width: 100%;
}

.footer-form button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.footer-form button:hover:not(:disabled) {
  background-color: #e6e6e6;
}

.error-message {
  color: #ff4d4d;
  font-size: 12px;
}

.form-message {
  padding: 8px;
  border-radius: 4px;
  font-size: 14px;
  margin: 5px 0;
}

.success-message {
  background-color: rgba(65, 254, 149, 0.1);
  color: #41FE95;
  border: 1px solid rgba(65, 254, 149, 0.3);
}

.form-message.error-message {
  background-color: rgba(255, 77, 77, 0.1);
  color: #ff4d4d;
  border: 1px solid rgba(255, 77, 77, 0.3);
}

.social-label {
  font-size: 14px;
  color: #aaa;
  margin-top: 10px;
}

.footer-socials {
  display: flex;
  gap: 10px;
  text-align: right;
}

.footer-socials img {
  width: 20px;
  height: 20px;
  opacity: 0.8;
}

.footer-socials img:hover {
  opacity: 1;
}

/* Seção Hover Menu */
.feature-highlight {
  background: #000;
  padding: 60px 20px;
  color: white;
}

.feature-left video {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  height: 90px;
}

.video-description {
  background: #111;
  border-radius: 10px;
  padding: 16px;
  margin-top: 12px;
}

.video-description strong {
  display: block;
  margin-bottom: 4px;
  font-size: 14px;
}

.video-description p {
  font-size: 13px;
  color: #aaa;
}

/* Lista interativa */
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list li {
  font-size: 15px;
  color: #ccc;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: color 0.2s;
  font-weight: 500;
  /* Set consistent font-weight to prevent layout shift */
}

.feature-list li:hover {
  color: white;
  /* Removed font-weight change to prevent layout shifting */
}

/* Imagem da direita */
.feature-right img {
  width: 100%;
  border-radius: 12px;
  background-color: #2b2b2b;
  height: 170px;
  object-fit: cover;
}

/* Diagrama Flow */
.flow-diagram {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 408px;
  height: 435px;
  flex-shrink: 0;
}

.flow-wrapper {
  text-align: center;
  position: relative;
  transform-style: preserve-3d;
}

.flow-logo {
  display: flex;
  width: 442px;
  height: 91px;
  padding: 15.818px;
  justify-content: center;
  align-items: center;
  gap: 15.818px;
  flex-shrink: 0;
  border-radius: 12.655px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0px 14px 23px 0px rgba(0, 0, 0, 0.15);
  -webkit-backdrop-filter: blur(3.5590903759002686px);
  backdrop-filter: blur(3.5590903759002686px);
}

.flow-logo img {
  width: 155px;
  height: 33.818px;
  flex-shrink: 0;
}

#box-users {
  display: flex;
  width: 215.127px;
  height: 61.691px;
  padding: 15.818px;
  justify-content: center;
  align-items: center;
  gap: 15.818px;
  flex-shrink: 0;
  border-radius: 12.655px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(3.5590903759002686px);
  left: 0px;
  position: relative;
}

.arrow-down {
  left: -70px;
  position: relative;
}

#box-app {
  display: flex;
  width: 259px;
  height: 62px;
  padding: 15.818px;
  justify-content: center;
  align-items: center;
  gap: 15.818px;
  border-radius: 11.073px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(3.5590903759002686px);
  margin: 2px auto;
  color: #ddd;
  scale: 1;
  transition: transform 0.3s ease;
}


.flow-targets {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.flow-target {
  text-align: center;
  color: white;
  font-size: 13px;
}

.flow-target img {
  height: 20px;
  margin-bottom: 6px;
  transition: transform 0.2s ease, opacity 0.3s ease;
  opacity: 0.8;
}

.flow-target img:hover {
  transform: scale(1.1);
  opacity: 1;
}

.flow-target span {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.50);
  font-size: 12.655px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  -spacing: -0.127px;
}

@keyframes gradientShift {

  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}


.flow-wrapper {
  transform-style: preserve-3d;
  transition: transform 0.2s ease;
}

.tech-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.06);
  padding: 5.668px;
  border-radius: 12px;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  font-size: 5.647px;
  color: #ddd;
  position: absolute;
}

.tech-badge strong {
  color: #fff;
  display: block;
  font-size: 8.672px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.087px;
}

.badge-top-left {
  top: 66px;
  left: 36px;
}

.badge-bottom-right {
  top: 150px;
  right: 36px;
  transition: transform 0.6s ease-in-out;
}

.tech-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 76px;
}

.tech-logo img {
  max-width: 55.281px;
  height: auto;
}

.tech-balance {
  text-align: center;
}

.tech-balance h2 {
  font-size: 28px;
  font-weight: bold;
  margin: 0;
  color: #00f2ff;
  transition: transform 0.6s ease-in-out;
}

.tech-balance span {
  font-size: 7.72px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.077px;
  color: #ccc;
}

.tech-description {
  text-align: left;
  font-size: 15px;
  line-height: 1.4;
  color: #bbb;
  margin-top: auto;
}

.qr-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
  background: url('assets/rectangle-qrcode.svg') no-repeat center center;
  transition: transform 0.6s ease-in-out;
}

.qr-image {
  height: 120px;
  margin: 26px;
  padding: 22px;
  background: #444;
  border-radius: 13px;
  transition: background-color 0.8s ease-in-out;
}

.qr-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3.982px 13.211px;
  background-color: rgba(255, 255, 255, 0.06);
  border-radius: 999px;
  font-size: 7.266px;
  color: #ccc;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}

.qr-label img {
  width: 10px;
  height: 10px;
}

.card-preview {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}

.card-preview img {
  width: 240px;
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.input-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
  margin-top: 5px;
}

.input-group label {
  color: rgba(255, 255, 255, 0.72);
  font-family: "Space Grotesk";
  font-size: 11.575px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.347px;
}

.input-group.small {
  flex: 1;
}

.input-row {
  display: flex;
  gap: 8px;
  width: 100%;
  margin-top: 6px;
}

.input-mock {
  background-color: #2c2c2c;
  padding: 4.823px 9.646px;
  border-radius: 8px;
  font-size: 13px;
  color: #ccc;
  text-align: left;
}

.checkout-btn {
  background: linear-gradient(90deg, #1e40ff, #41fe95);
  color: white;
  border-radius: 8px;
  display: inline-flex;
  gap: 8px;
  font-size: 13px;
  width: 100%;
  justify-content: center;
  margin-top: 12px;
  transition: opacity 0.2s ease;
  padding: 4px;
}

.checkout-btn img {
  width: 12px;
  height: 12px;
}

.apple-pay {
  background: #000;
  height: 28px;
  border-radius: 4.8px !important;
  margin-bottom: 9px !important;
  width: 100%;
}

.separator {
  display: flex;
  /* Transforma o contêiner em um flex container */
  align-items: center;
  /* Centraliza verticalmente os itens (linhas e texto) */
  justify-content: center;
  /* Centraliza horizontalmente o grupo linha-texto-linha */
  width: 100%;
  /* Garante que o contêiner ocupe a largura total disponível */
  margin: 0 0 9px 0;
  /* Adiciona um espaço acima e abaixo para melhor visualização */
}

.linha {
  flex-grow: 1;
  height: 1px;
  background-color: #ccc;
  /* Cor da linha */
  margin: 0 10px;
}

.texto-centralizado {
  white-space: nowrap;
  /* Impede que o texto quebre a linha */
  color: rgba(255, 255, 255, 0.72);
  text-align: center;
  font-family: "Space Grotesk";
  font-size: 11.575px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.347px;
}

.mobile {
  display: none;
}

.desktop {
  display: block;
}















.tech-card {
  filter: grayscale(100%);
  /* Começa com 100% de escala de cinza */
  transition: filter 0.3s ease-in-out, background-color 0.8s ease-in-out;
  /* Adiciona uma transição suave de 0.3 segundos */
  background: rgba(255, 255, 255, 0.04);
}

.tech-card:hover {
  filter: grayscale(0%);
  /* Ao passar o mouse, a escala de cinza vai para 0% (colorido) */
  background-color: rgba(255, 255, 255, 0.08);
}

.flow-diagram:hover {
  filter: grayscale(0%);
}

.flow-diagram:hover #box-app {
  color: #fff;
  transform: scale(1.05) !important;
}

.tech-card:hover .qr-image {
  background: #fff;
}

.tech-card:hover .qr-wrapper {
  transform: scale(0.9);
}

.tech-card:hover .badge-top-left {
  transform: translate(0px, -3px) scale(1.1);
}

.tech-card:hover .badge-bottom-right {
  transform: translate(0px, 2px) scale(1.1);
}

.tech-card:hover .tech-balance h2 {
  transform: scale(1.1);
}



.cta-button {
  position: relative;
  display: inline-block;
  overflow: hidden;
  background-color: #fff;
  color: #111;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-weight: 500;
  text-decoration: none;
  font-size: 15px;
  transition: color 0.3s ease, background-color 0.3s ease;
  z-index: 1;
}

.cta-button::before {
  content: "";
  position: absolute;
  right: -131px;
  top: -64px;
  width: 433px;
  height: 166px;
  border-radius: 150px;
  background: linear-gradient(261deg, #41FE95 6.53%, #00F 123.97%);
  transform: translateX(-100%);
  transition: transform 0.9s ease;
  z-index: 0;
}

.cta-button:hover::before {
  transform: translateX(0%);
}

.cta-button:hover {
  color: #fff;
}

.cta-button span {
  position: relative;
  z-index: 1;
}

.flow-diagram {
  filter: grayscale(100%);
}


.site-header {
  display: flex;
  align-items: center;
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  z-index: 999;
  width: calc(100% - 40px);
  max-width: 1280px;
  background: rgba(0, 0, 0, 0.60);
  transition: height 0.5s ease;
  overflow: hidden;
}

@media (min-width: 768px) {
  .site-header {
    padding: 27px 24px;
  }

  .site-header .container {
    flex: 1;
  }
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
}

.mobile-menu {
  display: none;
}

.build-with {
  position: relative;
  padding: 120px 20px 60px;
  overflow: hidden;
  background: black;
}

.build-with .container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 100px;
}

.build-with .container>.row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
}

.build-with .content {
  flex: 1;
}

.build-with .content h1 {
  color: white;
  margin-bottom: 20px;
  width: 69%;
}

.build-with .content p {
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 30px;
  max-width: 500px;
}

.build-with .content .btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: white;
  color: black;
  padding: 12px 24px;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  font-weight: 500;
}

.build-with .image {
  flex: 1;
  max-width: 460px;
  text-align: center;
}

.build-with .steps {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.build-with .steps .step {
  flex: 1;
  min-width: 240px;
  color: rgba(255, 255, 255, 0.766);
  gap: 10px;
  display: inline-grid;
  font-weight: 400;
}

.build-with .steps .step small {
  color: rgba(255, 255, 255, 0.7);
  display: block
}

.build-with .steps .step strong {
  font-size: var(--p-minus);
  font-weight: 600;
  color: white;
}

.build-with .steps .step a {
  color: #41FE95;
  font-weight: bold;
  font-size: var(--p-minus);
  text-decoration: none;
  display: block;
  margin-top: 10px;
  cursor: unset;
}

.build-with .steps .step p {
  font-size: var(--p-minus);
}

/* pontos de luz laterais */
.build-with .glow-left,
.build-with .glow-right {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 45px;
  height: 733px;
  border-radius: 9999px;
  background: white;
  filter: blur(270px);
  opacity: 0.2;
}

.build-with .glow-left {
  left: -22px;
}

.build-with .glow-right {
  right: -22px;
}

/* responsividade extra */
@media (max-width: 480px) {
  .build-with .container>.row {
    flex-direction: column;
    align-items: center;
    gap: 60px;
  }

  .build-with .content h1 {
    width: 80%;
  }

  .build-with .image {
    order: -1;
    text-align: left;
  }

  .build-with .image img {
    width: 40%;
    max-width: 40%;
  }

  .build-with .steps {
    flex-direction: column;
    align-items: stretch;
  }
}


#use-cases {
  padding: 60px 20px;
  background-color: #000;
  color: white;
  overflow: hidden;
}

.use-cases-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1172px;
  margin: 0 auto 60px;
}

.use-cases-header h2 {
  font-size: 40px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 400;
}

.btn-ver-todos {
  padding: 15px 20px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 10px;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  color: white;
}

.use-cases-grid {
  max-width: 1172px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(554px, 1fr));
  gap: 30px;
}

.use-case-card {
  position: relative;
  height: 310px;
  padding: 30px;
  border-radius: 20px;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 10px;
  /* Set the background image here if it's dynamic */
  /* background-image: url('your-image.jpg'); */
  overflow: hidden;
  /* Ensures the pseudo-element doesn't spill out */
}

.use-case-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* General dark overlay */
  background-color: rgba(0, 0, 0, 0.45);
  /* Adjust this for overall darkness */
  z-index: 1;
  /* Place it above the image but below the content */
}

.use-case-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Gradient from bottom to top */
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.75) 100%);
  z-index: 2;
  /* Place it above the general overlay */
}

.use-case-card>* {
  /* Target direct children of use-case-card */
  position: relative;
  z-index: 3;
  /* Ensure content is above all overlays */
}

.use-case-card h3 {
  font-size: 18px;
  font-weight: 700;
  width: 365px;
}

.use-case-card p {
  font-size: 18px;
  font-weight: 400;
  width: 494px;
}

@media (max-width: 480px) {
  #use-cases {
    padding: 60px 20px;
  }

  .use-cases-header {
    align-items: flex-start;
    gap: 24px;
  }

  .use-cases-header h2 {
    font-size: 28px;
  }

  .btn-ver-todos {
    align-self: stretch;
    text-align: right;
  }

  .use-cases-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .use-case-card {
    background-size: cover;
    background-position: center;
    padding: 24px;
  }

  .use-case-card h3,
  .use-case-card p {
    width: 100%;
    font-size: 16px;
  }
}


/* Container base */
#dev-tools {
  width: 100%;
  padding: 60px 20px;
  display: flex;
  justify-content: center;
  background: #000;
}

#dev-tools .container {
  max-width: 1200px;
  width: 100%;
}

.dev-content-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
  border-radius: 20px;
  padding: 30px;
  background: linear-gradient(244deg, #41FE95 -49.78%, #00F 137.84%);
}

/* Lado esquerdo */
.dev-text-box {
  height: 190px;
  display: flex;
  flex-direction: column;
  color: rgba(255, 255, 255, 0.75);
  margin: 30px;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}

.dev-text-box h2 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin: 0;
}

.dev-text-box p {
  font-family: "Space Grotesk", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4;
  margin: 0;
  max-width: 460px;
}

.dev-text-box .btn-ghost {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 5px;
  background: rgba(0, 0, 0, 0.15);
  font-size: 16px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  width: fit-content;
}

/* Lado direito */
.dev-feature-box {
  height: 260px;
  width: 360px;
  padding: 30px 40px;
  background: rgba(0, 0, 0, 0.10);
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.75);
  font-family: "Space Grotesk", sans-serif;
  margin: 0 30px;
}

.dev-feature-box h3 {
  color: rgba(255, 255, 255, 0.75);
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 30px;
}

.feature-grid {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.feature-grid .icons {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.feature-grid .bar {
  width: 29px;
  height: 29px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.68);
}

/* Labels */
.feature-grid .labels {
  font-size: 17px;
  font-weight: 400;
  line-height: 1.8;
}

/* Responsivo */
@media (max-width: 480px) {
  .dev-content-wrapper {
    flex-direction: column;
    gap: 40px;
  }

  .dev-feature-box {
    width: 100%;
    padding: 24px;
  }

  .dev-text-box {
    width: 100%;
  }

  .feature-grid {
    flex-direction: column;
    gap: 16px;
  }

  .feature-grid .labels {
    text-align: left;
  }
}

#integration-easly {
  width: 100%;
  padding: 120px 90px;
  background-color: #000;
  color: #fff;
  font-family: 'Space Grotesk', sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
}

.integration-wrapper {
  max-width: 1200px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 60px;
}

.integration-text {
  flex: 1;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 53px;
}

.integration-text h2 {
  line-height: 1.2;
  max-width: 600px;
}

.integration-text p {
  font-weight: 400;
  color: rgba(255, 255, 255, 0.75);
  max-width: 597px;
}

.integration-benefits {
  display: flex;
  gap: 10px 30px;
  flex-wrap: wrap;
}

.integration-benefits span {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: var(--p-minus);
  font-weight: 400;
}

.integration-benefits span::before {
  content: url(assets/duplo-check.svg);
}

.integration-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.integration-graphic {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.integration-graphic img {
  width: 100%;
}

.integration-graphic div {
  border: 1px solid rgba(255, 255, 255, 0.38);
}

.integration-graphic div:last-child {
  border-color: #41FE95;
}

@media (max-width: 1024px) {
  .integration-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .integration-text {
    max-width: 600px;
  }

  .integration-graphic {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 480px) {

  .beneficios-header p {
    margin: 10px 20px 0;
  }

  .integration-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .integration-graphic {
    order: -1;
    width: 70%;
    max-width: 70%;
    margin-bottom: 20px;
    text-align: center;
  }

  .integration-text {
    width: 100%;
    max-width: 100%;
  }
}





.precos-flexiveis {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 180px 20px 60px;
  background: transparent;
}

.precos-conteudo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.precos-texto {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  max-width: 750px;
  text-align: center;
}

.precos-texto h2 {
  font-weight: 400;
  font-family: 'Space Grotesk', sans-serif;
  color: white;
  margin: 0;
}

.precos-texto p {
  font-size: 23px;
  font-weight: 400;
  font-family: 'Space Grotesk', sans-serif;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
  max-width: 706px;
}

@media (max-width: 480px) {

  .precos-texto h2 {
    text-align: center;
  }

  .precos-texto p {
    font-size: 18px;
    max-width: 100%;
    text-align: center;
  }
}


.beneficios {
  width: 100%;
  background: white;
  display: flex;
  justify-content: center;
  align-items: center;
}

.beneficios-container {
  max-width: 1280px;
  width: 100%;
  display: flex;
  gap: clamp(30px, 6vw, 61px);
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.beneficios-header {
  display: flex;
  width: 100%;
  max-width: 439px;
  min-height: auto;
  text-align: center;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  flex-direction: column;
  gap: clamp(20px, 3vw, 30px);
  text-align: left;
}

.beneficios-header h2 {
  color: #000;
}

.beneficios-header p {
  color: rgba(0, 0, 0, 0.7);
}

.beneficios-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
  gap: clamp(20px, 3vw, 30px);
  width: 100%;
  max-width: 800px;
}

.beneficio-card {
  background: rgba(0, 0, 255, 0.03);
  border-radius: clamp(15px, 2vw, 20px);
  padding: clamp(20px, 3vw, 25px);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.beneficio-card h3 {
  font-size: var(--p-minus);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  color: black;
  margin-bottom: clamp(10px, 2vw, 15px);
  line-height: 1.3;
}

.beneficio-card p {
  font-size: var(--p-minus);
  color: rgba(0, 0, 0, 0.7);
}

@media (max-width: 480px) {
  .beneficios-container {
    flex-direction: column;
  }

  .beneficios-grid {
    grid-template-columns: 1fr;
    max-width: 100%;
  }
}

#planos-basspago {
  width: 100%;
  background: #fff;
  display: flex;
  justify-content: center;
}

.planos-basspago-inner {
  max-width: 1280px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 48px;
  align-items: center;
}

.planos-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.planos-header h2 {
  font-size: 2.5rem;
  font-weight: 400;
  color: #000;
  line-height: 1.1;
}

.planos-header p {
  font-size: 1.25rem;
  color: #000c;
}

.planos-grid {
  display: flex;
  gap: 32px;
  justify-content: center;
  width: 100%;
  flex-wrap: wrap;
  padding: 10px;
}

.plano-card {
  background: rgba(65, 254, 149, 0.08);
  border-radius: 15px;
  min-width: 340px;
  max-width: 380px;
  flex: 1 1 340px;
  display: flex;
  flex-direction: column;
  padding: 25px;
  gap: 25px;
  box-shadow: 0 0 0 1px #41fe951a;
  align-items: flex-start;
  justify-content: flex-start;
  transition: box-shadow .3s, transform .3s;
  position: relative;
}

.plano-card.pro {
  background: rgba(65, 254, 149, 0.16);
}

.plano-card:hover {
  box-shadow: 0 4px 32px 0 #41fe9533, 0 0 0 2px #41fe95;
  transform: translateY(-4px) scale(1.03);
}

.plano-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
}

.plano-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(65, 254, 149, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.plano-title {
  font-weight: 500;
  color: #111;
}

.plano-desc {
  font-size: 1rem;
  color: #222b;
  margin: 0 0 10px 0;
}

.plano-preco {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 6px;
}

.plano-preco span {
  font-size: var(--p-minus);
  color: #222b;
}

.plano-preco strong {
  font-size: 30px;
  color: #000c;
  font-weight: 700;
  letter-spacing: -0.8px;
}

.plano-recursos {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.plano-recursos span {
  font-size: var(--p-minus);
  color: #111;
  font-weight: 500;
}

.plano-recursos ul {
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 8px;
  display: flex;
  flex-direction: column;
}

.plano-recursos li {
  font-size: var(--p-minus);
  color: #111;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0;
}

.checkmark {
  display: inline-block;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  margin-right: 4px;
  position: relative;
}

.checkmark:after {
  content: url('assets/duplo-check-preto.svg');
  display: block;
  position: absolute;
}

.plano-pro-label {
  font-size: 1rem;
  color: #111;
  font-weight: 500;
}

.plano-info {
  color: #222b;
  font-size: 1rem;
  margin: 0 0 10px 0;
}

/* RESPONSIVO */
@media (max-width: 1024px) {

  .planos-header p {
    font-size: 1.1rem;
  }

  .planos-grid {
    gap: 20px;
  }
}

@media (max-width: 480px) {

  .planos-grid {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }

  .plano-card {
    max-width: 100%;
    min-width: 0;
    width: 100%;
    padding: 22px 20px;
  }

  .planos-header {
    padding: 0 4vw;
  }
}

#form-negociacao-basspago {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 64px 0;
  color: #fff;
  font-family: 'Space Grotesk', sans-serif;
}

.form-negociacao-container {
  max-width: 1250px;
  width: 95%;
  background: transparent;
  display: flex;
  gap: 80px;
  align-items: flex-start;
  justify-content: center;
  border-radius: 32px;
  box-sizing: border-box;
}

.form-negociacao-info {
  max-width: 360px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.negociacao-chip span {
  display: inline-block;
  background: rgba(255, 255, 255, 0.09);
  border-radius: 87px;
  border: 0.5px solid rgba(255, 255, 255, 0.4);
  color: rgba(255, 255, 255, 0.75);
  font-size: 15px;
  font-weight: 400;
  padding: 10px 20px;
  margin-bottom: 8px;
}

.form-negociacao-info h2 {
  color: #fff;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.15;
}

.form-negociacao-info p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
}

.negociacao-form {
  background: rgba(255, 255, 255, 0.13);
  border-radius: 25px;
  padding: 25px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  min-width: 420px;
  box-sizing: border-box;
  box-shadow: 0 2px 22px 0 rgba(10, 20, 60, 0.08);
  width: 100%;
  max-width: 560px;
  position: relative;
}

.form-row {
  display: flex;
  gap: 24px;
  width: 100%;
}

.form-row.row-full {
  flex-direction: column;
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  min-width: 140px;
}

.form-group label {
  color: #fff;
  font-size: 15px;
  font-weight: 400;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(239, 239, 239, 0.05);
  border-radius: 8px;
  border: 1px solid transparent;
  color: #fff;
  font-size: 15px;
  padding: 10px 20px;
  font-family: inherit;
  font-weight: 400;
  outline: none;
  box-sizing: border-box;
  transition: background 0.2s, border 0.2s;
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: #ff4d4d;
  background: rgba(255, 77, 77, 0.05);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.28);
}

.form-group select {
  color: #fff;
  background: rgba(239, 239, 239, 0.07);
}

.form-group select:invalid {
  color: rgba(255, 255, 255, 0.28);
}

.form-group textarea {
  min-height: 70px;
  resize: vertical;
}

.btn-enviar {
  margin-top: 10px;
  width: 140px;
  background: #fff;
  color: #111;
  font-size: 16px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 500;
  border: none;
  border-radius: 10px;
  padding: 13px 0;
  text-align: center;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, opacity 0.2s;
  box-shadow: 0 3px 24px 0 #41FE9522;
}

.btn-enviar:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.btn-enviar:hover:not(:disabled) {
  background: linear-gradient(194deg, #41FE95 0%, #0000FF 100%);
  color: #fff;
  box-shadow: 0 4px 32px 0 #41FE9533;
}

.error-message {
  color: #ff4d4d;
  font-size: 12px;
  margin-top: 5px;
  font-weight: 400;
}

.form-message {
  padding: 12px;
  border-radius: 8px;
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
}

.success-message {
  background: rgba(65, 254, 149, 0.1);
  color: #41FE95;
  border: 1px solid rgba(65, 254, 149, 0.3);
}

.error-message.form-message {
  background: rgba(255, 77, 77, 0.1);
  color: #ff4d4d;
  border: 1px solid rgba(255, 77, 77, 0.3);
}

/* Responsivo */
@media (max-width: 1100px) {
  .form-negociacao-container {
    flex-direction: column;
    gap: 40px;
    padding: 48px 4vw;
    align-items: center;
  }

  .form-negociacao-info {
    max-width: 95vw;
    align-items: flex-start;
  }

  .negociacao-form {
    min-width: 0;
    max-width: 97vw;
  }
}

@media (max-width: 800px) {
  #form-negociacao-basspago {
    padding: 32px 10px;
  }

  .form-negociacao-container {
    padding: 24px 0;
  }

  .form-row {
    flex-direction: column;
    gap: 10px;
  }
}

@media (max-width: 500px) {
  .form-negociacao-info h2 {
    font-size: 1.3rem;
  }
}

.hidden {
  display: none !important;
}



@media (min-width: 768px) {
  .site-header {
    overflow: visible;
    z-index: 10;
  }

  .submenu-solutions.feature-container,
  .submenu-recursos.feature-container {
    z-index: 20;
    display: flex;
    width: fit-content;
    height: auto;
    position: fixed;
    background: rgba(0, 0, 0, 0.60);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 32px 24.5px;
    /* 32px y-padding, 24.5px x-padding */
  }

}