@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap");

:root {
  --header-height: 3.5rem;

  --first-color: hsl(228, 66%, 53%);
  --first-color-alt: hsl(228, 66%, 47%);
  --first-color-light: hsl(228, 62%, 59%);
  --first-color-lighten: hsl(228, 100%, 97%);
  --second-color: #f58220;
  --title-color: hsl(0, 0%, 0%);
  --text-color: hsl(0, 0%, 0%);
  --text-color-light: hsl(228, 12%, 75%);
  --border-color: hsl(228, 99%, 98%);
  --body-color: #fff;
  --container-color: #fff;

  --body-font: 'Poppins', sans-serif;
  --biggest-font-size: 2.25rem;
  --h1-font-size: 1.5rem;
  --h2-font-size: 1.25rem;
  --h3-font-size: 1rem;
  --normal-font-size: .938rem;
  --small-font-size: .813rem;
  --smaller-font-size: .75rem;

  --font-medium: 500;
  --font-semi-bold: 600;

  --z-tooltip: 10;
  --z-fixed: 100;
}

@media screen and (min-width: 1024px) {
  :root {
    --biggest-font-size: 4rem;
    --h1-font-size: 2.25rem;
    --h2-font-size: 1.5rem;
    --h3-font-size: 1.25rem;
    --normal-font-size: 1rem;
    --small-font-size: .875rem;
    --smaller-font-size: .813rem;
  }
}

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  background-color: var(--body-color);
  color: var(--text-color);
  transition: .3s;
}

h1,
h2,
h3 {
  color: var(--title-color);
  font-weight: var(--font-semi-bold);
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

.change-theme {
  cursor: pointer;
}

input,
button {
  font-family: var(--body-font);
  outline: none;
  border: none;
}

.container {
  max-width: 1024px;
  margin-left: 1.5rem;
  margin-right: 1.5rem;
}

.grid {
  display: grid;
}

.section {
  padding: 4.5rem 0 2rem;
}

.section__title {
  font-size: var(--h2-font-size);
  margin-bottom: 1rem;
}

.divider {
  width: 100%;
  height: 4px;
  background: linear-gradient(to right, rgba(253, 124, 65, 1) 0%, rgba(246, 224, 107, 1) 100%);
}

.section__title span {
  color: var(--second-color);
}

.section__subtitle {
  display: block;
  font-size: var(--small-font-size);
  color: var(--second-color);
}

.main {
  overflow: hidden;
  /* For the animations ScrollReveal*/
}

/*=============== HEADER & NAV ===============*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: transparent;
  z-index: var(--z-fixed);
  transform: .4s;
}
/* Adicione isso ao seu arquivo CSS */
.header-transition {
  transition: all 0.3s ease-in-out;
}
.nav-logo img {
  transition: all 0.3s ease-in-out;
}

.nav {
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  color: #fff;
  display: inline-flex;
  column-gap: .25rem;
  font: var(--font-medium);
  transform: .3s;
}

.glosario-section-title {
  font-size: var(--h1-font-size);
  text-align: center;
  padding-bottom: 3.5rem;
  color: hsl(19, 100%, 50%)
}

#glossario {
  background: hsl(30, 8%, 95%)
}

.nav-logo:hover {
  color: var(--first-color);
}

