/* Variáveis de cor */
@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");

:root {
  --primaria: #ffe9ca;
  --secundaria: #2c0703;
  --terciaria: #95332d;
  --quaternaria: #c27601;
}

/* Classes globais */

html {
  scroll-behavior: smooth;
}

section {
  scroll-margin-top: 80px;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: var(--primaria);
}

.bg-primaria {
  background-color: var(--primaria);
}
.bg-secundaria {
  background-color: var(--secundaria);
}

.bg-terciaria {
  background-color: var(--terciaria);
}

.bg-quaternaria {
  background-color: var(--quaternaria);
}

h1 {
  font-size: 48px;
}

h2 {
  font-size: 40px;
  font-weight: 600;
}

h3 {
  font-size: 35px;
}

.text-center {
  text-align: center;
}

.d-flex {
  display: flex;
}

.justify-center {
  justify-content: center;
}

.align-center {
  align-items: center;
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.grid-5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.grid-invert {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  grid-template-areas: "texto imagem";
}

.grid-invert .col.texto {
  grid-area: texto;
}

.grid-invert .col.imagem {
  grid-area: imagem;
}

.col {
  flex: 1 1 50%;
}
.p-0 {
  padding: 0;
}

.pt-1 {
  padding-top: 10px;
}

.pt-2 {
  padding-top: 20px;
}

.pt-3 {
  padding-top: 30px;
}

.pt-5 {
  padding-top: 50px;
  padding-bottom: 50px;
}

.pb-5 {
  padding-bottom: 50px;
}

.pt-20 {
  padding-top: 100px;
}
.ps-3 {
  padding-left: 10px;
}

.pb-20 {
  padding-bottom: 100px;
}

.pb-30 {
  padding-bottom: 150px;
}

.m-0 {
  margin: 0;
}

.mt-5 {
  margin-top: 50px;
}

.mb-5 {
  margin-bottom: 50px;
}

.wd-60 {
  width: 60%;
}

.wd-80 {
  width: 80%;
}

.wd-100 {
  width: 100%;
}

.gap-10 {
  gap: 10px;
}

.gap-20 {
  gap: 20px;
}

.txt-under {
  text-decoration: underline;
}

.fw-bold {
  font-weight: bold;
}

.fs-20 {
  font-size: 40px;
}

.center-div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.p-relative {
  position: relative;
}

.p-absolute {
  position: absolute;
}

/* Botões */

.btn-primary {
  background-color: var(--primary-color);
  border-radius: 100px;
  padding: 12px 24px;
  text-decoration: none;
  color: #000;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Botão hamburguer */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
}

/* Lista normal em desktop */
.ul-menu {
  list-style: none;
  display: flex;
}

.ul-menu li {
  padding: 0px 10px;
}

.ul-menu a {
  color: var(--secundaria);
  font-weight: 600;
}

/* --- MOBILE --- */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .menu {
    position: absolute;
    top: 80px;
    right: 0;
    width: 100%;
    background: #fff;
    border: 1px solid #ddd;
    display: none;
    flex-direction: column;
    z-index: 1;
  }

  .menu.active {
    display: flex;
  }

  .ul-menu {
    flex-direction: column;
    padding: 10px 0;
  }

  .ul-menu li {
    padding: 10px;
    text-align: center;
  }
}

/* BANNER  */
.txt-banner-desk {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.txt-banner-desk h1 {
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
}
.txt-banner-desk p {
  color: #fff;
  font-size: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
}

.txt-banner-desk i {
  color: #fff;
  font-size: 40px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
}

/* QUEM SOMOS */
.quem-somos {
  background-color: var(--secundaria);
}

.quem-somos p {
  color: #fdfdfd;
  font-size: 20px;
}

.shape-1 {
  position: absolute;
  top: -1px;
  width: 100%;
  left: 0;
  right: 0;
}
.shape-2 {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 100%;
}

.shape-1.bottom {
  top: inherit;
  bottom: -1px;
}
.round-shape {
  clip-path: circle(100% at 50% -50%);
}

.m-negative {
  margin-top: -200px;
}

/* PRODUTOS  */

.swiper-button-next,
.swiper-button-prev {
  color: var(--secundaria) !important;
}

.card-produto {
  border-radius: 50px;
}

.card-produto img {
  border-radius: 20px 20px 0 0;
}

.pd-txt {
  padding: 20px;
  text-align: center;
}

.pd-txt h4 {
  color: #fff;
  font-size: 22px;
}

.pd-txt p {
  padding-top: 10px;
  padding-bottom: 30px;
  color: #fff;
  text-align: start;
}

.btn-area {
  text-align: center;
}

.btn-catalogo {
  background-color: #c27601;
  color: #fff;
  font-weight: 600;
  border-radius: 10px;
  padding: 10px 50px;
}

.img-produto {
  text-align: center;
}

.img-produto img {
  width: 50%;
}

.card-produto h4 {
  height: 50px;
}

.swiper {
  width: 100%;
  height: 100%;
}

.swiper-pagination-bullet-active {
  background: var(--secundaria) !important;
}

/* NOSSA LOJA  */

.nossa-loja {
  background-color: var(--terciaria);
}

.nossa-loja h3 {
  color: #fff;
}

.nossa-loja p {
  color: #fff;
  font-size: 20px;
}

.p-loja {
  padding: 30px;
}

/* FALE CONOSCO */
.btn-whats {
  background-color: #25d366;
  padding: 10px 30px;
  color: #fff;
  border-radius: 40px;
  font-weight: 600;
}

.mt-btn {
  margin-top: 20px;
}

/* PERGUNTAS FREQUENTES */

.bg-faq {
  background-image: url(../img/bg-faq.png);
}

.bg-faq h2,
.bg-faq p,
.bg-faq span,
.bg-faq div {
  color: white;
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding: 10px 0;
  margin-top: 20px;
  max-width: 900px;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  font-weight: bold;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  margin-top: 5px;
  line-height: 1.4;
}

.faq-item.active .faq-answer {
  max-height: 600px;
}

/* footer */
.footer-custom {
  background-color: #95332d;
  color: white;
  padding: 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.content-footer {
  display: flex;
  flex-direction: column;
}

.base-position {
  padding: 20px 0;
  text-align: center;
}

.border-bt-footer {
  border-bottom: 1px solid white;
}

.footer-area {
  padding: 30px 0;
}

/*------------------------------
    Whats Flutuante
------------------------------*/

/* whatsapp */
.whatsapp {
  width: 60px;
  height: 60px;
  line-height: 80px;
  text-align: center;
  color: #fff;
  font-size: 18px;
  position: fixed;
  bottom: 40px;
  right: 30px;
  cursor: pointer;
  border-radius: 30%;
  -webkit-transition: -webkit-transform ease-out 0.1s, background 0.2s;
  -moz-transition: -moz-transform ease-out 0.1s, background 0.2s;
  transition: transform ease-out 0.1s, background 0.2s;
  z-index: 999;
}
