@charset "UTF-8";
/* VARIÁVEIS */
/* ESTILOS GERAIS */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&family=Roboto:wght@100;300;400;700;900&display=swap");
*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  font-size: 10px;
  font-family: 'Roboto', sans-serif;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

a:hover {
  text-decoration: none;
  color: inherit;
}

.container {
  width: 100%;
  max-width: 126rem;
  margin: 0 auto;
  padding: 0 1rem;
}

.btn {
  display: inline-block;
  padding: 1.45rem 2.6rem;
  text-align: center;
  color: #689898;
  background-color: white;
  border-radius: 8px;
  font-size: 1.3rem;
  margin-top: 15px;
}

.btn.primary {
  background-color: #407471;
  color: white;
  padding: 1rem 3rem;
}

.section-title {
  font-size: 3.2rem;
  font-weight: bold;
  color: #313131;
  text-align: center;
  margin-top: 5rem;
  margin-bottom: 4rem;
}

.section-title::before {
  content: '';
  display: block;
  margin: 0 auto;
  -webkit-transform: translateY(-2rem);
          transform: translateY(-2rem);
  height: 3px;
  width: 8rem;
  background-color: #87C5C5;
}

header {
  width: 100%;
  height: 6rem;
  background-color: rgba(135, 197, 197, 0.3);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  -webkit-transition: .6s;
  transition: .6s;
}

header.active {
  height: 8rem;
  background-color: #407471;
  -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
          box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.nav .menu-icons {
  color: white;
  cursor: pointer;
}

.nav .menu-icons i {
  font-size: 3rem;
}

.nav .nav-brand {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: white;
  cursor: pointer;
}

.nav .nav-brand img {
  width: 160px;
  height: auto;
}

.nav .nav-brand i {
  font-size: 2rem;
  margin-right: .7rem;
}

.nav .nav-brand h1 {
  font-size: 2rem;
}

.nav .nav-list {
  height: 100vh;
  width: 25rem;
  background-color: white;
  position: fixed;
  top: 0;
  right: -26rem;
  font-size: 1.6rem;
  padding: 10rem 2rem;
  color: #313131;
  z-index: 1000;
  -webkit-transition: right .6s;
  transition: right .6s;
}

.nav .nav-list.show {
  right: 0;
}

.nav .nav-list .nav-item {
  background-color: #E9E9E9;
  border-radius: 5px;
  margin-bottom: 7px;
  padding: 0 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.nav .nav-list .nav-item::before {
  content: '';
  background-color: #87C5C5;
  height: 50px;
  width: 1rem;
  position: relative;
  top: 0;
  left: -2rem;
}

.nav .nav-list .menu-icons {
  position: relative;
}

.nav .nav-list .menu-icons.close {
  color: #313131;
  position: absolute;
  top: 2.1rem;
  right: 1rem;
}

/* HERO */
.hero {
  background: url(imgs/city.jpg) center no-repeat;
  background-size: cover;
  height: 95vh;
  width: 100%;
  min-height: 300px;
  position: relative;
  z-index: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: inherit;
  height: inherit;
  background: -webkit-gradient(linear, left top, right top, from(rgba(135, 197, 197, 0.85)), to(rgba(71, 132, 132, 0.9)));
  background: linear-gradient(to right, rgba(135, 197, 197, 0.85), rgba(71, 132, 132, 0.9));
  z-index: -1;
}

.hero .wave {
  position: absolute;
  bottom: 15px;
  left: 0;
  width: 100%;
}

.hero img {
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
}

.hero .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.hero .container img {
  width: auto;
  height: 15vw;
}

.hero .carousel {
  margin: 0 auto;
  height: 55vh;
  width: 100vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.hero .carousel .carousel-indicators li {
  background-color: #407471;
  border-radius: 50%;
  border: 2px solid #96DEDE;
  width: 2rem;
  height: 2rem;
}

.hero .carousel .carousel-inner > .carousel-item {
  -webkit-transition: -webkit-transform 1s ease-in-out !important;
  transition: -webkit-transform 1s ease-in-out !important;
  transition: transform 1s ease-in-out !important;
  transition: transform 1s ease-in-out, -webkit-transform 1s ease-in-out !important;
}

.hero .carousel .carousel-inner > .carousel-item img {
  width: 100%;
  height: 100%;
}

.hero .main-message {
  padding-top: 6rem !important;
  max-width: 100vw;
  -webkit-transform: translateY(3rem);
          transform: translateY(3rem);
  color: white;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.hero .main-message h1 {
  font-size: 2.5rem;
}

.hero .main-message p {
  font-weight: light;
  font-size: 1.3rem;
  margin-top: 1rem;
}

.hero .curve {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}

.hero .cta {
  margin-bottom: 20px;
}

.hero .btn {
  color: white;
  background-color: transparent;
  border: 2px solid white;
}

@media screen and (max-width: 1200px) {
  .hero .container {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

@media screen and (max-width: 900px) {
  .hero .main-message {
    width: 100%;
  }
}

@media screen and (max-width: 375px) {
  .hero .carousel {
    -webkit-transform: translateY(-2rem);
            transform: translateY(-2rem);
  }
}

@media screen and (max-height: 640px) and (max-width: 650px) {
  .hero .carousel {
    display: none;
  }
}

.card-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(30rem, 1fr))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  grid-gap: 10px;
  justify-items: center;
}

.card-grid .card {
  width: 30rem;
  border: 1px solid #407471;
  text-align: center;
  padding: 2rem;
  grid-gap: 2rem;
  margin-bottom: 5rem;
  border-radius: 5px;
  -webkit-transition: all .6s ease;
  transition: all .6s ease;
}

.card-grid .card:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  -webkit-box-shadow: 1px 1px 30px rgba(0, 0, 0, 0.2);
          box-shadow: 1px 1px 30px rgba(0, 0, 0, 0.2);
}

.card-grid .card .card-title {
  font-size: 2rem;
  font-weight: bold;
  color: #689898;
  position: relative;
  margin-bottom: 2.5rem;
}

.card-grid .card .card-title::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #689898;
}

.card-grid .card .card-details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-size: 1.5rem;
  color: #888888;
}

.card-grid .card .card-details .card-details-item:not(:first-child) {
  margin-top: 10px;
}

.card-grid .card .card-price {
  font-size: 3rem;
  font-weight: bold;
  margin-top: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.card-grid .card .card-price .subtitle {
  font-size: 2.1rem;
  color: #888888;
  font-weight: lighter;
}

.passo-a-passo {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(26rem, 1fr))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(26rem, 1fr));
  grid-gap: 1rem;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  margin-bottom: 5rem;
}