@media screen and (max-width: 1023px) {
  .nav-menu {
    position: fixed;
    bottom: 2rem;
    background-color: var(--container-color);
    box-shadow: 0 8px 24px hsla(228, 66%, 45%, .15);
    width: 90%;
    left: 0;
    right: 0;
    margin: 0 auto;
    padding: 1.30rem 3rem;
    border-radius: 1.25rem;
    transform: .4s;
  }

  .header {
    position: absolute;
    background: #fff;
  }

  .nav-list {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .nav-link {
    color: var(--text-color);
    display: flex;
    padding-inline-start: .5rem;
    border-radius: 50%;
  }

  .nav-link span {
    display: none;
  }

  .home-images {
    padding-top: 30px;
  }

  .home-value {
    justify-content: center;
  }
}

.home {
  background: url(../img/background2.png)no-repeat;
  /* height: 100vh; */
  background-size: cover;
  padding-bottom: 0;
}

.homer__container {
  padding-top: 4rem;
  row-gap: 3.5rem;
}

.home-title,
.home-value-number {
  color: #fff;
}

.home-childrens {
  margin: 0 10px;
}

.home-title {
  font-size: var(--biggest-font-size);
  line-height: 120%;
  margin-bottom: 1.25rem;
}



.home__description {
  color: var(--text-color-light);
  margin-bottom: 2rem;
}

.home-search {
  background-color: var(--body-color);
  padding: .35rem .35rem .35rem .75rem;
  display: flex;
  align-items: center;
  border-radius: .75rem;
  border: 3px solid var(--text-color-light);
  margin-bottom: 2rem;
}

.home-search i {
  font-size: 1.25rem;
  color: var(--first-color);
}

.home-search-input {
  width: 90%;
  background-color: var(--body-color);
  color: var(--text-color);
  margin: 0 .5rem;
}

.home-search-input::placeholder {
  color: var(--text-color-light);
}

.home-value {
  display: flex;
  column-gap: 2.5rem;
}

.home-value-number {
  font-size: var(--h1-font-size);
  font-weight: var(--font-medium);
}

.home-value-number span {
  color: var(--second-color);
}

.home-value-description {
  display: flex;
  color: var(--text-color-light);
  font-size: var(--smaller-font-size);
}

.home-images {
  position: relative;
  display: flex;
  justify-content: center;
}

.home-orbe {
  width: 265px;
  height: 284px;
  background: linear-gradient(180deg,
      hsl(0, 0%, 16%) 93%,
      hsl(0, 0%, 67%) 100%);
  border-radius: 135px 135px 135px;
}

.home-img {
  position: absolute;
  width: 250px;
  height: 300px;
  overflow: hidden;
  border-radius: 125px 125px 125px;
  display: inline-flex;
  align-items: flex-end;
}

.button {
  display: inline-block;
  background: linear-gradient(170deg,
      hsl(19, 100%, 50%) 0%,
      hsl(24, 100%, 50%) 30%);
  padding: 10px 15px;
  color: #fff;
  border-radius: .5rem;
  font-size: var(--normal-font-size);
  font-weight: var(--font-medium);
  box-shadow: 0 4px 8px hsla(228, 66%, 45%, .25);
  cursor: pointer;
  transition: .3s;
}

.button:hover {
  box-shadow: 0 4px 12px hsla(228, 66%, 45%, .1);
}

.nav-button {
  display: none;
}

.popular-container {
  padding: 1rem 0 5rem;
}

.popular-card {
  max-width: 1000px !important;
  height: auto !important;
  background-color: var(--container-color);
  padding: .5rem .5rem 1.5rem;
  border-radius: 1rem;
  margin: 0 auto;
  transition: .4s;
  border: hsla(228, 66%, 45%, .1) solid;
  box-shadow: 0 12px 16px hsla(228, 66%, 45%, .1);
}

.popular-img {
  border-radius: 1rem;
  margin-bottom: 1rem;
}

.section-subtitle {
  color: var(--second-color);
}

.popular-data {
  padding: 0 .5rem 0 .5rem;
}

.popular-price {
  /* text-shadow: 0 2px 2px hsla(0, 0%, 0%, 0.25); */
  font-size: 1.2rem;
  /* color: var(--text-color); */
  ;
  margin-bottom: .25rem;
}

.popular-price span {
  color: var(--second-color);
}

.popular-title {
  font-size: var(--h3-font-size);
  color: #f58220;
  margin-bottom: .75rem;
}

.popular-description {
  text-align: justify;
  overflow: hidden;
  padding-bottom: 20px;
}

.popular-card:hover {
  box-shadow: 0 12px 16px hsla(228, 66%, 45%, .1);
}

.buton-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 20px;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  content: '' !important;
}

.swiper-button-prev,
.swiper-button-next {
  top: initial !important;
  bottom: 0 !important;
  width: initial !important;
  height: initial !important;
  background-color: var(--body-color);
  border: 2px solid #000;
  border-radius: .5rem;
}

.swiper-button-prev {
  left: calc(50% - 3rem) !important;
}

.swiper-button-next {
  right: calc(50% - 3rem) !important;
}

.btn {
  display: inline-block;
  background: linear-gradient(170deg,
      hsl(19, 100%, 50%) 0%,
      hsl(24, 100%, 50%) 30%);
  padding: 10px 15px;
  color: #fff;
  border-radius: .5rem;
  font-size: var(--normal-font-size);
  font-weight: var(--font-medium);
  box-shadow: 0 4px 8px hsla(228, 66%, 45%, .25);
  cursor: pointer;
  transition: .3s;
}

.container-link {
  display: flex;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding-bottom: 10px;
  padding-left: 10px;
  /* ajuste conforme necessário */
}

