/*
Theme Name: MenuTheme
Theme URI: https://blumewebstudio.com.br
Author: Blume Web Studio
Author URI: https://blumewebstudio.com.br
Description: Tema criado para menus.
Version: 1.0
*/
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

img {
  max-width: 100%;
}

body,
html {
  font-family: "Albert Sans", sans-serif;
  color: #ffffff;
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
}

.container {
  max-width: 792px;
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 1200px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.swiper-button-prev,
.swiper-button-next {
  background: none;
  border: 0;
}

body.popup-open {
  overflow: hidden;
}

.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  background-color: #25d366;
  border-radius: 50%;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: transform 0.3s ease;
}
.whatsapp-float:hover {
  transform: scale(1.1);
}

.swiper-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
}
.swiper-pagination .swiper-pagination-bullet {
  width: 5px;
  height: 5px;
  background-color: #ffffff;
  opacity: 0.53;
  border: none;
  border-radius: 0;
  transition: all 0.4s ease;
  cursor: pointer;
  transform: scale(1);
}
.swiper-pagination .swiper-pagination-bullet:hover {
  background-color: #ffffff;
  transform: scale(1.2);
}
.swiper-pagination .swiper-pagination-bullet:focus {
  outline: 2px solid #ffffff;
  outline-offset: 2px;
}
.swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 32px;
  height: 5px;
  background-color: #ffffff;
  opacity: 1;
  border-radius: 0;
  transform: scale(1.1);
}
.swiper-pagination.secondary .swiper-pagination-bullet {
  background-color: #ffffff;
  opacity: 0.53;
}
.swiper-pagination.secondary .swiper-pagination-bullet:hover {
  background-color: #ffffff;
}
.swiper-pagination.secondary .swiper-pagination-bullet:focus {
  outline: 2px solid #ffffff;
}
.swiper-pagination.secondary .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #ffffff;
  opacity: 1;
}

#trabalhe-popup {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  background: rgba(30, 2, 9, 0.8);
  backdrop-filter: blur(3px);
  display: none;
  justify-content: center;
  align-items: center;
  padding: 20px;
  z-index: 9999;
}
#trabalhe-popup.active {
  display: flex;
}
#trabalhe-popup .popup-content {
  background: #fff5eb;
  width: 100%;
  max-width: 353px;
  border-radius: 20px;
  padding: 30px 20px;
  position: relative;
  animation: popupShow 0.35s ease forwards;
  opacity: 0;
  transform: scale(0.85);
}
#trabalhe-popup .popup-content .form-row {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 10px;
}
#trabalhe-popup .popup-content .input-form {
  margin-bottom: 10px;
}
#trabalhe-popup .popup-content .input-form label {
  font-weight: 400;
  font-size: 0.875em;
  line-height: 1;
  color: #000000;
}
#trabalhe-popup .popup-content .input-form input {
  width: 100%;
  height: 40px;
  border-radius: 10px;
  border: 1px solid #e4ccb5;
  padding: 0 15px;
  background: #fff5eb;
  margin-top: 5px;
}
#trabalhe-popup .popup-content .input-form textarea {
  width: 100%;
  height: 82px;
  border-radius: 10px;
  border: 1px solid #e4ccb5;
  resize: none;
  background: #fff5eb;
  margin-top: 5px;
}
#trabalhe-popup .popup-content .btn-form p {
  position: relative;
  display: inline-flex;
  align-items: center;
  width: 100%;
}
#trabalhe-popup .popup-content .btn-form .wpcf7-submit {
  background: #8a092a;
  color: #ffffff;
  font-weight: 700;
  padding: 12px 26px;
  border-radius: 40px;
  border: none;
  width: 100%;
  cursor: pointer;
  transition: all 0.25s ease;
}
#trabalhe-popup .popup-content .btn-form .wpcf7-submit:hover {
  background: #64071e;
  transform: translateY(-1px);
}
#trabalhe-popup .popup-content .btn-form .wpcf7-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}
#trabalhe-popup .popup-content .btn-form .wpcf7-spinner {
  position: absolute;
  right: 20px;
  width: 22px;
  height: 22px;
  margin: 0;
  background: none;
}
#trabalhe-popup .popup-content .wpcf7-response-output {
  display: none;
}
#trabalhe-popup .close-popup {
  position: absolute;
  top: 10px;
  right: 14px;
  font-size: 28px;
  border: none;
  background: none;
  cursor: pointer;
  color: #cca37a;
  line-height: 1;
}
#trabalhe-popup .popup-title {
  font-weight: 600;
  font-size: 1.313em;
  line-height: 1;
  color: #8a092a;
  text-align: center;
}
#trabalhe-popup .popup-text {
  font-weight: 400;
  font-size: 0.875em;
  line-height: 1;
  color: #414141;
  text-align: center;
  max-width: 216px;
  margin: 15px auto 20px auto;
}

