@charset "UTF-8";
/*
Theme Name: agrocentroTheme
Theme URI: 
Author: Anderson Benedetti
Author URI: 
Description: Tema criado para a Agrocentro.
Version: 1.0
*/
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

img {
  max-width: 100%;
}

body,
html {
  background-color: #fff;
  font-family: "Fredoka", sans-serif;
  scroll-behavior: smooth;
  color: #333;
}

main {
  min-height: 100vh;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
}

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

/* ===============================
   BOTÕES DE NAVEGAÇÃO
=============================== */
.swiper-button-prev,
.swiper-button-next {
  width: 42px !important;
  height: 42px !important;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 50%;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
  transition: all 0.25s ease;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}
.swiper-button-prev::after,
.swiper-button-next::after {
  content: none !important;
}
.swiper-button-prev,
.swiper-button-next {
  background-image: url("./icons/arrow-pet.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 52px 52px;
}
.swiper-button-prev:hover,
.swiper-button-next:hover {
  scale: 1.1;
}

.swiper-button-prev {
  transform: rotate(270deg);
}

.swiper-button-next {
  transform: rotate(90deg);
}

.section-title {
  font-size: clamp(1.8rem, 2.5vw, 2.6rem);
  font-weight: 800;
  color: #333;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  position: relative;
  letter-spacing: -0.5px;
  margin-bottom: 50px;
}
.section-title span {
  background: linear-gradient(90deg, #30ada1, #eb7917);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section-title::before {
  content: "";
  width: 12px;
  height: 12px;
  background: #30ada1;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(48, 173, 161, 0.15);
}
.section-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, #30ada1, transparent);
}
.section-title--center {
  justify-content: center;
  text-align: center;
}
.section-title--center::after {
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
}
.section-title--minimal::before {
  display: none;
}
.section-title--minimal::after {
  height: 2px;
  background: #444;
}

/* ===============================
   HEADER FIXO
=============================== */
.agro-header {
  position: sticky;
  top: 0;
  z-index: 10000;
  background: #fff;
  transition: box-shadow 0.3s ease, background 0.3s ease, backdrop-filter 0.3s ease;
  /* Estado ao rolar */
}
.agro-header.is-scrolled {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(6px);
}
.agro-header.is-scrolled .header-wrap {
  padding: 8px 20px;
}
.agro-header.is-scrolled .logo img {
  transform: scale(0.9);
}
.agro-header.is-scrolled .header-bottom {
  max-height: 0;
  opacity: 0;
  transform: translateY(-10px);
}
.agro-header {
  /* ===============================
     HEADER TOP
  =============================== */
}
.agro-header .header-top {
  background: #fff;
}
.agro-header .header-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 14px 20px;
}
.agro-header {
  /* ===============================
     LOGO
  =============================== */
}
.agro-header .logo a {
  display: inline-block;
  position: relative;
}
.agro-header .logo a:focus, .agro-header .logo a:focus-visible {
  outline: none;
  box-shadow: none;
}
.agro-header .logo img {
  display: block;
  max-width: 180px;
  transition: transform 0.35s ease, filter 0.35s ease;
}
.agro-header {
  /* efeito hover */
}
.agro-header .logo a::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 14px;
  background: linear-gradient(120deg, rgba(48, 173, 161, 0.35), rgba(235, 121, 23, 0.35));
  opacity: 0;
  filter: blur(14px);
  transition: opacity 0.35s ease;
  z-index: -1;
}
.agro-header .logo a:hover img {
  transform: scale(1.05);
  filter: saturate(1.2) brightness(1.05);
}
.agro-header .logo a:hover::after {
  opacity: 1;
}
.agro-header {
  /* ===============================
     BUSCA
  =============================== */
}
.agro-header .header-search {
  flex: 1;
  max-width: 520px;
}
.agro-header {
  /* ===============================
     ÍCONES / AÇÕES
  =============================== */
}
.agro-header .header-icons {
  display: flex;
  align-items: center;
  gap: 18px;
}
.agro-header {
  /* Conta */
}
.agro-header .account-links {
  display: flex;
  align-items: center;
  gap: 10px;
}
.agro-header .account-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: #333;
  text-decoration: none;
  padding: 6px 10px;
  border-radius: 6px;
  transition: all 0.2s ease;
}
.agro-header .account-btn img {
  display: block;
}
.agro-header .account-btn:hover {
  background: rgba(0, 0, 0, 0.05);
}
.agro-header .account-btn.outline {
  border: 1px solid #ddd;
}
.agro-header .account-btn.outline:hover {
  border-color: #30ada1;
  color: #30ada1;
}
.agro-header {
  /* WhatsApp */
}
.agro-header .whatsapp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  transition: background 0.2s ease;
}
.agro-header .whatsapp-btn:hover {
  background: rgba(48, 173, 161, 0.12);
}
.agro-header {
  /* Carrinho */
}
.agro-header .cart-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  cursor: pointer;
  border-radius: 50%;
  transition: background 0.2s ease;
}
.agro-header .cart-btn:hover {
  background: rgba(0, 0, 0, 0.08);
}
.agro-header {
  /* ===============================
     HEADER BOTTOM (CATEGORIAS)
  =============================== */
}
.agro-header .header-bottom {
  background: #fafafa;
  border-top: 1px solid #eee;
}
.agro-header .nav-categories ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 22px;
  list-style: none;
  padding: 12px 0;
  margin: 0;
}
.agro-header .nav-categories a {
  font-size: 14px;
  font-weight: 500;
  color: #333;
  text-decoration: none;
  position: relative;
  padding-bottom: 4px;
  transition: color 0.2s ease;
}
.agro-header {
  /* Hover underline */
}
.agro-header .nav-categories a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: #30ada1;
  transition: width 0.25s ease;
}
.agro-header .nav-categories a:hover {
  color: #30ada1;
}
.agro-header .nav-categories a:hover::after {
  width: 100%;
}
.agro-header .nav-categories a.highlight {
  color: #30ada1;
  font-weight: 600;
}
.agro-header {
  /* ===============================
     MOBILE NAV CATEGORIES
  =============================== */
}
@media (max-width: 768px) {
  .agro-header .header-bottom {
    position: sticky;
    top: 0;
    z-index: 20;
    background: #fafafa;
    border-top: 1px solid #eee;
  }
  .agro-header .nav-categories ul {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    margin: 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    /* esconder scrollbar */
    scrollbar-width: none;
  }
  .agro-header .nav-categories ul::-webkit-scrollbar {
    display: none;
  }
  .agro-header .nav-categories li {
    flex: 0 0 auto;
  }
  .agro-header .nav-categories a {
    display: block;
    white-space: nowrap;
    font-size: 13px;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: 999px;
    background: #f1f1f1;
    color: #333;
    transition: all 0.2s ease;
  }
  .agro-header {
    /* remove underline no mobile */
  }
  .agro-header .nav-categories a::after {
    display: none;
  }
  .agro-header {
    /* hover / active */
  }
  .agro-header .nav-categories a:active {
    transform: scale(0.96);
  }
  .agro-header {
    /* highlight (ativo) */
  }
  .agro-header .nav-categories a.highlight {
    background: #30ada1;
    color: #fff;
    font-weight: 600;
  }
}
.agro-header {
  /* ===============================
     HAMBURGER (BASE)
  =============================== */
}
.agro-header .hamburger {
  display: none;
  width: 32px;
  height: 28px;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.agro-header .hamburger span {
  width: 28px;
  height: 3px;
  background: #30ada1;
  border-radius: 3px;
  transition: all 0.3s ease;
}
.agro-header {
  /* X simétrico */
}
.agro-header .hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.agro-header .hamburger.active span:nth-child(2) {
  opacity: 0;
}
.agro-header .hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}
.agro-header {
  /* ===============================
     MENU MOBILE
  =============================== */
}
.agro-header .mobile-menu {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  width: 100%;
  height: calc(100vh - 70px);
  background: #fff;
  padding: 20px;
  overflow-y: auto;
  z-index: 9999;
}
.agro-header .mobile-menu.active {
  display: block;
}
.agro-header {
  /* Conta mobile */
}
.agro-header .mobile-account {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}
.agro-header .mobile-account .account-btn {
  justify-content: center;
}
.agro-header {
  /* Categorias mobile */
}
.agro-header .mobile-menu .nav-categories ul {
  flex-direction: column;
  gap: 14px;
}
.agro-header .mobile-menu .nav-categories a {
  font-size: 16px;
  padding: 10px 0;
}
.agro-header {
  /* ===============================
     MOBILE
  =============================== */
}
@media (max-width: 900px) {
  .agro-header .header-wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
  }
  .agro-header {
    /* LINHA DE CIMA */
  }
  .agro-header .hamburger {
    display: flex;
    order: 1;
    width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
  }
  .agro-header .logo {
    order: 2;
    flex: 1;
    display: flex;
    justify-content: center;
  }
  .agro-header .logo img {
    max-width: 140px;
  }
  .agro-header .header-icons {
    order: 3;
    width: 38px;
    justify-content: flex-end;
  }
  .agro-header {
    /* Mostrar só carrinho */
  }
  .agro-header .account-links,
  .agro-header .whatsapp-btn {
    display: none;
  }
  .agro-header {
    /* LINHA DE BAIXO – BUSCA */
  }
  .agro-header .header-search {
    order: 4;
    display: block;
    width: 100%;
    max-width: 100%;
    margin-top: 6px;
  }
  .agro-header .header-bottom {
    background: #fafafa;
    border-top: 1px solid #eee;
    overflow: hidden;
    transition: max-height 0.35s ease, opacity 0.25s ease, transform 0.35s ease;
    max-height: 80px;
    opacity: 1;
    transform: translateY(0);
  }
}

