* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

:root {
  /* Cores Para serem usadas */
  --primary: #2196f3; /* Azul do usuário */
  --primary-hover: #1976d2;
  --bg-dark: #09090b; /* Fundo quase preto */
  --bg-dark-light: #121216; /* Fundo do header */
  --text-white: #ffffff;
  --text-gray: #a1a1aa;
  --border-color: #333333;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-white);
  line-height: 1.6;
}

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

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
  transition: 0.3s;
}

/* ================= HEADER / NAVBAR ================= */
.navbar {
  background-color: rgba(9, 9, 11, 0.8);
  backdrop-filter: blur(10px);
  height: 70px;
  display: flex;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

.navbar::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;

  background: linear-gradient(
    90deg,
    rgba(33, 150, 243, 0) 0%,
    /* Invisível na ponta esquerda */ rgba(33, 150, 243, 1) 50%,
    /* Azul forte no meio */ rgba(33, 150, 243, 0) 100%
      /* Invisível na ponta direita */
  );

  box-shadow: 0 1px 10px rgba(33, 150, 243, 0.5),
    /* Brilho próximo */ 0 0 20px rgba(33, 150, 243, 0.3); /* Brilho distante */

  z-index: 1001;
}

.navbar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

/* Estilo do Hambúrguer */
.hamburger {
  display: none;
  cursor: pointer;
}

.bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  transition: all 0.3s ease-in-out;
  background-color: white;
  border-radius: 2px;
}

.logo a {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.5px;
}

.nav-menu ul {
  display: flex;
  gap: 30px;
}

.nav-menu a {
  color: var(--text-gray);
  font-size: 0.95rem;
  font-weight: 400;
}

.nav-menu a:hover {
  color: var(--text-white);
}

/* ================= COMPONENTE DE BOTÃO GLOBAL ================= */
/* Esse botão aceita Texto e SVG e mantém tudo alinhado */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

/* Estilo 1: Outline (Borda Azul, fundo transparente - ex: Header) */
.btn-outline {
  background: transparent;
  border: 1px solid rgba(33, 150, 243, 0.5);
  color: var(--text-white);
}

.btn-outline:hover {
  border-color: var(--primary);
  background: rgba(33, 150, 243, 0.1);
}

/* Estilo 2: Primary (Fundo Azul - ex: Hero CTA) */
.btn-primary {
  background-color: var(--primary);
  border: 1px solid var(--primary);
  color: white;
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(33, 150, 243, 0.4);
}

/* ================= HERO SECTION ================= */
.hero-section {
  padding-top: 140px;
  padding-bottom: 60px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* Fundo radial azul atrás da imagem */
.hero-section::before {
  content: "";
  position: absolute;
  bottom: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(33, 150, 243, 0.15) 0%,
    rgba(9, 9, 11, 0) 70%
  );
  z-index: -1;
  pointer-events: none;
}

.hero-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Badge "Olá, somos a..." */
.badge-container {
  margin-bottom: 24px;
}

.badge {
  display: inline-block;
  padding: 6px 46px;
  border: 1px solid var(--primary-hover);
  border-radius: 50px;
  font-size: 0.9rem;
  color: var(--text-white);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: 0px 4px 4px 0px rgba(33, 150, 243, 0.25);
}

/* Tipografia Hero */
.text-blue {
  color: var(--primary);
}

.hero-title {
  font-size: 3.5rem;
  line-height: 1;
  font-weight: 600;
  margin-bottom: 24px;
  max-width: 900px;
  text-align: center;
}

.hero-subtitle {
  color: var(--text-gray);
  font-size: 1.1rem;
  margin-bottom: 40px;
  max-width: 600px;
}

/* Área da Imagem */
.hero-image-wrapper {
  margin-top: 60px;
  width: 100%;
  max-width: 1000px;
  position: relative;
}

.hero-img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

/* ================= SEÇÃO SOLUÇÕES ================= */
.solutions-section {
  padding: 80px 0;
  background-color: var(--bg-dark);
}

/* Cabeçalho da Seção */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.badge-wrapper {
  margin-bottom: 20px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  line-height: 1;
}

