/* Tipografia hero text */
.main-text {
  font-family: var(--font-primary);
  color: white;
}

.main-text h1 {
  font-size: var(--font-size-6xl);
  font-weight: 700;
  line-height: 1.1;
  margin-top: 0.2rem;
  margin-bottom: 0.5rem;
}

.main-text h2 {
  font-size: var(--font-size-xl);
  font-weight: 500;
  margin-bottom: 1rem;
}

.main-text p {
  font-family: var(--font-secondary);
  font-size: var(--font-size-base);
  line-height: 1.5;
  margin-bottom: 2rem;
}

.background {
  position: absolute;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  object-fit: cover;
  z-index: -1;
}

.hero-text::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.3); /* Adjust opacity as needed */
  z-index: 1;
  pointer-events: none; /* Allows clicks to pass through */
}

/* Position hero */
.main-text {
  padding-left: var(--content-horizontal-padding);
  box-sizing: border-box;
  position: relative;
  z-index: 2;
}

.hero-text {
  height: 100vh;
  display: flex;
  align-items: center;
}

#contact-us-hero {
  background-color: #0057ff;
  color: white;
  border: none;
  padding: 15px 35px;
  font-size: 16px;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 1em;
}

/* Segundo viewport */
.section-our-services h2 {
  font-family: var(--font-primary);
  font-size: var(--font-size-4xl);
  color: #333;
  margin-bottom: 2rem;
}

.section-our-services p {
  font-family: var(--font-secondary);
  font-size: var(--font-size-lg);
  line-height: 1.6;
  color: #666;
  max-width: 800px;
}

.section-our-services {
  background-color: white;
}

.container-our-services {
  margin-bottom: 5rem;
}

.container-services-title {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--content-horizontal-padding);
  justify-items: center;
  text-align: center;
  margin-bottom: 4rem;
}

.services-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.service-card {
  background: white;
  gap: 2rem;
  max-width: 240px;
  padding: 40px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.elementor-icon svg {
  width: 3em;
  height: 3em;
  position: relative;
  box-sizing: border-box;
}

.help-us-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: white;
  width: 100%;
  max-width: 1000px; /* or 90%, or adjust as needed */
  margin: 2em auto 4em auto;
  padding: 2em;
  position: relative;
  box-sizing: border-box;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.help-us-text {
  max-width: 70%;
}

.help-us h2 {
  font-family: var(--font-primary);
  font-size: var(--font-size-4xl);
  color: black; /* Adjusted to match the blue in your screenshot */
  margin-bottom: 10px;
}

.button #contact-us {
  background-color: #0057ff;
  color: white;
  border: none;
  padding: 15px 25px;
  font-size: 16px;
  border-radius: 8px;
  cursor: pointer;
}

@media (max-width: 800px) {
  /* Seção Hero */
  .main-text {
    margin-top: -8em;
    text-align: center;
    padding: 0;
  }

  .main-text h2 {
    font-size: var(--font-size-sm);
    font-weight: bold;
    padding-bottom: 1.5rem;
    margin: 0 auto;
  }

  .main-text h1 {
    font-size: var(--font-size-3xl);
    max-width: 80%;
    margin: 0 auto;
    padding-bottom: 2rem;
  }

  .main-text p {
    font-size: var(--font-size-base);
    max-width: 80%;
    margin: 0 auto;
    padding-bottom: 3em;
  }

  #contact-us-hero {
    padding: 1em 1em;
    width: 50%;
  } 

   /* Seção Services */
  .service-card {
    max-width: 90%;
  }

  /* Seção Help Us */

  .help-us-container {
    flex-direction: column;
    text-align: center;
    width: 80%;
    padding: 1em;
  }

  .help-us-text {
    max-width: 80%;
    padding-bottom: 2rem;
  }

  #user-suggestion {
    text-align: center;
  }
}