.agro-footer {
  background: linear-gradient(180deg, rgba(48, 173, 161, 0.08), rgba(48, 173, 161, 0.04));
  border-top: 3px solid #30ada1;
  padding: 70px 0 30px;
  color: #333;
}
.agro-footer .footer-main {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
  gap: 50px;
}
@media (max-width: 1100px) {
  .agro-footer .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}
@media (max-width: 768px) {
  .agro-footer .footer-main {
    grid-template-columns: 1fr;
    gap: 35px;
    text-align: center;
  }
}
.agro-footer h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 14px;
  color: #eb7917;
}
.agro-footer ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.agro-footer ul a {
  font-size: 15px;
  color: #333;
  transition: 0.25s ease;
}
.agro-footer ul a:hover {
  color: #30ada1;
  transform: translateX(4px);
}
.agro-footer {
  /* BRAND */
}
.agro-footer .footer-brand .footer-desc {
  font-size: 15px;
  line-height: 1.6;
  margin-top: 14px;
  max-width: 320px;
}
@media (max-width: 768px) {
  .agro-footer .footer-brand .footer-desc {
    margin: 14px auto 0;
  }
}
.agro-footer .footer-brand .footer-social {
  margin-top: 20px;
  display: flex;
  gap: 12px;
}
@media (max-width: 768px) {
  .agro-footer .footer-brand .footer-social {
    justify-content: center;
  }
}
.agro-footer .footer-brand .footer-social a {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
}
.agro-footer .footer-brand .footer-social a:hover img {
  opacity: 0.9;
  transform: scale(1.05);
}
.agro-footer {
  /* CONTACT */
}
.agro-footer .footer-contact p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 10px;
}
.agro-footer .footer-contact .footer-cta {
  display: inline-block;
  margin-top: 12px;
  padding: 12px 18px;
  background: #30ada1;
  color: #fff;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  transition: 0.3s ease;
}
.agro-footer .footer-contact .footer-cta:hover {
  background: rgb(39.1384615385, 141.0615384615, 131.2769230769);
  transform: translateY(-2px);
}
.agro-footer .footer-bottom {
  margin-top: 50px;
  padding-top: 20px;
  border-top: 1px solid rgba(68, 68, 68, 0.2);
  text-align: center;
}
.agro-footer .footer-bottom p {
  font-size: 13px;
  color: rgba(51, 51, 51, 0.65);
}

/* ===============================
   PRODUCT LIST COMPONENT
=============================== */
.products-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.products-list.swiper-wrapper {
  gap: 0;
}

/* ===============================
   ITEM
=============================== */
.product-item {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 14px;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.product-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.08);
}

/* ===============================
   LINK
=============================== */
.product-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: #333;
}

/* ===============================
   IMAGE
=============================== */
.product-img {
  position: relative;
  aspect-ratio: 1/1;
  background: #fafafa;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.product-img img {
  max-width: 100%;
  width: 100%;
  height: auto;
  transition: transform 0.35s ease;
}

.product-item:hover .product-img img {
  transform: scale(1.06);
}

/* ===============================
   CONTENT
=============================== */
.product-name {
  font-size: 15px;
  font-weight: 500;
  padding: 14px 14px 6px;
  min-height: 44px;
  line-height: 1.3;
}

/* ===============================
   CTA
=============================== */
.btn-product {
  margin-top: auto;
  padding: 14px;
}
.btn-product span {
  display: block;
  text-align: center;
  padding: 10px 18px;
  border-radius: 22px;
  font-size: 13px;
  font-weight: 500;
  background: #30ada1;
  color: #fff;
  transition: background 0.25s ease, transform 0.2s ease;
}

.product-item:hover .btn-product span {
  background: #eb7917;
  transform: translateY(-1px);
}

