/*
 * Custom Styles
 *
 */
/* START - CSS Vars */
:root {
  --link-color: #9d3b33;
  --link-hover-color: #61372f;
  --font-primary: "work-sans", sans-serif;
  /* --font-heading: "larken", sans-serif; */
  --font-heading: "work-sans", sans-serif;

  --primary-color: #9d3b33;
  --secondary-color: #61372f;
}

/* Estilização da barra de rolagem */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f3ebe1;
}

::-webkit-scrollbar-thumb {
  background: #9d3b33;
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: #61372f;
}

/* END - CSS Vars */

/* START - Imports and HTML overrides */
@import "../vendor/fontawesome-free-6.5.1-web/css/all.min.css";
html {
  width: 100%;
  overflow-x: hidden !important;
}
body {
  font-family: var(--font-primary);
  font-size: 16px;
  color: #111111;
  font-weight: 300;
  background-color: white;
  width: 100%;
  overflow-x: hidden !important;
}
body.admin-bar #wpadminbar {
  display: none;
}

strong {
  font-weight: 400;
}
ul li {
  line-height: 16px;
}
ul li.menu-item {
  line-height: 1em;
  display: flex;
}
ul,
ol {
  padding-left: 1rem;
}

a,
a:link,
a:visited,
a:active {
  text-decoration: none;
  color: var(--link-color);
  transition: color 0.4s;
}
a:hover {
  color: var(--link-hover-color);
}

/* CSS for [hide_on_mobile] shortcode */
@media (max-width: 767px) {
  .hide-on-mobile {
    display: none !important;
  }
}

@media (max-width: 991px) {
  .container {
    padding: 0 2rem;
  }
}
/* END - Imports and HTML overrides */

/* START - Menu Defaults */
header#main-header {
  position: relative;
  z-index: 10;
  padding: 1.5rem 1rem;
  background: #e4cebc;
}

#top-menu.nav {
  gap: 25px;
  justify-content: center;
}

.primary-menu-container {
  display: flex;
  justify-content: center;
}

#top-menu.nav li a {
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 1px;
  display: block;
  line-height: 1;
  font-family: var(--font-primary);
  color: #a28275;
}

#top-menu.nav li a:hover {
  color: #61372f;
}
#top-menu.nav li a:after {
  display: block;
  height: 3px;
  width: 100%;
  background-color: #61372f;
  content: " ";
  margin-top: 20px;
  position: absolute;
  opacity: 0;
  transition: all 0.3s;
}
#top-menu.nav li a:hover:after,
#top-menu.nav li a:active:after {
  opacity: 1;
  margin-top: 8px;
  color: #61372f;
}
@media (min-width: 992px) {
  #mobile-menu,
  header#main-header a#mobileMenuClose {
    display: none;
  }

  .menu-column {
    display: flex;
    justify-content: center;
  }
}
@media (max-width: 991px) {
  .menu-column {
    position: fixed;
    width: 100%;
    height: 100vh;
    background: #232323;
    top: 0;
    left: 0;
    opacity: 0 !important;
    transform: translateX(100%) !important;
    transition: transform 0s linear 0.5s, opacity 0.4s ease 0s;
  }

  .menu-column.show {
    opacity: 1 !important;
    transform: translateX(0) !important;
    transition: transform 0s linear 0s, opacity 0.4s ease 0s;
  }

  .menu-column .primary-menu-container #top-menu {
    padding: 40px 40px;
    flex-direction: column;
    gap: 36px;
    align-items: center;
  }

  .mobile-and-search-menu {
    gap: 1rem;
  }

  #mobileMenuToggle {
    margin-left: 1rem;
  }

  #mobileMenuToggle i::before {
    color: #974136;
  }
}
#mobileMenuClose {
  position: absolute;
  top: 36px;
  right: 2rem;
  font-size: 30px;
}
#mobileMenuToggle {
  font-size: 30px;
  line-height: 1;
  align-items: center;
  display: flex;
}
a#mobileMenuClose:hover,
a#mobileMenuClose:active {
  color: var(--blue);
}
.mobile-and-search-menu {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
/* END - Menu Defaults */

.logo img {
  width: 50px;
}

#main-content {
  background: #f3ebe1;
  padding-bottom: 40px;
}

footer {
  color: #f3ebe1;
  background: #9d3b33;
  display: flex;
  align-items: center;
}

/* Footer Styles */
.footer {
  background: #9d3b33;
  color: #f3ebe1;
}

.footer .footer-title {
  color: #f3ebe1;
  font-size: 1.2rem;
  font-weight: 500;
  font-family: var(--font-heading);
}

.footer .footer-links li {
  margin-bottom: 0.8rem;
}

.footer .footer-links a {
  color: #f3ebe1;
  text-decoration: none;
  transition: opacity 0.3s ease;
  font-family: var(--font-primary);
}

.footer .footer-links a:hover {
  opacity: 0.8;
  color: #f3ebe1;
}

.footer .footer-logo {
  max-width: 180px;
  height: auto;
}

.footer .social-links {
  display: flex;
  gap: 1.5rem;
  justify-content: flex-end;
}

.footer .social-links a {
  color: #f3ebe1;
}

.footer .social-link {
  color: #f3ebe1;
  font-size: 1.5rem;
  transition: opacity 0.3s ease;
}

.footer .social-link:hover {
  opacity: 0.8;
  color: #f3ebe1;
}

@media (max-width: 768px) {
  .footer.footer .col-md-4 {
    text-align: center !important;
    margin-bottom: 2rem;
  }

  .footer .social-links {
    justify-content: center;
  }

  .footer-links {
    flex-direction: column;
    align-items: center;
    margin-bottom: 3rem;
  }
  .footer .footer-links li:not(:last-child)::after {
    display: none;
  }

  .footer .pb-5 {
    padding-bottom: 0!important;
  }

}

.footer .flykod-footer-logo {
  height: 18px;
  margin-left: 6px;
  position: relative;
  top: -2px;
}