.passo-a-passo .passo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.passo-a-passo .passo .passo-title {
  color: #888888;
  font-weight: bold;
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

.passo-a-passo .passo .passo-icon {
  width: 130px;
  height: 130px;
  margin-bottom: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 50%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #407471;
}

.passo-a-passo .passo .passo-icon i {
  font-size: 8rem;
  color: #87C5C5;
}

.passo-a-passo .passo .passo-description {
  text-align: center;
  width: 23rem;
  font-size: 1.7rem;
  color: #888888;
  margin-bottom: 5rem;
}

.produtos img {
  width: 100%;
}

.form-label {
  color: white;
  font-size: 1.6rem;
  font-weight: bold;
}

.experimente {
  background-color: white;
}

.experimente .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.experimente .experimente-form {
  padding: 2rem;
  margin-bottom: 4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.experimente .experimente-form .form-group {
  margin-bottom: 2rem;
  margin-right: 2rem;
}

.experimente .experimente-form .form-group .form-label {
  color: #313131;
  margin-bottom: 10px;
}

.experimente .experimente-form .form-group .legends {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  color: #888888;
  margin-top: 0.5rem;
  font-size: 1.3rem;
}

.experimente .experimente-form #contato {
  font-size: 1.3rem;
}

.experimente .experimente-form .form-input {
  border: 4px solid #87C5C5;
  border-radius: 30px;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.experimente .experimente-form .form-input .btn {
  margin: 0;
  background-image: -webkit-gradient(linear, left top, right top, from(#94FF9F), to(#79FFD3));
  background-image: linear-gradient(to right, #94FF9F, #79FFD3);
  outline: none;
  border: none;
  color: #313131;
  cursor: pointer;
  border-radius: 0 30px 30px 30px;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-radius: 30px;
}

.experimente .experimente-form .form-input input {
  width: 40vw;
  border-radius: 30px;
  outline: none;
  border: none;
  padding: 1.4rem;
  color: #888888;
  font-family: inherit;
}

.experimente .experimente-form .form-input input.contatos {
  height: 16rem;
}

.pedido {
  background-color: #87C5C5;
  color: #407471;
  padding: .2rem;
  background: url(imgs/city.jpg) center no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 0;
}

.pedido::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: inherit;
  height: inherit;
  background: -webkit-gradient(linear, left top, right top, from(rgba(71, 132, 132, 0.8)), to(rgba(71, 132, 132, 0.9)));
  background: linear-gradient(to right, rgba(71, 132, 132, 0.8), rgba(71, 132, 132, 0.9));
  z-index: -1;
}

.pedido .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.pedido .section-title {
  color: white;
}

.pedido .btn-pedido {
  display: inline-block;
  border: none;
  background-color: white;
  padding: 2rem 4rem;
  font-size: 1.6rem;
  border-radius: 8px;
  margin-bottom: 5rem;
  -webkit-box-shadow: 2px 2px #407471;
          box-shadow: 2px 2px #407471;
  text-align: center;
  width: 15rem;
  font-weight: bold;
}

footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  color: white;
  padding: 2rem;
  background: url(imgs/city.jpg) center no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 0;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: inherit;
  height: inherit;
  background: -webkit-gradient(linear, left top, right top, from(rgba(135, 197, 197, 0.85)), to(rgba(71, 132, 132, 0.9)));
  background: linear-gradient(to right, rgba(135, 197, 197, 0.85), rgba(71, 132, 132, 0.9));
  z-index: -1;
}

footer img {
  width: auto;
  height: 13vw;
}

footer svg {
  fill: white;
}

footer .footer-title {
  font-size: 2.2rem;
  font-weight: bold;
}

footer ul {
  margin-top: 2rem;
}

footer li {
  font-size: 1.8rem;
  margin-top: .7rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

footer .fale-conosco {
  margin-top: 4rem;
}

footer .fale-conosco li p {
  margin-left: 1rem;
}

@media screen and (max-width: 1200px) {
  footer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  footer img {
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
  }
  footer .footer-fale-conosco {
    margin-top: 4rem;
  }
  footer .footer-fale-conosco .fale-conosco {
    margin-top: 2rem;
  }
}

@media screen and (max-width: 900px) {
  footer img {
    display: none;
  }
}

/* MEDIA QUERIES */
@media screen and (min-width: 800px) {
  .btn.primary {
    background-color: #407471;
    color: white;
    padding: 1rem 3rem;
  }
  .nav .menu-icons {
    display: none;
  }
  .nav .nav-list {
    padding: initial;
    position: initial;
    width: initial;
    height: initial;
    background-color: transparent;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: initial;
        -ms-flex-pack: initial;
            justify-content: initial;
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  .nav .nav-list .nav-item:not(:last-child) {
    margin-right: 3rem;
  }
  .nav .nav-list .nav-item {
    background-color: initial;
    margin-bottom: 0;
  }
  .nav .nav-list .nav-item::before {
    display: none;
  }
  .nav .nav-list .nav-link {
    font-size: 1.6rem;
    font-weight: normal;
    color: white;
  }
  .hero .main-message {
    max-width: 51%;
  }
  .hero .main-message h1 {
    font-size: 3.5rem;
    color: white;
  }
  .hero .main-message p {
    font-size: 1.5rem;
    margin-top: 1rem;
  }
}

@media screen and (max-width: 467px) {
  .hero .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .hero .main-message {
    padding-bottom: 2.5rem;
  }
  .hero .carousel {
    margin: 3rem 0;
    height: 30vh;
  }
  .hero .carousel img {
    width: 100%;
  }
}
/*# sourceMappingURL=styles.css.map */