* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  font-family: "Inter", sans-serif;
}

body {
  max-height: 100vh;
}

.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}

.flex {
  display: flex;
}

.cabecalho {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* HEADER */

header {
  width: 100%;
  height: 600px;
  padding: 20px 5%;
  background-color: #452365;
  background-image: url(../imagem/bg_hero2.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
}

.logo img {
  height: 80px;
}

header nav.menu-desktop ul {
  display: flex;
  list-style: none;
}

header nav.menu-desktop li {
  padding-right: 20px;
}

header nav.menu-desktop a {
  color: #ffffff;
  text-decoration: none;
  font-size: 20px;
}


/* MENU MOBILE */

.btn-abrir-menu i {
  color: #ffffff;
  font-size: 40px;
}

.menu-mobile {
  background-color: #452365;
  height: 100vh;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 99999;
  width: 0;
  overflow: hidden;
}

.menu-mobile nav ul {
  text-align: right;
  list-style: none;
}

.menu-mobile nav ul li a {
  display: inline-block;
  color: #ffffff;
  font-size: 25px;
  font-weight: 300;
  text-decoration: none;
  padding: 30px 50%;
}

.menu-mobile .btn-fechar {
  padding: 30px 5%;
}

.menu-mobile .btn-fechar i {
  font-size: 25px;
  color: #ffffff;
}

.overlay-menu {
  background-color: #1a0028aa;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 88888;
  display: none;
}

/* HERO */

.hero {
  position: relative;
  padding: 120px 20px 150px;
  color: #ffffff;
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.hero-content h1 {
  font-size: 55px;
}

.hero-content p {
  font-size: 24px;
  margin-top: 10px;
}

.btn-hero {
  margin-top: 30px;
}

.btn-hero button {
  padding: 10px 40px;
  background-color: #ffffff;
  border: 0;
  border-radius: 12px;
  color: #3b184f;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s;
}

button:hover {
  box-shadow: 0px 0px 20px #fcce31;
  transform: scale(1.05);
}

.hero-cards {
  position: absolute;
  bottom: -90px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 24px;
  z-index: 2;
}

.card {
  background: #3b184f;
  color: #ffffff;
  padding: 24px;
  border-radius: 12px;
  width: 280px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  text-align: center;
}

.card p {
  margin-top: 5px;
}

/* SOBRE */

.sobre-empresa {
  width: 100%;
  height: 400px;
  background-image: url(../imagem/açai3.webp);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right bottom;
}

.texto-sobre {
  padding: 60px;
}

.texto-sobre h1 {
  display: inline-block;
  font-size: 30px;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 3px solid #3b184f;
}

.texto-sobre p {
  width: 700px;
  font-size: 20px;
}

.btn-sobre {
  margin-top: 25px;
}

.btn-sobre button {
  background-color: #3b184f;
  color: #ffffff;
}

/* PRODUTOS */

.area-produtos {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px;
  background: #3b184f;
  color: #ffffff;
}

.text-produtos {
  text-align: center;
}

.text-produtos h1 {
  display: inline-block;
  margin-bottom: 15px;
  padding-bottom: 5px;
  border-bottom: 3px solid #ffffff;
}

.area-cards-produto {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.cards-produtos {
  width: 230px;
  flex-shrink: 0;
  background: #ffffff;
  color: #3b184f;
  padding: 30px 20px;
  text-align: center;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.cards-produtos img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 12px;
}

/* FEEDBACK */

section.feedback {
  padding: 80px 4%;
  text-align: center;
  color: #3b184f;
}

section.feedback .flex {
  justify-content: center;
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: auto;
  overflow: hidden;
}

section.feedback .slider {
  display: flex;
  transition: transform 0.8s ease-in-out;
}

section.feedback .slider.no-transition {
  transition: none !important;
}

section.feedback .slide {
  min-width: 100%;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

section.feedback .slide p {
  font-size: 24px;
  margin-bottom: 15px;
}

.slide span {
  font-weight: bold;
  color: #333333;
}

section.feedback .nav-btn {
  all: unset;
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  background: none;
  color: #3b184f;
  font-size: 24px;
  padding: 10px;
  cursor: pointer;
  z-index: 1;
}

section.feedback .prev {
  left: 10px;
}

section.feedback .next {
  right: 10px;
}

/* MAPA */

.section-map {
  width: 100%;
  background-image: url(../imagem/map.webp);
  background-size: cover;
  background-position: center;
  padding-top: 30px;
  padding-bottom: 30px;
}

.section-map--area {
  width: 100vw;
  max-width: 1140px;
  margin: auto;
}

.section-map--info {
  width: 50%;
  padding: 30px;
  background-color: #ffffff;
  color: #000000;
}

.section-map--info-item {
  display: flex;
  align-items: center;
  color: #3b184f;
  margin-bottom: 10px;
}

.section-map--info-item-img {
  width: 30px;
  height: 30px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 15px;
  background-color: #3b184f;
  border-radius: 15px;
  margin-right: 15px;
}

.section-map--info-item-img img {
  width: 15px;
  height: auto;
}

/* FOOTER */

.footer {
  background: #3b184f;
  padding: 20px 5%;
  text-align: center;
}

.footer p {
  color: #ffffff;
  font-size: 14px;
}

.footer a {
  color: #ffffff;
  text-decoration: underline;
}

.footer a:hover {
  opacity: 0.8;
}

/* POLÍTICA DE PRIVACIDADE */

.hero-politica {
  height: auto;
  padding: 100px 20px 80px;
}

.hero-politica .hero-content h1 {
  font-size: 48px;
}

.hero-politica .hero-content p {
  font-size: 20px;
}

.politica-privacidade {
  padding: 60px 5%;
  background-color: #f7f7f7;
}

.politica-privacidade h2 {
  font-size: 22px;
  color: #3b184f;
  margin-top: 30px;
  margin-bottom: 10px;
}

.politica-privacidade p {
  font-size: 16px;
  color: #333333;
  line-height: 160%;
}

.data-atualizacao {
  margin-top: 40px;
  font-size: 14px;
  color: #777777;
  text-align: center;
}

/* TERMOS DE USO */

.hero-termos {
  height: auto;
  padding: 100px 20px 80px;
}

.hero-termos .hero-content h1 {
  font-size: 48px;
}

.hero-termos .hero-content p {
  font-size: 20px;
}

.termos-de-uso {
  padding: 60px 5%;
  background-color: #f7f7f7;
}

.termos-de-uso h2 {
  font-size: 22px;
  color: #3b184f;
  margin-top: 30px;
  margin-bottom: 10px;
}

.termos-de-uso p {
  font-size: 16px;
  color: #333333;
  line-height: 160%;
}

/* CONTROLES */

.menu-mobile,
.overlay-menu,
.btn-abrir-menu {
  display: none;
}

/* MEDIA QUERIES */

@media screen and (max-width: 1400px) {
  .hero-content h1 {
    font-size: 48px;
  }

  .hero-content p {
    font-size: 20px;
  }
}

@media screen and (max-width: 1300px) {
  .sobre-empresa {
    background-image: none;
    height: auto;
  }

  .texto-sobre p {
    width: 100%;
  }

  .section-map--area {
    display: flex;
    justify-content: center;
  }
}

@media screen and (max-width: 992px) {
  header {
    height: auto;
    padding-bottom: 50px;
  }

  .hero {
    padding: 80px 20px 10px;
  }

  .hero-cards {
    display: none;
  }

  section.feedback .slide p {
    font-size: 20px;
  }

  .section-map--info {
    width: 70%;
  }
}

@media screen and (max-width: 768px) {
  .menu-desktop {
    display: none;
  }

  .menu-mobile {
    display: block;
  }

  .menu-mobile.abrir {
    width: 70%;
  }

  .btn-abrir-menu {
    display: block;
  }

  section.feedback .nav-btn {
    font-size: 20px;
    padding: 8px;
  }

  section.feedback .slide p {
    font-size: 18px;
    margin-bottom: 5px;
    overflow-wrap: break-word;
    word-break: break-word;
  }

  .slide span {
    font-size: 10px;
  }

  section.feedback .prev {
    left: 0;
  }

  section.feedback .next {
    right: 0;
  }

  .section-map--info {
    width: 100%;
  }
}

@media screen and (max-width: 600px) {
  .hero-content h1 {
    font-size: 40px;
  }

  section.feedback .slide p {
    font-size: 14px;
  }
}

@media screen and (max-width: 490px) {
  .texto-sobre p {
    max-width: 100%;
  }

  section.feedback {
    padding: 20px 3%;
  }

  section.feedback .slide p {
    font-size: 10px;
  }

  .slide span {
    font-size: 8px;
  }

  .section-map--info {
    overflow-wrap: break-word;
    word-break: break-word;
    max-width: 100%;
  }
}