@keyframes popupShow {
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.page-template-page-home > div {
  background-color: #8a092a;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}
.page-template-page-home > div #header {
  width: 100%;
  padding: 50px 20px 20px 20px;
  border-bottom: 1px solid #7b0523;
  display: flex;
  justify-content: center;
  animation: fadeSlideDown 1s ease forwards;
  opacity: 0;
}
.page-template-page-home > div #pg-home {
  width: 100%;
}
.page-template-page-home > div #pg-home .home-title {
  font-weight: 500;
  font-size: 1.438em;
  line-height: 1;
  color: #cca37a;
  text-align: center;
  margin-bottom: 30px;
  animation: fadeSlideUp 1s ease forwards;
  opacity: 0;
  animation-delay: 0.2s;
}
.page-template-page-home > div #pg-home .home-menu ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}
.page-template-page-home > div #pg-home .home-menu ul li {
  max-width: 353px;
  width: 100%;
}
.page-template-page-home > div #pg-home .home-menu ul li a {
  width: 100%;
  height: 55px;
  background-color: #cca37a;
  border-radius: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  animation: fadeSlideUp 0.8s ease forwards;
  opacity: 0;
}
.page-template-page-home > div #pg-home .home-menu ul li a svg {
  width: 21px;
  height: 21px;
  transition: transform 0.4s ease;
}
.page-template-page-home > div #pg-home .home-menu ul li a span {
  font-weight: 500;
  font-size: 1em;
  line-height: 1;
  color: #ffffff;
  transition: color 0.4s ease;
}
.page-template-page-home > div #pg-home .home-menu ul li a:before {
  content: "";
  position: absolute;
  top: 0;
  left: -150%;
  width: 50%;
  height: 100%;
  background: rgba(255, 255, 255, 0.15);
  transform: skewX(-20deg);
  transition: all 0.5s ease;
}
.page-template-page-home > div #pg-home .home-menu ul li a:hover {
  transform: scale(1.07);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2), 0 0 20px rgba(204, 163, 122, 0.4), 0 0 40px rgba(204, 163, 122, 0.2);
  background-color: #c59668;
}
.page-template-page-home > div #pg-home .home-menu ul li a:hover svg {
  transform: rotate(25deg) scale(1.2);
}
.page-template-page-home > div #pg-home .home-menu ul li a:hover span {
  color: white;
}
.page-template-page-home > div #pg-home .home-menu ul li a:hover:before {
  left: 150%;
}
.page-template-page-home > div #pg-home .home-menu ul li a:hover:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 40px;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: pulseHover 1s infinite;
}
.page-template-page-home > div #pg-home .social-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-top: 15px;
}
.page-template-page-home > div #pg-home .social-buttons .social-btn {
  width: 55px;
  height: 55px;
  background-color: #cca37a;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  animation: fadeSlideUp 0.8s ease forwards;
  opacity: 0;
}
.page-template-page-home > div #pg-home .social-buttons .social-btn svg {
  width: 21px;
  height: 21px;
  transition: transform 0.4s ease, color 0.4s ease;
}
.page-template-page-home > div #pg-home .social-buttons .social-btn:before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: rgba(255, 255, 255, 0.15);
  transform: skewX(-20deg);
  transition: all 0.5s ease;
}
.page-template-page-home > div #pg-home .social-buttons .social-btn:hover {
  transform: scale(1.25) rotate(25deg);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2), 0 0 15px rgba(204, 163, 122, 0.4), 0 0 25px rgba(204, 163, 122, 0.2);
  background-color: #c59668;
}
.page-template-page-home > div #pg-home .social-buttons .social-btn:hover svg {
  transform: rotate(25deg) scale(1.3);
  color: white;
}
.page-template-page-home > div #pg-home .social-buttons .social-btn:hover:before {
  left: 150%;
}
.page-template-page-home > div #pg-home .social-buttons .social-btn:hover:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: pulseHover 1s infinite;
}
.page-template-page-home > div #footer {
  width: 100%;
  padding: 20px 20px 50px 20px;
  border-top: 1px solid #7b0523;
  text-align: center;
  animation: fadeSlideUp 1s ease forwards;
  opacity: 0;
}
.page-template-page-home > div #footer p {
  font-weight: 500;
  font-size: 0.75em;
  line-height: 17px;
  color: #eed0b2;
  transition: color 0.3s ease;
}
.page-template-page-home > div #footer p a {
  color: #eed0b2;
}
.page-template-page-home > div #footer p a:hover {
  color: white;
}

