@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

:root {
  --primary-color: #6366f1;
  --secondary-color: #4f46e5;
  --dark-bg: #0f172a;
  --text-light: #ffffff;
  --text-gray: #94a3b8;
}

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

body {
  font-family: 'Poppins', sans-serif;
  background-color: #030011;
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
  transition: overflow 0.3s ease;
}

.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

li a {
  font-size: 1.2rem;
  font-weight: 300;
}

/* Navbar Styles */
.navbar {
  padding: 15px 30px;
  margin-top: 0;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  transform: none;
  z-index: 1000;
  border-radius: 0;
  background: rgba(62, 44, 77, 0.084);
  backdrop-filter: blur(25px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  transition: all 0.4s ease;
}

.navbar.scrolled {
  padding: 8px 20px;
  margin-top: 1.5rem;
  width: 1100px;
  max-width: 90%;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 1rem;
  background: rgba(29, 27, 41, 0.226);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(2px);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.039);
}

.navbar .container {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}


.logo img {
  width: 130px;
  height: 50px;
  transition: all 0.3s ease;
}

.navbar.scrolled .logo img {
  width: 110px;
  height: 42px;
}

nav ul {
  display: flex;
  gap: 30px;
  list-style: none;
}

nav a {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

nav a:hover {
  color: var(--primary-color);
}

.nav-buttons {
  display: flex;
  align-items: center;
  gap: 20px;
}



.cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background-color: var(--primary-color);
  color: white;
  font-size: 0.75rem;
  padding: 2px 6px;
  border-radius: 50%;
}

.btn-get-started {
  background-color: rgb(105, 98, 231);
  color: white;
  padding: 12px 24px;
  margin: 5px 0;
  border-radius: 12rem;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  white-space: nowrap;
  box-shadow: 6px 4px 37px -13px rgba(116,109,239,0.85);
  -webkit-box-shadow: 6px 4px 37px -13px rgba(116,109,239,0.85);
  -moz-box-shadow: 6px 4px 37px -13px rgba(116,109,239,0.85);
}

.navbar.scrolled .btn-get-started {
  padding: 10px 18px;
  font-size: 1rem;
}

.btn-get-started:hover {
  background-color: transparent;
  box-shadow: inset 0 0 0 1px rgb(105, 98, 231);
}

/* Menu Mobile */
.menu-mobile {
  display: none;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 35px;
  border: 1px solid #4f46e5;
  padding: 8px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.menu-mobile:hover {
  background-color: rgba(79, 70, 229, 0.1);
}

.menu-mobile div {
  width: 22px;
  height: 2px;
  background-color: var(--text-light);
  margin: 3px 0;
  transition: all 0.4s ease;
  border-radius: 2px;
}

.menu-mobile.active div:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-mobile.active div:nth-child(2) {
  opacity: 0;
}

.menu-mobile.active div:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Section Styles */
.hero {
  padding-top: 180px;
  padding-bottom: 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-neon-lights {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.neon-light {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.4;
  animation: neonPulseGlow 4s ease-in-out infinite alternate;
}

.neon-left {
  top: -100px;
  left: -150px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.8) 0%, rgba(168, 85, 247, 0.6) 40%, transparent 70%);
}

.neon-right {
  bottom: -100px;
  right: -150px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.8) 0%, rgba(96, 165, 250, 0.6) 40%, transparent 70%);
  animation-delay: -2s;
}

@keyframes neonPulseGlow {
  0% {
    opacity: 0.3;
    transform: scale(1);
  }
  100% {
    opacity: 0.5;
    transform: scale(1.1);
  }
}

.hero .container {
  position: relative;
  z-index: 1;
}

.tag-line {
  display: inline-block;
  background-color: transparent;
  color: #d7d7d7;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 1.1rem;
  margin-bottom: 30px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.25);
}