.section-subtitle {
  color: var(--text-gray);
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Layout Dividido (Esquerda | Divisor | Direita) */
.split-layout {
  display: flex;
  justify-content: space-between;
  position: relative;
  gap: 20px;
}

.column-block {
  flex: 1;
}

/* Linha Divisória Vertical */
.divider-line {
  width: 1px;
  background-color: #fff;
  margin: 0 20px;
  margin-top: 50px;
}

.column-title {
  text-align: center;
  font-size: 1.25rem;
  margin-bottom: 30px;
  font-weight: 600;
}

/* Grid de Cards (2 em cima, 1 embaixo) */
.cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* Estilo Base do Card */
.info-card {
  background-color: #3b3b3b;
  padding: 24px;
  border-radius: 8px;
  transition: transform 0.2s;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.info-card:hover {
  transform: translateY(-5px);
}

/* Card Centralizado (O 3º item de cada lado) */
.card-centered {
  grid-column: span 2;
  width: 60%;
  margin: 0 auto;
  justify-self: center;
}

.card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.card-header h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-white);
  line-height: 1;
}

.info-card p {
  color: var(--text-gray);
  font-size: 0.875rem;
  line-height: 1.5;
}

/* Cores Específicas - Problemas (Vermelho) */
.card-problem svg {
  stroke: #ef4444;
  flex-shrink: 0;
}

.card-problem .card-header h4 {
  color: #e5e5e5;
}

/* Cores Específicas - Soluções (Azul) */
.card-solution svg {
  stroke: #2196f3;
  flex-shrink: 0;
}

/* ================= MARQUEE INFINITO ================= */
.infinite-marquee {
  width: 100%;
  background-color: var(--primary);
  overflow: hidden;
  padding: 15px 0;
  margin-top: 3rem;
  position: relative;
  white-space: nowrap;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: scrollInfinite 20s linear infinite;
}

.marquee-content {
  display: flex;
  align-items: center;
  gap: 80px;
  padding-right: 80px;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: white;
  font-size: 1.1rem;
  font-weight: 500;
}

.marquee-item img {
  display: block;
  width: 24px;
  height: 24px;
  object-fit: contain;
}

/* ================= COMO FUNCIONA ================= */
.how-it-works-section {
  background-color: var(--bg-dark);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  width: 95%;
  justify-content: center;
  margin: auto;
  margin-top: 40px;
}

.step-card {
  border-radius: 12px;
  padding: 30px 20px;
  text-align: center;
  border: 2px solid var(--text-white);
  transition: transform 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.step-card:hover {
  transform: translateY(-5px);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid white;
  color: white;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 16px;
  box-shadow: 0 4px 12px rgba(33, 150, 243, 0.3);
}

.step-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 10px;
}

.step-description {
  font-size: 0.9rem;
  color: var(--text-gray);
  line-height: 1.5;
}

.step-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 12px;
}

.step-icon {
  width: 24px;
  height: 24px;
  margin-bottom: 10px;
  object-fit: contain;
}


/* ================= Servicos ================= */
.custom-software-section {
  padding: 80px 0;
  background-color: var(--bg-dark);
}

.software-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.software-card {
  background-color: #1e1e22;
  border-radius: 12px;
  padding: 30px 20px;
  text-align: center;
  transition: transform 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.software-card:hover {
  transform: translateY(-5px);
}

.software-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 20px;
}

.software-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 10px;
}

.software-description {
  font-size: 0.9rem;
  color: var(--text-gray);
  line-height: 1.5;
}

/* ================= DASHBOARD PREVIEW ================= */
.dashboard-preview-section {
  padding: 80px 0;
  text-align: center;
}

.dashboard-image-wrapper {
  margin-top: 40px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.dashboard-img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

/* ================= TECNOLOGIAS ================= */
.technologies-section {
  padding: 80px 0;
  background-color: var(--bg-dark);
  text-align: center;
}

.tech-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.tech-card {
  border-radius: 12px;
  padding: 30px 20px;
  transition: transform 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  display: flex;
  border: 2px solid var(--text-white);
  flex-direction: column;
  align-items: center;
}

.tech-card:hover {
  transform: translateY(-5px);
}

.tech-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 20px;
}

.tech-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-white);
}

