.section-title {
  margin-bottom: 2rem;
  text-align: var(--text-align);
}

/* HERO SECTION */
.hero {
  background-color: var(--brand-color);
  position: relative;
  width: 85%;
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 5vw;
  border-radius: var(--border-radius);
}

.hero h1 {
  color: #fff;
  font-size: 2rem;
  z-index: 2;
  width: 160px;
}

.hero img {
  right: 0;
  bottom: 0;
  height: 110%;
  width: 40%;
  object-fit: contain;
  position: absolute;
}

.herosearch {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
}

.herosearch img {
  max-width: 70%;
}

.herolinks {
  display: none;
  align-items: stretch;
  justify-content: space-evenly;
  gap: 0.8rem;
  width: 100%;
  flex-wrap: wrap;
}

.herolinks a {
  padding: 0.6rem;
  flex: 1;
  text-align: center;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  font-size: 0.8rem;
  color: var(--secondary-color);
  min-width: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 425px) {
  .hero {
    width: 100%;
    border-radius: 0;
  }

  .herolinks {
    display: flex;
  }
}

/* OWN SECTION */
.own-grid {
  display: flex;
  align-items: stretch;
  justify-content: space-evenly;
  gap: 3rem 2.5rem;
  flex-wrap: wrap;
}

.own-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-width: 260px;
  max-width: 380px;
}

.own-item i {
  width: 1.2rem;
}

.own-item h3 {
  font-size: 1.6rem;
}

.own-item p {
  color: var(--sub-color);
}

.own-item ul {
  display: flex;
  flex-direction: column;
  margin-top: 1rem;
  gap: 1rem;
}

.own-item a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  transition: all 0.2s;
  color: var(--secondary-color);
}

.own-item a:hover {
  font-weight: 900;
  background-color: var(--brand-color);
  color: #fff;
}

.own-item a:hover i {
  filter: invert(1);
}

@media (max-width: 768px) {
  .own-grid {
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
}

@media (max-width: 675px) {
  .own-item:not(:last-child) {
    border-bottom: 1px solid var(--secondary-border-color);
    padding-bottom: 3rem;
  }
}

/* DOUBTS SECTION */
.doubts-list {
  border-top: 1px solid var(--secondary-border-color);
  border-bottom: 1px solid var(--secondary-border-color);
  text-align: var(--text-align);
}

.doubts-list ul {
  display: flex;
  flex-direction: column;
}

.doubts-list li {
  border-bottom: 1px solid var(--secondary-border-color);
  padding-block: 1rem;
}

.doubts-list li:last-child {
  border-bottom: none;
}

.doubts-list a:hover {
  text-decoration: underline;
  color: var(--brand-color);
}

/* CONTACT SECTION */
.contact-grid {
  display: flex;
  gap: 1rem 2.5rem;
  flex-wrap: wrap;
  justify-content: space-evenly;
  padding-bottom: 6rem;
}

.contact-item {
  display: flex;
  gap: 1.8rem;
  flex: 1;
  align-items: center;
  padding: 1rem;
  border-radius: var(--border-radius);
  min-width: 260px;
  max-width: 420px;
  border: 1px solid var(--secondary-border-color);
}

.contact-item i {
  width: 4rem;
}

.contact-item div {
  color: var(--secondary-color);
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.contact-item strong {
  color: var(--brand-color);
  font-weight: bold;
}

.contact-item ul {
  display: flex;
  flex-direction: column;
  padding-left: 20px;
}

.contact-item li {
  list-style: disc;
}

@media (max-width: 425px) {
  .contact-item {
    flex-direction: column;
    text-align: center;
  }
}