h1 {
  font-size: 5.5rem;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 30px;
  background: linear-gradient(to right, #ffffff, #b2c5e0);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Efeito Typewriter */
.typewriter {
  display: inline-block;
  position: relative;
  background: linear-gradient(to right, #6366f1, #8b5cf6);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.subtitle {
  font-size: 1.4rem;
  color: #a5a3ae;
  max-width: 700px;
  margin: 0 auto 40px;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
  padding: 15px 30px;
  border-radius: 30px;
  font-weight: 500;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  min-width: 150px;
}

.btn-primary {
  background: linear-gradient(to bottom, #ffffff, #8a88bcc9);
  color: #030011;
  font-weight: bolder;
  z-index: 2;
}

.btn-primary:hover {
  background: transparent;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: inset 0 0 0 1px rgb(255, 255, 255);
}

.btn-secondary {
  background-color: rgba(255, 255, 255, 0.152);
  color: white;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.25);
  font-weight: bolder;
  z-index: 2;
}

.btn-secondary:hover {
  background-color: rgba(33, 33, 33, 0.449);
  transform: translateY(-2px);
}

/* Responsividade */
@media (max-width: 1024px) {
  h1 {
    font-size: 3.5rem;
  }

  .container {
    padding: 0 30px;
  }
}


@media (max-width: 975px) {
  .navbar {
    padding: 15px 20px;
    width: 100%;
    margin-top: 0;
    border-radius: 0;
  }

  .navbar.scrolled {
    padding: 12px 20px;
    width: 100%;
    margin-top: 0;
    border-radius: 0;
  }

  nav ul {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: rgba(15, 23, 42, 0.98);
    backdrop-filter: blur(20px);
    padding: 30px 0;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid rgba(99, 102, 241, 0.3);
  }

  nav ul.active {
    display: flex;
    animation: slideDown 0.3s ease;
  }

  @keyframes slideDown {
    from {
      opacity: 0;
      transform: translateY(-20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  nav ul li {
    width: 100%;
    text-align: center;
  }

  nav ul li a {
    display: block;
    padding: 10px 20px;
    font-size: 1.3rem;
  }

  .menu-mobile {
    display: flex;
  }

  h1 {
    font-size: 2.8rem;
  }

  .subtitle {
    font-size: 1.1rem;
    padding: 0 20px;
  }

  .hero {
    padding-top: 150px;
  }

  .nav-buttons .btn-get-started {
    display: none;
  }
}

/* Animação de scroll infinito para logos de parceiros */
@keyframes scrollLeft {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes scrollRight {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}

.parceiros-logos-wrapper2 .parceiros-logos {
  animation: scrollRight 20s linear infinite !important;
}

@media (max-width: 768px) {
  .navbar .logo img {
    width: 110px;
    height: 40px;
  }

  nav ul {
    top: 65px;
  }

  h1 {
    font-size: 2.8rem;
  }

  .container {
    padding: 0 20px;
  }
}

@media (max-width: 480px) {
  .navbar {
    padding: 12px 15px;
  }

  .navbar.scrolled {
    padding: 10px 15px;
  }

  .logo img {
    width: 100px;
    height: 35px;
  }

  nav ul {
    top: 60px;
    gap: 20px;
    padding: 20px 0;
  }

  nav ul li a {
    font-size: 1.1rem;
  }

  h1 {
    font-size: 2.2rem;
  }

  .tag-line {
    font-size: 0.85rem;
    padding: 6px 14px;
  }

  .subtitle {
    font-size: 1rem;
  }

  .btn-primary,
  .btn-secondary {
    padding: 12px 24px;
    font-size: 0.95rem;
    width: 100%;
  }

  .cta-buttons {
    flex-direction: column;
    padding: 0 20px;
  }

  .hero {
    padding-top: 130px;
  }
}

/* Showcase Section Atualizada */
.showcase {
  position: relative;
  width: 100vw;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0;
  margin-bottom: 0;
  overflow: hidden;
  z-index: 1;
  background: transparent;
}

.showcase-bg {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  z-index: 1;
  pointer-events: none;
}

.ponto-luz {
  position: absolute;
  top: 48px;
  left: 50%;
  transform: translateX(-50%);
  max-width: 80%;
  width: 90vw;
  height: auto;
  z-index: 3;
  pointer-events: none;
}

.telas {
  position: absolute;
  top: 100px;
  left: 50%;
  transform: translateX(-50%);
  max-width: 90%;
  width: 90vw;
  height: auto;
  opacity: 0.95;
  filter: blur(0.5px) brightness(1.1);
  z-index: 1;
  pointer-events: none;
}

.luz1 {
  position: absolute;
  top: 600px;
  left: 50%;
  transform: translateX(-50%);
  max-width: 700px;
  width: 90vw;
  height: auto;
  filter: blur(0.5px) brightness(1.1);
  z-index: 1;
  pointer-events: none;
}


.luz-bg {
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  max-width: 700px;
  width: 90vw;
  height: auto;
  filter: blur(0.5px) brightness(1.1);
  z-index: 2;
  pointer-events: none;
}

.showcase-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100vw;
  min-height: 600px;
  margin-bottom: 80px;
}

.pc-img {
  position: relative;
  z-index: 3;
  max-width: 800px;
  width: 90vw;
  height: auto;
  background: transparent;
}

/* Chat container na showcase */
.showcase .chat-container {
  position: relative;
  z-index: 4;
  max-width: 500px;
  width: 90vw;
}

/* Responsividade para a section showcase ajustada */
@media (max-width: 1200px) {
  .showcase-content {
    min-height: 650px;
  }

  .ponto-luz {
    max-width: 90%;
    top: 20px;
  }

  .telas {
    max-width: 80%;
    top: 80px;
  }

  .pc-img {
    max-width: 500px;
  }

  .showcase .chat-container {
    max-width: 450px;
  }

}

@media (max-width: 900px) {
  .showcase-content {
    min-height: 600px;
  }

  .ponto-luz {
    max-width: 95%;
    top: 10px;
  }

  .telas {
    max-width: 70%;
    top: 50px;
  }

  .pc-img {
    max-width: 400px;
  }

  .showcase .chat-container {
    max-width: 400px;
  }

}

@media (max-width: 620px) {
  .showcase-content {
    min-height: 550px;
  }

  .ponto-luz {
    max-width: 90%;
    top: 100px;
  }

  .telas {
    max-width: 100%;
    top: 20px;
  }

  .pc-img {
    max-width: 400px;
  }

  .showcase .chat-container {
    max-width: 95%;
  }
}

/* Automação Section - Elegante e Moderna */
.automacao {
  position: relative;
  width: 100vw;
  background: #0a0a0a;
  background-image: url('img/2.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 140px 0;
  overflow: hidden;
}

.automacao-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.dot-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle, rgba(99, 102, 241, 0.15) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.3;
  animation: dotFloat 20s ease-in-out infinite;
}

@keyframes dotFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

.gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at 50% 50%, rgba(99, 102, 241, 0.08) 0%, transparent 60%);
}

.automacao-container {
  position: relative;
  z-index: 1;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px;
}

.automacao-header {
  text-align: center;
  margin-bottom: 80px;
}

.automacao-titulo {
  font-size: 3.5rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.titulo-destaque {
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #a855f7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.automacao-subtitulo {
  font-size: 1.3rem;
  color: #94a3b8;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

.automacao-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-bottom: 60px;
}

.automacao-card {
  position: relative;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.468) 0%, rgba(30, 41, 59, 0.6) 100%);
  border: 1px solid rgba(148, 163, 184, 0.1);
  border-radius: 24px;
  padding: 48px 40px;
  transition: all 0.4s cubic-bezier(0.22, 0.9, 0.25, 1);
  overflow: hidden;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.automacao-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, #6365f1 50%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.automacao-card:hover::before {
  opacity: 1;
}

.automacao-card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.6s ease;
}

.automacao-card:hover::after {
  opacity: 1;
}

.automacao-card:hover {
  transform: translateY(-8px);
  border-color: rgba(99, 102, 241, 0.3);
  box-shadow: 0 20px 60px rgba(99, 102, 241, 0.15);
}

.automacao-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  margin-bottom: 28px;
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
}

.automacao-card:hover .automacao-icon {
  transform: scale(1.05);
  box-shadow: 0 12px 32px rgba(99, 102, 241, 0.4);
}

.automacao-numero {
  position: absolute;
  top: 24px;
  right: 32px;
  font-size: 5rem;
  font-weight: 700;
  color: rgba(99, 101, 241, 0);
  line-height: 1;
  user-select: none;
}

.automacao-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 16px 0;
  position: relative;
  z-index: 1;
}