/* ===============================
   RESPONSIVE
=============================== */
@media (max-width: 1200px) {
  .products-list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .products-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .product-name {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .btn-product span {
    padding: 9px 14px;
    font-size: 12px;
  }
}
/* ===============================
   PRICE
=============================== */
.product-price {
  padding: 0 14px 10px;
  font-size: 15px;
  font-weight: 600;
  color: #eb7917;
}
.product-price del {
  font-size: 13px;
  color: #999;
  margin-right: 6px;
}
.product-price ins {
  text-decoration: none;
  font-weight: 700;
}

.reveal {
  opacity: 0;
  transition: all 0.6s ease;
  will-change: transform, opacity;
}

/* Direções */
.reveal-top {
  transform: translateY(-40px);
}

.reveal-bottom {
  transform: translateY(40px);
}

.reveal-left {
  transform: translateX(-40px);
}

.reveal-right {
  transform: translateX(40px);
}

/* Quando aparece */
.reveal.is-visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* Delay opcional */
.delay-1 {
  transition-delay: 0.1s;
}

.delay-2 {
  transition-delay: 0.2s;
}

.delay-3 {
  transition-delay: 0.3s;
}

.delay-4 {
  transition-delay: 0.4s;
}

/* ===============================
   HOME
=============================== */
.home {
  background: #fff;
}

/* ===============================
   HERO / CARROSSEL
=============================== */
.home-hero {
  position: relative;
  width: 100%;
  background: linear-gradient(180deg, rgba(48, 173, 161, 0.08), rgb(255, 255, 255));
  padding-bottom: 12px;
}
.home-hero .hero-swiper {
  width: 100%;
  height: clamp(220px, 40vw, 480px);
  border-radius: 0 0 24px 24px;
  overflow: hidden;
}
.home-hero {
  /* ===============================
     SLIDES
  =============================== */
}
.home-hero .swiper-slide {
  position: relative;
  width: 100%;
  height: 100%;
  background: #fff;
}
.home-hero .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.home-hero .swiper-slide {
  /* overlay suave */
}
.home-hero .swiper-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0));
  pointer-events: none;
}
.home-hero {
  /* ===============================
     BOTÕES DE NAVEGAÇÃO
  =============================== */
}
.home-hero .swiper-button-prev {
  left: 5%;
}
.home-hero .swiper-button-next {
  right: 5%;
}
.home-hero {
  /* ===============================
     PAGINAÇÃO
  =============================== */
}
.home-hero .swiper-pagination {
  bottom: 12px !important;
}
.home-hero .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.7);
  opacity: 1;
  transition: all 0.25s ease;
}
.home-hero .swiper-pagination-bullet-active {
  width: 22px;
  border-radius: 10px;
  background: linear-gradient(120deg, #30ada1, #eb7917);
}
.home-hero {
  /* ===============================
     MOBILE
  =============================== */
}
@media (max-width: 768px) {
  .home-hero .hero-swiper {
    height: 600px;
    border-radius: 0 0 18px 18px;
  }
  .home-hero .swiper-button-prev,
  .home-hero .swiper-button-next {
    width: 36px;
    height: 36px;
  }
  .home-hero .swiper-button-prev::after,
  .home-hero .swiper-button-next::after {
    font-size: 14px;
  }
}

.home-benefits {
  padding: 56px 0;
  background: linear-gradient(180deg, rgba(48, 173, 161, 0.06), rgba(235, 121, 23, 0.04));
}
.home-benefits .benefits-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (max-width: 1024px) {
  .home-benefits .benefits-list {
    gap: 10px;
  }
}
.home-benefits .benefit-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 20px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid #eee;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  cursor: default;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.home-benefits .benefit-item::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(48, 173, 161, 0.15), rgba(235, 121, 23, 0.15));
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 0;
}
.home-benefits .benefit-item:hover {
  transform: translateY(-6px);
  border-color: #30ada1;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}
.home-benefits .benefit-item:hover::before {
  opacity: 1;
}
.home-benefits .benefit-item:hover .benefit-icon {
  transform: scale(1.15) rotate(-4deg);
}
.home-benefits .benefit-item span {
  position: relative;
  z-index: 1;
  font-size: 15px;
  line-height: 1.4;
  color: #333;
}
.home-benefits .benefit-icon {
  position: relative;
  z-index: 1;
  width: 42px;
  height: 42px;
  padding: 8px;
  border-radius: 12px;
  background: rgba(48, 173, 161, 0.12);
  transition: transform 0.3s ease, background 0.3s ease;
  /* Destaque alternado */
}
.benefit-item:nth-child(even) .home-benefits .benefit-icon {
  background: rgba(235, 121, 23, 0.14);
}
.home-benefits {
  /* ===============================
     MOBILE - BENEFITS ARRASTÁVEL
  =============================== */
}
@media (max-width: 768px) {
  .home-benefits .benefits-list {
    display: flex;
    overflow-x: auto;
    gap: 12px;
    padding: 6px 4px 12px;
    margin: 0 -6px;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  .home-benefits .benefits-list::-webkit-scrollbar {
    display: none;
  }
  .home-benefits .benefit-item {
    flex: 0 0 260px;
    scroll-snap-align: start;
    padding: 16px;
    gap: 12px;
    border-radius: 14px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
    /* remove hover pesado no mobile */
    transform: none;
  }
  .home-benefits .benefit-item::before {
    display: none;
  }
  .home-benefits .benefit-item:hover {
    transform: none;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
  }
  .home-benefits .benefit-item:hover .benefit-icon {
    transform: none;
  }
  .home-benefits .benefit-item span {
    font-size: 13.5px;
    line-height: 1.35;
  }
  .home-benefits .benefit-icon {
    width: 34px;
    height: 34px;
    padding: 6px;
  }
  .home-benefits {
    /* feedback de toque */
  }
  .home-benefits .benefit-item:active {
    transform: scale(0.96);
  }
}

/* ===============================
   HOME – PRODUTOS
================================ */
.home-featured-products {
  position: relative;
  overflow: visible;
  margin: 50px auto;
}
.home-featured-products .swiper-button-prev {
  left: -50px;
}
@media (max-width: 1024px) {
  .home-featured-products .swiper-button-prev {
    display: none;
  }
}
.home-featured-products .swiper-button-next {
  right: -50px;
}
@media (max-width: 1024px) {
  .home-featured-products .swiper-button-next {
    display: none;
  }
}

/* ===============================
   HOME – CATEGORIAS
================================ */
.home-categories {
  padding: 48px 0;
  background: linear-gradient(180deg, #fff 0%, rgba(48, 173, 161, 0.04) 100%);
}

/* GRID */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* ITEM */
.category-item a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 22px 16px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid #eee;
  text-decoration: none;
  color: #333;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}
.category-item {
  /* ÍCONE */
}
.category-item .category-icon {
  width: 42px;
  height: 42px;
  transition: transform 0.3s ease, filter 0.3s ease;
}
.category-item span {
  font-size: 15px;
  font-weight: 600;
  text-align: center;
}
.category-item {
  /* HOVER */
}
.category-item a:hover {
  transform: translateY(-6px);
  border-color: #30ada1;
  background: rgba(48, 173, 161, 0.04);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.08);
}
.category-item a:hover .category-icon {
  transform: scale(1.15);
  filter: drop-shadow(0 6px 10px rgba(48, 173, 161, 0.4));
}
.category-item a:hover span {
  color: #30ada1;
}

/* DESTAQUE – PROMOÇÕES */
.category-item.highlight a {
  border: none;
  background: linear-gradient(135deg, #eb7917, rgb(199.9619047619, 101.7047619048, 17.2380952381));
  color: #fff;
  box-shadow: 0 18px 36px rgba(235, 121, 23, 0.35);
}
.category-item.highlight .category-icon {
  filter: brightness(0) invert(1);
}
.category-item.highlight span {
  font-weight: 700;
}
.category-item.highlight a:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 26px 45px rgba(235, 121, 23, 0.45);
}

/* ===============================
   MOBILE - SCROLL ARRASTÁVEL
=============================== */
@media (max-width: 768px) {
  .categories-grid {
    display: flex;
    overflow-x: auto;
    gap: 12px;
    padding: 4px 2px 10px;
    margin: 0 -6px;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    /* snap suave */
    scroll-snap-type: x mandatory;
    /* esconder scrollbar */
    scrollbar-width: none;
  }
  .categories-grid::-webkit-scrollbar {
    display: none;
  }
  .category-item {
    flex: 0 0 120px;
    scroll-snap-align: start;
  }
  .category-item a {
    padding: 14px 10px;
    border-radius: 14px;
    text-align: center;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.05);
  }
  /* ÍCONE */
  .category-item .category-icon {
    width: 34px;
    height: 34px;
  }
  /* TEXTO */
  .category-item span {
    font-size: 12.5px;
    line-height: 1.2;
  }
  /* remove hover pesado */
  .category-item a:hover {
    transform: none;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.05);
    background: #fff;
  }
  .category-item a:hover .category-icon {
    transform: none;
    filter: none;
  }
  .category-item a:hover span {
    color: #333;
  }
  /* feedback de toque */
  .category-item a:active {
    transform: scale(0.95);
  }
  /* destaque mantém impacto */
  .category-item.highlight a {
    box-shadow: 0 10px 20px rgba(235, 121, 23, 0.25);
  }
}
/* ===============================
   HOME – CTA WHATSAPP
================================ */
.home-cta {
  position: relative;
  padding: 64px 0;
  margin-top: 64px;
  background: linear-gradient(135deg, rgba(48, 173, 161, 0.12), rgba(235, 121, 23, 0.12));
  overflow: hidden;
}
.home-cta .container {
  position: relative;
  text-align: center;
  max-width: 720px;
}
.home-cta h2 {
  font-size: 28px;
  font-weight: 800;
  color: #333;
  margin-bottom: 12px;
}
.home-cta p {
  font-size: 16px;
  color: rgba(51, 51, 51, 0.75);
  margin-bottom: 28px;
}
.home-cta {
  /* BOTÃO */
}
.home-cta .btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  background: linear-gradient(135deg, #30ada1, rgb(39.1384615385, 141.0615384615, 131.2769230769));
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 14px 30px rgba(48, 173, 161, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}
.home-cta .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(48, 173, 161, 0.45);
  filter: brightness(1.05);
}
.home-cta {
  /* ELEMENTOS DECORATIVOS */
}
.home-cta::before, .home-cta::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(48, 173, 161, 0.18);
  filter: blur(60px);
  z-index: 0;
}
.home-cta::before {
  top: -60px;
  left: -60px;
}
.home-cta::after {
  bottom: -60px;
  right: -60px;
  background: rgba(235, 121, 23, 0.18);
}
.home-cta {
  /* MOBILE */
}
@media (max-width: 768px) {
  .home-cta {
    padding: 48px 0;
  }
  .home-cta h2 {
    font-size: 22px;
  }
  .home-cta p {
    font-size: 15px;
  }
  .home-cta .btn-primary {
    width: 100%;
    max-width: 320px;
  }
}

