@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
* {
  font-family: "Roboto", sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
  border: none;
  text-decoration: none;
  text-transform: none;
  transition: all 0.2s ease-in-out;
}

html {
  font-size: 62.5%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: #000;
}
html::-webkit-scrollbar {
  width: 1rem;
}
html::-webkit-scrollbar-track {
  background: #F2F2F2;
}
html::-webkit-scrollbar-thumb {
  background: #000;
}

section {
  padding: 5rem 9%;
}

.heading {
  text-align: center;
  margin-bottom: 3rem;
}
.heading span {
  font-size: 2.5rem;
}
.heading h1 {
  font-size: 4rem;
  padding-top: 0.5rem;
}

.btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 1rem 3rem;
  font-size: 2rem;
  color: #F2F2F2;
  background: #265C8C;
  border: 0.2rem solid #000;
  cursor: pointer;
  font-weight: bolder;
  border-radius: 50rem;
}
.btn:hover {
  background: #F27244;
  color: #F2F2F2;
}

.line-down {
  position: relative;
  z-index: 0;
}
.line-down::before {
  content: "";
  position: absolute;
  bottom: 0.5rem;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  background: #F27244;
  z-index: -1;
  clip-path: polygon(0 80%, 100% 75%, 100% 100%, 0% 100%);
}

.header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 0.1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #F2F2F2;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
  padding: 2rem 9%;
}

.logo, .logo i {
  color: #265C8C;
  font-weight: 700;
  transition: 0.3s;
}

.logo:hover {
  color: #F27244;
}

.logo:hover i {
  color: #F27244;
}

.logo {
  font-size: 2.5em;
}

.navbar a {
  margin: 10px;
  font-size: 2em;
  color: #000;
}
.navbar a a:hover {
  text-decoration: underline;
}
.navbar a .btn {
  margin-top: 0em;
}

#menu-btn {
  cursor: pointer;
  font-size: 3rem;
  display: none;
}

@keyframes floating {
  0%, 100% {
    transform: translateY(0rem);
  }
  50% {
    transform: translateY(-4rem);
  }
}
.home {
  min-height: 80vh;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  background-color: #4AB0D9;
}
.home .image {
  flex: 1 1 42rem;
  margin-top: 5rem;
}
.home .image img {
  width: 100%;
  max-width: 500px;
}
.home .content {
  flex: 1 1 42rem;
}
.home .content h3 {
  font-size: clamp(3rem, 6vw, 6rem);
}
.home .content p {
  font-size: 2rem;
  padding: 1rem 0;
  line-height: 2;
}

.services {
  background: #F2F2F2;
}
.services .box-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.services .box-container .box {
  background: #D6E0E1;
  padding: 3rem 2rem;
  text-align: center;
  border: 3px solid #F27244;
}
.services .box-container .box img {
  height: 8rem;
  margin-bottom: 0.7rem;
}
.services .box-container .box h3 {
  font-size: 2.2rem;
  padding: 1.5rem 0;
}
.services .box-container .box p {
  line-height: 2;
  font-size: 1.7rem;
}
.services .box-container .box i {
  font-size: 10rem;
  color: #265C8C;
  margin-bottom: 1rem;
}