.automacao-card p {
  font-size: 1.05rem;
  color: #cbd5e1;
  line-height: 1.7;
  margin: 0;
  position: relative;
  z-index: 1;
}

.automacao-cta {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-automacao-primary,
.btn-automacao-secondary {
  padding: 18px 40px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.22, 0.9, 0.25, 1);
  border: none;
  min-width: 220px;
  position: relative;
  overflow: hidden;
}

.btn-automacao-primary {
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  color: #ffffff;
  box-shadow: 0 8px 24px rgba(99, 102, 241, 0.3);
}

.btn-automacao-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
}

.btn-automacao-primary:hover::before {
  left: 100%;
}

.btn-automacao-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(99, 102, 241, 0.5);
}

.btn-automacao-secondary {
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(99, 102, 241, 0.5);
}

.btn-automacao-secondary:hover {
  background: rgba(99, 102, 241, 0.1);
  border-color: rgba(99, 102, 241, 0.8);
  transform: translateY(-4px);
}

/* Responsividade Automação */
@media (max-width: 1024px) {
  .automacao {
    padding: 100px 0;
  }

  .automacao-titulo {
    font-size: 2.8rem;
  }

  .automacao-grid {
    gap: 24px;
  }

  .automacao-card {
    padding: 40px 32px;
  }
}

@media (max-width: 768px) {
  .automacao {
    padding: 80px 0;
  }

  .automacao-container {
    padding: 0 20px;
  }

  .automacao-header {
    margin-bottom: 60px;
  }

  .automacao-titulo {
    font-size: 2.2rem;
  }

  .automacao-subtitulo {
    font-size: 1.1rem;
  }

  .automacao-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .automacao-card {
    padding: 36px 28px;
  }

  .automacao-icon {
    width: 70px;
    height: 70px;
  }

  .automacao-numero {
    font-size: 4rem;
    top: 20px;
    right: 24px;
  }

  .automacao-card h3 {
    font-size: 1.3rem;
  }

  .automacao-card p {
    font-size: 1rem;
  }

  .automacao-cta {
    flex-direction: column;
    align-items: stretch;
  }

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

@media (max-width: 480px) {
  .automacao-titulo {
    font-size: 1.9rem;
  }

  .automacao-subtitulo {
    font-size: 1rem;
  }

  .automacao-card {
    padding: 32px 24px;
  }

  .btn-automacao-primary,
  .btn-automacao-secondary {
    padding: 16px 32px;
    font-size: 1rem;
  }
}

.parceiros {
  width: 100vw;
  background: transparent;
  padding: 60px 0 0 0;
  text-align: center;
  margin-bottom: 120px;
}

.workflow-tag {
  display: inline-block;
  color: #fff;
  background: transparent;
  border: 1px solid #ffffff;
  border-radius: 22px;
  padding: 10px 28px;
  font-size: 1.05rem;
  margin-bottom: 32px;
  opacity: 0.85;
  font-weight: 400;
}

.parceiros-logos-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
  margin: 0 auto;
}

.parceiros-logos {
  display: flex;
  align-items: center;
  gap: 55px;
  width: max-content;
  margin-top: 18px;
  margin-bottom: 60px;
  will-change: transform;
  animation: scrollLeft 20s linear infinite;
}

.parceiros-logos:hover {
  animation-play-state: paused;
}

.parceiro {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  opacity: 0.85;
  font-weight: 600;
  font-size: 1.25rem;
  color: #e0e0e0;
  transition: transform 0.2s;
}

.parceiro img {
  width: 32px;
  height: 32px;
  filter: brightness(1.2) grayscale(1);
  margin-right: 4px;
}

.parceiro:hover {
  transform: scale(1.08);
  opacity: 1;
  color: #fff;
}

