* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  background: #0b0b0b;
  color: #fff;
  line-height: 1.6;
}

/* CONTAINER */
.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

/* HEADER */
.header {
  position: sticky;
  top: 0;
  backdrop-filter: blur(10px);
  /*background: rgba(0,0,0,0.8);*/
  background: rgba(0,140,255,0.6);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  z-index: 100;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.logo {
  font-weight: 700;
  font-size: 18px;
}

/* BUTTON */
.btn {
  padding: 12px 22px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn.primary {
  background: linear-gradient(135deg, #3c50ff, #00ffff);
  color: #000;
}

.btn.primary:hover {
  transform: translateY(-2px);
}

.btn.ghost {
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
}

.btn.big {
  padding: 16px 32px;
  font-size: 18px;
}

/* HERO */
.hero {
  padding: 100px 0;    
}

.hero-content {
  display: flex;  
  align-items: center;
  gap: 60px;  
}

.hero-text h1 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 10px;  
}

.hero-text p {
  color: #aaa;
  margin-bottom: 30px;
  font-size: 18px;
}

.hero-buttons {
  display: flex;
  gap: 15px;
}

/* GLASS EFFECT */
.glass {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(20px);
  border-radius: 16px;
  padding: 40px;
}

/* SECTIONS */
.section {
  padding: 100px 0;
}

.section.light {
  background: #111;
}

.section.dark {
  background: #070707;
}

.section.highlight {
  background: linear-gradient(135deg, #00c85320, #000);
}

.section.cta {
  background: #000;
  text-align: center;
}

/* GRID */
.grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.card {
  text-align: center;
  font-weight: 600;
}

/* SPLIT */
.split {
  display: flex;
  align-items: center;
  gap: 60px;
}

/* STEPS */
.steps {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
}

.step {
  padding: 20px 30px;
  border-radius: 10px;
  background: rgba(255,255,255,0.05);
}

/* TEXT */
h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.subtitle {  
  margin-bottom: 20px;
}

.center {
  text-align: center;
}

/* FOOTER */
/*.footer {
  padding: 40px 0;
  text-align: center;
  color: #666;
}*/

.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  padding-top: 20px;
  background: #111;
  color: #fff;
}

.footer img {
  height: 35px;
}

/* RESPONSIVO */
@media (max-width: 900px) {
  .hero-content,
  .split {
    flex-direction: column;
  }

  .grid {
    grid-template-columns: 1fr 1fr;
  }

  .steps {
    flex-direction: column;
  }
}

/* TECH SECTION */
.section.tech {
  background: linear-gradient(180deg, #050505, #000);
  border-top: 1px solid rgba(255,255,255,0.05);
}

.tech-box {
  text-align: center;
  max-width: 700px;
}

.tech-text h2 {
  font-size: 28px;
  margin-bottom: 15px;
}

.tech-text p {
  color: #888;
  margin-bottom: 30px;
}

.tech-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

/* GRID COMO FUNCIONA */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 60px;
}

/* CARD */
.step-card {
  text-align: center;
  padding: 25px;
  border-radius: 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  transition: 0.3s;
}

.step-card:hover {
  transform: translateY(-6px);
  border-color: rgb(50, 192, 251); /*rgba(0, 200, 83, 0.4);*/
}

/* IMAGEM */
.step-image {
  height: 140px;
  border-radius: 10px;
  margin-bottom: 20px;
  text-align: center;
}

/* TITULO */
.step-card h3 {
  font-size: 18px;
  margin-top: 70px;
  margin-bottom: 10px;
}

/* TEXTO */
.step-card p {
  color: #aaa;
  font-size: 14px;
}

/* RESPONSIVO */
@media (max-width: 900px) {
  .steps-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 500px) {
  .steps-grid {
    grid-template-columns: 1fr;
  }
}

.logo img {
  height: 40px;
  width: auto;
  display: block;
}

/* ajuste fino no header */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.image img {
  width: 130%;
  max-width: 400px; /* controla o tamanho */
  height: auto;
  border-radius: 12px;
}

.image img {
  max-width: 500px;
}
.hero-title span {
  white-space: nowrap;
}

.hero-title {
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.2;
}

.img-f3 img {
  max-height: 200px;
  padding-left: 
}

.img-f4 img {
  max-height: 200px;
  padding-left: 
}

.img-f5 img {
  max-height: 200px;
  padding-left: 
}

.img-f6 img {
  max-height: 200px;
  padding-left: 
}

.img-f7 img {
  max-height: 200px;
  padding-left: 
}

.img-f8 img {
  max-height: 200px;
  padding-left: 
}

.img-f9 img {
  max-height: 200px;
  padding-left: 
}

.img-f10 img {
  max-height: 200px;
  padding-left: 
}

.img-f11 img {
  max-height: 200px;
  padding-left: 
}

.img-f12 img {
  max-height: 200px;
  padding-left: 
}

.img-f13 img {
  max-height: 200px;
  padding-left: 
}

.img-f14 img {
  max-height: 200px;
  padding-left: 
}

.img-f15 img {
  max-height: 450px;
  padding-left: 
}

.img-f16 img {
  max-height: 450px;
  padding-left: 
}

.img-f17 img {
  max-height: 450px;
  padding-left: 
}

.linha-azul {
  border: none;
  height: 2px;
  background: linear-gradient(90deg, transparent, #00c8ff, transparent);
  margin: 40px 0;
}

