:root {
  /* Esquema de cores futurista */
  --primary: #0070f3;
  --primary-dark: #0050d0;
  --primary-light: #3390ff;
  --secondary: #00c9ff;
  --accent: #00ffcc;
  --dark: #121212;
  --dark-blue: #0a192f;
  --gray-dark: #1e1e1e;
  --gray: #2d2d2d;
  --gray-light: #3a3a3a;
  --light: #f8f9fa;
  --text: #e0e0e0;
  
  /* Efeitos especiais */
  --glow: 0 0 10px rgba(0, 201, 255, 0.5), 0 0 20px rgba(0, 201, 255, 0.3);
  --glow-accent: 0 0 10px rgba(0, 255, 204, 0.5), 0 0 20px rgba(0, 255, 204, 0.3);
  --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  --gradient-dark: linear-gradient(135deg, var(--dark) 0%, var(--dark-blue) 100%);
  --gradient-accent: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
  
  /* Animações */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  /* Tipografia */
  --font-primary: 'Montserrat', sans-serif;
  --font-tech: 'Orbitron', sans-serif;
}

/* Reset e Estilos Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%; /* 1rem = 10px */
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--primary) var(--dark);
}

body {
  font-family: var(--font-primary);
  font-size: 1.6rem;
  line-height: 1.6;
  color: var(--text);
  background-color: var(--dark);
  overflow-x: hidden;
  min-height: 100vh;
}

/* Scrollbar personalizada */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--dark);
}

::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--secondary);
}

/* Contêiner */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

/* Partículas de fundo */
.particles-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.9;
}

/* Overlay de carregamento */
.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--dark);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-content {
  text-align: center;
}

.loading-logo {
  width: 12rem;
  height: 14rem;
  margin-bottom: 2rem;
}

.loading-shield-bg {
  opacity: 0.3;
  animation: pulsate 2s ease-in-out infinite alternate;
}

.loading-shield-border {
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
  animation: dash 3s ease-in-out forwards infinite alternate;
  stroke-width: 3;
}

.loading-database-top,
.loading-database-body,
.loading-database-bottom,
.loading-drawer-1,
.loading-drawer-2,
.loading-drawer-3,
.loading-drawer-handle-1,
.loading-drawer-handle-2,
.loading-drawer-handle-3 {
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  animation: dash 2s ease-in-out forwards infinite alternate;
  animation-delay: 1s;
}

.loading-drawer-1 {
  animation-delay: 1.2s;
}

.loading-drawer-2 {
  animation-delay: 1.4s;
}

.loading-drawer-3 {
  animation-delay: 1.6s;
}

.loading-drawer-handle-1,
.loading-drawer-handle-2,
.loading-drawer-handle-3 {
  animation-delay: 1.8s;
}


.loading-bar {
  width: 20rem;
  height: 4px;
  background-color: var(--gray);
  border-radius: 2px;
  margin: 2rem auto;
  overflow: hidden;
}

.loading-progress {
  height: 100%;
  width: 0;
  background: var(--gradient-primary);
  animation: progress 3s ease-in-out forwards;
}

.loading-status {
  font-family: var(--font-tech);
  font-size: 1.4rem;
  color: var(--text);
  opacity: 0.8;
}