.date-date {
  display: inline-block;
  background: linear-gradient(170deg,
      hsl(19, 100%, 50%) 0%,
      hsl(24, 100%, 50%) 30%);
  padding: 5px 10px;
  color: #fff;
  border-radius: .5rem;
  font-size: var(--h3-font-size);
  font-weight: var(--font-medium);
  box-shadow: 0 2px 4px hsla(228, 66%, 45%, .25);
  cursor: pointer;
  transition: .3s;
}

.form-container {
  row-gap: 3.5rem;
}

.form-data {
  text-align: justify;
}

.form-card {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem .75rem;
}

.section-title {
  text-align: center;
  padding-bottom: 3rem;
}

.value-container {
  row-gap: 3rem;
}

/* #value {
  
  background-color: #808080;
} */

.value-images {
  position: relative;
  display: flex;
  justify-content: center;
}

.active-link {
  background: linear-gradient(101deg,
      hsl(19, 100%, 50%) 0%,
      hsl(24, 100%, 50%) 30%);
  padding: .3rem .3rem .3rem .3rem;
}

.value-orbe {
  width: 350px;
  height: 216px;
  background-color: hsl(228, 24%, 97%);
  border-radius: 30px 30px 30px;
}

.value-img {
  position: absolute;
  width: 340px;
  height: 200px;
  overflow: hidden;
  border-radius: 25px 25px 25px;
  inset: 0;
  margin: auto;
  box-shadow: 0 16px 32px hsla(228, 66%, 25%, .25);
}

.value-description {
  font-size: var(--small-font-size);
  margin-bottom: 2rem;
}

.value-accordion {
  display: grid;
  row-gap: 1.5rem;
}

.value-accordion-item {
  background-color: var(--body-color);
  border: 2px solid var(--border-color);
  border-radius: .5rem;
  padding: 1rem .75rem;
}

.value-accordion-header {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.value-accordion-title {
  font-size: 1rem;
  width: 100%;
}

.value-accordion-arrow {
  display: inline-flex;
  padding: .25rem;
  border-radius: 2px;
  margin-left: auto;
  transition: 3s;
}

.value-accordion-arrow img {
  transition: .4s;
}

.value-accordion-description {
  font-size: var(--small-font-size);
  padding: 1.25rem 1.5rem 0 1.75rem;
  text-align: justify;
}

.value-accordion-content {
  overflow: hidden;
  height: 0;
  transition: all .25s ease;
}

.accordion-open {
  box-shadow: 0 12px 32px hsla(228, 66%, 45%, .1)
}

.accordion-open .value-accordion-arrow img {
  transform: rotate(-180deg);
}

/* 
.value-accordion-arrow,
.value-accordion-title {
  width: 90% 10;
} */

.contact-description {
  text-align: center;
  color: var(--text-color);
}

.contact-container {
  row-gap: 2rem
}

.contact-images {
  position: relative;
  display: flex;
  justify-content: center;
}

.contact-orbe {
  width: 266px;
  height: 316px;
  background-color: hsl(228, 24%, 97%);
  border-radius: 135px 135px 135px;
}

.contact-img {
  position: relative;
  width: 250px;
  height: 300px;
  overflow: hidden;
  border-radius: 125px 125px 125px;
  inset: 0;
  margin: auto;
  box-shadow: 0 16px 32px hsla(228, 66%, 25%, .25);
}

.contact-description {
  font-size: var(--small-font-size);
  margin-bottom: 2.5rem;
}

.contact-card {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.25rem .75rem;
}

.contact-card-box {
  background-color: var(--body-color);
  border: 4px solid var(--border-color);
  padding: 1rem 1rem 1rem;
  border-radius: .5rem;
  transition: .3s;
}

#contact {
  /* background: url(../img/4044742_86339.jpg); */
  background-repeat: repeat-x;
  padding-bottom: 1.5rem;
}

.contact-card-info {
  display: flex;
  align-items: center;
  margin-bottom: .5rem;
}

.contact-card img {
  padding: 6px;
  background-color: hsl(220, 220, 220);
  border-radius: 6px;
}

.contact-card-button {
  display: inline-block;
  background: linear-gradient(170deg,
      hsl(19, 100%, 50%) 0%,
      hsl(24, 100%, 50%) 30%);
  padding: 8px 5px;
  color: #fff;
  border-radius: .5rem;
  font-size: var(--normal-font-size);
  font-weight: var(--font-medium);
  box-shadow: 0 4px 8px hsla(228, 66%, 45%, .25);
  cursor: pointer;
  transition: .3s;
}