.footer .logo-flykod-footer-link {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.footer .logo-flykod-footer-link a {
  color: #f3ebe1;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.footer .footer-links li:not(:last-child)::after {
  content: "/";
  margin: 0 5px;
  color: #f3ebe1;
  opacity: 0.6;
}

section {
  padding: 80px 0;
}

/* Hero Slider Styles */
.hero-slider {
  position: relative;
  background: #f3ebe1;
  padding: 0 0 80px 0;
}

.hero-slider__slide {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  min-height: 75vh;
  display: flex;
  align-items: center;
  z-index: 1;
}

/* Controles do Slider */
.hero-slider .splide__arrows {
  opacity: 0;
  transition: opacity 0.3s ease;
  position: absolute;
  width: 100%;
  height: 0;
  top: 50%;
  left: 0;
  z-index: 10;
  pointer-events: none;
}

.hero-slider:hover .splide__arrows {
  opacity: 1;
}

.hero-slider .splide__arrow {
  background: #f3ebe1;
  opacity: 0.8;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  position: absolute;
  pointer-events: auto;
  z-index: 11;
  border: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.hero-slider .splide__arrow--prev {
  left: 2rem;
  transform: translateX(-20px);
  opacity: 0;
}

.hero-slider .splide__arrow--next {
  right: 2rem;
  transform: translateX(20px);
  opacity: 0;
}

.hero-slider:hover .splide__arrow--prev {
  transform: translateX(0);
  opacity: 0.8;
}

.hero-slider:hover .splide__arrow--next {
  transform: translateX(0);
  opacity: 0.8;
}

.hero-slider .splide__arrow svg {
  fill: #9d3b33;
  width: 1.5rem;
  height: 1.5rem;
}

/* Paginação */
.hero-slider .splide__pagination {
  bottom: 2rem;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  z-index: 10;
  position: absolute;
}

.hero-slider .splide__pagination__page {
  background: #9d3b33;
  opacity: 0.3;
  width: 2rem;
  height: 0.25rem;
  border-radius: 0;
  margin: 0;
  padding: 0;
  border: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.hero-slider .splide__pagination__page.is-active {
  background: #9d3b33;
  opacity: 1;
  transform: none;
}

.hero-slider__badge {
  padding: 0.35rem 1.5rem 0.25rem 1.5rem;
  border: solid 2px #9d3b33;
  color: #9d3b33;
  border-radius: 50px;
  font-size: 0.675rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
  font-weight: 500;
  font-family: var(--font-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  line-height: 1;
}

.hero-slider__content {
  position: relative;
  z-index: 2;
  margin-bottom: 2rem;
}

.hero-slider__content p {
  font-size: 4rem;
  font-weight: 100;
  margin: 0;
  line-height: 1;
  color: #9d3b33;
  font-family: var(--font-heading);
}

.hero-slider__btn {
  background: #9d3b33;
  color: #f3ebe1 !important;
  padding: 14px;
  border: none;
  border-radius: 50px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: background-color 0.3s ease;
  font-size: 0.875rem;
  font-family: var(--font-primary);
  margin: 0;
  line-height: 1;
  width: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 200px;
}

.hero-slider__btn:hover {
  background: #b44b42;
  color: #f3ebe1;
}

@media (max-width: 768px) {
  .hero-slider__slide {
    position: relative;
    background: none !important;
    min-height: unset;
    padding: 0;
    display: block;
  }
  .hero-slider__slide::before {
    content: "";
    display: block;
    width: 100%;
    height: auto;
    background-image: var(--mobile-image);
    background-size: cover;
    background-position: center;
    border-radius: 0 0 20px 20px;
    aspect-ratio: 1 / 1;
  }
  .hero-slider__slide .container {
    background: #f3ebe1;
    border-radius: 0 0 20px 20px;
    box-shadow: 0 8px 24px rgba(97, 55, 47, 0.08);
    margin-top: -30px; /* sobrepõe um pouco a imagem */
    position: relative;
    z-index: 2;
    padding: 2rem 1rem 1.5rem 1rem;
    max-width: 100%;
    width: 100%;
  }
  .hero-slider__slide .row,
  .hero-slider__slide .col-md-6 {
    margin: 0;
    padding: 0;
    width: 100%;
    max-width: 100%;
    display: block;
    background: none;
    box-shadow: none;
    border-radius: 0;
  }
  .hero-slider__content,
  .hero-slider__badge,
  .hero-slider__btn {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    display: block;
  }
  .hero-slider__content p {
    font-size: 2.5rem;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 300;
  color: #61372f;
}

/* Ajuste para garantir que os controles fiquem sobre o conteúdo */
.hero-slider .splide__arrows,
.hero-slider .splide__pagination {
  position: absolute;
  z-index: 20;
}

/* Video CTA Section */
.video-cta {
  background: #f3ebe1;
  padding: 40px 0 120px 0;
}

.video-cta__video-wrapper {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%; /* Proporção 16:9 */
  overflow: hidden;
  border-radius: 20px;
}

.video-cta__video-wrapper {
  height: 100%;
  padding-bottom: 0;
}

/* Garante que o conteúdo ao lado seja exibido de forma correta */
.video-cta__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (min-width: 992px) {
  .video-cta__video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 101%;
    height: 101%;
    object-fit: cover;
    border-radius: 20px;
  }
}

@media (max-width: 991px) {
  .video-cta__video-wrapper video {
    position: relative;
    top: 0;
    left: 0;
    width: 101%;
    height: 101%;
    object-fit: cover;
    border-radius: 20px;
  }
}

.video-cta__content {
  padding-left: 4rem;
}

.video-cta__title {
  margin-bottom: 1.5rem;
}

.video-cta__title p {
  font-size: 3rem;
  font-weight: 100;
  line-height: 1;
  color: #9d3b33;
  font-family: var(--font-heading);
  margin: 0;
}

@media (max-width: 768px) {
  .video-cta__title p {
    margin-top: 2rem;
    font-size: 2.5rem;
  }
}

.video-cta__paragraph {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #61372f;
  margin-bottom: 2rem;
  font-weight: 300;
}

/* Product Card */
.video-cta__product-card {
  border-radius: 30px;
  padding: 2rem;
  border: solid 1px #61372f;
}

.product-card {
  display: flex;
  gap: 2rem;
}

@media screen and (max-width: 768px) {
  .product-card {
    display: flex;
    gap: 0rem;
    flex-direction: column;
  }
  .video-cta__content {
    padding-left: 0rem;
  }
}

.product-card__image {
  flex: 0 0 42%;
}

.product-card__image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.product-card__content {
  flex: 1;
}

.product-card__title {
  font-size: 1.25rem;
  font-weight: 500;
  color: #61372f;
  margin-bottom: 0.5rem;
}

.product-card__description {
  font-size: 1.1rem;
  color: #61372f;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.product-card__quantity {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  margin-bottom: 1rem;
}

.home-quantity-btn.minus,
.home-quantity-btn.plus {
  width: 30px;
  height: 30px;
  border: 1px solid #9d3b33;
  background: transparent;
  color: #9d3b33;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
  font-size: 1.2rem;
  line-height: 1;
}

.quantity-btn:hover {
  background: #9d3b33;
  color: white;
}

.quantity-btn:focus {
  outline: none;
}

.home-quantity-input {
  width: 35px;
  height: 30px;
  text-align: center;
  border-radius: 0;
  color: #61372f;
  background: transparent;
  font-size: 1.4rem;
  border: none;
  padding: 0;
  margin: 0 5px;
}

.home-quantity-input::-webkit-inner-spin-button,
.home-quantity-input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.home-quantity-input:focus {
  outline: none;
}

.product-card__price {
  font-size: 1.5rem;
  font-weight: 500;
  color: #61372f;
  margin-bottom: 1rem;
}

.product-card__btn {
  width: 100%;
  background: #9d3b33;
  color: white;
  border: none;
  border-radius: 25px;
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  /* Melhorar experiência de toque no mobile */
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.product-card__btn:hover {
  background: #b44b42;
}

/* Estado de loading do botão */
.product-card__btn.loading {
  opacity: 0.7;
  pointer-events: none;
}

.product-card__btn.loading:after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  top: 50%;
  right: 1rem;
  margin-top: -10px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-top-color: #fff;
  border-radius: 50%;
  animation: button-loading-spinner 1s linear infinite;
}

@keyframes button-loading-spinner {
  from {
    transform: rotate(0turn);
  }
  to {
    transform: rotate(1turn);
  }
}

/* Melhorar experiência mobile para botões de quantidade */
.home-quantity-btn {
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

/* Header Icons */
.header-icons {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  justify-content: flex-end;
}

.header-icon {
  display: flex;
  align-items: center;
  color: #61372f;
  text-decoration: none;
}

.header-icon img {
  width: 26px;
  height: 26px;
  transition: opacity 0.3s ease;
}

.header-icon:hover img {
  opacity: 0.7;
}

.cart-icon {
  position: relative;
}

.cart-count {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 8px;
  height: 8px;
  background-color: #e33d3d;
  border-radius: 50%;
  font-size: 0;
  line-height: 0;
  padding: 0;
  display: none;
}

.cart-has-items .cart-count {
  display: block;
}

.account-wrapper {
  position: relative;
}

.account-icon {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
}

.account-icon.active img {
  opacity: 1;
}

.account-icon .dropdown-arrow {
  margin-left: 4px;
  width: 8px;
  transition: transform 0.3s ease;
}

.account-icon.active .dropdown-arrow {
  transform: rotate(180deg);
}

.user-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background-color: #f2ebe2;
  border-radius: 4px;
  min-width: 180px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 100;
}

.user-dropdown.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.user-dropdown a {
  display: block;
  padding: 12px 16px;
  color: #61372f;
  text-decoration: none;
  transition: background-color 0.3s ease;
  border-bottom: 1px solid rgba(97, 55, 47, 0.1);
}

.user-dropdown a:last-child {
  border-bottom: none;
}

.user-dropdown a:hover {
  background-color: rgba(97, 55, 47, 0.1);
}

@media (max-width: 768px) {
  .header-icon img {
    width: 22px;
    height: 22px;
    max-width: unset;
  }

  .account-icon .dropdown-arrow {
    width: 10px;
    height: 10px;
  }

  .cart-count {
    width: 6px;
    height: 6px;
  }
}

/* Estilos para o componente de busca */
.search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #e4cebc;
  padding: 2rem;
  transform: translateY(-100%);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
}

.search-overlay.active {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.search-container {
  width: 100%;
  max-width: 800px;
  position: relative;
  transform: translateY(-20px);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition-delay: 0.1s;
}

.search-overlay.active .search-container {
  transform: translateY(0);
  opacity: 1;
}

.search-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.search-input {
  width: 100%;
  padding: 1rem 3rem;
  border: none;
  border-radius: 50px;
  background: #f3ebe1;
  font-size: 1.2rem;
  color: #61372f;
  outline: none;
  transition: all 0.3s ease;
}

.search-input:focus {
  box-shadow: 0 0 0 2px #9d3b33;
}

.search-input::placeholder {
  color: #a28275;
}

.search-icon {
  position: absolute;
  left: 1rem;
  color: #9d3b33;
  font-size: 1.2rem;
}

.search-close {
  position: absolute;
  right: 1rem;
  color: #9d3b33;
  font-size: 1.2rem;
  cursor: pointer;
  transition: color 0.3s ease;
  background: none;
  border: none;
  padding: 0;
}

.search-close:hover {
  color: #61372f;
}

@media (max-width: 768px) {
  .search-overlay {
    padding: 1rem;
  }

  .search-input {
    font-size: 1rem;
    padding: 0.8rem 2.5rem;
  }

  .search-icon,
  .search-close {
    font-size: 1rem;
  }
}

.cart-overlay {
  position: fixed;
  top: 0;
  right: -100%;
  width: 350px;
  height: 100vh;
  background: #fff;
  z-index: 9999;
  transition: right 0.3s ease;
}
.cart-overlay.active {
  right: 0;
}
.cart-close {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 2rem;
  background: none;
  border: none;
}

/* FAQ Section */
.faq-section {
  padding: 80px 0;
  background-color: #f3ebe1;
}

.faq-section__subtitle {
  color: #61372f;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.faq-section__title {
  color: #9d3b33;
  font-size: 3rem;
  font-weight: 100;
  margin-bottom: 3rem;
  font-family: var(--font-heading);
}

.faq-section__title span {
  color: #61372f;
}

.faq-accordion {
  text-align: left;
}

.faq-accordion .accordion-item {
  border: none;
  background: none;
  border-bottom: 1px solid rgba(97, 55, 47, 0.2);
  margin-bottom: 0;
}

.faq-accordion .accordion-item:last-child {
  border-bottom: none;
}

.faq-accordion .accordion-button {
  background: none;
  border: none;
  padding: 1.5rem 0;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: #61372f;
  font-weight: 300;
}

.faq-accordion .accordion-button:not(.collapsed) {
  color: #9d3b33;
  background: none;
  box-shadow: none;
}

.faq-accordion .accordion-button::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%239D3B33' viewBox='0 0 16 16'%3E%3Cpath d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
  transition: transform 0.3s ease;
}

.faq-accordion .accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%239D3B33' viewBox='0 0 16 16'%3E%3Cpath d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
  transform: rotate(180deg);
}

.faq-accordion .accordion-button:focus {
  box-shadow: none;
  border-color: rgba(97, 55, 47, 0.2);
}

.faq-accordion .accordion-body {
  padding: 0 0 1.5rem 0;
  color: #61372f;
  font-size: 1.2rem;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .faq-section__title {
    font-size: 2rem;
  }

  .faq-accordion .accordion-button {
    font-size: 1rem;
    padding: 1rem 0;
  }
}

/* Inspirational Section */
.inspirational {
  position: relative;
  min-height: 60vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  background-color: #000;
}

.inspirational__parallax {
  position: absolute;
  top: -10%;
  left: 0;
  width: 100%;
  height: 130%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  will-change: transform;
  transform: translateY(0);
  transition: transform 0.1s linear;
  opacity: 0.9;
}

.inspirational__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.3),
    rgba(0, 0, 0, 0.5)
  );
}