/* ================= DEPOIMENTOS ================= */
.testimonials-section {
  padding: 80px 0;
  background-color: var(--bg-dark);
  text-align: center;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.testimonial-card {
  background-color: #1e1e22;
  border-radius: 12px;
  padding: 30px 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.testimonial-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
}

.testimonial-text {
  font-size: 0.9rem;
  color: var(--text-gray);
  line-height: 1.5;
  margin-bottom: 20px;
}

.testimonial-name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 5px;
}

.testimonial-role {
  font-size: 0.85rem;
  color: var(--text-gray);
}

/* ================= EQUIPE ================= */
.team-section {
  padding: 80px 0;
  background-color: var(--bg-dark);
  text-align: center;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 40px;
}

.team-card {
  background-color: #1e1e22;
  border-radius: 12px;
  padding: 30px 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease;
}

.team-card:hover {
  transform: translateY(-5px);
}

.team-photo {
  width: 120px;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  margin-bottom: 20px;
}

.team-photo.circle {
  border-radius: 50%;
}

.team-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 5px;
}

.team-role {
  font-size: 0.85rem;
  color: var(--text-gray);
  margin-bottom: 15px;
}

.team-description {
  font-size: 0.9rem;
  color: var(--text-gray);
  line-height: 1.5;
  margin-bottom: 20px;
}

.team-social {
  display: flex;
  gap: 15px;
}

.team-social img {
  width: 24px;
  height: 24px;
  transition: transform 0.2s ease;
}

.team-social img:hover {
  transform: scale(1.2);
}

/* ================= CONTATO / ORÇAMENTO ================= */
.contact-section {
  padding: 80px 0;
  background-color: var(--bg-dark);
}

.contact-wrapper {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.contact-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-info .section-title {
  font-size: 2rem;
  margin: 20px 0;
}

.contact-info .section-subtitle {
  font-size: 1rem;
  color: var(--text-gray);
  margin-bottom: 30px;
  max-width: 500px;
}

.contact-form {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  background-color: #1e1e22;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 12px 16px;
  color: var(--text-white);
  font-size: 0.95rem;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--text-gray);
}

/* ================= Contato ================= */
.contact-section {
  padding: 60px;
  display: flex;
  justify-content: center;
}

.contact-card {
  width: 100%;
  max-width: 1200px;
  background: #07130f;
  border: 2px solid #0a4d8f;
  border-radius: 30px;
  padding: 60px;
  display: flex;
  gap: 60px;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border: 1px solid #0a4d8f;
  border-radius: 50px;
  color: #2196f3;
  font-size: 0.9rem;
}

.contact-info h2 {
  font-size: 2.5rem;
  margin: 20px 0 10px;
  color: white;
}

.contact-info p {
  max-width: 450px;
  color: #9ba4b5;
  margin-bottom: 25px;
  line-height: 1.5;
}

.link-project {
  color: #2196f3;
  font-size: 1rem;
  text-decoration: none;
  font-weight: 500;
}

.contact-form {
  flex: 1;
  min-width: 350px;
  padding: 35px;
  border: 2px solid #0a4d8f;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  background: linear-gradient(180deg, #0d2028, #09202e);
  border: 1px solid #053458;
  padding: 14px 16px;
  border-radius: 8px;
  color: white;
  font-size: 0.95rem;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #9ba4b5;
}

.contact-form textarea {
  resize: none;
}

.btn-submit {
  margin-top: 10px;
  align-self: flex-start;
  background: #2196f3;
  border: none;
  padding: 14px 22px;
  border-radius: 8px;
  color: white;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.2s;
}

.btn-submit:hover {
  background: #0d7adf;
}

.contact-form button {
  align-self: flex-start;
}

/* ================= RODAPÉ ================= */
.footer-section {
  border-top: 1px solid var(--primary);
  padding: 40px 0;
  color: var(--text-white);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}

.footer-contact {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--text-gray);
}

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

.footer-icon {
  width: 24px;
  height: 24px;
  transition: transform 0.2s ease;
}

.footer-icon:hover {
  transform: scale(1.2);
}

.footer-top {
  display: flex;
  align-items: center;
}

.back-to-top {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  color: var(--text-white);
  transition: color 0.3s ease;
}

.back-to-top:hover {
  color: var(--primary);
}

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