/* ===============================
   ARCHIVE PRODUCT
=============================== */
#archive-product {
  background: #fff;
}

/* ===============================
   ARCHIVE HEADER
=============================== */
.archive-header {
  padding: 20px 0;
  border-bottom: 1px solid #eee;
}

.archive-header-content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
}

/* ===============================
   INTRO
=============================== */
.archive-intro {
  max-width: 720px;
}
.archive-intro .subtitle {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #eb7917;
  margin-bottom: 8px;
}
.archive-intro .title-section {
  font-size: 34px;
  font-weight: 600;
  color: #333;
  line-height: 1.2;
}
.archive-intro .archive-description {
  margin-top: 14px;
  font-size: 15px;
  color: #666666;
  max-width: 640px;
}

/* ===============================
   FILTERS
=============================== */
.archive-filters {
  min-width: 260px;
}
.archive-filters .category-select {
  width: 100%;
  height: 44px;
  padding: 0 14px;
  font-size: 14px;
  color: #333;
  background: #fff;
  border: 1px solid #444;
  border-radius: 6px;
  cursor: pointer;
}
.archive-filters .category-select:focus {
  outline: none;
  border-color: #30ada1;
}

/* ===============================
   RESPONSIVE
=============================== */
@media (max-width: 768px) {
  .archive-header-content {
    flex-direction: column;
    gap: 24px;
  }
  .archive-filters {
    width: 100%;
    max-width: 100%;
  }
  .archive-intro .title-section {
    font-size: 28px;
  }
}
@media (max-width: 480px) {
  .archive-intro .title-section {
    font-size: 24px;
  }
}
/* ===============================
   PRODUCT STORE
=============================== */
.products-store {
  padding: 48px 0 72px;
}

/* ===============================
   PRODUCT LIST (GRID)
=============================== */
.products-store .products-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* ===============================
   EMPTY STATE
=============================== */
.no-results {
  text-align: center;
  padding: 64px 0;
}
.no-results h2 {
  font-size: 22px;
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
}
.no-results p {
  font-size: 14px;
  color: rgb(114.75, 114.75, 114.75);
}

/* ===============================
   PAGINATION
=============================== */
.pagination-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid #eee;
}
.pagination-wrap a {
  font-size: 14px;
  font-weight: 500;
  color: #30ada1;
  text-decoration: none;
  transition: color 0.2s ease;
}
.pagination-wrap a:hover {
  color: #eb7917;
}
.pagination-wrap .pagination-info {
  font-size: 13px;
  color: #666666;
}