.inspirational__content {
  position: relative;
  z-index: 2;
}

.inspirational__title {
  font-size: 4.5rem;
  font-weight: 100;
  line-height: 1.2;
  color: #f3ebe1;
  font-family: var(--font-heading);
  margin: 0;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.inspirational__title span {
  color: #f3ebe1;
  display: block;
  opacity: 0.9;
}

/* Play Button Styles */
.inspirational__play-btn-container i{
  font-size: 5rem!important;
  color: #fff!important;
  margin-top: 2rem!important;
  cursor: pointer!important;
  transition: all 0.3s ease!important;
}

.inspirational__play-btn-container i:hover {
  transform: scale(1.05);
}


/* Video Overlay Styles */
#videoOverlay {
  transition: opacity 0.3s ease;
}

#videoOverlay iframe {
  border-radius: 10px;
}

@media (max-width: 768px) {
  .inspirational {
    min-height: 40vh;
  }
  .inspirational__parallax {
    top: 0%;
  }

  .inspirational__title {
    font-size: 2.5rem;
  }

  .inspirational__parallax {
    height: 100%;
    transform: none !important; /* Desativa o parallax em mobile */
  }
}

/* Ativos Slider */
.ativos-slider {
  padding: 40px 0;
  position: relative;
  overflow: hidden;
}