.parceiros-texto h2 {
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
  margin: 0 10%;

  line-height: 1.1;
}

.parceiros-texto p {
  color: #bdbdbd;
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 30px;
}

@media (max-width: 900px) {
  .parceiros-logos {
    gap: 30px;
    animation: scrollLeft 15s linear infinite;
  }

  .parceiro img {
    width: 26px;
    height: 26px;
  }

  .parceiro {
    font-size: 1rem;
  }

  .parceiros-texto h2 {
    font-size: 2.1rem;
  }
}

@media (max-width: 600px) {
  .parceiros-logos {
    gap: 25px;
    animation: scrollLeft 12s linear infinite;
  }
}

/* Segmentos Section */
.segmentos {
  width: 100vw;
  background: transparent;
  padding: 120px 0 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.segmentos-container {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.segmentos-titulo {
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 18px;
  margin-top: 18px;
  line-height: 1.1;
}

.segmentos-subtitulo {
  color: #bdbdbd;
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 60px;
}

.segmentos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  margin-top: 60px;
}

.segmento-card {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.08) 0%, rgba(139, 92, 246, 0.08) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 36px 28px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.22, 0.9, 0.25, 1);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.segmento-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #6366f1 0%, #8b5cf6 50%, #a855f7 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.22, 0.9, 0.25, 1);
}

.segmento-card:hover::before {
  transform: scaleX(1);
}

.segmento-card:hover {
  transform: translateY(-8px);
  border-color: rgba(99, 102, 241, 0.3);
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.15) 0%, rgba(139, 92, 246, 0.15) 100%);
  box-shadow: 0 20px 40px rgba(99, 102, 241, 0.2);
}

.segmento-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all 0.4s ease;
  box-shadow: 0 8px 24px rgba(99, 102, 241, 0.3);
}

.segmento-card:hover .segmento-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 32px rgba(99, 102, 241, 0.5);
}

.segmento-card h3 {
  color: #fff;
  font-size: 1.3rem;
  font-weight: 600;
  margin: 0 0 16px 0;
}

.segmento-card p {
  color: #cbd5e1;
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

/* Responsividade Segmentos */
@media (max-width: 1200px) {
  .segmentos-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
  }
}

@media (max-width: 900px) {
  .segmentos {
    padding: 80px 0 60px 0;
  }

  .segmentos-container {
    padding: 0 20px;
  }

  .segmentos-titulo {
    font-size: 2.2rem;
  }

  .segmentos-subtitulo {
    font-size: 1.1rem;
  }

  .segmentos-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
  }

  .segmento-card {
    padding: 32px 24px;
  }
}

@media (max-width: 600px) {
  .segmentos-titulo {
    font-size: 1.9rem;
  }

  .segmentos-subtitulo {
    font-size: 1rem;
  }

  .segmentos-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .segmento-icon {
    width: 70px;
    height: 70px;
  }

  .segmento-card h3 {
    font-size: 1.2rem;
  }

  .segmento-card p {
    font-size: 0.95rem;
  }
}

/* Section Features Dashboard - Comparação */
.features-dashboard {
  width: 100vw;
  background: #ffffff;
  padding: 80px 0;
  display: flex;
  justify-content: center;
  min-height: 600px;
}

/* Comparison Container */
.comparison-container {
  max-width: 900px;
  width: 90vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.comparison-title {
  text-align: center;
}

.comparison-title h2 {
  font-size: 2.8rem;
  font-weight: 700;
  color: #000000;
  margin: 0;
  line-height: 1.2;
}

.title-accent {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
}

/* Modern Table Design */
.comparison-table {
  width: 100%;
  background: #f8f9fa;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid #e0e0e0;
  backdrop-filter: blur(10px);
}

/* Table Header */
.table-header {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  background: #e8eaf6;
  border-bottom: 2px solid #c5cae9;
  padding: 20px 24px;
  gap: 16px;
  align-items: center;
}

.header-feature {
  font-size: 1.1rem;
  font-weight: 700;
  color: #000000;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.header-column {
  display: flex;
  justify-content: center;
  align-items: center;
}

.cash-barber-header .header-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-vesper {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.dollar-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.4rem;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.header-main {
  font-size: 1rem;
  font-weight: 700;
  color: #000000;
}

.outros-header span {
  font-size: 1rem;
  font-weight: 600;
  color: #424242;
}

/* Table Body */
.table-body {
  display: flex;
  flex-direction: column;
}

.table-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 16px;
  padding: 20px 24px;
  border-bottom: 1px solid #e0e0e0;
  transition: all 0.3s ease;
}

.table-row:last-child {
  border-bottom: none;
}

.table-row:hover {
  background: #e8eaf6;
  transform: translateX(4px);
}

/* Feature Column */
.row-feature {
  display: flex;
  align-items: center;
}

.feature-name {
  font-size: 1.05rem;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.3;
}

/* Check/Cross Columns */
.row-check {
  display: flex;
  align-items: center;
  justify-content: center;
}

.cash-barber-check .check-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(16, 185, 129, 0.5);
}

