@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

* {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Montserrat", sans-serif;
}

/*===== INTERMEDIARIA STYLES ====*/
.escolha__projetos {
  padding: 0 3em;
}
.escolha__projetos--title {
  margin: 5% 0;
  font-size: 1.875em;
  font-weight: 700;
  text-align: center;
  color: #5b5b5f;
}
.escolha__projetos__boxes {
  /* max-width: 1390px; */
  margin: 5% auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
}
.escolha__projetos__box--holder {
  margin: 0 auto;
  width: 450px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  border-radius: 10px;
  background-color: #fff;
  padding: 1.5em 3em 2em;
  box-shadow: 3px 4px 9px #ccc;
  text-align: left;
  border: 1px solid transparent;
  transition: all 0.3s ease;
  cursor: pointer;
}
.escolha__projetos__box--holder:hover {
  border: 1px solid #f3911d;
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(243, 145, 29, 0.15), 3px 4px 9px #ccc;
  background-color: #fefefe;
}
.escolha__projetos__box {
  flex: 0 0 25%;
}
.escolha__projetos__box-title {
  font-size: 1.5em;
  font-weight: 700;
  color: #f3911d;
  margin-top: 10px;
}
.escolha__projetos__box-text {
  margin: 10px auto 20px;
  display: block;
  font-size: 1em;
  color: #5b5b5f;
  height: 64px;
}
.escolha__projetos__cta {
  color: #f2f2f2;
  background-color: #f3911d;
  text-align: center;
  border-radius: 10px;
  padding: 10px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  margin-bottom: unset;
}
.escolha__projetos__cta:hover {
  background-color: #e0840f;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(243, 145, 29, 0.3);
}
@media (max-width: 768px) {
  .escolha__projetos {
    padding: 6vh 2em 10vh 2em;
  }
  .escolha__projetos--title {
    font-size: 1.125em;
  }
  .escolha__projetos__box {
    flex: 1 0 100%;
    margin: 20px 0;
  }
  .escolha__projetos__box--holder {
    min-height: auto;
    width: 100%;
    text-align: center;
    height: 260px;
  }
  .escolha__projetos__box-title {
    font-size: 16px;
  }
  .escolha__projetos__box-text {
    font-size: 1em;
    height: 80px;
  }
}
/*===== INTERMEDIARIA STYLES ====*/
