/* AZUL => 20386D */
/* VERDE => 1DAF4C */
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
body {
  min-height: 100vh;
  font-family: "Roboto", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.container {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  color: #20386d;
}
.container h1 {
  font-weight: 300;
  font-size: 2.5rem;
}
.container h4 {
  padding: 2rem 1rem;
}
#all-plans {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  /* background-color: red; */
}
#plan {
  max-height: 700px;
  height: calc(100vh - 2rem);
  max-width: 400px;
  border-radius: 1rem;
  margin: 1rem;
  overflow: hidden;
  box-shadow: 0.1rem 0.1rem 0.5rem #c9c9c9;
}
.plan-title {
  width: 100%;
  height: 20%;
  background-color: #1daf4c;
  display: flex;
  align-items: center;
  justify-content: center;
}
.plan-title h2 {
  font-weight: 500;
  font-size: 1.8rem;
  color: #fff;
}
.plan-content {
  padding: 1rem;
  height: 80%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 300px;
}
.plan-detail {
  width: 100%;
  /* text-align: center; */
  padding: 0 0.5rem;
  flex: 1;
  display: flex;
  /* flex-direction: column; */
  /* align-items: center; */
  justify-content: start;
  position: relative;
}
.plan-detail-title {
  width: 100%;
  text-align: center;
  padding: 0 0.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  font-size: 1.5rem;
}
.plan-detail p {
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}
.plan-detail i {
  margin-right: 0.5rem;
}
.plan-discount {
  border-radius: 0.5rem;
  width: 100%;
  padding: 0.5rem;
  background-color: #c10000;
  color: #fff;
  text-align: center;
}
.fa-check {
  color: #1daf4c;
}
.fa-times {
  color: #c10000;
  font-size: 1.45rem;
}
p {
  font-size: 1rem;
}
.plan-detail h3 {
  font-size: 1.8rem;
}
small {
  font-size: 0.8rem;
}
button {
  position: absolute;
  right: 0;
  top: 0;
  border: none;
  background-color: transparent;
  cursor: pointer;
  padding: 0.3rem 0.5rem;
}
i {
  color: #0000ee;
  font-size: 1rem;
}
/* modal */

.modal {
  background-color: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  right: 0;
  display: none;
  align-items: center;
  justify-content: center;
}

.modal-content {
  position: relative;
  width: 90%;
  border-radius: 1rem;
  max-width: 30rem;
  /* min-height: 25rem; */
  background-color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.5rem;
}

.modal-content h2 {
  /* background-color: red; */
  font-size: 1.4rem;
  font-weight: 300;
  flex: 1;
  width: 100%;
  max-height: 5rem;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-bottom: 2rem;
  color: #1daf4c;
}
.modal-content p {
  flex: 2;
  font-weight: 300;
  font-size: 1rem;
  /* background-color: yellow; */
}

.modal-content .icon-about {
  right: 1rem;
  top: 1rem;
}

.modal-content .icon-about i {
  font-size: 2rem;
  color: #20386d;
}

.line {
  height: 1px;
  width: 100%;
  background-color: #c9c9c9;
  margin: 8px 0 0 0;
}