.outros-check .cross-icon {
  width: 36px;
  height: 36px;
  background: rgba(239, 68, 68, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ef4444;
  font-size: 1.2rem;
  font-weight: 700;
  border: 2px solid rgba(239, 68, 68, 0.5);
  box-shadow: 0 4px 16px rgba(239, 68, 68, 0.3);
}

/* CTA Section */
.comparison-cta {
  text-align: center;
  margin-top: 12px;
}

.cta-button {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 700;
  padding: 16px 40px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(102, 126, 234, 0.4);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(102, 126, 234, 0.6);
}

/* Responsive Design */
@media (max-width: 1100px) {
  .table-header,
  .table-row {
    grid-template-columns: 2fr 1fr 1fr;
  }

  .feature-name {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .comparison-title h2 {
    font-size: 2.2rem;
  }

  .table-header,
  .table-row {
    padding: 16px 20px;
  }

  .feature-name {
    font-size: 0.95rem;
  }

  .logo-vesper {
    height: 32px;
  }

  .cash-barber-check .check-icon,
  .outros-check .cross-icon {
    width: 32px;
    height: 32px;
    font-size: 1.1rem;
  }
}

@media (max-width: 600px) {
  .comparison-container {
    width: 95vw;
  }

  .comparison-title h2 {
    font-size: 1.8rem;
  }

  .table-row {
    grid-template-columns: 1.5fr 0.75fr 0.75fr;
    gap: 12px;
    padding: 14px 16px;
  }

  .header-feature,
  .header-main,
  .outros-header span {
    font-size: 0.85rem;
  }

  .feature-name {
    font-size: 0.9rem;
  }

  .logo-vesper {
    height: 28px;
  }

  .dollar-icon {
    width: 28px;
    height: 28px;
    font-size: 1.2rem;
  }

  .cta-button {
    font-size: 1rem;
    padding: 14px 32px;
  }
}
.artigos {
  width: 100vw;
  background: transparent;
  background-image: url('img/2.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 120px 0 40px 0;
  text-align: center;
}

.artigos-titulo {
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 18px;
  margin-top: 18px;
  line-height: 1.1;
}

.artigos-subtitulo {
  color: #bdbdbd;
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 40px;
}

.artigos-cards {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.artigo-card {
  background: #18142a;
  border-radius: 24px;
  box-shadow: 0 2px 24px 0 rgba(0, 0, 0, 0.10);
  padding: 0 0 28px 0;
  width: 350px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: transform 0.2s, box-shadow 0.2s;
}

.artigo-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 20px 20px 0 0;
  margin-bottom: 18px;
}

.artigo-tags {
  display: flex;
  gap: 12px;
  margin: 0 0 18px 18px;
}

.artigo-tags span {
  background: #23203a;
  color: #fff;
  border-radius: 18px;
  padding: 6px 18px;
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 0;
  border: 1px solid #39364d;
}

.artigo-card h3 {
  color: #fff;
  font-size: 1.15rem;
  font-weight: 600;
  margin: 0 18px;
  text-align: left;
}

.artigo-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 8px 32px 0 rgba(99, 102, 241, 0.10);
}

@media (max-width: 1100px) {
  .artigos-cards {
    gap: 20px;
  }

  .artigo-card {
    width: 300px;
  }
}

@media (max-width: 900px) {
  .artigos-titulo {
    font-size: 2.1rem;
  }

  .artigos-cards {
    flex-direction: column;
    align-items: center;
  }

  .artigo-card {
    width: 90vw;
    max-width: 400px;
  }
}

/* Feedbacks Section */
.feedbacks {
  width: 100vw;
  background: linear-gradient(180deg, #1a0b2e 0%, #2d1b4e 100%);
  padding: 120px 0 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.feedbacks::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.feedbacks-container {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.feedbacks-titulo {
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 18px;
  margin-top: 18px;
  line-height: 1.1;
}

.feedbacks-subtitulo {
  color: #bdbdbd;
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 60px;
}

.feedbacks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 32px;
  margin-top: 60px;
}

.feedback-card {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 32px;
  text-align: left;
  transition: all 0.4s cubic-bezier(0.22, 0.9, 0.25, 1);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.feedback-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #6366f1 0%, #8b5cf6 50%, #a855f7 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.22, 0.9, 0.25, 1);
}

.feedback-card:hover::before {
  transform: scaleX(1);
}

.feedback-card:hover {
  transform: translateY(-8px);
  border-color: rgba(99, 102, 241, 0.3);
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
  box-shadow: 0 20px 40px rgba(99, 102, 241, 0.15);
}

.feedback-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
}

.feedback-stars span {
  color: #fbbf24;
  font-size: 1.3rem;
}

.feedback-texto {
  color: #e2e8f0;
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 28px;
  font-style: italic;
}

.feedback-autor {
  display: flex;
  align-items: center;
  gap: 16px;
}

.autor-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 1.2rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.autor-info h4 {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 4px 0;
}

.autor-info p {
  color: #94a3b8;
  font-size: 0.95rem;
  margin: 0;
}

/* Responsividade Feedbacks */
@media (max-width: 1200px) {
  .feedbacks-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
  }
}

@media (max-width: 900px) {
  .feedbacks {
    padding: 80px 0 60px 0;
  }

  .feedbacks-container {
    padding: 0 20px;
  }

  .feedbacks-titulo {
    font-size: 2.2rem;
  }

  .feedbacks-subtitulo {
    font-size: 1.1rem;
  }

  .feedbacks-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .feedback-card {
    padding: 28px;
  }
}

@media (max-width: 600px) {
  .feedbacks-titulo {
    font-size: 1.9rem;
  }

  .feedbacks-subtitulo {
    font-size: 1rem;
  }

  .feedback-card {
    padding: 24px;
  }

  .feedback-texto {
    font-size: 1rem;
  }

  .autor-avatar {
    width: 48px;
    height: 48px;
    font-size: 1.1rem;
  }

  .autor-info h4 {
    font-size: 1rem;
  }

  .autor-info p {
    font-size: 0.9rem;
  }
}

/* Hero Personagem Section */
.hero-personagem {
  position: relative;
  width: 100vw;
  background: linear-gradient(120deg, #0f172a 0%, #0b1220 100%);
  padding: 100px 0 80px 0;
  overflow: hidden;
}

.hero-personagem-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.blob {
  position: absolute;
  opacity: 0.08;
  filter: blur(40px);
  width: 400px;
  height: 400px;
  will-change: transform;
}

.blob-1 {
  top: 10%;
  left: 5%;
  animation: float 8s ease-in-out infinite;
}

.blob-2 {
  top: 50%;
  right: 10%;
  animation: float 6s ease-in-out infinite;
  animation-delay: -2s;
}

.blob-3 {
  bottom: 10%;
  left: 40%;
  animation: float 7s ease-in-out infinite;
  animation-delay: -4s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px) scale(1);
  }
  50% {
    transform: translateY(-12px) scale(1.02);
  }
}

.diagonal-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: repeating-linear-gradient(
    45deg,
    rgba(99, 102, 241, 0.03) 0px,
    rgba(99, 102, 241, 0.03) 1px,
    transparent 1px,
    transparent 60px
  );
  opacity: 0.15;
}