/* ===============================
   RESPONSIVE
=============================== */
@media (max-width: 1200px) {
  .products-store .products-list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .section-intro {
    padding: 48px 0 32px;
  }
  .section-intro .title-section {
    font-size: 28px;
  }
  .section-filters .filters-content {
    flex-direction: column;
    align-items: stretch;
  }
  .section-filters .filter-category {
    max-width: 100%;
  }
  .products-store .products-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .pagination-wrap {
    flex-direction: column;
    gap: 10px;
  }
}
@media (max-width: 480px) {
  .section-intro .title-section {
    font-size: 24px;
  }
}
/* ===============================
   SINGLE PRODUCT
=============================== */
#single-product {
  background: #fff;
}

/* ===============================
   GRID PRINCIPAL
=============================== */
.section-product-content {
  padding: 64px 0;
}
.section-product-content .product-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: flex-start;
}

/* ===============================
   GALERIA
=============================== */
.product-gallery {
  background: rgb(253.3, 253.3, 253.3);
  border-radius: 16px;
  padding: 24px;
}
.product-gallery img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
}

/* ===============================
   INFO COMERCIAL
=============================== */
.product-info {
  position: sticky;
  top: 120px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.product-info .product-category {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #30ada1;
}
.product-info .product-title {
  font-size: 34px;
  font-weight: 600;
  color: #333;
  line-height: 1.2;
}
.product-info .product-price {
  font-size: 30px;
  font-weight: 600;
  color: #eb7917;
}
.product-info .product-price del {
  font-size: 18px;
  color: rgb(140.25, 140.25, 140.25);
  margin-right: 8px;
}
.product-info .product-price ins {
  text-decoration: none;
}
.product-info .product-stock .stock {
  font-size: 14px;
  font-weight: 500;
}
.product-info .product-stock .stock.in-stock {
  color: rgb(42.4615384615, 153.0384615385, 142.4230769231);
}
.product-info .product-stock .stock.out-of-stock {
  color: #c0392b;
}

/* ===============================
   BOX DE COMPRA
=============================== */
.product-buy-box {
  margin-top: 24px;
  padding: 32px;
  border-radius: 18px;
  border: 1px solid #eee;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 22px;
  /* ===== VARIAÇÕES ===== */
}
.product-buy-box form.variations_form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.product-buy-box table.variations {
  width: 100%;
  border-spacing: 0;
  margin: 0;
}
.product-buy-box table.variations tr {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 10px;
}
.product-buy-box table.variations th,
.product-buy-box table.variations td {
  padding: 0;
  border: none;
}
.product-buy-box table.variations label {
  font-size: 13px;
  font-weight: 500;
  color: #333;
}
.product-buy-box table.variations select {
  width: 100%;
  height: 44px;
  padding: 0 14px;
  border-radius: 10px;
  border: 1px solid #444;
  background: #fff;
  font-size: 14px;
}
.product-buy-box table.variations select:focus {
  outline: none;
  border-color: #30ada1;
}
.product-buy-box {
  /* ===== QUANTIDADE ===== */
}
.product-buy-box .quantity {
  position: relative;
  display: flex;
  align-items: center;
  width: 140px;
  height: 48px;
  border: 1px solid #444;
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
  transition: all 0.2s ease;
}
.product-buy-box .quantity:focus-within {
  border-color: #30ada1;
  box-shadow: 0 0 0 3px rgba(48, 173, 161, 0.12);
}
.product-buy-box .quantity input.qty {
  width: 100%;
  height: 100%;
  border: none;
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  background: transparent;
  z-index: 1;
}
.product-buy-box .quantity input.qty:focus {
  outline: none;
}
.product-buy-box .quantity input.qty {
  /* remove setas */
}
.product-buy-box .quantity input.qty::-webkit-inner-spin-button, .product-buy-box .quantity input.qty::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.product-buy-box .quantity .qty-btn {
  position: absolute;
  top: 0;
  width: 42px;
  height: 100%;
  border: none;
  background: transparent;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  z-index: 2;
}
.product-buy-box .quantity .qty-btn:hover {
  background: rgba(0, 0, 0, 0.05);
}
.product-buy-box .quantity .qty-btn:active {
  transform: scale(0.92);
}
.product-buy-box .quantity .qty-btn.minus {
  left: 0;
  border-right: 1px solid #444;
}
.product-buy-box .quantity .qty-btn.plus {
  right: 0;
  border-left: 1px solid #444;
}
.product-buy-box {
  /* ===== BOTÃO COMPRAR ===== */
}
.product-buy-box button.single_add_to_cart_button {
  margin-top: 6px;
  width: 100%;
  height: 56px;
  border-radius: 14px;
  background: #30ada1;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease, transform 0.15s ease;
}
.product-buy-box button.single_add_to_cart_button:hover {
  background: rgb(41.3538461538, 149.0461538462, 138.7076923077);
  transform: translateY(-1px);
}
.product-buy-box button.single_add_to_cart_button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}
.product-buy-box {
  /* ===== RESET DE LIXO DO WC ===== */
}
.product-buy-box .woocommerce-variation-price,
.product-buy-box .woocommerce-variation-availability {
  font-size: 14px;
  margin: 0;
}
.product-buy-box .reset_variations {
  font-size: 12px;
  margin-top: 4px;
}

/* ===============================
   DESCRIÇÃO
=============================== */
.section-product-description {
  padding: 72px 0;
  border-top: 1px solid #eee;
}
.section-product-description .title-section {
  font-size: 26px;
  font-weight: 600;
  color: #333;
  margin-bottom: 24px;
}
.section-product-description .content {
  max-width: 860px;
  font-size: 15px;
  line-height: 1.7;
  color: rgb(76.5, 76.5, 76.5);
}
.section-product-description .content p + p {
  margin-top: 14px;
}

/* ===============================
   UPSELLS
=============================== */
.section-products {
  padding: 72px 0;
  background: white;
}
.section-products .products-top {
  margin-bottom: 32px;
}
.section-products .products-top .title-section {
  font-size: 28px;
  font-weight: 600;
  color: #333;
}

/* ===============================
   RESPONSIVO
=============================== */
@media (max-width: 1024px) {
  .section-product-content .product-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .product-info {
    position: relative;
    top: auto;
  }
}
@media (max-width: 600px) {
  .product-info .product-title {
    font-size: 26px;
  }
  .product-info .product-price {
    font-size: 26px;
  }
  .product-buy-box {
    padding: 18px;
  }
}
/* ===============================
   WC PAGES BASE
=============================== */
.my-account-page {
  min-height: 60vh;
}

.woocommerce {
  background: #fff;
  color: #333;
}
.woocommerce h2 {
  margin-top: 20px;
}
.woocommerce h1,
.woocommerce h2,
.woocommerce h3 {
  font-weight: 600;
}
.woocommerce a {
  color: #30ada1;
  text-decoration: none;
}
.woocommerce a:hover {
  color: rgb(41.3538461538, 149.0461538462, 138.7076923077);
}