@keyframes dash {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

@keyframes progress {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 2rem 0;
  transition: all 0.4s ease;
}

.header.scrolled {
  background-color: rgba(10, 25, 47, 0.95);
  backdrop-filter: blur(10px);
  padding: 1rem 0;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Estilos para o logo */
.logo {
  display: flex;
  align-items: center;
}

.logo a {
  text-decoration: none;
  display: flex;
  align-items: center;
}

.logo-shield {
  display: flex;
  align-items: center;
  position: relative;
}

.shield-svg {
  width: 50px;
  height: 60px;
  margin-right: 15px;
}

.shield-bg {
  filter: drop-shadow(0 0 3px rgba(0, 201, 255, 0.3));
}

.shield-border {
  filter: drop-shadow(0 0 2px rgba(255, 170, 0, 0.5));
}

.database-top,
.database-body,
.database-bottom,
.drawer-1,
.drawer-2,
.drawer-3 {
  filter: drop-shadow(0 0 1px rgba(0, 201, 255, 0.8));
}

.logo-text {
  font-family: var(--font-tech);
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
  margin-left: 10px;
  position: relative;
}

.logo-text::after {
  content: 'TECHNOLOGY INTELLIGENCE';
  position: absolute;
  bottom: -24px;
  left: 0;
  font-size: 1rem;
  font-weight: 400;
  color: var(--secondary);
  letter-spacing: 1px;
}


/* Animação sutil para o logo */
.shield-svg {
  transition: transform 0.3s ease;
}

.logo:hover .shield-svg {
  transform: scale(1.05);
}

.logo:hover .database-top,
.logo:hover .database-body,
.logo:hover .database-bottom,
.logo:hover .drawer-1,
.logo:hover .drawer-2,
.logo:hover .drawer-3 {
  fill: var(--accent);
}

@media (max-width: 768px) {
  .shield-svg {
    width: 40px;
    height: 48px;
  }
  
  .logo-text {
    font-size: 1.6rem;
  }
  
  .logo-text::after {
    font-size: 0.8rem;
  }
}


.main-nav ul {
  display: flex;
  list-style: none;
}

.main-nav ul li {
  margin-left: 4rem;
}

.nav-link {
  color: var(--text);
  text-decoration: none;
  font-size: 1.4rem;
  font-weight: 500;
  position: relative;
  padding: 0.5rem 0;
  transition: var(--transition-normal);
  display: flex;
  align-items: center;
}

.nav-icon {
  color: var(--secondary);
  font-size: 1rem;
  margin-right: 0.8rem;
  transition: var(--transition-normal);
}

.nav-link:hover {
  color: var(--secondary);
}

.nav-link:hover .nav-icon {
  color: var(--accent);
  transform: rotate(90deg);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-accent);
  transition: var(--transition-normal);
}

.nav-link:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
}

.portal-btn {
  display: inline-flex;
  align-items: center;
  padding: 0.8rem 1.6rem;
  background-color: transparent;
  color: var(--secondary);
  border: 1px solid var(--secondary);
  border-radius: 4px;
  font-size: 1.4rem;
  font-weight: 500;
  text-decoration: none;
  transition: var(--transition-normal);
  margin-right: 2rem;
}

.portal-btn i {
  margin-left: 0.8rem;
  transition: var(--transition-normal);
}

.portal-btn:hover {
  background-color: rgba(0, 201, 255, 0.1);
  box-shadow: var(--glow);
}

.portal-btn:hover i {
  transform: translateX(3px);
}

.theme-toggle i {
  color: var(--text);
  font-size: 1.6rem;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--gray);
  transition: var(--transition-normal);
  border-radius: 3.4rem;
}

.slider:before {
  position: absolute;
  content: "";
  height: 1.8rem;
  width: 1.8rem;
  left: 0.3rem;
  bottom: 0.3rem;
  background-color: var(--light);
  transition: var(--transition-normal);
  border-radius: 50%;
}

input:checked + .slider {
  background: var(--gradient-primary);
}

input:checked + .slider:before {
  transform: translateX(2rem);
}

.mobile-menu-btn {
  display: none;
  cursor: pointer;
}

.hamburger {
  width: 3rem;
  height: 2.4rem;
  position: relative;
}

.hamburger span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: var(--text);
  border-radius: 2px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: var(--transition-normal);
}

.hamburger span:nth-child(1) {
  top: 0;
}

.hamburger span:nth-child(2) {
  top: 1rem;
}

.hamburger span:nth-child(3) {
  top: 2rem;
}

.hamburger.active span:nth-child(1) {
  top: 1rem;
  transform: rotate(135deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  left: -6rem;
}

.hamburger.active span:nth-child(3) {
  top: 1rem;
  transform: rotate(-135deg);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  background: var(--gradient-dark);
}

.hero .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10rem 2rem;
}

.hero-content {
  flex: 0 0 50%;
  max-width: 50%;
}