.hero-personagem-container {
  position: relative;
  z-index: 2;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  gap: 80px;
  align-items: center;
  justify-content: space-between;
}

.hero-personagem-content {
  flex: 1;
  max-width: 600px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s cubic-bezier(0.22, 0.9, 0.25, 1) forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-personagem-titulo {
  font-size: 2.9rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero-personagem-destaque {
  font-size: 1.25rem;
  color: #60a5fa;
  margin-bottom: 20px;
  min-height: 32px;
  display: flex;
  align-items: center;
  gap: 2px;
}

.typing-text {
  font-weight: 600;
}

.typing-cursor {
  animation: blink 1s step-end infinite;
  color: #60a5fa;
  font-weight: 300;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.hero-personagem-descricao {
  font-size: 1.1rem;
  color: #cbd5e1;
  line-height: 1.6;
  margin-bottom: 32px;
}

.hero-personagem-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
}

.hero-personagem-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #e2e8f0;
  font-size: 1rem;
  opacity: 0;
  transform: translateX(-10px);
  animation: slideInLeft 0.5s cubic-bezier(0.22, 0.9, 0.25, 1) forwards;
}

.hero-personagem-feature:nth-child(1) {
  animation-delay: 0.3s;
}

.hero-personagem-feature:nth-child(2) {
  animation-delay: 0.45s;
}

.hero-personagem-feature:nth-child(3) {
  animation-delay: 0.6s;
}

@keyframes slideInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-personagem-feature svg {
  flex-shrink: 0;
}

.hero-personagem-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-personagem-primary,
.btn-personagem-secondary {
  padding: 16px 32px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1.05rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.22, 0.9, 0.25, 1);
  border: none;
  min-width: 160px;
}

.btn-personagem-primary {
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  color: #fff;
  box-shadow: 0 4px 16px rgba(99, 102, 241, 0.3);
}

.btn-personagem-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(99, 102, 241, 0.4);
}

.btn-personagem-secondary {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.btn-personagem-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-4px);
}

.hero-personagem-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 500px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s cubic-bezier(0.22, 0.9, 0.25, 1) 0.15s forwards;
  perspective: 1000px;
}

.personagem-wrapper {
  position: relative;
  width: 100%;
  max-width: 450px;
  transform-style: preserve-3d;
  transition: transform 0.1s ease-out;
  will-change: transform;
  isolation: isolate;
}

.personagem-wrapper::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  background:
    radial-gradient(ellipse at center, rgba(139, 92, 246, 0.6) 0%, rgba(139, 92, 246, 0.4) 30%, transparent 70%),
    linear-gradient(135deg, rgba(99, 102, 241, 0.4) 0%, rgba(139, 92, 246, 0.6) 50%, rgba(168, 85, 247, 0.4) 100%);
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.8;
  z-index: -1;
  animation: neonPulse 3s ease-in-out infinite alternate;
}

@keyframes neonPulse {
  0% {
    opacity: 0.6;
    filter: blur(40px);
    transform: scale(1);
  }
  100% {
    opacity: 0.9;
    filter: blur(50px);
    transform: scale(1.05);
  }
}

.personagem-wrapper img {
  position: relative;
  width: 100%;
  height: auto;
  border-radius: 20px;
  display: block;
  transform: translateZ(0) rotateY(-6deg);
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease-out;
  z-index: 1;
}