.contact-card-box:hover {
  box-shadow: 0 8px 24px hsla(228, 66%, 45%, .1);
}

.subscribe {
  padding: 2.5rem 0;
}

.subscribe-container {
  background: linear-gradient(170deg,
      hsl(19, 100%, 50%) 0%,
      hsl(24, 100%, 50%) 30%);
  padding: 3rem 2rem;
  border-radius: 1.25rem;
  text-align: center;
}

.subscribe-title {
  font-size: var(--h2-font-size);
  color: #fff;
  margin-bottom: 1rem;
}

.subscribe-description {
  color: #fff;
  font-size: var(--small-font-size);
  margin-bottom: 2rem;
}

.subscribe-button {
  box-shadow: none;
  border: 2px solid #fff;
  font-size: var(--small-font-size);
  padding: 10px 15px;
  color: #fff;
  background-color: #f58220;
  border-radius: .5rem;
  font-size: var(--normal-font-size);
  font-weight: var(--font-medium);
  box-shadow: 0 4px 8px hsla(228, 66%, 45%, .25);
  cursor: pointer;
  transition: .3s;
  display: inline-block;
}

.footer-container {
  row-gap: 1rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: .25rem;
}

.footer-social {
  display: flex;
  column-gap: 1rem;
  align-items: center;
  justify-content: center;
}

.footer-social-link {
  font-size: 1.75rem;
  color: var(--text-color);
  transform: .3s;
}


.footer-info {
  display: flex;
  padding-bottom: 6rem;
  margin-top: 5rem;
  flex-direction: column;
  text-align: center;
  row-gap: 1.5rem;
}

::-webkit-scrollbar {
  width: .6rem;
  border-radius: .5rem;
  background-color: hsl(228, 8%, 64%);
  border-radius: .5rem;
}

::-webkit-scrollbar-thumb {
  background-color: hsl(228, 8%, 64%);
  border: .5rem;
}

::-webkit-scrollbar-thumb:hover {
  background-color: hsl(228, 8%, 54%);
}

.scrollup {
  position: fixed;
  right: 1rem;
  bottom: -30%;
  box-shadow: 0 8px 12px hsla(228, 66%, 45%, .1);
  display: inline-flex;
  padding: .35rem;
  border-radius: .25rem;
  z-index: var(--z-tooltip);
}

.scrollup:hover {
  transform: translateY(-.25rem);
}

.show-scroll {
  bottom: 7rem;
}

@media screen and (max-width: 430px) {
  .home {
    background-position: initial;
  }
}

/* small */
@media screen and (min-width: 576px) {
  .nav-menu {
    width: 342px;
  }

  .home-search {
    width: 480px;
  }



  .contact-card-box {
    width: 450px;
  }

  .contact-card {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }

  .home__description {
    width: 500px;
  }
}

@media screen and (min-width: 767px) {
  .home-container {
    grid-template-columns: repeat(2, 1fr);
    padding-top: 2rem;
  }

  .home-orbe,
  .home-img {
    align-self: flex-end;
  }

  .contact-container {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
  }

  .contact-card-box {
    width: 400px;
  }

  .contact-images {
    order: 1;
  }

  .contact-card {
    justify-content: initial;
  }

  .subscribe-container {
    padding: 3rem 12rem;
  }

  .value-orbe {
    width: 700px !important;
  }

  .value-img {
    width: 690px;
  }

  .nav-menu {
    width: 600px;
  }
}