.hero-badge {
  display: inline-block;
  padding: 0.8rem 1.6rem;
  background: rgba(0, 201, 255, 0.1);
  color: var(--secondary);
  border-radius: 3rem;
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 2rem;
  border: 1px solid var(--secondary);
}

.glitch-text {
  font-family: var(--font-tech);
  font-size: 5rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 2rem;
  position: relative;
}

.glitch-text::before,
.glitch-text::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.glitch-text::before {
  left: 2px;
  text-shadow: -2px 0 var(--secondary);
  clip: rect(44px, 450px, 56px, 0);
  animation: glitch-anim-1 5s infinite linear alternate-reverse;
}

.glitch-text::after {
  left: -2px;
  text-shadow: -2px 0 var(--accent);
  clip: rect(44px, 450px, 56px, 0);
  animation: glitch-anim-2 5s infinite linear alternate-reverse;
}

@keyframes glitch-anim-1 {
  0% {
    clip: rect(2px, 9999px, 6px, 0);
  }
  10% {
    clip: rect(42px, 9999px, 44px, 0);
  }
  20% {
    clip: rect(68px, 9999px, 84px, 0);
  }
  30% {
    clip: rect(78px, 9999px, 82px, 0);
  }
  40% {
    clip: rect(20px, 9999px, 24px, 0);
  }
  50% {
    clip: rect(24px, 9999px, 34px, 0);
  }
  60% {
    clip: rect(76px, 9999px, 78px, 0);
  }
  70% {
    clip: rect(34px, 9999px, 36px, 0);
  }
  80% {
    clip: rect(56px, 9999px, 62px, 0);
  }
  90% {
    clip: rect(70px, 9999px, 72px, 0);
  }
  100% {
    clip: rect(32px, 9999px, 36px, 0);
  }
}

@keyframes glitch-anim-2 {
  0% {
    clip: rect(12px, 9999px, 16px, 0);
  }
  10% {
    clip: rect(54px, 9999px, 58px, 0);
  }
  20% {
    clip: rect(24px, 9999px, 26px, 0);
  }
  30% {
    clip: rect(58px, 9999px, 62px, 0);
  }
  40% {
    clip: rect(32px, 9999px, 36px, 0);
  }
  50% {
    clip: rect(62px, 9999px, 68px, 0);
  }
  60% {
    clip: rect(48px, 9999px, 52px, 0);
  }
  70% {
    clip: rect(52px, 9999px, 56px, 0);
  }
  80% {
    clip: rect(12px, 9999px, 16px, 0);
  }
  90% {
    clip: rect(42px, 9999px, 46px, 0);
  }
  100% {
    clip: rect(68px, 9999px, 72px, 0);
  }
}

.hero-subtitle {
  font-size: 2rem;
  color: var(--text);
  margin-bottom: 3rem;
}

.typed-text {
  color: var(--secondary);
  font-weight: 600;
}

.hero-stats {
  display: flex;
  margin-bottom: 4rem;
}

.stat-item {
  margin-right: 3rem;
}

.stat-number {
  font-family: var(--font-tech);
  font-size: 3.6rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1.4rem;
  color: var(--text);
  opacity: 0.8;
}

.hero-cta {
  display: flex;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.2rem 2.4rem;
  border-radius: 4px;
  font-size: 1.6rem;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition-normal);
  cursor: pointer;
  border: none;
  outline: none;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--light);
  box-shadow: 0 4px 6px rgba(0, 112, 243, 0.2);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--glow);
}

.btn-secondary {
  background-color: transparent;
  color: var(--secondary);
  border: 1px solid var(--secondary);
  margin-left: 1.6rem;
}

.btn-secondary:hover {
  background-color: rgba(0, 201, 255, 0.1);
  transform: translateY(-3px);
  box-shadow: var(--glow);
}

.btn-full {
  width: 100%;
}

.btn-text {
  margin-right: 1rem;
}

.btn-icon {
  transition: var(--transition-normal);
}

.btn:hover .btn-icon {
  transform: translateX(5px);
}

.hero-visual {
  flex: 0 0 50%;
  max-width: 50%;
  position: relative;
  height: 50rem;
}

.hero-3d-object {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40rem;
  height: 40rem;
}