/* ===============================
   FORMS
=============================== */
.woocommerce form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.woocommerce form label {
  font-size: 13px;
  font-weight: 500;
}
.woocommerce form input,
.woocommerce form select,
.woocommerce form textarea {
  height: 44px;
  padding: 0 14px;
  border-radius: 10px;
  border: 1px solid #444;
  font-size: 14px;
}
.woocommerce form input:focus,
.woocommerce form select:focus,
.woocommerce form textarea:focus {
  outline: none;
  border-color: #30ada1;
}

/* ===============================
   BOTÕES
=============================== */
.woocommerce button,
.woocommerce .button {
  height: 52px;
  padding: 0 24px;
  border-radius: 14px;
  background: #30ada1;
  color: #fff;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
}
.woocommerce button:hover,
.woocommerce .button:hover {
  background: rgb(41.3538461538, 149.0461538462, 138.7076923077);
  transform: translateY(-1px);
}

/* ===============================
   CHECKOUT
=============================== */
.woocommerce-checkout {
  padding: 20px 0;
}
.woocommerce-checkout .woocommerce-checkout-review-order {
  border: 1px solid #eee;
  border-radius: 16px;
  padding: 24px;
  background: #fff;
}

/* ===============================
   MINHA CONTA
=============================== */
.woocommerce-account {
  padding: 64px 0;
}
.woocommerce-account .woocommerce-MyAccount-navigation {
  border: 1px solid #eee;
  border-radius: 16px;
  padding: 20px;
  background: rgb(253.3, 253.3, 253.3);
}
.woocommerce-account .woocommerce-MyAccount-navigation ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.woocommerce-account .woocommerce-MyAccount-navigation a {
  font-size: 14px;
  font-weight: 500;
}
.woocommerce-account .woocommerce-MyAccount-content {
  padding: 32px;
  border-radius: 16px;
  border: 1px solid #eee;
  background: #fff;
}

.wp-block-woocommerce-cart {
  margin: 2rem 0;
}
.wp-block-woocommerce-cart .wc-block-cart {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
}
.wp-block-woocommerce-cart .wc-block-cart > div {
  width: 100%;
}
.wp-block-woocommerce-cart .wc-block-cart__main {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 1.5rem;
}
.wp-block-woocommerce-cart .wc-block-cart-items {
  width: 100%;
  border-collapse: collapse;
}
.wp-block-woocommerce-cart .wc-block-cart-items thead {
  border-bottom: 1px solid #eee;
}
.wp-block-woocommerce-cart .wc-block-cart-items thead th {
  font-size: 0.8rem;
  text-transform: uppercase;
  color: #333;
  padding-bottom: 0.75rem;
}
.wp-block-woocommerce-cart .wc-block-cart-items tbody .wc-block-cart-items__row {
  border-bottom: 1px solid #eee;
  padding: 1rem 0;
}
.wp-block-woocommerce-cart .wc-block-cart-items tbody .wc-block-cart-items__row td {
  padding: 1rem 0.5rem;
  vertical-align: top;
}
.wp-block-woocommerce-cart .wc-block-cart-item__image img {
  width: 80px;
  border-radius: 6px;
}
.wp-block-woocommerce-cart .wc-block-components-product-name {
  font-weight: 600;
  color: #333;
  text-decoration: none;
}
.wp-block-woocommerce-cart .wc-block-components-product-name:hover {
  color: #30ada1;
}
.wp-block-woocommerce-cart .wc-block-cart-item__prices {
  margin: 0.5rem 0;
}
.wp-block-woocommerce-cart .wc-block-cart-item__prices del {
  color: #999;
  margin-right: 0.4rem;
}
.wp-block-woocommerce-cart .wc-block-cart-item__prices ins {
  color: #eb7917;
  font-weight: 700;
  text-decoration: none;
}
.wp-block-woocommerce-cart .wc-block-components-sale-badge {
  background: rgba(235, 121, 23, 0.1);
  color: #eb7917;
  font-size: 0.75rem;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 0.5rem;
}
.wp-block-woocommerce-cart .wc-block-cart-item__quantity {
  margin-top: 0.5rem;
}
.wp-block-woocommerce-cart .wc-block-cart-item__quantity .wc-block-components-quantity-selector {
  display: flex;
  align-items: center;
  border: 1px solid #eee;
  border-radius: 6px;
  overflow: hidden;
  width: fit-content;
}
.wp-block-woocommerce-cart .wc-block-cart-item__quantity .wc-block-components-quantity-selector input {
  width: 50px;
  border: none;
  text-align: center;
  padding: 0.4rem;
}
.wp-block-woocommerce-cart .wc-block-cart-item__quantity .wc-block-components-quantity-selector button {
  background: #fff;
  border: none;
  width: 32px;
  height: 32px;
  cursor: pointer;
}
.wp-block-woocommerce-cart .wc-block-cart-item__quantity .wc-block-components-quantity-selector button:hover {
  background: #eee;
}
.wp-block-woocommerce-cart .wc-block-cart-item__quantity .wc-block-cart-item__remove-link {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 0.85rem;
  color: #eb7917;
  cursor: pointer;
}
.wp-block-woocommerce-cart .wc-block-cart-item__quantity .wc-block-cart-item__remove-link:hover {
  text-decoration: underline;
}
.wp-block-woocommerce-cart .wc-block-cart-item__total {
  font-weight: 700;
  color: #333;
}
.wp-block-woocommerce-cart .wc-block-cart__sidebar {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 1.5rem;
  height: fit-content;
}
.wp-block-woocommerce-cart .wc-block-cart__totals-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #333;
}
.wp-block-woocommerce-cart .wc-block-components-totals-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}
.wp-block-woocommerce-cart .wc-block-components-totals-item__label {
  color: #333;
}
.wp-block-woocommerce-cart .wc-block-components-totals-item__value {
  font-weight: 600;
}
.wp-block-woocommerce-cart .wc-block-components-totals-footer-item {
  border-top: 1px solid #eee;
  padding-top: 1rem;
  margin-top: 1rem;
}
.wp-block-woocommerce-cart .wc-block-components-totals-footer-item__value {
  color: #30ada1;
  font-size: 1.2rem;
  font-weight: 800;
}
.wp-block-woocommerce-cart .wc-block-cart__submit-button {
  width: 100%;
  background: #eb7917;
  color: #fff;
  padding: 1rem;
  border-radius: 6px;
  font-weight: 700;
  text-align: center;
  transition: 0.2s;
}
.wp-block-woocommerce-cart .wc-block-cart__submit-button:hover {
  background: rgb(199.9619047619, 101.7047619048, 17.2380952381);
}
@media (max-width: 768px) {
  .wp-block-woocommerce-cart .wc-block-cart {
    grid-template-columns: 1fr;
  }
  .wp-block-woocommerce-cart .wc-block-cart-items thead {
    display: none;
  }
  .wp-block-woocommerce-cart .wc-block-cart-items__row {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .wp-block-woocommerce-cart .wc-block-cart-item__total {
    text-align: right;
  }
}

.wp-block-woocommerce-empty-cart-block {
  text-align: center;
  padding: 40px 0;
}
.wp-block-woocommerce-empty-cart-block .wc-block-grid,
.wp-block-woocommerce-empty-cart-block h2.wp-block-heading:not(.wc-block-cart__empty-cart__title),
.wp-block-woocommerce-empty-cart-block .wp-block-separator.is-style-dots:before {
  display: none;
}

.woocommerce-checkout {
  display: block;
}
.woocommerce-checkout .col2-set::before,
.woocommerce-checkout .col2-set::after {
  display: none !important;
  content: none;
}

#customer_details {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

#customer_details .col-1,
#customer_details .col-2 {
  flex: 1;
  min-width: 300px;
}