.ativos-slider .splide__slide {
  height: auto;
  display: flex;
}

.ativo-card {
  background: #fffefc;
  border-radius: 20px;
  padding: 2rem;
  display: flex;
  align-items: stretch;
  height: 100%;
  margin: 1rem;
  box-shadow: 0 4px 20px rgba(97, 55, 47, 0.08);
  position: relative;
  overflow: hidden;
}

.ativo-card__content {
  flex: 1;
  padding-right: 25%;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
}

.ativo-card__title {
  font-size: 1.6rem;
  font-weight: 300;
  color: #9d3b33;
  margin-bottom: 1rem;
  line-height: 1.2;
  font-family: var(--font-heading);
  letter-spacing: -1.5px;
}

.ativo-card__excerpt {
  font-size: 1rem;
  color: #61372f;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.ativo-card__beneficios {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  flex: 1;
  align-content: flex-start;
}

.beneficio-item {
  background: #f3ebe1;
  border-radius: 50px;
  padding: 0.35rem 1rem 0.3rem 1rem;
}

.beneficios-title {
  font-size: 1.2rem;
}

.beneficio-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #61372f;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 0;
}

.info-icon {
  cursor: pointer;
  color: #9d3b33;
  display: flex;
  align-items: center;
  transition: color 0.3s ease;
}

.info-icon:hover {
  color: #61372f;
}

.ativo-card__btn {
  display: inline-flex;
  align-items: center;
  gap: 0;
  color: #9d3b33 !important;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: auto;
  width: fit-content;
  transition: all 0.3s ease;
  position: relative;
  padding-left: 0;
  padding-right: 0;
}

.ativo-card__btn::after {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%239D3B33' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='5' y1='12' x2='19' y2='12'%3E%3C/line%3E%3Cpolyline points='12 5 19 12 12 19'%3E%3C/polyline%3E%3C/svg%3E");
  width: 16px;
  height: 16px;
  display: inline-block;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
  position: relative;
  margin-left: 0;
  top: -1px;
}

.ativo-card__btn:hover {
  padding-right: 0;
}

.ativo-card__btn:hover::after {
  opacity: 1;
  transform: translateX(3px);
  margin-left: 3px;
}

.ativo-card__image {
  position: absolute;
  top: 0;
  right: 0;
  width: 150px;
  height: 150px;
  background-size: cover;
  background-position: top right;
  background-repeat: no-repeat;
  z-index: 1;
}

/* Controles do Slider */
.ativos-slider .splide__arrows {
  position: absolute;
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}

.ativos-slider .splide__arrow {
  position: absolute;
  background: #f3ebe1;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(97, 55, 47, 0.15);
}

.ativos-slider .splide__arrow svg {
  fill: #9d3b33;
  width: 1.5rem;
  height: 1.5rem;
}

.ativos-slider .splide__arrow:hover {
  background: #9d3b33;
}

.ativos-slider .splide__arrow:hover svg {
  fill: #f3ebe1;
}

.ativos-slider .splide__arrow--prev {
  left: -1.5rem;
}

.ativos-slider .splide__arrow--next {
  right: -1.5rem;
}

/* Tooltip personalizado */
.tooltip {
  font-family: var(--font-primary);
  font-size: 0.875rem;
}