@keyframes pulseHover {
  0% {
    transform: scale(0.9);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.3;
  }
  100% {
    transform: scale(0.9);
    opacity: 0.6;
  }
}
@keyframes fadeSlideUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeSlideDown {
  0% {
    opacity: 0;
    transform: translateY(-30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.page-template-page-menu > div .header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
  position: relative;
  z-index: 1000;
  background-color: #8a092a;
  overflow: hidden;
}
.page-template-page-menu > div .header .header-logo,
.page-template-page-menu > div .header .hamburger,
.page-template-page-menu > div .header .home-menu {
  opacity: 0;
  transform: translateY(20px);
  animation: contentReveal 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.page-template-page-menu > div .header .header-logo {
  animation-delay: 0.15s;
}
.page-template-page-menu > div .header .hamburger {
  animation-delay: 0.25s;
}
.page-template-page-menu > div .header .home-menu {
  animation-delay: 0.35s;
}
.page-template-page-menu > div .header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #8a092a;
  transform: translateY(0);
  animation: bgMaskReveal 0.6s ease-out forwards;
}
.page-template-page-menu > div .header .header-logo {
  display: block;
  max-width: 172px;
  transition: transform 0.35s ease, filter 0.35s ease;
}
.page-template-page-menu > div .header .header-logo img {
  width: 100%;
  height: auto;
  object-fit: contain;
  transition: transform 0.35s ease, filter 0.35s ease;
}
.page-template-page-menu > div .header .header-logo:hover {
  transform: translateY(-2px);
}
.page-template-page-menu > div .header .header-logo:hover img {
  transform: scale(1.06);
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.18));
}
.page-template-page-menu > div .header > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.page-template-page-menu > div .header .home-menu ul {
  display: none;
}
.page-template-page-menu > div .header .hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  border: none;
  background: none;
  cursor: pointer;
  z-index: 1001;
}
.page-template-page-menu > div .header .hamburger span {
  width: 28px;
  height: 3px;
  background: #cca37a;
  border-radius: 2px;
  transition: 0.3s ease;
}
.page-template-page-menu > div .header .hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.page-template-page-menu > div .header .hamburger.active span:nth-child(2) {
  opacity: 0;
}
.page-template-page-menu > div .header .hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}
.page-template-page-menu > div .header .home-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 70%;
  height: 100vh;
  background: #b31643;
  padding: 80px 25px;
  box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
  transition: 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