.about {
  background: linear-gradient(135deg, #F2F2F2, #D6E0E1);
}

.about .row {
  display: flex;
  align-items: center;
  gap: 4rem;
  margin-bottom: 5rem;
}

.about .row.reverse {
  flex-direction: row-reverse;
}

.about .row .image {
  flex: 1 1 40rem;
}

.about .row .image img {
  width: 100%;
  max-width: 600px;
  height: clamp(250px, 30vw, 400px);
  object-fit: cover;
  border-radius: 2rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.about .row .content {
  flex: 1 1 40rem;
}

.about .row .content h3 {
  font-size: clamp(2.5rem, 4vw, 4.5rem);
  color: #265C8C;
}

.about .row .content p {
  font-size: clamp(1.4rem, 2vw, 1.6rem);
  line-height: 1.8;
  color: #444;
  text-align: justify;
}

.features {
  background: linear-gradient(135deg, #F2F2F2, #D6E0E1);
}

.features .box-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 por linha */
  gap: 2rem;
}

.features .box {
  display: flex;
  align-items: center;
  gap: 2rem;
  background: #F2F2F2;
  border-radius: 2rem;
  padding: 2rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
  text-align: left;
}

.features .box:hover {
  transform: translateY(-8px);
}

.features .box:last-child {
  grid-column: span 2;
}

/* IMAGEM */
.features .box .image img {
  width: 14rem;
  height: 14rem;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1.5rem;
  border: 4px solid #265C8C;
}

.features .box .content h3 {
  font-size: 2rem;
  color: #265C8C;
  margin-bottom: 0.5rem;
}

.features .box .content p {
  font-size: 1.5rem;
  color: #444;
  line-height: 1.6;
}

.features .box .content p:has(strong),
.features .box .content p.long-text {
  font-size: 1.4rem;
  line-height: 1.7;
  text-align: left;
}

.section-divider {
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, transparent, #00a6ff, transparent);
  margin: 6rem 0;
}

.faq {
  background: #9cd0e5;
}

.faq .accordion-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq .accordion {
  margin: 1.5rem 0;
  border-radius: 1.5rem;
  overflow: hidden;
  background: #F2F2F2;
  border-left: 5px solid #F27244;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.faq .accordion:hover {
  transform: translateY(-3px);
}

.faq .accordion-heading {
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.faq .accordion-heading h3 {
  font-size: 1.8rem;
  color: #265C8C;
}

.faq .accordion-heading i {
  font-size: 2rem;
  color: #F27244;
  transition: 0.3s;
}

.faq .accordion.active i {
  transform: rotate(180deg);
}

.faq .accordion-content {
  max-height: 0;
  overflow: hidden;
  padding: 0 2rem;
  font-size: 1.5rem;
  line-height: 1.7;
  color: #555;
  transition: all 0.4s ease;
}

.faq .accordion.active .accordion-content {
  max-height: 300px;
  padding: 1.5rem 2rem 2rem;
}

.footer {
  background: linear-gradient(135deg, #D6E0E1, #F2F2F2);
  padding: 4rem 9%;
}

.footer .box-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
  gap: 1.5rem;
  gap: 3rem;
}

.footer .box {
  text-align: left;
}

.footer .box h3 {
  font-size: 2.2rem;
  padding-bottom: 1rem;
  color: #265C8C;
  position: relative;
}

.footer .box h3::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  background: #F27244;
  margin-top: 8px;
  border-radius: 2px;
}

.footer .box a {
  font-size: 1.6rem;
  color: #333;
  display: block;
  padding: 0.6rem 0;
  transition: 0.2s;
}

.footer .box a:hover {
  color: #265C8C;
  padding-left: 5px;
}

.footer .credit {
  text-align: center;
  padding-top: 2rem;
  margin-top: 2rem;
  font-size: 1.6rem;
  color: #555;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}

.modal-conteudo {
  font-size: 2rem;
  background: white;
  margin: 8% auto;
  padding: 25px;
  width: 65%;
  border-radius: 10px;
  max-height: 70vh;
  overflow-y: auto;
}

.modal-conteudo h3 {
  margin-top: 20px;
  color: #265C8C;
}

.modal-conteudo p {
  margin-top: 8px;
  line-height: 1.6;
}

.modal-conteudo ul {
  margin-left: 20px;
  margin-top: 10px;
}

.fechar {
  float: right;
  font-size: 28px;
  cursor: pointer;
}

@media (max-width: 1048px) {
  .home .image {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
}
@media (max-width: 1024px) {
  .navbar a {
    font-size: 1.6rem;
  }
  .home .image {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  .home .image {
    margin: 0 auto; /* centraliza a imagem */
  }
  .features .box-container {
    grid-template-columns: 1fr;
  }
  .features .box:last-child {
    grid-column: span 1;
  }
  .features .box {
    flex-direction: row;
    align-items: center;
  }
  .about .row {
    flex-direction: column;
    text-align: center;
  }
  .about .row .image {
    flex: 1 1 100%;
  }
  .about .row:not(.reverse) .image img {
    width: 90%;
    max-width: 700px;
    height: auto;
  }
  .about .row:not(.reverse) .about .row:not(.reverse) .content {
    flex: 1 1 100%;
  }
  .about .row:not(.reverse) .about .row:not(.reverse) .content h3 {
    font-size: 6vw;
  }
  .about .row:not(.reverse) p {
    font-size: 2.3vw;
    line-height: 1.6;
  }
  /* Bloco invertido (segunda imagem) */
  .about .row.reverse {
    flex-direction: row-reverse;
  }
  .about .row.reverse .image {
    flex: 1 1 45%;
  }
  .about .row.reverse .image img {
    width: 100%;
    max-width: 500px;
    height: clamp(300px, 40vw, 500px);
    object-fit: cover;
  }
  .about .row.reverse .content {
    flex: 1 1 55%;
  }
  .about .row.reverse .content p {
    font-size: 2vw;
    line-height: 1.6;
  }
}
@media (max-width: 927px) {
  .header {
    font-size: 0.7rem;
  }
}
@media (max-width: 915px) {
  .header {
    font-size: 0.8rem;
  }
  .services .box-container {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 884px) {
  .navbar a {
    font-size: 1.4rem;
  }
}
@media (max-width: 828px) {
  .navbar a {
    font-size: 1.3rem;
  }
}
@media (max-width: 828px) {
  .header {
    padding: 1rem 4%;
  }
  .header {
    font-size: 0.7rem;
  }
  .navbar a {
    font-size: 1.3rem;
  }
  .header .navbar #btn {
    font-size: 0.8rem;
    padding: 4px 8px;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 0.8rem;
  }
  #menu-btn {
    display: inline-block;
    transition: 0.2s linear;
  }
  .fa-times {
    transform: rotate(180deg);
  }
  .header .btn {
    display: none;
  }
  .header .navbar {
    position: absolute;
    top: 99%;
    left: 0;
    right: 0;
    border-top: 0.2rem solid #000;
    display: none;
    background: #F2F2F2;
    transition: 2s linear;
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  }
  .header .navbar a {
    display: block;
    margin: 0;
    padding: 1.5rem 2rem;
  }
  .header .navbar.active {
    display: block;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
  /* FEATURES */
  .features .box {
    flex-direction: column;
    text-align: center;
  }
  .features .box .image img {
    width: 12rem;
    height: 12rem;
  }
  .features .box .content p {
    font-size: 1.4rem;
  }
  /* ABOUT */
  .about {
    overflow-x: hidden;
  }
  .about .row {
    flex-direction: column;
    text-align: center;
  }
  .about .row,
  .about .row.reverse {
    flex-direction: column;
    text-align: center;
  }
  .about .row .image,
  .about .row.reverse .image {
    flex: 1 1 100%;
    margin-bottom: 2rem;
  }
  .about .row .image img,
  .about .row.reverse .image img {
    width: 100%;
    max-width: 450px;
    height: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 2rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    margin: 0 auto;
  }
  /* Texto embaixo */
  .about .row .content,
  .about .row.reverse .content {
    flex: 1 1 100%;
    text-align: justify;
  }
  .about .row .content h3,
  .about .row.reverse .content h3 {
    font-size: 7vw;
    color: #265C8C;
    margin-bottom: 1rem;
  }
  .about .row .content p,
  .about .row.reverse .content p {
    font-size: clamp(1.5rem, 2.5vw, 1.9rem);
    line-height: 1.6;
  }
  .modal-conteudo {
    font-size: 1.4rem;
  }
}
@media (max-width: 480px) {
  .features .box {
    padding: 1.5rem;
  }
  .features .box .image img {
    width: 10rem;
    height: 10rem;
  }
  .features .box .content h3 {
    font-size: 1.7rem;
  }
  .features .heading h1 {
    font-size: 3rem;
  }
  .features .box .content p {
    font-size: 1.3rem;
  }
  .services .box-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .services .box {
    padding: 2rem 1rem;
  }
  .services .box i {
    font-size: 6rem;
  }
  .services .box h3 {
    font-size: 2rem;
  }
  .services .box p {
    font-size: 1.4rem;
  }
}
@media (max-width: 648px) {
  .services .box-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .services .box {
    padding: 2rem 1rem;
  }
  .services .box i {
    font-size: 6rem;
  }
  .services .box h3 {
    font-size: 2rem;
  }
  .services .box p {
    font-size: 1.4rem;
  }
  .modal-conteudo {
    font-size: 1.2rem;
  }
}
@media (max-width: 450px) {
  .html {
    font-size: 55%;
  }
}
@media (max-width: 370px) {
  .home .content h3 {
    font-size: 2rem;
  }
  .home .content p {
    font-size: 1.2rem;
  }
  .home .image img {
    max-width: 100%;
    height: auto;
  }
  .features .heading h1 {
    font-size: 2rem;
  }
  html, body {
    overflow-x: hidden;
  }
}

/*# sourceMappingURL=style.css.map */