.woocommerce-billing-fields,
.woocommerce-additional-fields,
#order_review {
  background: #fff;
  border: 1px solid #eee;
  padding: 24px;
  border-radius: 8px;
}

h3 {
  font-size: 20px;
  margin-bottom: 16px;
  color: #333;
}

.form-row {
  width: 100%;
  margin-bottom: 14px;
}
.form-row label {
  font-size: 13px;
  margin-bottom: 6px;
  display: block;
}
.form-row .input-text,
.form-row select,
.form-row textarea {
  width: 100%;
  height: 44px;
  border: 1px solid #eee;
  border-radius: 6px;
  padding: 0 12px;
  font-size: 14px;
  transition: 0.2s;
}
.form-row textarea {
  height: auto;
  padding: 10px;
}
.form-row .input-text:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: #30ada1;
  outline: none;
}

.form-row-first,
.form-row-last {
  width: 100%;
}

#order_review_heading {
  font-size: 20px;
  margin: 30px 0 16px;
}

.shop_table {
  width: 100%;
  border-collapse: collapse;
}
.shop_table th {
  text-align: left;
  font-size: 13px;
  padding-bottom: 10px;
}
.shop_table td {
  padding: 10px 0;
  font-size: 14px;
}
.shop_table .product-total {
  text-align: right;
}
.shop_table tfoot tr {
  border-top: 1px solid #eee;
}
.shop_table .order-total strong {
  color: #eb7917;
}

#payment {
  margin-top: 20px;
  background: #fff;
  border: 1px solid #eee;
  padding: 20px;
  border-radius: 8px;
}
#payment .wc_payment_methods {
  list-style: none;
  padding: 0;
  margin-bottom: 16px;
}
#payment .wc_payment_methods li {
  margin-bottom: 10px;
}
#payment .wc_payment_methods .woocommerce-info {
  background: rgba(235, 121, 23, 0.08);
  border: 1px solid #eb7917;
  border-radius: 6px;
  font-size: 13px;
  margin-top: 20px;
}
#payment .place-order {
  margin-top: 10px;
}
#payment .place-order .woocommerce-privacy-policy-text {
  font-size: 12px;
  margin-bottom: 12px;
  line-height: 1.4;
}
#payment .place-order .woocommerce-privacy-policy-text a {
  color: #30ada1;
  text-decoration: underline;
}
#payment .place-order button#place_order {
  width: 100%;
  height: 50px;
  background: #30ada1;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s;
}
#payment .place-order button#place_order:hover {
  opacity: 0.9;
}

.woocommerce-form-coupon-toggle {
  margin-bottom: 20px;
}
.woocommerce-form-coupon-toggle .woocommerce-info {
  background: rgba(48, 173, 161, 0.08);
  border: 1px solid #30ada1;
  border-radius: 6px;
  margin-top: 20px;
}
.woocommerce-form-coupon-toggle .woocommerce-info a {
  color: #30ada1;
  font-weight: 600;
}

