/* Banner responsivo para mobile */
.hero-banner {
  position: relative;
  min-height: 60vh;
  padding: 120px 0 60px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to bottom, rgba(10, 10, 10, 0.8), rgba(10, 10, 10, 0.95)), url("../imgs/devweb.webp");
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.hero-banner-content {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  padding: 50px 20px;
}

.hero-banner h1 {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--text-color);
  line-height: 1.1;
}

.hero-banner h1 span {
  color: var(--primary-color);
  position: relative;
  display: inline-block;
}

.hero-banner h1 span::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 8px;
  bottom: 5px;
  left: 0;
  background-color: var(--primary-color);
  opacity: 0.3;
  z-index: -1;
}

.hero-banner p {
  font-size: 1.2rem;
  max-width: 850px;
  margin: 0 auto 30px;
  color: var(--gray-text);
}

.service-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 25px;
  margin: 40px 0;
}

.service-feature-card {
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: var(--border-radius-md);
  padding: 25px;
  transition: all 0.3s ease;
  border-left: 3px solid var(--primary-color);
}

.service-feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.service-feature-card i {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 15px;
  display: block;
}

.service-feature-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--text-color);
}

.service-feature-card p {
  font-size: 0.95rem;
  color: var(--gray-text);
  line-height: 1.5;
}

.process-steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin: 40px 0;
}

.process-step {
  flex: 1;
  min-width: 200px;
  max-width: 300px;
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: var(--border-radius-md);
  padding: 25px;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
}

.process-step:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.process-step-number {
  width: 40px;
  height: 40px;
  background-color: var(--primary-color);
  color: var(--bg-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  margin: 0 auto 15px;
}

.process-step h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--text-color);
}

.process-step p {
  font-size: 0.95rem;
  color: var(--gray-text);
}

/* Correção específica para o menu mobile */
@media (max-width: 992px) {
  nav ul {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    max-width: 80%;
    height: 100vh;
    background-color: var(--menu-bg);
    z-index: 1000;
    padding: 100px 20px 20px;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
    align-items: center;
    justify-content: flex-start;
    overflow-y: auto;
    transition: right 0.4s ease;
  }
  
  nav ul.active {
    right: 0;
  }
  
  nav ul li {
    margin: 15px 0;
    width: 100%;
    text-align: center;
  }
  
  nav ul li:last-child {
    margin: 15px 0;
  }
  
  .header-cta {
    margin-left: 0;
    margin-top: 15px;
    display: inline-block;
  }
  
  
}

/* Responsividade */
@media (max-width: 768px) {
  .hero-banner {
    min-height: 70vh;
    padding: 100px 0 40px;
  }
  
  .hero-banner h1 {
    font-size: 2rem;
    line-height: 1.3;
  }
  
  .hero-banner p {
    font-size: 1rem;
    padding: 0 15px;
  }
  
  .services-list {
    gap: 10px;
    margin: 20px auto;
  }
  
  .service-tag {
    padding: 6px 12px;
    font-size: 0.8rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 300px;
    margin: 20px auto 0;
  }
  
  .cta-btn {
    width: 100%;
    text-align: center;
  }
}

/* Ajustes para telas muito pequenas */
@media (max-width: 480px) {
  .hero-banner h1 {
    font-size: 1.8rem;
  }
  
  .hero-banner p {
    font-size: 0.95rem;
  }
  
  .service-tag {
    padding: 5px 10px;
    font-size: 0.75rem;
  }
} 