.tooltip .tooltip-inner {
  background: #61372f;
  color: #f3ebe1;
  padding: 0.8rem 1rem;
  max-width: 300px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.bs-tooltip-auto[data-popper-placement^="top"] .tooltip-arrow::before,
.bs-tooltip-top .tooltip-arrow::before {
  border-top-color: #61372f;
}

.bs-tooltip-auto[data-popper-placement^="bottom"] .tooltip-arrow::before,
.bs-tooltip-bottom .tooltip-arrow::before {
  border-bottom-color: #61372f;
}

.bs-tooltip-auto[data-popper-placement^="left"] .tooltip-arrow::before,
.bs-tooltip-start .tooltip-arrow::before {
  border-left-color: #61372f;
}

.bs-tooltip-auto[data-popper-placement^="right"] .tooltip-arrow::before,
.bs-tooltip-end .tooltip-arrow::before {
  border-right-color: #61372f;
}

@media (max-width: 768px) {
  .ativo-card {
    padding: 1.5rem;
  }

  .ativo-card__content {
    padding-right: 0;
    padding-bottom: 200px;
  }

  .ativo-card__image {
    width: 100%;
    height: 200px;
    top: auto;
    bottom: 0;
  }

  .ativo-card__title {
    font-size: 1.2rem;
  }

  .ativo-card__excerpt {
    -webkit-line-clamp: 4;
    line-clamp: 4;
  }

  .ativos-slider .splide__arrow {
    width: 2.5rem;
    height: 2.5rem;
  }

  .ativos-slider .splide__arrow--prev {
    left: -0.5rem;
  }

  .ativos-slider .splide__arrow--next {
    right: -0.5rem;
  }
}

.splide__track {
  overflow: visible !important;
}

.ativos-slider .splide__pagination {
  bottom: -2.5em !important;
}

.ativos-slider .splide__pagination__page.is-active {
  background: #964236 !important;
  transform: none !important;
  z-index: 1 !important;
  opacity: 1 !important;
  width: 16px !important;
  height: 8px !important;
  border-radius: 50px !important;
}

/* --- WooCommerce Single Product Modern --- */
.single-product-modern .product-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
}
.single-product-modern .product-main {
  display: flex;
  gap: 3rem;
  align-items: flex-start;
}
.single-product-modern .product-gallery {
  flex: 1 1 50%;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(97, 55, 47, 0.08);
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.single-product-modern .product-info {
  flex: 1 1 50%;
  background: #f3ebe1;
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(97, 55, 47, 0.08);
  padding: 2rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.single-product-modern .product-title {
  font-size: 2.2rem;
  font-family: var(--font-heading);
  color: #9d3b33;
  margin-bottom: 0.5rem;
}
.single-product-modern .product-price {
  font-size: 2rem;
  color: #61372f;
  font-weight: 600;
  margin-bottom: 1rem;
}
.single-product-modern .product-short-desc {
  font-size: 1.1rem;
  color: #61372f;
  margin-bottom: 1.5rem;
}
.single-product-modern .product-quantity-wrapper {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.single-product-modern .qty-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid #9d3b33;
  background: #fff;
  color: #9d3b33;
  font-size: 1.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.single-product-modern .qty-btn:hover {
  background: #9d3b33;
  color: #fff;
}
.single-product-modern .input-text.qty {
  width: 60px;
  height: 38px;
  text-align: center;
  font-size: 1.2rem;
  border: 1px solid #e4cebc;
  border-radius: 8px;
  background: #fff;
  color: #61372f;
}
.single-product-modern .btn-buy {
  width: 100%;
  background: #9d3b33;
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 1rem 0;
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 1rem;
  transition: background 0.2s;
}
.single-product-modern .btn-buy:hover {
  background: #b44b42;
}
.single-product-modern .product-meta {
  font-size: 0.95rem;
  color: #a28275;
  margin-top: 1.5rem;
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
.single-product-modern .product-tabs {
  margin-top: 2rem;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(97, 55, 47, 0.08);
  padding: 2rem;
}
.single-product-modern .product-related {
  margin-top: 2rem;
}
@media (max-width: 991px) {
  .single-product-modern .product-main {
    flex-direction: column;
    gap: 2rem;
  }
  .single-product-modern .product-gallery,
  .single-product-modern .product-info {
    padding: 1.2rem;
  }
}
@media (max-width: 600px) {
  .single-product-modern .product-title {
    font-size: 1.4rem;
  }
  .single-product-modern .product-price {
    font-size: 1.2rem;
  }
  .single-product-modern .product-tabs {
    padding: 1rem;
  }
}

/* --- WooCommerce Single Product Pro Layout --- */
.single-product-pro .product-hero {
  background: #f3ebe1;
  padding: 2rem 0 0 0;
}
.single-product-pro .product-hero__grid {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
}
.single-product-pro .product-hero__gallery {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 2rem;
}
.single-product-pro .product-gallery-thumbnails {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-height: 400px;
  overflow-y: auto;
}
.single-product-pro .product-gallery-thumbnails img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 12px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: border 0.2s;
}
.single-product-pro .product-gallery-thumbnails img.active,
.single-product-pro .product-gallery-thumbnails img:hover {
  border: 2px solid #9d3b33;
}
.single-product-pro .product-gallery-main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-gallery-main img {
  border-radius: 50px;
  max-width: 100%;
}


.single-product-pro .product-hero__info {
  flex: 1 1 80%;
  background: #f3ebe1;
  padding: 2rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.single-product-pro .product-title {
  font-size: 2.5rem;
  font-family: var(--font-heading);
  color: #9d3b33;
  margin-bottom: 0.5rem;
}
.single-product-pro .product-weight {
  font-size: 1.1rem;
  color: #a28275;
  margin-bottom: 0.5rem;
}
.single-product-pro .product-short-desc {
  font-size: 1.3rem;
  color: #61372f;
  margin-bottom: 20px;
  font-weight: 300;
}
.single-product-pro .product-offers {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
.single-product-pro .offer-card {
  background: #fff;
  border-radius: 30px;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 1rem;
  color: #9d3b33;
  min-width: 180px;
  overflow: hidden;
  min-height: 200px;
  border: none;
}

.offer-card.bundle-option.selected {
  border-color: #9d3b33;
  background: #fff9f3;
  box-shadow: 0 0 2px 2px #9d3b33;
}

.single-product-pro .offer-card img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  margin-bottom: 0.5rem;
  min-width: 150px;
}
.single-product-pro .product-quantity-wrapper {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}
.single-product-pro .qty-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid #9d3b33;
  background: #fff;
  color: #9d3b33;
  font-size: 1.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.single-product-pro .qty-btn:hover {
  background: #9d3b33;
  color: #fff;
}
.single-product-pro .input-text.qty {
  width: 30px;
  height: 38px;
  text-align: center;
  font-size: 1.2rem;
  border: none;
  border-radius: 8px;
  background: #f3ebe1;
  color: #61372f;
  padding: 0;
  margin: 0;
}
.single-product-pro .product-price-offer {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: space-between;
}

@media (max-width: 767px) {
  .single-product-pro .product-price-offer {
    flex-direction: column;
  }
}
.single-product-pro .product-price {
  font-size: 1.3rem;
  color: #61372f;
  font-weight: 500;
}
.single-product-pro .btn-buy {
  background: #9d3b33;
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: background 0.2s;
}
.single-product-pro .btn-buy:hover {
  background: #b44b42;
}
.single-product-pro .product-meta {
  font-size: 0.95rem;
  color: #a28275;
  margin-top: 1.5rem;
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
.single-product-pro .product-banner {
  padding: 0;
  height: 360px;
  display: flex;
  align-items: center;
  border-radius: 0;
  margin: 3rem 0;
}
.single-product-pro .banner-img {
  width: 100%;
  height: 220px;
  background-size: cover;
  background-position: center;
  border-radius: 24px 24px 0 0;
}
.single-product-pro .banner-text {
  position: relative;
  z-index: 2;
}

.single-product-pro .product-ativos {
  background: #f3ebe1;
  padding: 3rem 0 2rem 0;
}
.single-product-pro .product-ativos h2 {
  font-size: 3rem;
  color: #9d3b33;
  font-family: var(--font-heading);
  margin-bottom: 2rem;
  font-weight: 200;
}

.single-product-pro .ativo-col {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.single-product-pro .ativo-item {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(97, 55, 47, 0.08);
  padding: 1.2rem 1.5rem;
  font-size: 1.1rem;
  color: #9d3b33;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.single-product-pro .ativo-item span {
  color: #a28275;
  font-size: 0.95rem;
}
@media (max-width: 991px) {
  .single-product-pro .product-hero__grid {
    flex-direction: column;
    gap: 2rem;
  }
  .single-product-pro .product-hero__gallery {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }
  .single-product-pro .product-gallery-thumbnails {
    flex-direction: row;
    max-height: none;
    max-width: 100vw;
    overflow-x: auto;
    overflow-y: hidden;
  }
  .single-product-pro .product-gallery-thumbnails img {
    width: 48px;
    height: 48px;
  }
  .single-product-pro .banner-img {
    height: 140px;
  }
}
@media (max-width: 600px) {
  .single-product-pro .product-title {
    font-size: 1.4rem;
  }
  .single-product-pro .product-price {
    font-size: 1.2rem;
  }
  .single-product-pro .banner-text {
    padding: 1rem;
  }
  .single-product-pro .product-ativos {
    padding: 2rem 0 1rem 0;
  }
  .single-product-pro .ativos-grid {
    flex-direction: column;
    gap: 1rem;
  }
}

.cart-toggle__icon {
  color: #61372f;
}

.single_add_to_cart_button,
.woocommerce .cart .button,
.woocommerce .cart input.button {
  background-color: var(--primary-color) !important;
  color: #f3ebe1 !important;
  border: none;
  padding: 0 20px;
  cursor: pointer;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100px;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
}

/* Bundle Options */
.bundle-options {
  display: flex;
  gap: 1rem;
  margin: 1.5rem 0;
}

.bundle-option {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(97, 55, 47, 0.08);
  padding: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.bundle-option:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(97, 55, 47, 0.12);
}

.bundle-option.active {
  border-color: #9d3b33;
  background: #fff9f3;
}

.bundle-option__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
  color: #9d3b33;
}

.bundle-option__content img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.bundle-option__content div {
  font-size: 0.9rem;
  line-height: 1.3;
}

.bundle-option__content b {
  color: #61372f;
  font-size: 1.1rem;
}

.bundle-option__content b {
  color: #61372f;
  font-size: 1.1rem;
}

@media (max-width: 600px) {
  .bundle-options {
    flex-direction: column;
  }

  .bundle-option {
    width: 100%;
  }

  .bundle-option__content {
    flex-direction: row;
    justify-content: center;
    gap: 1rem;
  }
}

/* Product Offers */
.product-offers {
  margin: 10px 0;
}

.product-offers-title {
  font-size: 1.75rem;
  color: #9d3b33;
  margin-bottom: 0;
  font-weight: 300;
  font-family: var(--font-heading);
}

.product-offers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.offer-card {
  background: #fff;
  border-radius: 24px;
  padding: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  text-align: center;
  box-shadow: 0 4px 16px rgba(97, 55, 47, 0.08);
}

.offer-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(97, 55, 47, 0.12);
}

.offer-card.active {
  border-color: #9d3b33;
  background: #fff9f3;
}

.offer-card img {
  width: 100%;
  height: auto;
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
}

.offer-card div {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  color: #9d3b33;
}

.offer-card span {
  font-size: 1rem;
}

.offer-card b {
  font-size: 1.05rem;
  font-weight: 600;
}

.bundle-savings {
  text-align: center;
  position: absolute;
  right: 20%;
  top: 0;
  background: #e6ffe6;
  padding: 2px 10px;
  border-radius: 4px;
  color: #1f832d;
}

.bundle-savings .savings-text {
  font-size: 1rem;
}

.bundle-savings strong {
  font-weight: 600;
}

/* Responsivo */
@media (max-width: 768px) {
  .product-offers {
    grid-template-columns: 1fr;
  }

  .offer-card {
    padding: 1rem;
  }
}

.product-banner {
  position: relative;
  width: 100%;
  padding: 80px 0;
  overflow: hidden;
}

.product-banner .container {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.product-banner .banner-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
  border-radius: 0;
}

.product-banner .banner-text h2 {
  font-size: 6rem;
  margin-bottom: 0;
  font-weight: 100;
  color: #f3ebe1;
  margin-left: 7rem;
}

.product-banner .banner-text-bold {
  font-weight: 300;
}


@media (max-width: 768px) {
  .product-banner {
    padding: 60px 0;
  }

  .product-banner .banner-text {
    padding: 30px;
    margin: 0 15px;
  }

  .product-banner .banner-text h2 {
    font-size: 36px;
  }

  .product-banner .banner-text p {
    font-size: 20px;
  }
}



/* Product Ativos Section */
.product-ativos {
  padding: 80px 0;
  background-color: var(--color-light);
}
.science-content {
  padding: 30px;
}

.science-content h2 {
  color: var(--color-primary);
  font-size: 2.5rem;
  margin-bottom: 10px;
  font-weight: 300;
}

.science-content h3 {
  color: var(--color-text);
  font-size: 1.5rem;
  margin-bottom: 20px;
  font-weight: 300;
}

.science-content p {
  line-height: 1.6;
  font-size: 1.3rem;
  color: #61372f;
  margin-bottom: 20px;
  font-weight: 300;
}

/* Ativos Accordion */
.ativos-title {
  color: #C75D68;
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2.5rem;
}

.ativos-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

@media (min-width: 992px) {
  .ativos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 4rem;
    row-gap: 0;
  }
}

.ativos-grid .accordion-item {
  background: transparent;
  border: none;
  margin-bottom: 0;
}

.ativos-grid .accordion-button {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(199, 93, 104, 0.2);
  border-radius: 0 !important;
  color: #C75D68;
  font-size: 1.1rem;
  padding: 1.5rem 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.ativos-grid .accordion-button:not(.collapsed) {
  background: transparent;
  color: #C75D68;
  box-shadow: none;
  border-bottom: none;
}

.ativos-grid .accordion-button::after {
  margin-left: auto;
  width: 1rem;
  height: 1rem;
  background-size: 1rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23C75D68' viewBox='0 0 16 16'%3E%3Cpath d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
}

.ativos-grid .accordion-button:focus {
  box-shadow: none;
  border-color: rgba(199, 93, 104, 0.5);
}

.ativos-grid .accordion-collapse {
  border-bottom: 1px solid rgba(199, 93, 104, 0.2);
}

.ativos-grid .accordion-body {
  background: transparent;
  padding: 1.5rem 0;
}

.ativos-grid .beneficio-item {
  margin-bottom: 1.5rem;
  background: transparent;
  padding: 0;
}

.ativos-grid .beneficio-item:last-child {
  margin-bottom: 0;
}

.ativos-grid .beneficio-item h4 {
  color: #C75D68;
  font-size: 1rem;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.ativos-grid .beneficio-item p {
  color: #666;
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 991px) {
  .ativos-grid {
    grid-template-columns: 1fr;
    padding: 0 1rem;
  }
  
  .ativos-title {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
}


/* Custom Cart Page Woocommerce */ 

.woocommerce-cart #main-content {
  min-height: 542px;
}

.woocommerce-cart .is-large.wc-block-cart {
  margin-top: 6rem;
}

.wc-block-cart__submit-button {
  box-sizing: border-box;
  margin: 0;
  width: 100%;
  background: #9d3b33;
  color: #fff !important;
  height: 60px !important;
  margin-top: 2rem;
}



/* START - About Page - Vital Section */
.vital-section {
  background: #fff;
  padding: 60px 0 90px 0;
}

@media (max-width: 991px) {
  .vital-section {
    padding: 3rem 2rem;
  }
}

.vital-intro {
  max-width: 700px;
  margin: 0 auto 48px auto;
  text-align: center;
  color: #7a5a4a;
}

.vital-intro h2 {
  font-size: 2.4rem;
  font-weight: 700;
  color: #98493c;
  margin-bottom: 3rem;
  line-height: 1.1;
}

@media (max-width: 991px) {
  .vital-intro h2 {
    font-size: 1.7rem;
    text-align: center;
  }
}

.vital-highlight {
  color: #a05a4a;
  font-weight: bold;
}

.vital-bold {
  color: #a05a4a;
  font-weight: bold;
}

.vital-intro p {
  font-size: 1.35rem;
  color: #4d4742;
  margin-bottom: 0;
  font-weight: 400;
  line-height: 1.3;
}

.vital-cards {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  position: relative;
  margin-top: 24px;
  width: 100%;
  min-height: 400px;
}

.vital-card {
  width: 450px;
  height: 400px;
  border-radius: 32px;
  overflow: hidden;
  position: relative;
  margin-left: -60px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.10);
  transition: z-index 0.3s, transform 0.3s, box-shadow 0.3s;
  z-index: 1;
  cursor: pointer;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.vital-card:first-child {
  margin-left: 0;
  z-index: 3;
}
.vital-card.card-visao {
  z-index: 2;
}
.vital-card.card-valores {
  z-index: 1;
}

.vital-card:hover {
  z-index: 4 !important;
  transform: scale(1.04) translateY(-10px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
}

.vital-card-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 0;
  transition: filter 0.3s;
}

.vital-card-content {
  position: relative;
  z-index: 1;
  color: #fff;
  padding: 32px 28px 28px 28px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.vital-card-content ul li {
  line-height: 1.2;
}
.vital-card h3 {
  margin: 0 0 14px 0;
  font-size: 1.5rem;
  font-weight: bold;
  color: #fff;
}

.vital-card p, .vital-card ul {
  margin: 0;
  font-size: 1.08rem;
  color: #fff;
}

.vital-card ul {
  padding-left: 18px;
  list-style: disc;
}

.vital-card:hover .vital-card-bg {
  filter: brightness(0.7);
}

/* Responsivo */
@media (max-width: 1400px) {
  .vital-cards {
    min-width: 0;
    width: 100vw;
    justify-content: flex-start;
    padding-left: 16px;
  }
}
@media (max-width: 1200px) {
  .vital-cards {
    flex-direction: column;
    align-items: center;
    min-height: unset;
    padding-left: 0;
  }
  .vital-card {
    position: static;
    margin-left: 0;
    margin-bottom: 24px;
    width: 95vw;
    max-width: 400px;
  }
}

/* END - About Page - Vital Section */

/* Ajuste para texto centralizado sobre o vídeo na seção hero */
.about-video-section {
  position: relative;
  width: 100%;
  height: 420px;
  overflow: hidden;
  background: #000;
}

@media (max-width: 991px) {
  .about-video-section {
    height: 50vh!important;
  }
}

.about-bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.about-intro-hero-video-text {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 0 16px;
}

.about-intro-hero-video-text h1 {
  font-size: 4rem;
  font-weight: 600;
  margin-bottom: 18px;
  color: #fff;
  text-shadow: 0 2px 16px rgba(0,0,0,0.25);
}

.about-intro-hero-video-text .about-intro-highlight {
  color: #e6b7a0;
}

.about-intro-hero-video-text p {
  font-size: 1.25rem;
  max-width: 700px;
  margin: 0 auto;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0,0,0,0.18);
}

@media (max-width: 700px) {
  .about-video-section {
    height: 260px;
  }
  .about-intro-hero-video-text h1 {
    font-size: 2rem;
  }
  .about-intro-hero-video-text p {
    font-size: 1rem;
  }
}


/* START - Timeline Section */
.timeline-section {
  background: #f3ebe1;
  padding: 60px 0 60px 0;
  text-align: center;
}

@media (max-width: 991px) {
  .timeline-section {
    padding: 60px 2rem 60px 2rem;
  }
  .timeline-section .splide__arrow { 
    display: none;
  }
}

.timeline-title {
  color: #a05a4a;
  font-size: 2.2rem;
  margin-bottom: 32px;
  font-weight: 400;
}

.timeline-splide {
  max-width: 1000px;
  margin: 0 auto;
}

.timeline-card {
  background: #9d3b33;
  border-radius: 48px;
  color: #fff;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  padding: 5rem;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  position: relative;
}

.timeline-header {
  width: 100%;
  text-align: center;
  margin-bottom: 32px;
}

.timeline-year {
  font-size: 2.8rem;
  font-weight: 300;
  margin-bottom: 2rem;
  color: #fff;
  letter-spacing: 2px;
}

.timeline-year-bold {
  font-weight: 600;
}

.timeline-divider {
  width: 100%;
  height: 32px;
  position: relative;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.timeline-divider:before {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  background: #fff;
  opacity: 0.7;
  z-index: 1;
}

.timeline-circle {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #984d3e;
  border: 2px solid #fff;
  display: inline-block;
  position: relative;
  z-index: 2;
}

.timeline-body {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  gap: 32px;
}

.timeline-img {
  width: 120px;
  height: 120px;
  border-radius: 24px;
  object-fit: cover;
  flex-shrink: 0;
  background: #fff;
  margin-right: 24px;
}

.timeline-content {
  text-align: left;
  font-size: 1.45rem;
  color: #fff;
  line-height: 1.25;
  font-weight: 300;
}

@media (max-width: 900px) {
  .timeline-card {
    padding: 28px 8vw 28px 8vw;
    min-height: 320px;
  }
  .timeline-body {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .timeline-img {
    margin-right: 0;
    margin-bottom: 12px;
    width: 90px;
    height: 90px;
    border-radius: 16px;
  }
  .timeline-content {
    font-size: 1.1rem;
  }
  .timeline-header {
    margin-bottom: 18px;
  }
}

@media (max-width: 600px) {
  .timeline-card {
    border-radius: 24px;
    padding: 2rem;
    min-height: 220px;
  }
  .timeline-year {
    font-size: 1.5rem;
  }
  .timeline-img {
    width: 70px;
    height: 70px;
    border-radius: 10px;
  }
}

.timeline-section .splide__pagination {
  bottom: -1.5em !important;
}
.timeline-section .splide__pagination__page.is-active {
  background: #9d3b33;
  opacity: 1;
}


/* END - Timeline Section */

@media (max-width: 700px) {
  .vital-cards {
    flex-direction: column;
    align-items: center;
    width: 100%;
    min-width: 0;
    justify-content: flex-start;
    padding-left: 0;
  }
  .vital-card {
    position: static !important;
    margin-left: 0 !important;
    margin-bottom: 24px;
    width: 95vw;
    max-width: 400px;
    z-index: 1 !important;
    box-shadow: 0 4px 24px rgba(0,0,0,0.10);
    transform: none !important;
    min-height: 340px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }
  .vital-card-bg {
    height: 100% !important;
    min-height: 340px;
    object-fit: cover;
  }
  .vital-card-content {
    padding: 32px 18px 28px 18px;
    position: relative;
    z-index: 1;
  }
}

@media (max-width: 700px) {
  .vital-section {
    display: none !important;
  }
  .vital-section-mobile {
    display: block !important;
    padding: 0 0 32px 0;
  }
}

@media (min-width: 701px) {
  .vital-section-mobile {
    display: none !important;
  }
}

.vital-section-mobile {
  display: none;
  width: 100%;
  background: #fff;
  padding: 3rem 2rem;
}

.vital-mobile-card {
  position: relative;
  width: 95vw;
  max-width: 100%;
  min-height: 340px;
  margin: 0 auto 24px auto;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.10);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.vital-mobile-card ul li {
  line-height: 1.2;
}

.vital-mobile-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-size: cover;
  background-position: center;
  filter: brightness(0.75);
  z-index: 0;
}

.vital-mobile-content {
  position: relative;
  z-index: 1;
  color: #fff;
  padding: 2rem 2rem 3rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
}

.vital-mobile-content h3 {
  margin: 0 0 14px 0;
  font-size: 1.5rem;
  font-weight: bold;
  color: #fff;
}

.vital-mobile-content p, .vital-mobile-content ul {
  margin: 0;
  font-size: 1.08rem;
  color: #fff;
}

.vital-mobile-content ul {
  padding-left: 18px;
  list-style: disc;
}


.radius-40 {
  border-radius: 40px;
}

@media (max-width: 767px) {
  .radius-40 {
    border-radius: 30px;
  }
}

@media (min-width: 768px) {
  #woocommerce-checkout-form-coupon {
    display: block !important;
  }
}

@media (max-width: 767px) {
  #woocommerce-checkout-form-coupon {
    display: flex !important;
    flex-direction: column;
  }

  body .woocommerce form .form-row-first,
  body .woocommerce form .form-row-last {
    width: 100%!important;
  }
}

.ativos-section__title {
  color: #9d3b33;
  font-size: 3rem;
  font-weight: 100;
  margin-top: 3rem;
  margin-bottom: 1rem;
  font-family: var(--font-heading);
  text-align: center;
}

/* Header Menu Mobile */
@media (max-width: 767px) {
  #headerMenu {
    background: #964236;
  }
  #headerMenu .fa-times:before {
    color: #fff;
    top: -10px;
    position: relative;
  }

  #headerMenu .primary-menu-container {
    margin-top: 8rem;
  }
  #headerMenu svg {
    color: #fff!important;
  }
  #headerMenu .header-icon img {
    filter: grayscale(1) brightness(12)!important;
  }
  #headerMenu #top-menu.nav li a {
    font-size: 2rem;
    color: #ffffff;
  }
  
  #main-header:has(#headerMenu.show) #headerMenu .cart-toggle__icon {
    color: #ffffff;
  }  
}

/* Accordions ACF Produto */
.acf-accordions {
  margin-top: 5rem;
}
.acf-accordion-item {
  border-bottom: 1px solid #e4cebc;
}
.acf-accordion-toggle {
  width: 100%;
  text-align: left;
  padding: 16px 0;
  font-size: 1.8rem;
  font-weight: 400;
  border: none;
  background: none;
  outline: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #61372f;
  transition: color 0.2s;
}
.acf-accordion-toggle.open,
.acf-accordion-toggle:focus {
  color: #9d3b33;
}
.acf-accordion-content {
  display: none;
  padding: 16px 0;
  color: #61372f;
  font-size: 1.1rem;
  line-height: 1.6;
}
.acf-accordion-content.open {
  display: block;
}
.acf-accordion-toggle .chevron {
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
  display: inline-block;
  margin-left: 12px;
}
.acf-accordion-toggle.open .chevron {
  transform: rotate(180deg);
}
@media (max-width: 600px) {
  .acf-accordion-toggle {
    font-size: 1.2rem;
    padding: 12px 0;
  }
  .acf-accordion-content {
    font-size: 1rem;
    padding: 12px 0;
  }
}