@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "poppins", sans-serif;
}

body {
  background-color: #06121e;
}

header {
  width: 100%;
  height: 80vh;
  background-color: #FF5733;
  flex-wrap: wrap;
  text-align: center;
}
header .presentation {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: #edeaef;
}
header .presentation h2 {
  font-size: 2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2rem;
  margin-bottom: 2rem;
}
header .presentation p {
  font-size: 1.1rem;
  font-weight: 400;
  margin-bottom: 2rem;
}
header .presentation a {
  text-decoration: none;
  color: #edeaef;
}
header .presentation a ion-icon {
  font-size: 5rem;
  margin-top: 2rem;
  animation: pop 1s ease-in-out infinite;
}
@keyframes pop {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}

@media screen and (max-width: 768px) {
  .presentation {
    width: 400px;
  }
}
/* ESTATISTICAS */
.estatisticas {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #06121e;
  color: #edeaef;
  gap: 2rem;
  padding: 3rem;
}
.estatisticas .dataStats {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-wrap: wrap;
}
.estatisticas .dataStats .datas {
  width: 300px;
}
.estatisticas .dataStats .datas h2 {
  color: #FF5733;
  font-size: 4rem;
}

/* DORES */
.dores {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #FF5733;
  color: #edeaef;
  gap: 2rem;
  padding: 5rem;
}
.dores .doresTittle {
  font-size: 20px;
  margin-bottom: 15px;
  text-align: center;
  padding: 10px;
}
.dores .cards {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}
.dores .cards .object {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-color: #edeaef;
  width: 200px;
  height: 200px;
  color: #FF5733;
  border-radius: 10px;
  padding: 10px;
  box-shadow: rgba(0, 0, 0, 0.5) 0px 5px 15px;
}
.dores .cards ion-icon {
  margin-top: 10px;
  font-size: 3rem;
  color: #FF5733;
}

/* FAQ */
.wrapper {
  width: 100%;
  color: #edeaef;
  text-align: center;
  padding-top: 3rem;
}
.wrapper .accordion {
  margin: 60px auto;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 600px;
}
.wrapper .accordion li {
  list-style: none;
  width: 100%;
  margin: 20px;
  padding: 10px;
  border-radius: 8px;
  background: #FF5733;
  text-align: left;
}
.wrapper .accordion li li {
  list-style: disc;
  height: auto;
}
.wrapper .accordion li label {
  display: flex;
  align-items: center;
  padding: 10px;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
}
.wrapper .accordion li label::before {
  content: "+";
  margin-right: 10px;
  font-size: 24px;
  font-weight: 600;
}
.wrapper .accordion li input[type=radio] {
  display: none;
}
.wrapper .accordion li input[type=radio]:checked + label + .content {
  max-height: 500px;
  padding: 10px 10px 20px;
}
.wrapper .accordion li input[type=radio]:checked + label::before {
  content: "-";
}
.wrapper .accordion .content {
  color: #edeaef;
  padding: 0 10px;
  line-height: 26px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s, padding 0.5s;
}

/* SERVIÇOS */
.nossos-servicos {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #FF5733;
  color: #edeaef;
  padding: 20px;
  transform: translateY(-60px);
}
.nossos-servicos h1 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 2rem;
  margin-top: 20px;
}
.nossos-servicos .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.nossos-servicos .container .cards {
  margin-top: 10px;
  margin-left: 10px;
  text-align: center;
  display: flex;
  flex-direction: column;
  width: 300px;
  height: auto;
  gap: 2rem;
  justify-content: space-around;
  align-items: center;
  background-color: #edeaef;
  color: #FF5733;
  border-radius: 20px;
  transition: all 0.5s;
  box-shadow: rgba(0, 0, 0, 0.5) 0px 5px 15px;
}
.nossos-servicos .container .cards .paragraph {
  display: none;
}
.nossos-servicos .container .cards .paragraph.active {
  display: block;
  width: 275px;
}
.nossos-servicos .container .cards button {
  width: 100px;
  border: none;
  background-color: #FF5733;
  color: #edeaef;
  font-size: 1rem;
  font-weight: 600;
  padding: 10px;
  border-radius: 30px;
  margin-bottom: 10px;
}
.nossos-servicos .container .cards button:hover {
  background-color: #ffa500;
  cursor: pointer;
}
.nossos-servicos .container .cards:hover {
  box-shadow: 60px 60px 100px -1px rgba(0, 0, 0, 0.15);
}

/* PODE INTERESSAR */
.interesses {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  background-color: #FF5733;
}
.interesses h2 {
  margin-top: 50px;
}
.interesses .inter {
  margin-top: 50px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: 100%;
  text-align: center;
  margin-bottom: 50px;
}
.interesses .inter .cards {
  background-color: #edeaef;
  width: 350px;
  height: 350px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  text-align: center;
  flex-direction: column;
  justify-content: space-around;
  transition: transform 0.1s linear;
  text-decoration: none;
  color: #FF5733;
}
.interesses .inter .cards ion-icon {
  font-size: 50px;
  color: #FF5733;
}
.interesses .inter .cards:hover {
  transform: scale(1.05);
}

@media screen and (max-width: 768px) {
  .inter {
    padding: 10px;
  }
}
/* RODAPÉ */
footer {
  width: 100%;
  color: #06121e;
}
footer .footer-content {
  background-color: #171921;
  display: flex;
  justify-content: space-around;
  padding: 3rem 3.5rem;
}
footer .footer-content #footer-contacts {
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}
footer .footer-content #footer-contacts h1 {
  margin-bottom: 0.7rem;
}
footer .footer-content #footer-contacts .footer-email {
  display: flex;
  padding-top: 15px;
  gap: 0.5rem;
}
footer .footer-content #footer-contacts .footer-email .fa-envelope {
  font-size: 27px;
  color: #FF5733;
}
footer .footer-content #footer-contacts .footer-email p {
  color: #FF5733;
}
footer .footer-content #footer-contacts .footer-email p:hover {
  color: #ffa500;
}
footer .footer-content #footer-social-media {
  display: flex;
  gap: 2rem;
  margin-top: 1.5rem;
}
footer .footer-content #footer-social-media .footer-link {
  height: 2.5rem;
  width: 2.5rem;
  border-radius: 50%;
}
footer .footer-content #footer-social-media .footer-link i {
  color: #FF5733;
}
footer .footer-content #footer-social-media .footer-link i:hover {
  color: #ffa500;
}
footer .footer-content .footer-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  list-style: none;
  color: #fff;
}
footer .footer-content .footer-list h3 {
  font-size: 27px;
  color: #FF5733;
}
footer .footer-content .footer-list .footer-link {
  color: #fff;
}
footer .footer-content .footer-list .footer-link:hover {
  color: #FF5733;
}
footer .footer-content .footer-logo img {
  max-width: 200px;
}

@media screen and (max-width: 768px) {
  .footer-content {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
  }
  .footer-content #footer-contacts {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .footer-content .footer-logo {
    display: none;
  }
}
@media screen and (max-width: 478px) {
  .footer-content .footer-logo {
    display: none;
  }
}/*# sourceMappingURL=plano2.css.map */