/* Responsividade Hero Personagem */
@media (max-width: 1100px) {
  .hero-personagem-container {
    flex-direction: column-reverse;
    gap: 60px;
    text-align: center;
  }

  .hero-personagem-content {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-personagem-titulo {
    font-size: 2.8rem;
  }

  .hero-personagem-features {
    align-items: flex-start;
    max-width: 500px;
  }

  .hero-personagem-image {
    max-width: 400px;
  }

  .personagem-wrapper img {
    transform: translateZ(0) rotateY(0deg);
  }
}

@media (max-width: 768px) {
  .hero-personagem {
    padding: 80px 0 60px 0;
  }

  .hero-personagem-container {
    padding: 0 20px;
    gap: 40px;
  }

  .hero-personagem-titulo {
    font-size: 2.2rem;
  }

  .hero-personagem-destaque {
    font-size: 1.1rem;
  }

  .hero-personagem-descricao {
    font-size: 1rem;
  }

  .hero-personagem-feature {
    font-size: 0.95rem;
  }

  .hero-personagem-buttons {
    flex-direction: column;
    width: 100%;
  }

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

  .blob {
    width: 250px;
    height: 250px;
  }
}

@media (max-width: 480px) {
  .hero-personagem-titulo {
    font-size: 1.8rem;
  }

  .hero-personagem-container {
    gap: 30px;
  }

  .btn-personagem-primary,
  .btn-personagem-secondary {
    padding: 14px 24px;
    font-size: 1rem;
  }
}

/* FAQ Section */
.faq {
  width: 100vw;
  background: linear-gradient(135deg, rgba(78, 80, 208, 0.701) 0%, rgba(135, 28, 207, 0.509) 100%);
  padding: 120px 0 100px 0;
  position: relative;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 40px;
}

.faq-header {
  text-align: center;
  margin-bottom: 60px;
}

.faq-titulo {
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 18px;
  margin-top: 18px;
  line-height: 1.1;
}

.faq-subtitulo {
  color: #bdbdbd;
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
}

.faq-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(99, 102, 241, 0.3);
  box-shadow: 0 8px 24px rgba(99, 102, 241, 0.1);
}

.faq-item.active {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
  border-color: rgba(99, 102, 241, 0.4);
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  padding: 24px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
  transition: all 0.3s ease;
  outline: none;
}

.faq-question:hover {
  background: rgba(99, 102, 241, 0.05);
}

.faq-question span {
  font-size: 1.15rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.4;
  padding-right: 20px;
}

.faq-icon {
  flex-shrink: 0;
  color: #fafafa;
  transition: transform 0.3s ease;
  cursor: pointer;
  pointer-events: auto;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0;
}

.faq-item.active .faq-answer {
  padding: 0 28px 28px 28px;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer p {
  color: #cbd5e1;
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 0;
}

.faq-answer strong {
  color: #e2e8f0;
  font-weight: 600;
}

.faq-cta {
  text-align: center;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-cta p {
  font-size: 1.3rem;
  color: #e2e8f0;
  margin-bottom: 24px;
  font-weight: 500;
}

.btn-faq {
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 16px 40px;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(99, 102, 241, 0.3);
}

.btn-faq:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(99, 102, 241, 0.5);
}

/* Responsividade FAQ */
@media (max-width: 900px) {
  .faq {
    padding: 80px 0 60px 0;
  }

  .faq-container {
    padding: 0 20px;
  }

  .faq-titulo {
    font-size: 2.2rem;
  }

  .faq-subtitulo {
    font-size: 1.1rem;
  }

  .faq-question {
    padding: 20px 24px;
  }

  .faq-question span {
    font-size: 1.05rem;
  }

  .faq-item.active .faq-answer {
    padding: 0 24px 24px 24px;
  }

  .faq-answer p {
    font-size: 1rem;
  }
}

@media (max-width: 600px) {
  .faq-titulo {
    font-size: 1.9rem;
  }

  .faq-subtitulo {
    font-size: 1rem;
  }

  .faq-question {
    padding: 18px 20px;
  }

  .faq-question span {
    font-size: 1rem;
    padding-right: 12px;
  }

  .faq-icon {
    width: 20px;
    height: 20px;
  }

  .faq-item.active .faq-answer {
    padding: 0 20px 20px 20px;
  }

  .faq-answer p {
    font-size: 0.95rem;
  }

  .faq-cta p {
    font-size: 1.1rem;
  }

  .btn-faq {
    width: 100%;
    padding: 14px 32px;
  }
}

/* AI Race Section - Poder da IA */
.ai-race {
  position: relative;
  width: 100vw;
  background: linear-gradient(135deg, #0a0118 0%, #1a0b2e 50%, #0f0620 100%);
  padding: 120px 0;
  overflow: hidden;
  text-align: center;
}

.ai-race-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.ai-race-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.15) 0%, rgba(99, 102, 241, 0.1) 40%, transparent 70%);
  filter: blur(80px);
  animation: pulseGlow 4s ease-in-out infinite alternate;
}

@keyframes pulseGlow {
  0% {
    opacity: 0.4;
    transform: translate(-50%, -50%) scale(1);
  }
  100% {
    opacity: 0.7;
    transform: translate(-50%, -50%) scale(1.1);
  }
}

.ai-race-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(99, 102, 241, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(99, 102, 241, 0.05) 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: 0.3;
  animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(50px);
  }
}

.ai-race-container {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 40px;
}

.ai-race-badge {
  display: inline-block;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.2) 0%, rgba(168, 85, 247, 0.2) 100%);
  border: 1px solid rgba(168, 85, 247, 0.4);
  border-radius: 24px;
  padding: 10px 24px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #a855f7;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 32px;
  backdrop-filter: blur(10px);
  animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
  0%, 100% {
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.3);
  }
  50% {
    box-shadow: 0 0 40px rgba(168, 85, 247, 0.5);
  }
}

.ai-race-titulo {
  font-size: 4rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}