.hero-data-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.data-line {
  position: absolute;
  background: linear-gradient(90deg, transparent, var(--secondary), transparent);
  height: 1px;
  width: 100%;
  opacity: 0.3;
  animation: dataLine 3s infinite linear;
}

.data-line:nth-child(1) {
  top: 25%;
  animation-delay: 0s;
}

.data-line:nth-child(2) {
  top: 50%;
  animation-delay: 1s;
}

.data-line:nth-child(3) {
  top: 75%;
  animation-delay: 2s;
}

@keyframes dataLine {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

.hero-circles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.circle {
  position: absolute;
  border: 1px solid var(--secondary);
  border-radius: 50%;
  opacity: 0.2;
  transform: translate(-50%, -50%);
}

.circle:nth-child(1) {
  top: 50%;
  left: 50%;
  width: 30rem;
  height: 30rem;
  animation: pulse 3s infinite ease-out;
}

.circle:nth-child(2) {
  top: 50%;
  left: 50%;
  width: 20rem;
  height: 20rem;
  animation: pulse 3s infinite ease-out 1s;
}

.circle:nth-child(3) {
  top: 50%;
  left: 50%;
  width: 10rem;
  height: 10rem;
  animation: pulse 3s infinite ease-out 2s;
}

@keyframes pulse {
  0% {
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0.5;
  }
  50% {
    opacity: 0.2;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0;
  }
}

.hero-bottom {
  position: absolute;
  bottom: 3rem;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
}

.scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--text);
  font-size: 1.4rem;
  opacity: 0.8;
}

.mouse {
  width: 2.6rem;
  height: 4.2rem;
  border: 2px solid var(--text);
  border-radius: 2rem;
  margin-top: 1rem;
  display: flex;
  justify-content: center;
}

.wheel {
  width: 0.6rem;
  height: 0.6rem;
  background-color: var(--text);
  border-radius: 50%;
  margin-top: 0.8rem;
  animation: scroll 2s infinite;
}

@keyframes scroll {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(1.5rem);
    opacity: 0;
  }
}

/* ===== SEÇÃO DE SOLUÇÕES ===== */
.solutions {
  padding: 10rem 0;
  position: relative;
  overflow: hidden;
}

.section-header {
  text-align: center;
  margin-bottom: 6rem;
}

.section-tag {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background-color: rgba(0, 201, 255, 0.1);
  color: var(--secondary);
  border-radius: 2rem;
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  border: 1px solid var(--secondary);
}

.section-title {
  font-family: var(--font-tech);
  font-size: 3.6rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1.5rem;
}

.section-title .highlight {
  color: var(--secondary);
  position: relative;
}

.section-title .highlight::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-accent);
  border-radius: 2px;
}

.section-subtitle {
  font-size: 1.8rem;
  color: var(--text);
  opacity: 0.8;
  max-width: 60rem;
  margin: 0 auto;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  margin-top: 4rem;
}

.solution-card {
  background-color: var(--gray-dark);
  border-radius: 8px;
  padding: 3rem;
  position: relative;
  z-index: 1;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.solution-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--glow);
}

.solution-icon {
  width: 6rem;
  height: 6rem;
  background-color: rgba(0, 201, 255, 0.1);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
  position: relative;
}

.solution-icon i {
  font-size: 2.4rem;
  color: var(--secondary);
}

.solution-card h3 {
  font-family: var(--font-tech);
  font-size: 2rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 1.5rem;
}

.solution-card p {
  font-size: 1.6rem;
  color: var(--text);
  opacity: 0.8;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.solution-features {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.solution-features span {
  padding: 0.5rem 1rem;
  background-color: rgba(0, 201, 255, 0.1);
  color: var(--secondary);
  border-radius: 2rem;
  font-size: 1.2rem;
  font-weight: 500;
}

.solution-link {
  color: var(--secondary);
  text-decoration: none;
  font-size: 1.4rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
}

.solution-link i {
  margin-left: 0.8rem;
  transition: transform 0.3s ease;
}

.solution-link:hover i {
  transform: translateX(5px);
}

.tech-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.2;
}

/* ===== SEÇÃO DE TECNOLOGIAS ===== */
.technologies {
  padding: 10rem 0;
  position: relative;
  overflow: hidden;
}

.tech-showcase {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 4rem;
  margin-bottom: 6rem;
}

.tech-category {
  flex: 0 0 calc(33.333% - 4rem);
  min-width: 280px;
}

.tech-category h3 {
  font-family: var(--font-tech);
  font-size: 2rem;
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 2rem;
  position: relative;
  padding-left: 1.5rem;
}

.tech-category h3::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 20px;
  background: var(--gradient-primary);
  border-radius: 3px;
}

