#two {
  position: relative;
  display: flex;
  align-items: end;
  justify-content: center;
  height: 70vh;
  overflow: hidden;
}

#two::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../../images/nossamissao.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 0;
}

#two::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(116, 105, 93, 0.46);
  z-index: 1;
}

#two .inner {
  position: relative;
  z-index: 2;
  color: white;
}

#two p {
  font-weight: bold;
  font-size: medium;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  color: white;
  background-color: #1e2235;
}

.hero {
  position: relative;
  height: 60vh;
  background-image: url("../../images/pic07.jpg");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero .overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(116, 105, 93, 0.7); /* #74695D with alpha */
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 3rem;
  margin: 0;
}

.hero h2 {
  font-size: 1.8rem;
  font-weight: 300;
  margin-top: 1rem;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  padding: 4rem 2rem;
  background-color: #2e324a;
}

.feature {
  text-align: center;
  padding: 2rem;
  background-color: #3a3f5c;
  border-radius: 10px;
}

.feature i {
  margin-bottom: 1rem;
  color: white;
}

.feature h3 {
  margin-bottom: 1rem;
}

.feature p {
  color: #d1d1d1;
  font-size: 0.95rem;
}

.send-contato-actions-wrapper {
  display: flex;
  gap: 10px;
  justify-content: space-between;
}

.icon-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2em;
  height: 2em;
  border-radius: 50%;
  background-color: white;
  transition: all 0.3s ease;
  text-decoration: none !important;
}

.icon-wrapper:hover {
  background-color: #6ec3de;
}

.ul-icon-wrapper {
  display: inline-flex;
  /* align-items: center; */
  justify-content: center;
  list-style: none !important;
  padding: 0;
  margin: 0;
}

.x-icon-svg {
  width: 1em;
  height: 2em;
    display: inline-flex;
  align-items: center;
  justify-content: center;
}