.page-template-page-menu > div .header .home-menu.active {
  right: 0;
}
.page-template-page-menu > div .header .home-menu ul {
  display: flex !important;
  flex-direction: column;
  gap: 15px;
  width: 100%;
}
.page-template-page-menu > div .header .home-menu ul.menu-social {
  flex-direction: row;
  gap: 20px;
  margin-top: 15px;
}
.page-template-page-menu > div .header .home-menu ul li a {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  width: max-content;
  padding: 12px 0;
  transition: color 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.page-template-page-menu > div .header .home-menu ul li a .hover-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.page-template-page-menu > div .header .home-menu ul li a svg {
  width: 21px;
  height: 21px;
  transition: transform 0.35s ease, filter 0.35s ease;
}
.page-template-page-menu > div .header .home-menu ul li a span {
  font-weight: 500;
  font-size: 1em;
  line-height: 1;
  color: #ffffff;
  position: relative;
  transition: color 0.4s ease;
}
.page-template-page-menu > div .header .home-menu ul li a span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0%;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transition: width 0.35s ease;
}
.page-template-page-menu > div .header .home-menu ul li a:hover .hover-wrap {
  transform: translateX(6px);
}
.page-template-page-menu > div .header .home-menu ul li a:hover svg {
  transform: translateX(4px) scale(1.12);
  filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.4));
}
.page-template-page-menu > div .header .home-menu ul li a:hover span {
  color: white;
}
.page-template-page-menu > div .header .home-menu ul li a:hover span::after {
  width: 100%;
}
.page-template-page-menu > div .header .no-scroll {
  overflow: hidden;
}
.page-template-page-menu > div #pg-menu {
  padding-bottom: 100px;
}
.page-template-page-menu > div #pg-menu .section-intro {
  background-color: #8a092a;
  position: relative;
}
.page-template-page-menu > div #pg-menu .section-intro .title-section {
  font-weight: 500;
  font-size: 1.438em;
  line-height: 1;
  color: #cca37a;
  text-align: center;
  padding: 30px 20px;
  opacity: 0;
  animation: globalFadeUp 0.9s ease forwards;
  animation-delay: 0.2s;
}
.page-template-page-menu > div #pg-menu .section-intro .intro-arrow {
  position: absolute;
  left: 50%;
  bottom: -20px;
  transform: translateX(-50%);
  background-color: #8a092a;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.page-template-page-menu > div #pg-menu .section-intro .intro-arrow img {
  width: 22px;
  height: 22px;
  transition: transform 0.3s ease;
}
.page-template-page-menu > div #pg-menu .section-intro .intro-arrow:hover {
  transform: translateX(-50%) translateY(4px) scale(1.1);
}
.page-template-page-menu > div #pg-menu .section-intro .intro-arrow:hover img {
  transform: translateY(3px);
}
.page-template-page-menu > div #pg-menu .carousel-cat .swiper-slide {
  width: auto;
  flex-shrink: 0;
}
.page-template-page-menu > div #pg-menu .menu-categories {
  padding-top: 50px;
  animation: globalFadeUp 1s ease forwards;
  opacity: 0;
  transition: all 0.3s ease;
}
.page-template-page-menu > div #pg-menu .menu-categories.fixed {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background-color: #ffffff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  border-radius: 40px;
  width: 100%;
  max-width: 792px;
  padding: 12px 5px;
  opacity: 1;
  animation: none;
  z-index: 9999;
}
.page-template-page-menu > div #pg-menu .menu-categories .categories-item a {
  width: max-content;
  height: 37px;
  background-color: #cca37a;
  padding: 5px 15px;
  border-radius: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3px;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}