@media screen and (min-width: 1024px) {
  .section {
    padding: 7.5rem 1rem;
  }


  .section__title {
    font-size: 2.25rem;
  }

  .popular-card {
    width: 1000px !important;
    height: auto !important;
    background-color: var(--container-color);
    padding: .5rem .5rem 1.5rem;
    border-radius: 1rem;
    margin: 0 auto;
    transition: .4s;
    border: hsla(228, 66%, 45%, .1) solid;
    box-shadow: 0 12px 16px hsla(228, 66%, 45%, .1);
  }

  .popular-description {
    text-align: justify;
    overflow: hidden;
    padding-bottom: 20px;
  }

  .footer-info {
    display: flex;
    padding-bottom: 2rem;
    margin-top: 4rem;
    flex-direction: column;
    text-align: center;
    row-gap: 1.5rem;
  }

  .section-subtitle {
    font-size: var(--normal-font-size);
  }

  .contact-card-box {
    padding-bottom: 5rem;
  }

  .nav {
    height: calc(var(--header-height) + 1.5rem);
  }

  .nav-menu {
    width: initial !important;
    margin-left: auto !important;
  }

  .nav-list {
    display: flex;
    column-gap: 2rem;
  }

  .nav-link {
    color: var(--text-color-light);
  }

  .nav-link img {
    display: none;
  }

  .active-link {
    background: none;
    box-shadow: none;
    color: var(--second-color);
    font-weight: var(--font-medium);
  }

  .scroll-header {
    background-color: #fff;
  }

  .scroll-header .nav-link {
    color: #000;
  }

  .scroll-header .active-link {
    background: none;
    box-shadow: none;
    color: var(--second-color);
    font-weight: var(--font-medium);
  }

  .home { 
    padding-bottom: 0;
  }

  .home-container {
    padding-top: -3rem;
    column-gap: 2rem;
  }

  .home__description,
  .home-search {
    margin-bottom: 3rem;
  }

  .home-orbe {
    width: 504px;
    height: 600px;
    border-radius: 256px;
    bottom: -4.5rem !important;
  }

  .home-img {
    width: 472px;
    height: 634px;
    border-radius: 236px 236px;
    bottom: -2.5rem;
  }

  .popular-container {
    padding-top: 3rem;
  }

  .popular-card {
    width: 320px !important;
    height: 570px !important;
    padding: .75rem .75rem 2rem !important;
  }

  .home-title {
    font-size: 3.40rem;
  }

  .value-accordion {
    grid-template-columns: repeat(2, 1fr);
  }

  .value-description,
  .value-description {
    font-size: var(--normal-font-size);
    margin-bottom: 2.5rem;
  }

  img {
    max-width: 100%;
    height: 100%;
  }


  .contact-orbe {
    width: 501px;
    height: 641px;
    border-radius: 258px 258px;
  }

  .contact-img {
    width: 461px;
    height: 601px;
    border-radius: 238px 238px 238px;
  }

  .subscribe-container {
    padding: 4rem 10rem 4.5rem;
    border-radius: 2rem;
  }

  .value-orbe {
    width: 900px;
  }

  .value-img {
    width: 890px;
  }

  .subscribe-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
  }

  .subscribe-description {
    /* font-size: var(--normal-font-size); */
    /* padding: 0 8rem; */
  }

  .scrollup img {
    width: 20px;
  }

}

@media screen and (min-width: 1040px) {
  .container {
    margin-left: auto;
    margin-right: auto;
  }


  .popular-card {
    width: 1000px !important;
    height: auto !important;
    background-color: var(--container-color);
    padding: .5rem .5rem 1.5rem;
    border-radius: 1rem;
    margin: 0 auto;
    transition: .4s;
    border: hsla(228, 66%, 45%, .1) solid;
    box-shadow: 0 12px 16px hsla(228, 66%, 45%, .1);
  }

  .popular-description {
    text-align: justify;
    overflow: hidden;
    padding-bottom: 20px;
  }

  img {
    max-width: 100%;
    height: 100%;
  }

  .home-container {
    column-gap: 4rem;
  }
}

@media screen and (min-width: 2048) {
  body {
    zoom: 1.5;
  }
}

.form-description {
  color: var(--text-color);
}

.form-container {
  display: grid;
  row-gap: 2rem;
}

.form-images {
  position: relative;
  display: flex;
  justify-content: center;
}

.form-description {
  font-size: var(--normal-font-size);
  margin-bottom: 2.5rem;
  text-align: justify;
}

.form-card {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.25rem .75rem;
}

.form-card-box {
  background-color: var(--body-color);
  border: 4px solid var(--border-color);
  padding: 1rem 1rem 1rem;
  border-radius: .5rem;
  transition: .3s;
  box-shadow: 0 8px 24px hsla(228, 66%, 45%, .1);
}

.form-card-info {
  display: flex;
  align-items: flex-start;
  column-gap: .75rem;
  margin-bottom: 1.25rem;
}

.form-card img {
  padding: 6px;
  background-color: hsl(220, 220, 220);
  border-radius: 6px;
}

.form-card-button {
  display: inline-block;
  background: linear-gradient(170deg,
      hsl(19, 100%, 50%) 0%,
      hsl(24, 100%, 50%) 30%);
  padding: 8px 5px;
  color: #fff;
  border-radius: .5rem;
  font-size: var(--normal-font-size);
  font-weight: var(--font-medium);
  box-shadow: 0 4px 8px hsla(228, 66%, 45%, .25);
  cursor: pointer;
  transition: .3s;
}

/* 
#input-box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
} */

@media screen and (min-width: 2048) {
  body {
    zoom: 1.5;
  }
}