.tech-items {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.tech-item {
  background-color: var(--gray-dark);
  border-radius: 8px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: calc(33.333% - 2rem);
  min-width: 80px;
  transition: all 0.3s ease;
}

.tech-item img {
  width: 4rem;
  height: 4rem;
  object-fit: contain;
  margin-bottom: 1rem;
}

.tech-item span {
  font-size: 1.2rem;
  color: var(--text);
  text-align: center;
}

.tech-3d-showcase {
  width: 100%;
  height: 40rem;
  margin-top: 4rem;
  position: relative;
}

/* ===== SEÇÃO DE CASES ===== */
.cases {
  padding: 10rem 0;
  position: relative;
  overflow: hidden;
}

.cases-timeline {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 4rem 0;
}

.timeline-track {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  background: var(--gradient-primary);
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  margin-bottom: 8rem;
  width: 100%;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-item:nth-child(odd) .timeline-content {
  margin-left: auto;
  padding-left: 6rem;
}

.timeline-item:nth-child(even) .timeline-content {
  margin-right: auto;
  padding-right: 6rem;
}

.timeline-marker {
  position: absolute;
  top: 2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 2rem;
  height: 2rem;
  background-color: var(--secondary);
  border-radius: 50%;
  z-index: 2;
  box-shadow: 0 0 0 4px var(--dark-blue), 0 0 0 6px rgba(0, 201, 255, 0.3);
}

.timeline-content {
  width: 50%;
}

.case-card {
  background-color: var(--gray-dark);
  border-radius: 8px;
  padding: 3rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.case-header {
  margin-bottom: 2rem;
}

.case-header h3 {
  font-family: var(--font-tech);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.case-client {
  font-size: 1.4rem;
  color: var(--secondary);
  font-weight: 500;
}

.case-body {
  margin-bottom: 2rem;
}

.case-body p {
  font-size: 1.6rem;
  color: var(--text);
  opacity: 0.8;
  margin-bottom: 2rem;
}

.case-metrics {
  display: flex;
  gap: 2rem;
}

.metric {
  flex: 1;
}

.metric-value {
  font-family: var(--font-tech);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--accent);
  display: block;
  margin-bottom: 0.5rem;
}

.metric-label {
  font-size: 1.4rem;
  color: var(--text);
  opacity: 0.8;
}

.case-footer {
  display: flex;
  justify-content: flex-end;
}

.case-link {
  color: var(--secondary);
  text-decoration: none;
  font-size: 1.4rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
}

.case-link i {
  margin-left: 0.8rem;
  transition: transform 0.3s ease;
}

.case-link:hover i {
  transform: translateX(5px);
}

/* ===== QUEM SOMOS ===== */
.about-us {
    padding: 10rem 0;
}

.about-us .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.about-us .section-tag {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background-color: rgba(0, 201, 255, 0.1);
    color: var(--secondary);
    border-radius: 2rem;
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    border: 1px solid var(--secondary);
}

.about-us .section-title {
    font-family: var(--font-tech);
    font-size: 3.6rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 1.5rem;
}

.about-us .section-subtitle {
    font-size: 1.8rem;
    color: var(--text);
    opacity: 0.8;
    max-width: 60rem;
    margin: 0 auto;
}

.about-content {
    font-size: 1.6rem;
    color: var(--text);
    opacity: 0.9;
    line-height: 1.6;
    max-width: 80rem;
    margin: 0 auto;
    text-align: justify;
}

/* ===== Serviços ===== */

.services {
    padding: 10rem 0;
    background-color: var(--gray-dark);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-tag {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background-color: rgba(0, 201, 255, 0.1);
    color: var(--secondary);
    border-radius: 2rem;
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    border: 1px solid var(--secondary);
}

.section-title {
    font-family: var(--font-tech);
    font-size: 3.6rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 1.5rem;
}

.section-subtitle {
    font-size: 1.8rem;
    color: var(--text);
    opacity: 0.8;
    max-width: 60rem;
    margin: 0 auto 4rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 colunas */
    gap: 2rem; /* Espaçamento entre os blocos */
}

.service-card {
    background-color: var(--gray);
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px); /* Efeito ao passar o mouse */
}

.service-card h3 {
    font-family: var(--font-tech);
    font-size: 1.8rem;
    color: var(--secondary);
    margin-bottom: 1rem;
}

.service-card p {
    font-size: 1.4rem;
    color: var(--text);
    opacity: 0.8;
}

/* ===== MISSÃO VISÃO VALORES ===== */
.tag-container {
    text-align: center; /* Centraliza todo o conteúdo dentro do contêiner */
    margin: 20px 0; /* Espaçamento superior e inferior */
}

.section-tag {
    display: inline-block; /* Permite aplicar margens e padding */
    font-size: 1.4rem; /* Tamanho da fonte */
    font-weight: 500; /* Negrito */
    margin-bottom: 1rem; /* Espaçamento abaixo do título */
}

.about-content {
    text-align: center; /* Centraliza o texto dentro da seção */
    margin: 5 auto; /* Centraliza o contêiner */
}


/* ===== SEÇÃO DE CONTATO ===== */
.contact {
  position: relative;
  overflow: hidden;
}

.contact-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
  padding: 10rem 0;
}

.contact-info {
  flex: 0 0 calc(50% - 2rem);
}

.contact-methods {
  margin-top: 4rem;
}

.contact-method {
  display: flex;
  align-items: center;
  margin-bottom: 3rem;
}

.method-icon {
  width: 5rem;
  height: 5rem;
  background: rgba(0, 201, 255, 0.1);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 2rem;
}

.method-icon i {
  font-size: 2rem;
  color: var(--secondary);
}

.method-details h3 {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.method-details p {
  font-size: 1.6rem;
  color: var(--text);
  opacity: 0.8;
}

.social-links {
  display: flex;
  gap: 1.5rem;
  margin-top: 4rem;
}

.social-link {
  width: 4.5rem;
  height: 4.5rem;
  background-color: var(--gray-dark);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--text);
  font-size: 1.8rem;
  transition: all 0.3s ease;
}

.social-link:hover {
  background-color: var(--primary);
  color: var(--light);
  transform: translateY(-5px);
}

.contact-form-container {
  flex: 0 0 calc(50% - 2rem);
  background-color: var(--gray-dark);
  border-radius: 10px;
  padding: 4rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-header {
  margin-bottom: 3rem;
}

.form-header h3 {
  font-family: var(--font-tech);
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 1rem;
}

.form-header p {
  font-size: 1.6rem;
  color: var(--text);
  opacity: 0.8;
}

.form-group {
  margin-bottom: 2.5rem;
}

.input-container {
  position: relative;
}

.input-container input,
.input-container textarea,
.input-container select {
  width: 100%;
  padding: 1.2rem 0;
  font-size: 1.6rem;
  color: var(--text);
  background-color: transparent;
  border: none;
  outline: none;
}

.input-container label {
  position: absolute;
  top: 1.2rem;
  left: 0;
  font-size: 1.6rem;
  color: var(--text);
  opacity: 0.6;
  pointer-events: none;
  transition: all 0.3s ease;
}

.input-container input:focus ~ label,
.input-container textarea:focus ~ label,
.input-container select:focus ~ label,
.input-container input:valid ~ label,
.input-container textarea:valid ~ label,
.input-container select:valid ~ label,
.input-container label.active {
  top: -1rem;
  font-size: 1.2rem;
  color: var(--secondary);
  opacity: 1;
}

.input-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--gray-light);
}

.input-container::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: width 0.3s ease;
}