.checkout_coupon {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.checkout_coupon input {
  height: 44px;
  border: 1px solid #eee;
  padding: 0 12px;
  border-radius: 6px;
}
.checkout_coupon button {
  height: 44px;
  background: #eb7917;
  color: #fff;
  border: none;
  padding: 0 18px;
  border-radius: 6px;
  font-weight: 600;
}

/* ===============================
   WC LOGIN FORM (FINAL)
=============================== */
form.woocommerce-form-login {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 32px;
  border-radius: 16px;
  border: 1px solid #eee;
  background: #fff;
}

/* RESET */
form.woocommerce-form-login p {
  margin: 0;
}

/* ROWS */
form.woocommerce-form-login .form-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* LABEL */
form.woocommerce-form-login label {
  font-size: 13px;
  font-weight: 500;
  color: #333;
}

/* INPUTS */
form.woocommerce-form-login .input-text {
  width: 100%;
  height: 48px;
  padding: 0 14px;
  border-radius: 12px;
  border: 1px solid #444;
  background: #fafafa;
  font-size: 14px;
  transition: all 0.2s ease;
}
form.woocommerce-form-login .input-text:focus {
  outline: none;
  border-color: #30ada1;
  background: #fff;
  box-shadow: 0 0 0 2px rgba(48, 173, 161, 0.15);
}

/* PASSWORD */
form.woocommerce-form-login .password-input {
  position: relative;
  display: flex;
  align-items: center;
}
form.woocommerce-form-login .password-input input {
  padding-right: 44px;
}
form.woocommerce-form-login .password-input .show-password-input {
  position: absolute;
  right: 12px;
  background: none;
  border: none;
  cursor: pointer;
  height: 100%;
  display: flex;
  align-items: center;
  opacity: 0.6;
}
form.woocommerce-form-login .password-input .show-password-input:hover {
  opacity: 1;
}

/* CHECKBOX + BUTTON BLOCK */
form.woocommerce-form-login .form-row:last-of-type {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* CHECKBOX */
.woocommerce-form-login__rememberme {
  display: flex !important;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  cursor: pointer;
}
.woocommerce-form-login__rememberme input {
  width: 16px;
  height: 16px;
}

/* BUTTON */
form.woocommerce-form-login button[type=submit] {
  width: 100%;
  height: 52px;
  border-radius: 14px;
  background: #30ada1;
  color: #fff;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
}
form.woocommerce-form-login button[type=submit]:hover {
  transform: translateY(-1px);
  background: rgb(41.3538461538, 149.0461538462, 138.7076923077);
}

/* LOST PASSWORD */
form.woocommerce-form-login .lost_password {
  text-align: center;
  margin-top: 6px;
}
form.woocommerce-form-login .lost_password a {
  font-size: 13px;
  color: #333;
  opacity: 0.7;
}
form.woocommerce-form-login .lost_password a:hover {
  opacity: 1;
  color: #30ada1;
}

/* MOBILE */
@media (max-width: 480px) {
  form.woocommerce-form-login {
    padding: 24px;
  }
}
/* ===============================
   WC MY ACCOUNT (2 COLUNAS)
=============================== */
/* FORÇA LAYOUT LADO A LADO */
.woocommerce-MyAccount-navigation {
  float: left;
  width: 260px;
  border: 1px solid #eee;
  border-radius: 16px;
  padding: 20px;
  background: #fff;
}

/* CONTENT AO LADO */
.woocommerce-MyAccount-content {
  margin-bottom: 100px;
  margin-top: 50px;
  margin-left: 284px; /* largura nav + gap */
  border: 1px solid #eee;
  border-radius: 16px;
  padding: 28px;
  background: #fff;
}

/* LISTA */
.woocommerce-MyAccount-navigation ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.woocommerce-MyAccount-navigation li {
  width: 100%;
}

/* LINKS */
.woocommerce-MyAccount-navigation a {
  display: flex;
  align-items: center;
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  color: #333;
  text-decoration: none;
  transition: all 0.2s ease;
}
.woocommerce-MyAccount-navigation a:hover {
  background: rgba(48, 173, 161, 0.08);
  color: #30ada1;
}

/* ATIVO */
.woocommerce-MyAccount-navigation .is-active a {
  background: #30ada1;
  color: #fff;
  font-weight: 600;
}

/* LOGOUT */
.woocommerce-MyAccount-navigation-link--customer-logout a {
  color: #b02a2a;
}
.woocommerce-MyAccount-navigation-link--customer-logout a:hover {
  background: rgba(176, 42, 42, 0.08);
  color: #b02a2a;
}

/* TEXTO */
.woocommerce-MyAccount-content p {
  font-size: 14px;
  line-height: 1.6;
  color: #333;
}

.woocommerce-MyAccount-content strong {
  font-weight: 600;
}

/* LINKS INTERNOS */
.woocommerce-MyAccount-content a {
  color: #30ada1;
  font-weight: 500;
}
.woocommerce-MyAccount-content a:hover {
  text-decoration: underline;
}

/* MOBILE */
@media (max-width: 768px) {
  /* NAV */
  .woocommerce-MyAccount-navigation {
    float: none;
    width: 100%;
    margin-bottom: 16px;
    padding: 14px;
  }
  /* SCROLL HORIZONTAL MAIS LIMPO */
  .woocommerce-MyAccount-navigation ul {
    flex-direction: row;
    overflow-x: auto;
    gap: 8px;
    padding-bottom: 4px;
    /* scroll suave */
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    /* esconde scrollbar */
    scrollbar-width: none;
  }
  .woocommerce-MyAccount-navigation ul::-webkit-scrollbar {
    display: none;
  }
  /* ITENS */
  .woocommerce-MyAccount-navigation li {
    flex: 0 0 auto;
    width: max-content;
  }
  /* LINKS (estilo pill) */
  .woocommerce-MyAccount-navigation a {
    white-space: nowrap;
    padding: 10px 16px;
    border-radius: 999px;
    font-size: 13px;
    background: rgba(238, 238, 238, 0.4);
  }
  /* ATIVO MAIS DESTACADO */
  .woocommerce-MyAccount-navigation .is-active a {
    box-shadow: 0 4px 12px rgba(48, 173, 161, 0.25);
  }
  /* CONTENT */
  .woocommerce-MyAccount-content {
    margin-left: 0;
    padding: 18px;
    border-radius: 14px;
  }
  /* TEXTO MAIS CONFORTÁVEL */
  .woocommerce-MyAccount-content p {
    font-size: 13.5px;
    line-height: 1.5;
  }
}
/* ===============================
   PÁGINAS PADRÃO
================================ */
.page-default {
  background: #fff;
  /* ===============================
     HEADER
  ================================= */
}
.page-default .page-header {
  position: relative;
  padding: 64px 0 56px;
  text-align: center;
  background: linear-gradient(135deg, rgba(48, 173, 161, 0.12), rgba(235, 121, 23, 0.12));
  overflow: hidden;
}
.page-default .page-header .container {
  position: relative;
  z-index: 2;
}
.page-default .page-header h1 {
  font-size: 34px;
  font-weight: 800;
  color: #333;
  margin-bottom: 12px;
}
.page-default .page-header p {
  font-size: 16px;
  color: rgba(51, 51, 51, 0.7);
}
.page-default .page-header::before, .page-default .page-header::after {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  filter: blur(70px);
  z-index: 0;
}
.page-default .page-header::before {
  top: -80px;
  left: -80px;
  background: rgba(48, 173, 161, 0.18);
}
.page-default .page-header::after {
  bottom: -80px;
  right: -80px;
  background: rgba(235, 121, 23, 0.18);
}
@media (max-width: 768px) {
  .page-default .page-header {
    padding: 48px 0;
  }
  .page-default .page-header h1 {
    font-size: 26px;
  }
  .page-default .page-header p {
    font-size: 14px;
  }
}
.page-default {
  /* ===============================
     CONTEÚDO
  ================================= */
}
.page-default .page-content {
  padding: 56px 0;
}
.page-default .page-content .content-text {
  max-width: 820px;
  margin: 0 auto;
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  border: 1px solid #eee;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s ease;
}
.page-default .page-content .content-text:hover {
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.08);
}
.page-default .page-content .content-text h2 {
  font-size: 20px;
  font-weight: 700;
  color: #333;
  margin-top: 28px;
  margin-bottom: 10px;
  position: relative;
  padding-left: 14px;
}
.page-default .page-content .content-text h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 4px;
  height: 16px;
  border-radius: 4px;
  background: linear-gradient(180deg, #30ada1, #eb7917);
}
.page-default .page-content .content-text p {
  font-size: 15.5px;
  line-height: 1.6;
  color: rgba(51, 51, 51, 0.85);
  margin-bottom: 12px;
}
.page-default .page-content .content-text ul {
  padding-left: 18px;
  margin-bottom: 16px;
}
.page-default .page-content .content-text ul li {
  font-size: 15px;
  line-height: 1.5;
  color: rgba(51, 51, 51, 0.85);
  margin-bottom: 6px;
  position: relative;
}
.page-default .page-content .content-text ul li::marker {
  color: #30ada1;
}
.page-default .page-content .content-text strong {
  color: #333;
  font-weight: 700;
}
@media (max-width: 768px) {
  .page-default .page-content {
    padding: 32px 0;
  }
  .page-default .page-content .content-text {
    padding: 22px;
    border-radius: 16px;
  }
  .page-default .page-content .content-text h2 {
    font-size: 18px;
  }
  .page-default .page-content .content-text p,
  .page-default .page-content .content-text li {
    font-size: 14px;
  }
}

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