.ai-race-destaque {
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #a855f7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  animation: shimmer 3s ease-in-out infinite;
  background-size: 200% 200%;
}

@keyframes shimmer {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.ai-race-subtitulo {
  font-size: 1.6rem;
  color: #e2e8f0;
  font-weight: 600;
  margin-bottom: 24px;
  line-height: 1.4;
}

.ai-race-texto {
  font-size: 1.25rem;
  color: #cbd5e1;
  line-height: 1.7;
  margin-bottom: 48px;
}

.ai-race-texto strong {
  color: #fff;
  font-weight: 700;
}

.ai-race-multiplicador {
  color: #a855f7;
  font-weight: 800;
  font-size: 1.4em;
  text-shadow: 0 0 20px rgba(168, 85, 247, 0.5);
}

.ai-race-cta {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.btn-ai-race-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #a855f7 100%);
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  padding: 20px 48px;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 32px rgba(99, 102, 241, 0.4);
  position: relative;
  overflow: hidden;
}

.btn-ai-race-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
}

.btn-ai-race-primary:hover::before {
  left: 100%;
}

.btn-ai-race-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 48px rgba(99, 102, 241, 0.6);
}

.btn-ai-race-secondary {
  background: transparent;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 600;
  padding: 20px 48px;
  border: 2px solid rgba(168, 85, 247, 0.5);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.btn-ai-race-secondary:hover {
  background: rgba(168, 85, 247, 0.15);
  border-color: rgba(168, 85, 247, 0.8);
  transform: translateY(-4px);
}

.ai-race-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
  margin-top: 60px;
  padding-top: 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.ai-race-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.stat-label {
  font-size: 1.1rem;
  color: #94a3b8;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Responsividade AI Race */
@media (max-width: 900px) {
  .ai-race {
    padding: 80px 0;
  }

  .ai-race-container {
    padding: 0 20px;
  }

  .ai-race-titulo {
    font-size: 2.8rem;
  }

  .ai-race-subtitulo {
    font-size: 1.3rem;
  }

  .ai-race-texto {
    font-size: 1.1rem;
  }

  .ai-race-stats {
    gap: 40px;
  }

  .stat-number {
    font-size: 2.8rem;
  }

  .stat-label {
    font-size: 1rem;
  }
}

@media (max-width: 600px) {
  .ai-race {
    padding: 60px 0;
  }

  .ai-race-titulo {
    font-size: 2.2rem;
  }

  .ai-race-badge {
    font-size: 0.85rem;
    padding: 8px 18px;
  }

  .ai-race-subtitulo {
    font-size: 1.15rem;
  }

  .ai-race-texto {
    font-size: 1rem;
  }

  .ai-race-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-ai-race-primary,
  .btn-ai-race-secondary {
    width: 100%;
    padding: 18px 32px;
    font-size: 1.1rem;
  }

  .ai-race-stats {
    gap: 32px;
    flex-direction: column;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .stat-label {
    font-size: 0.95rem;
  }
}

.footer {
  width: 100vw;
  background: transparent;
  padding: 60px 0 0 0;
  color: #fff;
}

.footer-main {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 80px;
  max-width: 1500px;
  margin: 0 auto 40px auto;
  padding: 0 40px;
}

.footer-brand {
  flex: 1.2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 260px;
}

.footer-logo {
  width: 100px;
  height: 34px;
  margin-bottom: 18px;
}

.footer-brand p {
  color: #bdbdbd;
  font-size: 1.15rem;
  margin-bottom: 28px;
  max-width: 320px;
}

.footer-btn {
  display: inline-block;
  background: linear-gradient(to right, #fff, #e6e6fa);
  color: #23203a;
  font-weight: 700;
  font-size: 1.1rem;
  border: none;
  border-radius: 10px;
  padding: 16px 32px;
  margin-top: 8px;
  text-decoration: none;
  box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.04);
  transition: background 0.2s;
}

.footer-btn:hover {
  background: linear-gradient(to right, #e6e6fa, #fff);
}

.footer-links {
  flex: 2;
  display: flex;
  gap: 80px;
  justify-content: flex-end;
}

.footer-links h4 {
  color: #fff;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 18px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #bdbdbd;
  text-decoration: none;
  font-size: 1.08rem;
  transition: color 0.2s;
}

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

.hiring {
  color: #fff;
  background: #4f46e5;
  border-radius: 8px;
  font-size: 0.85rem;
  padding: 2px 8px;
  margin-left: 6px;
}

.footer hr {
  border: none;
  border-top: 1px solid #23203a;
  margin: 0 auto 18px auto;
  max-width: 1500px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 40px 24px 40px;
  font-size: 1rem;
  color: #bdbdbd;
}

.footer-bottom a {
  color: #7b7bff;
  text-decoration: none;
}

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

.footer-social img {
  width: 26px;
  height: 26px;
  filter: brightness(1.2);
  transition: filter 0.2s;
}

.footer-social img:hover {
  filter: brightness(2);
}

@media (max-width: 1100px) {

  .footer-main,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
    padding: 0 20px;
  }

  .footer-links {
    gap: 40px;
    margin-top: 32px;
  }
}

@media (max-width: 700px) {
  .footer-main {
    flex-direction: column;
    gap: 32px;
    align-items: flex-start;
  }

  .footer-links {
    flex-direction: column;
    gap: 24px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 18px;
    padding: 0 10px 18px 10px;
  }
}