.page-template-page-menu > div #pg-menu .menu-categories .categories-item a.active {
  opacity: 1;
}
.page-template-page-menu > div #pg-menu .menu-categories .categories-item a:hover {
  opacity: 1;
}
.page-template-page-menu > div #pg-menu .menu-categories .categories-item a .cat-icon svg {
  width: 21px;
  height: 21px;
}
.page-template-page-menu > div #pg-menu .menu-categories .categories-item a .cat-title {
  font-weight: 500;
  font-size: 0.75em;
  line-height: 1;
  color: #ffffff;
}
.page-template-page-menu > div #pg-menu .categories-container {
  padding-top: 50px;
  animation: globalFadeUp 1s ease forwards;
  opacity: 0;
}
.page-template-page-menu > div #pg-menu .categories-container .title-categories {
  font-weight: 500;
  font-size: 1.125em;
  line-height: 1;
  color: #6c4b2a;
  border-bottom: 1px solid #eee3d9;
  padding: 10px 0;
  margin-bottom: 15px;
}
.page-template-page-menu > div #pg-menu .product-carousel {
  position: relative;
}
@media (max-width: 768px) {
  .page-template-page-menu > div #pg-menu .product-carousel > div {
    flex-direction: column;
    gap: 15px;
  }
}
.page-template-page-menu > div #pg-menu .product-carousel .swiper-slide {
  width: auto;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .page-template-page-menu > div #pg-menu .product-carousel .swiper-slide {
    width: 100% !important;
  }
}
.page-template-page-menu > div #pg-menu .product-carousel .product-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(204, 163, 122, 0.1411764706);
  border-radius: 10px;
  background-color: #fffbf8;
  padding: 15px;
  width: 353px;
  opacity: 0;
  animation: globalFadeUp 1s ease forwards;
  animation-delay: 0.3s;
}
.page-template-page-menu > div #pg-menu .product-carousel .product-card .product-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.page-template-page-menu > div #pg-menu .product-carousel .product-card .product-info .product-title {
  font-weight: 700;
  font-size: 1.125em;
  line-height: 1;
  color: #8a092a;
}
.page-template-page-menu > div #pg-menu .product-carousel .product-card .product-info .product-description {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.page-template-page-menu > div #pg-menu .product-carousel .product-card .product-info .product-description p {
  font-weight: 400;
  font-size: 0.75em;
  line-height: 1;
  color: #6c4b2a;
}
.page-template-page-menu > div #pg-menu .product-carousel .product-card .product-info .product-description ul {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.page-template-page-menu > div #pg-menu .product-carousel .product-card .product-info .product-description ul li {
  font-weight: 400;
  font-size: 0.813em;
  line-height: 1;
  color: #6c4b2a;
  border: 1px solid rgba(204, 163, 122, 0.1411764706);
  border-radius: 5px;
  padding: 5px;
  width: max-content;
  background-color: #ffffff;
}
.page-template-page-menu > div #pg-menu .product-carousel .product-card .product-image {
  min-width: 125px;
  height: 125px;
  overflow: hidden;
}
.page-template-page-menu > div #pg-menu .product-carousel .product-card .product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.page-template-page-menu > div #footer {
  width: 100%;
  padding: 20px 20px 50px 20px;
  border-top: 1px solid #7b0523;
  text-align: center;
  animation: fadeSlideUp 1s ease forwards;
  opacity: 0;
}
.page-template-page-menu > div #footer p {
  font-weight: 500;
  font-size: 0.75em;
  line-height: 17px;
  color: #eed0b2;
  transition: color 0.3s ease;
}
.page-template-page-menu > div #footer p a {
  color: #eed0b2;
}
.page-template-page-menu > div #footer p a:hover {
  color: white;
}

@keyframes globalFadeUp {
  0% {
    opacity: 0;
    transform: translateY(25px);
    filter: blur(6px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}
@keyframes bgMaskReveal {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-100%);
  }
}
@keyframes contentReveal {
  0% {
    opacity: 0;
    transform: translateY(20px);
    filter: blur(6px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}
.swiper-button-next,
.swiper-button-prev {
  top: 68% !important;
  color: #7b0523 !important;
}
@media (max-width: 768px) {
  .swiper-button-next,
  .swiper-button-prev {
    display: none !important;
  }
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 20px !important;
}

.swiper-button-prev {
  left: -50px !important;
}

.swiper-button-next {
  right: -50px !important;
}

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