.input-container input:focus ~ .input-line::after,
.input-container textarea:focus ~ .input-line::after,
.input-container select:focus ~ .input-line::after {
  width: 100%;
}

.input-container textarea {
  min-height: 12rem;
  resize: vertical;
}

.contact-map {
  width: 100%;
  height: 40rem;
}

/* ===== FOOTER ===== */
.footer {
  position: relative;
  background-color: var(--dark-blue);
  overflow: hidden;
}

.footer-top {
  padding: 8rem 0 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 4rem;
}

.footer-info {
  grid-column: span 2;
}

.footer-logo {
  margin-bottom: 2rem;
}

.footer-tagline {
  font-size: 1.6rem;
  color: var(--text);
  opacity: 0.8;
  margin-bottom: 2rem;
}

.footer-certifications {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.cert-item {
  font-size: 1.4rem;
  color: var(--text);
  display: flex;
  align-items: center;
}

.cert-item i {
  color: var(--secondary);
  margin-right: 0.8rem;
}

.footer-links h3 {
  font-family: var(--font-tech);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 2rem;
  position: relative;
  padding-bottom: 1rem;
}

.footer-links h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 3rem;
  height: 2px;
  background: var(--gradient-primary);
}

.footer-links ul {
  list-style: none;
}

.footer-links ul li {
  margin-bottom: 1.5rem;
}

