body, html {
  font-family: 'Josefin Sans', sans-serif;
}

.service-hero {
  position: relative;
  height: 100vh;
  width: 100%;
  color: var(--white);
  overflow: hidden;
  margin-top: -70px; 
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.hero-background::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0));
}

.hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: relative;
  padding: 3rem;
  max-width: 650px;
  margin-top: calc(70px + 10rem); 
  z-index: 1;
}

.hero-content h1 {
  font-size: 3.8rem;
  margin-bottom: 0.8rem;
  font-weight: 600;
  line-height: 1.1;
}

.hero-content h2 {
  font-size: 1.4rem;
  margin-bottom: 2.5rem;
  font-weight: 400;
  line-height: 1.4;
}

.hero-content h2 .highlight {
  color: var(--green);
}

.hero-description {
  margin-bottom: 3rem;
  line-height: 1.6;
  font-size: 1.25rem;
  max-width: 550px;
}

.hero-description .highlight {
  color: var(--green);
}

.hero-buttons {
  display: flex;
  gap: 1.2rem;
}

.btn-primary, .btn-secondary {
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  text-align: center;
  font-size: 1.1rem;
}

.btn-primary {
  background-color: var(--white);
  color: var(--black-100);
  border: 2px solid var(--white);
}

.btn-secondary {
  background-color: var(--red);
  color: var(--white);
  border: 2px solid var(--red);
}

.btn-primary:hover {
  background-color: transparent;
  color: var(--white);
  border-color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.btn-secondary:hover {
  background-color: var(--white);
  color: var(--red);
  border-color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 3rem;
  }
  
  .hero-content h2 {
    font-size: 1.2rem;
  }
  
  .hero-description {
    font-size: 1.1rem;
  }
  
  .btn-primary, .btn-secondary {
    padding: 0.9rem 2rem;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .hero-content {
    padding: 2rem;
    margin-top: 6rem;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
  }
  
  .btn-primary, .btn-secondary {
    width: 100%;
  }
}

/* Linear para div */
.dark-gradient-banner {
  background: linear-gradient(to bottom, #000000, #ff0000);
  color: white;
  padding: 50px;
  width: 100%;
}

.gradient-content {
  padding: 10px;
}