.footer-links ul li a {
  font-size: 1.6rem;
  color: var(--text);
  opacity: 0.8;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  padding-left: 1.5rem;
}

.footer-links ul li a::before {
  content: '→';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--secondary);
  font-size: 1.2rem;
  opacity: 0;
  transition: all 0.3s ease;
}

.footer-links ul li a:hover {
  color: var(--secondary);
  opacity: 1;
  padding-left: 2rem;
}

.footer-links ul li a:hover::before {
  opacity: 1;
}

.footer-newsletter p {
  font-size: 1.6rem;
  color: var(--text);
  opacity: 0.8;
  margin-bottom: 2rem;
}

.newsletter-form .form-group {
  position: relative;
  margin-bottom: 0;
}

.newsletter-form input {
  width: 100%;
  padding: 1.2rem 5rem 1.2rem 1.5rem;
  background-color: var(--gray);
  border: none;
  border-radius: 4px;
  font-size: 1.4rem;
  color: var(--text);
  outline: none;
}

.newsletter-form button {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 5rem;
  background-color: var(--primary);
  border: none;
  border-radius: 0 4px 4px 0;
  color: var(--light);
  font-size: 1.6rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.newsletter-form button:hover {
  background-color: var(--primary-dark);
}

.footer-bottom {
  padding: 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom-content p {
  font-size: 1.4rem;
  color: var(--text);
  opacity: 0.8;
}

.footer-legal {
  display: flex;
  gap: 2rem;
}

.footer-legal a {
  font-size: 1.4rem;
  color: var(--text);
  opacity: 0.8;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-legal a:hover {
  color: var(--secondary);
  opacity: 1;
}

.footer-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* ===== telas de tamanhos diferente ===== */
@media (max-width: 1200px) {
  .timeline-item:nth-child(odd) .timeline-content,
  .timeline-item:nth-child(even) .timeline-content {
    width: 45%;
  }
}

@media (max-width: 992px) {
  .contact-wrapper {
    flex-direction: column;
  }
  
  .contact-info,
  .contact-form-container {
    flex: 0 0 100%;
  }
  
  .tech-category {
    flex: 0 0 calc(50% - 2rem);
  }
  
  .cases-timeline {
    padding-left: 3rem;
  }
  
  .timeline-track {
    left: 0;
  }
  
  .timeline-marker {
    left: 0;
  }
  
  .timeline-item:nth-child(odd) .timeline-content,
  .timeline-item:nth-child(even) .timeline-content {
    width: 100%;
    margin-left: 3rem;
    padding-left: 3rem;
    padding-right: 0;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2.8rem;
  }
  
  .tech-category {
    flex: 0 0 100%;
  }
  
  .tech-item {
    width: calc(50% - 1rem);
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-info {
    grid-column: span 1;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    gap: 2rem;
  }
  
  .contact-form-container {
    padding: 3rem 2rem;
  }
}

@media (max-width: 576px) {
  .tech-item {
    width: 100%;
  }
  
  .case-metrics {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .footer-certifications,
  .footer-legal {
    flex-direction: column;
    gap: 1rem;
  }
}

.whatsapp-button {
    display: inline-flex;
    align-items: center;
    background-color: #0af05e; /* Cor do WhatsApp */
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.6rem;
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s, background-color 0.3s;
    position: fixed; /* Fixo na tela */
    bottom: 30px; /* Distância do fundo */
    right: 85px; /* Distância da direita */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    animation: pulse 2s infinite; /* Animação pulsante */
}

.whatsapp-button:hover {
    transform: scale(1.1); /* Aumenta o botão ao passar o mouse */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    background-color: #04f538; /* Escurece a cor ao passar o mouse */
}

.whatsapp-button i {
    margin-right: 0.5rem; /* Espaço entre ícone e texto */
}

/* Animação pulsante */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.tech-category1 {
    font-family: var(--font-tech);
  font-size: 2rem;
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 2rem;
  text-align: center;
  margin: 20px 0;
  padding-left: 1.5rem;
    
}

@media (max-width: 992px) {
  /* Ajustes para tablets e dispositivos menores */
  .hero .container {
    flex-direction: column;
  }
  
  .hero-content, 
  .hero-visual {
    flex: 0 0 100%;
    max-width: 100%;
  }
  
  .hero-content {
    text-align: center;
    margin-bottom: 4rem;
  }
  
  .hero-stats {
    justify-content: center;
  }
  
  .hero-cta {
    justify-content: center;
  }
  
  .solutions-grid,
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .tech-category {
    flex: 0 0 calc(50% - 2rem);
  }
}

@media (max-width: 768px) {
  /* Ajustes para smartphones */
  html {
    font-size: 55%; /* Reduz o tamanho base da fonte */
  }
  
  .glitch-text {
    font-size: 3.2rem;
  }
  
  .solutions-grid,
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .tech-category {
    flex: 0 0 100%;
  }
  
  .tech-items {
    justify-content: center;
  }
  
  .tech-item {
    width: calc(50% - 2rem);
  }
  
  .main-nav {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    height: auto;
    background-color: rgba(10, 25, 47, 0.95);
    padding: 2rem;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  }
  
  .main-nav.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  
  .main-nav ul {
    flex-direction: column;
    align-items: center;
  }
  
  .main-nav ul li {
    margin: 1rem 0;
    margin-left: 0;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  .contact-wrapper {
    padding: 6rem 0;
  }
  
  .contact-form-container {
    padding: 3rem 2rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-links h3::after {
    left: 50%;
    transform: translateX(-50%);
  }
}

@media (max-width: 576px) {
  /* Ajustes para smartphones pequenos */
  .section-title {
    font-size: 2.4rem;
  }
  
  .tech-item {
    width: calc(50% - 1rem);
  }
  
  .hero-stats {
    flex-direction: column;
    align-items: center;
  }
  
  .stat-item {
    margin-right: 0;
    margin-bottom: 2rem;
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  .btn-secondary {
    margin-left: 0;
    margin-top: 1.5rem;
  }
  
  .whatsapp-button {
    padding: 1.6rem 1.6rem;
    font-size: 1.4rem;
    right: 80px;
    bottom: 20px;
  }
}

/*ajuste no CSS */
.mobile-menu-btn {
  display: none;
  cursor: pointer;
  z-index: 101;
}

@media (max-width: 768px) {
  .mobile-menu-btn {
    display: block;
  }
  
  .main-nav {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background-color: var(--dark-blue);
    padding: 2rem;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 100;
  }
  
  .main-nav.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  
  .main-nav ul {
    flex-direction: column;
  }
  
  .main-nav ul li {
    margin: 1.5rem 0;
    margin-left: 0;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .footer-info {
    grid-column: span 1;
    text-align: center;
  }
  
  .footer-links {
    text-align: center;
  }
  
  .footer-links h3::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .footer-bottom-content {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
  
  .footer-legal {
    justify-content: center;
  }
}
