@import url('https://fonts.googleapis.com/css2?family=Pinyon+Script&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@500;600;700;800&display=swap');

:root {
  --bg: #AC796B;
  --ink: #5A322A;
  --ink-soft: #5a322ae1;
  --panel: #D4A99F;
  --panel-2: #A86F62;
  --paper: #F5E9E7;
  --accent: #5A322A;
  --cream: #fff8f5;
  --cream-2: #f3ded7;
  --brown-dark: #321b17;
  --gold: #b0715d;
  --green: #2d7a46;
  --shadow-sm: 0 8px 20px rgba(90, 50, 42, .08);
  --shadow-md: 0 16px 38px rgba(90, 50, 42, .12);
  --shadow-lg: 0 28px 80px rgba(90, 50, 42, .20);
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
font-family: 'Plus Jakarta Sans', sans-serif;
  scrollbar-color: var(--ink) var(--panel);
  scrollbar-width: thin;
}

body.modal-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
}

ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

*::-webkit-scrollbar {
  width: 5px;
  height: 8px;
}

*::-webkit-scrollbar-track {
  background: var(--panel);
}

*::-webkit-scrollbar-thumb {
  background: var(--ink);
  border-radius: 999px;
}

/* ===== HEADER ===== */

.logo {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: space-between;
  width: min(1100px, 90%);
  margin: 30px auto 16px;
  padding: 12px 16px;
  color: var(--ink-soft);
  background: rgba(212, 169, 159, .95);
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  text-align: left;
}

.logo img,
.logo .logo-img {
  width: 72px;
  height: 72px;
  flex: 0 0 72px;
  border-radius: 50%;
  border: 2px solid var(--ink-soft);
  box-shadow: 0 6px 16px rgba(0, 0, 0, .10);
  object-fit: cover;
}

.logo-texto {
  flex: 1;
  min-width: 0;
}

.est {
  font-family: "Pinyon Script", cursive;
  font-size: clamp(30px, 3.8vw, 44px);
  color: var(--ink-soft);
  line-height: 1;
  margin: 0;
}

.cab {
  font-size: clamp(14px, 2vw, 18px);
  color: #fff;
  opacity: .86;
  margin: 0;
}

.login {
  margin-left: auto;
}

.login-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(245, 233, 231, .22);
  color: #fff;
  border: 1px solid rgba(255,255,255,.25);
  font-weight: 800;
  transition: .25s ease;
}

.login-link:hover {
  color: #fff;
  background: rgba(245, 233, 231, .34);
  transform: translateY(-1px);
}

/* ===== HERO CAROUSEL ===== */

.carousel.slide {
  width: min(1100px, 90%);
  margin: 8px auto 24px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  opacity: .96;
}

.carousel-item img {
  width: 100%;
  height: clamp(180px, 36vw, 430px);
  object-fit: cover;
}

/* ===== MENU ===== */

.menu {
  width: min(1100px, 90%);
  margin: 0 auto 8px;
}

.menu-bar {
  display: none;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.menu-title {
  color: #fff;
  font-weight: 800;
}

.menu > ul#menu-list {
  display: flex;
  gap: 28px;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  background: rgba(90, 50, 42, .26);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  backdrop-filter: saturate(140%) blur(4px);
}

.menu .menu-link,
.menu .dropbtn {
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  padding: 9px 12px;
  border-radius: 10px;
  transition: .2s ease;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.menu .menu-link:hover,
.menu .dropbtn:hover,
.menu .dropbtn:focus-visible {
  background-color: rgba(90, 50, 42, .35);
  color: #fff;
  transform: translateY(-1px);
  outline: none;
}

.menu .dropdown {
  position: relative;
}

.menu .dropdown-content {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 210px;
  border-radius: 14px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, .18);
  overflow: hidden;
  z-index: 30;
  background: #fff;
}

.menu .dropdown.open .dropdown-content {
  display: block;
}

.menu .dropdown-content a {
  display: block;
  padding: 11px 14px;
  color: #2f1914;
  text-decoration: none;
  font-weight: 700;
}

.menu .dropdown-content a:hover {
  background: #f6e8df;
  color: var(--ink);
}

.menu-toggle {
  --size: 44px;
  position: relative;
  width: var(--size);
  height: var(--size);
  display: none;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(245, 233, 231, .45);
  cursor: pointer;
  border-radius: 999px;
  background: rgba(245, 233, 231, .18);
  box-shadow: 0 8px 18px rgba(0, 0, 0, .18);
}

.menu-toggle .bars {
  position: relative;
  width: 22px;
  height: 16px;
}

.menu-toggle .bar {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transform-origin: center;
  transition: transform .25s ease, opacity .2s ease, top .25s ease;
}

.menu-toggle .bar:nth-child(1) { top: 0; }
.menu-toggle .bar:nth-child(2) { top: 7px; }
.menu-toggle .bar:nth-child(3) { top: 14px; }

.menu-toggle.is-open .bar:nth-child(1) {
  top: 7px;
  transform: rotate(45deg);
}

.menu-toggle.is-open .bar:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open .bar:nth-child(3) {
  top: 7px;
  transform: rotate(-45deg);
}

.divisor {
  width: min(1100px, 90%);
  margin: 16px auto;
  border: 0;
  border-top: 1px solid rgba(255,255,255,.18);
}

/* ===== SERVIÇOS - E-COMMERCE PREMIUM ===== */

.shop-section,
#servicos.shop-section {
  background:
    radial-gradient(circle at top left, rgba(176, 113, 93, .15), transparent 34%),
    linear-gradient(180deg, #fff8f5 0%, #f3ded7 100%);
  padding: 78px 0;
}

.shop-section .container {
  width: min(1180px, calc(100% - 32px));
  max-width: 1180px;
  margin: 0 auto;
}

.shop-heading {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 28px;
}

.shop-heading h2 {
  color: var(--brown-dark);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 950;
  letter-spacing: -.04em;
  line-height: 1.06;
  margin: 0;
}

.shop-tabs {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 34px;
  width: 100%;
  margin: 0 auto 44px;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.shop-tab {
  position: relative;
  border: 0;
  background: transparent;
  color: #87645b;
  font-size: 15px;
  font-weight: 750;
  padding: 0 0 12px;
  cursor: pointer;
  transition: .22s ease;
}

.shop-tab:hover {
  color: var(--brown-dark);
}

.shop-tab.active {
  color: #2f1914;
  font-weight: 950;
}

.shop-tab.active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 38px;
  height: 3px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: linear-gradient(90deg, var(--ink), var(--gold));
}

.shop-category {
  color: var(--brown-dark);
  font-size: clamp(1.35rem, 2.4vw, 1.8rem);
  font-weight: 500;
  letter-spacing: -.03em;
  margin: 42px 0 18px;
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 18px;
  align-items: stretch;
}

.shop-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #fff;
  border: 1px solid rgba(90, 50, 42, .10);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  cursor: pointer;
}

.shop-card:hover {
  transform: translateY(-5px);
  border-color: rgba(176, 113, 93, .38);
  box-shadow: var(--shadow-md);
}

.shop-card.featured {
  border: 1px solid rgba(176, 113, 93, .48);
}

.shop-image-wrap {
  position: relative;
  padding: 9px;
  background: #f7e8e1;
}

.shop-img {
  width: 100%;
  height: 145px;
  object-fit: cover;
  border-radius: 13px;
  background: #f3ded7;
}

.shop-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  z-index: 2;
  background: var(--green);
  color: #fff;
  padding: 5px 9px;
  border-radius: 999px;
  font-size: 9px;
  font-weight: 950;
  text-transform: uppercase;
  box-shadow: 0 8px 18px rgba(45, 122, 70, .22);
}

.shop-badge.soft {
  background: var(--gold);
}

.shop-content {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 13px;
}

.shop-content small {
  display: block;
  color: var(--gold);
  font-size: 10px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: 6px;
}

.shop-content h4 {
  color: var(--brown-dark);
  font-size: 15px;
  font-weight: 950;
  line-height: 1.18;
  margin: 0 0 6px;
}

.shop-content p {
  color: #705249;
  font-size: 12px;
  line-height: 1.45;
  margin: 0 0 9px;
}

.shop-rating {
  color: #d79b2d;
  font-size: 10px;
  font-weight: 950;
  margin-bottom: 9px;
}

.shop-rating span {
  color: #806058;
  font-weight: 750;
}

.shop-price {
  margin-top: auto;
  border-top: 1px solid rgba(90, 50, 42, .10);
  padding-top: 9px;
  margin-bottom: 10px;
}

.shop-price span {
  display: block;
  color: #8a6b63;
  font-size: 10px;
  font-weight: 850;
}

.shop-price strong {
  display: block;
  color: var(--green);
  font-size: 1.2rem;
  font-weight: 950;
  line-height: 1.1;
}

.shop-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  width: 100%;
  border-radius: 10px;
  background: var(--brown-dark);
  color: #fff;
  font-size: 11px;
  font-weight: 950;
  text-decoration: none;
  transition: .22s ease;
}

.shop-btn:hover {
  background: var(--gold);
  color: #fff;
  transform: translateY(-1px);
}

/* ===== MODAL DE SERVIÇOS ===== */

.service-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
}

.service-modal.active {
  display: block;
}

.service-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(25, 15, 12, .72);
  backdrop-filter: blur(7px);
}

.service-modal-box {
  position: relative;
  z-index: 2;
  width: min(1040px, calc(100% - 40px));
  max-height: calc(100vh - 50px);
  overflow-y: auto;
  margin: 25px auto;
  background: #fffaf6;
  border: 1px solid rgba(255,255,255,.38);
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 30px 90px rgba(0,0,0,.35);
}

.service-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  font-size: 24px;
  font-weight: 900;
  cursor: pointer;
  z-index: 5;
}

.service-modal-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 34px;
}

.service-modal-gallery {
  background: #f6e8df;
  border-radius: 24px;
  padding: 16px;
  border: 1px solid rgba(90,50,42,.12);
}

.service-modal-main-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 20px;
  background: #fff;
}

.service-modal-thumbs {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 14px;
}

.service-thumb {
  width: 62px;
  height: 62px;
  object-fit: cover;
  border-radius: 12px;
  cursor: pointer;
  border: 2px solid transparent;
  background: #fff;
}

.service-thumb.active {
  border-color: var(--gold);
}

.service-modal-category {
  display: inline-block;
  background: var(--gold);
  color: #fff;
  padding: 7px 13px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.service-modal-info h2 {
  color: #2f1914;
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1;
  font-weight: 950;
  letter-spacing: -.04em;
  margin: 0 0 16px;
}

.service-modal-rating {
  color: #d79b2d;
  font-size: 14px;
  font-weight: 900;
  margin-bottom: 20px;
}

.service-modal-rating span {
  color: #76554d;
  margin-left: 6px;
}

.service-modal-price {
  margin-bottom: 22px;
}

.service-modal-price span {
  display: block;
  color: #806058;
  font-size: 13px;
  font-weight: 800;
}

.service-modal-price strong {
  color: var(--green);
  font-size: 2rem;
  font-weight: 950;
}

.service-modal-info p {
  color: #654941;
  line-height: 1.7;
  margin-bottom: 22px;
}

.service-modal-benefits {
  border-top: 1px solid rgba(90,50,42,.12);
  padding-top: 20px;
  margin-bottom: 24px;
}

.service-modal-benefits h4 {
  color: #2f1914;
  font-weight: 900;
  margin-bottom: 12px;
}

.service-modal-benefits li {
  color: #654941;
  margin-bottom: 9px;
  padding-left: 18px;
  position: relative;
}

.service-modal-benefits li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 900;
}

.service-modal-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  border-radius: 14px;
  background: var(--ink);
  color: #fff;
  font-weight: 900;
  text-decoration: none;
}

.service-modal-btn:hover {
  background: var(--gold);
  color: #fff;
}

/* ===== PRODUTOS ===== */

#produtos {
  background: linear-gradient(180deg, #f0efe9 0%, #e1dccf 100%);
  padding: 78px 0;
}

#produtos .container {
  width: min(1180px, calc(100% - 32px));
  max-width: 1180px;
}

#produtos h2 {
  color: var(--ink);
  font-size: clamp(2rem, 3vw, 2.6rem);
  font-weight: 900;
}

#produtos p.text-center {
  color: #6d4b42;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.prod-carousel {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  overflow: hidden;
}

.prod-btn {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(90, 50, 42, .10);
  background: rgba(255,255,255,.64);
  color: var(--ink);
  font-size: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: .2s ease;
}

.prod-btn:hover {
  transform: translateY(-1px);
  background: #fff;
}

.prod-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 6px 6px 16px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.prod-track::-webkit-scrollbar {
  display: none;
}

.prod-card {
  position: relative;
  flex: 0 0 210px;
  max-width: 210px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(90, 50, 42, .10);
  border-radius: 18px;
  padding: 12px;
  color: #2b1a16;
  scroll-snap-align: start;
  box-shadow: var(--shadow-sm);
  transition: .24s ease;
}

.prod-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.prod-img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 10px;
  background: #f6e8df;
}

.prod-title {
  font-weight: 900;
  color: var(--ink);
  margin: 4px 0 6px;
  font-size: 15px;
}

.prod-desc {
  color: rgba(90, 50, 42, .85);
  font-size: 12px;
  line-height: 1.4;
  margin: 0;
}

.prod-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--gold);
  color: #fff;
  padding: 5px 9px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 900;
  z-index: 2;
}

.prod-price {
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 10px 0 6px;
}

.old-price {
  text-decoration: line-through;
  color: rgba(90, 50, 42, .55);
  font-size: 12px;
}

.new-price {
  color: var(--green);
  font-size: 18px;
  font-weight: 950;
}

.prod-urgency {
  color: #9c5f38;
  font-size: 12px;
  font-weight: 700;
  margin: 0 0 10px;
}

.btn-buy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 40px;
  border-radius: 10px;
  background: var(--green);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  padding: 10px 12px;
  transition: .22s ease;
}

.btn-buy:hover {
  color: #fff;
  background: #245f37;
}

/* ===== SOBRE + DEPOIMENTOS ===== */

.sobre-depoimentos-section {
  padding: 90px 20px;
  background:
    radial-gradient(circle at top right, rgba(176,113,93,0.10), transparent 30%),
    linear-gradient(180deg, #fbf5f2 0%, #f2dfd8 100%);
}

.sobre-depoimentos-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

.sobre-depoimentos-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 46px;
}

.sobre-depoimentos-media {
  margin: 0;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 22px 50px rgba(90, 50, 42, .16);
}

.sobre-depoimentos-img {
  width: 100%;
  min-height: 580px;
  height: 100%;
  object-fit: cover;
}

.sobre-depoimentos-copy {
  color: var(--ink);
}

.sobre-depoimentos-badge,
.avaliacoes-badge {
  display: inline-block;
  padding: 7px 16px;
  border-radius: 999px;
  background: var(--gold);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  margin-bottom: 16px;
}

.sobre-depoimentos-copy h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  margin-bottom: 18px;
  color: var(--ink);
}

.sobre-lead {
  font-size: 1.08rem !important;
  font-weight: 700;
  color: #6b473d !important;
}

.sobre-depoimentos-copy p {
  font-size: 1rem;
  line-height: 1.8;
  color: #6d4b42;
  margin-bottom: 18px;
}

.sobre-depoimentos-pontos {
  display: grid;
  gap: 12px;
  margin: 0 0 28px;
}

.sobre-depoimentos-pontos li {
  position: relative;
  padding-left: 26px;
  color: var(--ink);
  font-weight: 700;
}

.sobre-depoimentos-pontos li::before {
  content: "•";
  position: absolute;
  left: 8px;
  top: -1px;
  color: var(--gold);
  font-size: 1.1rem;
  font-weight: 900;
}

.sobre-metricas {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 28px;
}

.metrica-card {
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(176, 113, 93, .14);
  border-radius: 20px;
  padding: 22px 18px;
  box-shadow: 0 14px 28px rgba(90, 50, 42, .06);
  text-align: center;
}

.metrica-card.destaque {
  background: linear-gradient(180deg, var(--gold) 0%, #9d624f 100%);
}

.metrica-card strong {
  display: block;
  font-size: 1.8rem;
  color: var(--gold);
  margin-bottom: 7px;
}

.metrica-card.destaque strong,
.metrica-card.destaque span {
  color: #fff;
}

.metrica-card span {
  display: block;
  color: #6d4b42;
  font-size: .95rem;
  line-height: 1.45;
}

.sobre-depoimentos-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn-sobre-principal,
.btn-sobre-secundario {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 22px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 850;
  transition: .22s ease;
}

.btn-sobre-principal {
  background: var(--ink);
  color: #fff;
}

.btn-sobre-principal:hover {
  background: #74463b;
  color: #fff;
  transform: translateY(-2px);
}

.btn-sobre-secundario {
  background: rgba(90, 50, 42, .07);
  color: var(--ink);
  border: 1px solid rgba(90, 50, 42, .12);
}

.btn-sobre-secundario:hover {
  background: rgba(90, 50, 42, .12);
  color: var(--ink);
}

.avaliacoes-reais-box {
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(176, 113, 93, .12);
  backdrop-filter: blur(8px);
  border-radius: 30px;
  padding: 34px;
  box-shadow: 0 18px 44px rgba(90, 50, 42, .08);
}

.avaliacoes-reais-topo {
  text-align: center;
  margin-bottom: 30px;
}

.avaliacoes-reais-topo h3 {
  color: var(--ink);
  margin-bottom: 10px;
  font-size: 2rem;
}

.avaliacoes-reais-topo p {
  max-width: 720px;
  margin: 0 auto;
  color: #6d4b42;
}

.depoimento-form {
  width: 100%;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-bottom: 18px;
}

.ratings-grid {
  grid-template-columns: repeat(4, 1fr);
}

.form-group,
.campo {
  display: flex;
  flex-direction: column;
}

.form-group label,
.campo label,
.horarios h3 {
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--ink);
}

.form-group input,
.form-group textarea,
.campo input,
.campo select {
  width: 100%;
  border: 1px solid rgba(176, 113, 93, .18);
  background: #fff;
  color: #4c342d;
  border-radius: 14px;
  padding: 14px 16px;
  outline: none;
  font-size: 15px;
  transition: .22s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.campo input:focus,
.campo select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(176, 113, 93, .08);
}

.form-group small {
  margin-top: 6px;
  color: #8a6a60;
  font-size: 12px;
}

.preview-area {
  margin-bottom: 18px;
}

.preview-area img {
  width: 92px;
  height: 92px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid rgba(176, 113, 93, .18);
}

.btn-enviar-depoimento,
.btn-agendar {
  border: 0;
  background: var(--gold);
  color: #fff;
  font-weight: 850;
  padding: 14px 24px;
  border-radius: 14px;
  cursor: pointer;
  transition: .22s ease;
  font-size: 15px;
}

.btn-enviar-depoimento:hover,
.btn-agendar:hover {
  background: #965d4c;
  transform: translateY(-1px);
}

.form-message {
  margin-top: 14px;
  font-size: 14px;
  font-weight: 700;
  color: #8d5d50 !important;
}

.depoimentos-lista {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 30px;
}

.depoimento-card {
  background: #fff;
  border: 1px solid rgba(176, 113, 93, .12);
  border-radius: 22px;
  padding: 22px;
  color: var(--ink);
  box-shadow: 0 12px 30px rgba(90, 50, 42, .06);
}

.depoimento-topo {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.depoimento-foto {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(176, 113, 93, .14);
  background: #f5ebe7;
}

.depoimento-info h3 {
  margin: 0 0 6px;
  font-size: 1.05rem;
  color: var(--ink);
}

.nota-geral {
  display: inline-block;
  font-size: 13px;
  color: #8d5d50;
  background: #f5e7e1;
  padding: 6px 10px;
  border-radius: 999px;
}

.depoimento-notas {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.depoimento-notas span {
  background: #f7efec;
  border-radius: 999px;
  padding: 7px 10px;
  font-size: 13px;
  color: #6d4b42;
}

.depoimento-texto {
  margin: 0;
  color: #5c433b;
  line-height: 1.7;
  font-size: 15px;
}

/* ===== AGENDAMENTO ===== */

.agendamento {
  padding: 78px 20px;
  background: #f8f3ef;
  color: var(--ink);
}

.agendamento .container {
  max-width: 1200px;
  margin: 0 auto;
}

.secao-topo {
  text-align: center;
  margin-bottom: 30px;
}

.secao-topo h2 {
  margin-bottom: 10px;
  font-weight: 900;
}

.agenda-box {
  background: rgba(176, 113, 93, .10);
  border: 1px solid rgba(176, 113, 93, .16);
  border-radius: 24px;
  padding: 28px;
}

.horarios-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 12px;
}

.horario-btn {
  border: 1px solid rgba(90, 50, 42, .16);
  background: #fff;
  border-radius: 12px;
  padding: 12px 14px;
  font-weight: 700;
  color: var(--ink);
}

.horario-btn.ativo {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}

.horario-btn.indisponivel {
  opacity: .55;
  cursor: not-allowed;
}

.horario-vazio {
  margin: 0;
  padding: 14px 16px;
  border-radius: 12px;
  background: rgba(90, 50, 42, .06);
}

.acoes {
  margin-top: 20px;
}

/* ===== LOCALIZAÇÃO ===== */

.localizacao {
  position: relative;
  padding: 78px 20px;
  background: #f8f3ef;
  overflow: hidden;
}

.localizacao .container {
  max-width: 1200px;
  margin: 0 auto;
}

.localizacao-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .10;
  pointer-events: none;
}

.location-header {
  position: relative;
  text-align: center;
  margin-bottom: 36px;
}

.location-badge {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--gold);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 12px;
}

.location-header h2 {
  margin: 0 0 10px;
  font-size: 2rem;
  color: #5a3c32;
  font-weight: 900;
}

.location-header p {
  margin: 0;
  color: #6f625d;
}

.location-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 24px;
  align-items: stretch;
}

.location-map {
  min-height: 420px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: #fff;
}

.location-card {
  background: #fff;
  border-radius: 20px;
  padding: 28px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.location-card h3 {
  margin: 0 0 18px;
  color: #5a3c32;
  font-size: 1.4rem;
  font-weight: 900;
}

.location-line {
  margin: 0 0 16px;
  color: #4c4541;
  line-height: 1.6;
}

.location-line a {
  color: #7b4f3f;
  text-decoration: none;
}

.location-line a:hover {
  text-decoration: underline;
}

.location-hours {
  margin: 0 0 22px;
  color: #7a6a64;
  font-size: .95rem;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
}

.status-open {
  background: rgba(30, 140, 76, .12);
  color: #1e8c4c;
}

.status-closed {
  background: rgba(180, 58, 58, .12);
  color: #b43a3a;
}

.location-btn {
  display: inline-block;
  width: fit-content;
  padding: 12px 18px;
  background: var(--gold);
  color: #fff;
  border-radius: 12px;
  font-weight: 800;
  transition: .22s ease;
}

.location-btn:hover {
  background: #965d4c;
  transform: translateY(-1px);
  color: #fff;
}

/* ===== FOOTER ===== */

.rodape {
  background: radial-gradient(circle at top, #6e3c32 0%, #3d201b 90%);
  color: var(--paper);
  padding: 60px 20px 20px;
  box-shadow: 0 -6px 18px rgba(0, 0, 0, .25);
  border-top: 3px solid rgba(255, 255, 255, .08);
}

.container-rodape {
  max-width: 1200px;
  margin: 0 auto 30px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: left;
}

.coluna h3,
.coluna h4 {
  margin-bottom: 15px;
  color: #fff;
  font-size: 24px;
  line-height: 1.2;
}

.coluna p,
.coluna a {
  color: #d9c5c0;
  font-size: 14px;
  text-decoration: none;
  line-height: 1.7;
}

.coluna a:hover {
  color: #fff;
}

.links li {
  margin-bottom: 8px;
}

.social {
  margin-top: 15px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.social a {
  width: 40px;
  height: 40px;
  background: #3a241f;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: .22s ease;
  color: #fff;
}

.social a:hover {
  background: var(--gold);
  transform: translateY(-3px);
}

.social svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  stroke: currentColor;
}

.btn-footer {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 15px;
  background: var(--gold);
  color: #fff !important;
  padding: 10px 16px;
  border-radius: 8px;
  font-weight: 800;
  transition: .22s ease;
}

.btn-footer:hover {
  background: #8f5949;
}

.copy {
  margin-top: 40px;
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 15px;
  font-size: 13px;
  color: #bfa8a2;
  text-align: center;
}

.copy span {
  color: #fff;
  font-weight: 900;
}

/* ===== FLOATING WHATSAPP ===== */

.fab-whats {
  position: fixed;
  right: clamp(12px, 2.5vw, 22px);
  bottom: calc(env(safe-area-inset-bottom, 0px) + clamp(12px, 2.5vw, 22px));
  z-index: 999;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  background: #25D366;
  border: 1px solid #25D366;
  color: #fff;
  box-shadow: 0 10px 28px rgba(37, 211, 102, .45);
  transition: .25s ease;
  animation: pulseWhats 1.5s infinite;
}

.fab-whats:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 14px 34px rgba(37, 211, 102, .60);
  color: #fff;
}

.fab-whats svg {
  width: 24px;
  height: 24px;
  fill: #fff;
}

.fab-whats__label {
  font-weight: 850;
  letter-spacing: .2px;
  color: #fff;
}

@keyframes pulseWhats {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,.60), 0 10px 28px rgba(37,211,102,.45); }
  70% { box-shadow: 0 0 0 16px rgba(37,211,102,0), 0 14px 34px rgba(37,211,102,.55); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0), 0 10px 28px rgba(37,211,102,.45); }
}

/* ===== RESPONSIVO ===== */

@media (max-width: 1100px) {
  .shop-grid {
    grid-template-columns: repeat(auto-fill, minmax(175px, 1fr));
    gap: 16px;
  }

  .shop-img {
    height: 135px;
  }

  .prod-card {
    flex-basis: 200px;
    max-width: 200px;
  }
}

@media (max-width: 992px) {
  .sobre-depoimentos-grid,
  .location-grid {
    grid-template-columns: 1fr;
  }

  .sobre-metricas {
    grid-template-columns: 1fr;
  }

  .ratings-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .depoimentos-lista {
    grid-template-columns: 1fr 1fr;
  }

  .sobre-depoimentos-img {
    min-height: 420px;
  }

  .container-rodape {
    grid-template-columns: 1fr 1fr;
  }

  .location-map {
    min-height: 320px;
  }
}

@media (max-width: 850px) {
  .service-modal-box {
    width: calc(100% - 28px);
    padding: 20px;
    border-radius: 24px;
  }

  .service-modal-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .service-modal-main-img {
    height: 340px;
  }

  .service-modal-info h2 {
    font-size: 2.1rem;
  }
}

@media (max-width: 768px) {
  .logo {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }

  .logo-texto,
  .login {
    width: 100%;
  }

  .login {
    margin-left: 0;
  }

  .login-link {
    justify-content: center;
  }

  .menu-bar {
    display: flex;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .menu > ul#menu-list {
    display: block;
    background: #5a322aeb;
    border-radius: 14px;
    margin-top: 10px;
    padding: 0 10px;
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease, padding .25s ease;
  }

  .menu > ul#menu-list.open {
    max-height: 680px;
    padding: 8px 10px 12px;
  }

  .menu > ul#menu-list li {
    border-top: 1px solid rgba(255,255,255,.12);
  }

  .menu > ul#menu-list li:first-child {
    border-top: 0;
  }

  .menu > ul#menu-list a,
  .menu > ul#menu-list .dropbtn {
    display: block;
    width: 100%;
    padding: 12px 6px;
    color: #fff;
    font-weight: 800;
    text-align: left;
  }

  .menu > ul#menu-list .dropdown {
    position: static;
  }

  .menu > ul#menu-list .dropdown .dropdown-content {
    position: static;
    display: none;
    background: transparent;
    box-shadow: none;
    margin: 6px 0;
    border-radius: 10px;
    padding: 0;
    max-height: 220px;
    overflow: auto;
  }

  .menu > ul#menu-list .dropdown.open .dropdown-content {
    display: block;
  }

  .menu > ul#menu-list .dropdown .dropdown-content a {
    color: #fff;
    background: rgba(255,255,255,.04);
    border-radius: 8px;
    margin: 6px 4px;
    padding: 10px 12px;
  }

  .shop-section {
    padding: 64px 0;
  }

  .shop-section .container,
  #produtos .container {
    width: min(720px, calc(100% - 24px));
  }

  .shop-heading {
    margin-bottom: 24px;
  }

  .shop-heading h2 {
    font-size: 2rem;
    line-height: 1.1;
  }

  .shop-tabs {
    gap: 24px;
    margin-bottom: 34px;
    flex-wrap: wrap;
  }

  .shop-category {
    font-size: 1.45rem;
    margin: 34px 0 18px;
  }

  .shop-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }

  .shop-img {
    height: 118px;
  }

  .shop-content {
    padding: 11px;
  }

  .shop-content h4 {
    font-size: 14px;
  }

  .shop-content p {
    font-size: 11.5px;
    line-height: 1.4;
  }

  .shop-price strong {
    font-size: 1.05rem;
  }

  .shop-btn {
    min-height: 36px;
    font-size: 10.5px;
  }

  .form-grid,
  .ratings-grid,
  .depoimentos-lista {
    grid-template-columns: 1fr;
  }

  .avaliacoes-reais-box,
  .agenda-box {
    padding: 22px;
  }

  .sobre-depoimentos-copy h2,
  .location-header h2,
  #produtos h2 {
    font-size: 1.8rem;
  }

  .sobre-depoimentos-cta {
    flex-direction: column;
  }

  .container-rodape {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .social {
    justify-content: center;
  }

  .btn-footer {
    width: 100%;
  }
}

@media (max-width: 576px) {
  .logo,
  .menu,
  .carousel.slide,
  .divisor {
    width: calc(100% - 24px);
  }

  .carousel-item img {
    height: 170px;
  }

  .shop-section {
    padding: 52px 0;
  }

  .shop-section .container,
  #produtos .container {
    width: calc(100% - 20px);
  }

  .shop-heading h2 {
    font-size: 1.75rem;
  }

  .shop-tabs {
    justify-content: center;
    gap: 18px;
    margin-bottom: 30px;
  }

  .shop-tab {
    font-size: 13px;
  }

  .shop-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .shop-card {
    border-radius: 15px;
  }

  .shop-image-wrap {
    padding: 7px;
  }

  .shop-img {
    height: 108px;
    border-radius: 10px;
  }

  .shop-badge {
    top: 11px;
    left: 11px;
    font-size: 8px;
    padding: 4px 7px;
  }

  .shop-content {
    padding: 10px;
  }

  .shop-content small {
    font-size: 8.5px;
    margin-bottom: 4px;
  }

  .shop-content h4 {
    font-size: 13px;
    line-height: 1.15;
    margin-bottom: 5px;
  }

  .shop-content p {
    font-size: 11px;
    line-height: 1.35;
    margin-bottom: 7px;
  }

  .shop-rating {
    font-size: 9px;
    margin-bottom: 7px;
  }

  .shop-rating span {
    display: none;
  }

  .shop-price {
    padding-top: 7px;
    margin-bottom: 8px;
  }

  .shop-price span {
    font-size: 9px;
  }

  .shop-price strong {
    font-size: 1rem;
  }

  .shop-btn {
    min-height: 34px;
    border-radius: 9px;
    font-size: 10px;
  }

  .prod-carousel {
    grid-template-columns: 1fr;
  }

  .prod-btn {
    display: none;
  }

  .prod-card {
    flex: 0 0 175px;
    max-width: 175px;
  }

  .prod-img {
    height: 120px;
  }

  .service-modal-box {
    width: calc(100% - 18px);
    margin: 9px auto;
    max-height: calc(100vh - 18px);
    padding: 14px;
    border-radius: 20px;
  }

  .service-modal-close {
    top: 12px;
    right: 12px;
    width: 34px;
    height: 34px;
    font-size: 22px;
  }

  .service-modal-gallery {
    padding: 10px;
    border-radius: 18px;
  }

  .service-modal-main-img {
    height: 240px;
    border-radius: 14px;
  }

  .service-modal-thumbs {
    gap: 8px;
    margin-top: 10px;
  }

  .service-thumb {
    width: 46px;
    height: 46px;
    border-radius: 9px;
  }

  .service-modal-info h2 {
    font-size: 1.75rem;
  }

  .service-modal-price strong {
    font-size: 1.65rem;
  }

  .service-modal-btn {
    min-height: 48px;
    font-size: 14px;
  }

  .fab-whats {
    padding: 13px;
  }

  .fab-whats__label {
    display: none;
  }
}

@media (max-width: 380px) {
  .shop-grid {
    gap: 10px;
  }

  .shop-img {
    height: 98px;
  }

  .shop-content h4 {
    font-size: 12.5px;
  }

  .shop-content p {
    font-size: 10.5px;
  }

  .shop-btn {
    font-size: 9.5px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
    scroll-behavior: auto !important;
  }
}

/* AJUSTE PREMIUM DO TOPO */

body {
  background: #b88679;
}

.logo {
  width: min(1100px, 90%);
  margin: 24px auto 16px;
  padding: 18px 22px;
  border-radius: 20px;
  background: rgba(255, 255, 255, .18);
  border: 1px solid rgba(255, 255, 255, .35);
  box-shadow: 0 18px 38px rgba(58, 33, 29, .14);
  backdrop-filter: blur(14px);
}

.logo-img {
  width: 76px !important;
  height: 76px !important;
  border-radius: 50%;
}

.est {
  font-family: "Pinyon Script", cursive;
  color: #4a2a25;
  font-size: clamp(34px, 4vw, 48px);
}

.cab {
  color: #fff;
  font-weight: 700;
}

.login-link {
  background: rgba(255, 255, 255, .22);
  border: 1px solid rgba(255, 255, 255, .45);
  color: #fff;
  border-radius: 999px;
  padding: 12px 24px;
  font-weight: 800;
}

.carousel.slide {
  width: min(1100px, 90%);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(58, 33, 29, .16);
}

.menu {
  position: sticky;
  top: 0;
  z-index: 999;
  width: min(1100px, 90%);
  margin: 0 auto;
  padding: 10px 0;
  background: rgba(184, 134, 121, .92);
  backdrop-filter: blur(10px);
}

.menu > ul#menu-list {
  background: rgba(90, 50, 42, .28);
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.18);
}

.menu-toggle {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.35);
}

@media (max-width: 768px) {
  .logo {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }

  .login {
    margin-left: 0;
  }

  .menu-bar {
    padding: 0 4px;
  }
}

/* MENU OCUPANDO TODA A LARGURA */

.menu {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 10px 16px !important;
  left: 0;
  right: 0;
}

.menu-bar {
  width: 100%;
}

.menu > ul#menu-list {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

/* MOBILE */
@media (max-width: 768px) {
  .menu {
    width: 100% !important;
    padding: 10px 16px !important;
  }

  .menu-bar {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
  }
}

.menu {
  background: rgba(184, 134, 121, .96) !important;
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 24px rgba(58, 33, 29, .12);
}

/*agenda*/

/* =========================
   AGENDAMENTO PREMIUM
========================= */

.agendamento {
  padding: 90px 20px;
  background:
    radial-gradient(circle at top right,
      rgba(184,134,121,.12),
      transparent 30%),
    linear-gradient(
      180deg,
      #fff8f5 0%,
      #f4e3dc 100%
    );
}

.agendamento .container {
  max-width: 1000px;
  margin: 0 auto;
}

.secao-topo {
  text-align: center;
  margin-bottom: 40px;
}

.secao-topo h2 {
  font-size: clamp(2rem,4vw,3rem);
  font-weight: 900;
  color: #4a2a25;
  margin-bottom: 12px;
}

.secao-topo p {
  color: #7a5a52;
  font-size: 1rem;
}

/* CARD */

.agenda-box {
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);

  border: 1px solid rgba(184,134,121,.15);

  border-radius: 28px;

  padding: 35px;

  box-shadow:
    0 25px 50px rgba(58,33,29,.08);
}

/* CAMPOS */

.campo {
  margin-bottom: 22px;
}

.campo label {
  display: block;

  font-size: .95rem;
  font-weight: 700;

  color: #5a322a;

  margin-bottom: 8px;
}

.campo select,
.campo input {
  width: 100%;

  height: 58px;

  border: 1px solid rgba(184,134,121,.25);

  border-radius: 14px;

  background: #fff;

  padding: 0 18px;

  font-size: 15px;

  color: #4a2a25;

  transition: .25s;
}

.campo select:focus,
.campo input:focus {
  outline: none;

  border-color: #b0715d;

  box-shadow:
    0 0 0 4px rgba(176,113,93,.12);
}

/* HORARIOS */

.horarios {
  margin-top: 35px;
}

.horarios h3 {
  color: #4a2a25;
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 18px;
}

.horarios-grid {
  display: grid;

  grid-template-columns:
    repeat(auto-fit,minmax(140px,1fr));

  gap: 12px;
}

.horario-btn {
  border: 1px solid rgba(184,134,121,.20);

  background: #fff;

  color: #5a322a;

  border-radius: 12px;

  padding: 14px;

  font-weight: 700;

  cursor: pointer;

  transition: .25s;
}

.horario-btn:hover {
  transform: translateY(-2px);

  border-color: #b0715d;

  box-shadow:
    0 8px 18px rgba(176,113,93,.12);
}

.horario-btn.ativo {
  background: linear-gradient(
    135deg,
    #b0715d,
    #8c5b50
  );

  color: white;

  border-color: transparent;
}

.horario-btn.indisponivel {
  background: #f4f4f4;

  color: #999;

  cursor: not-allowed;

  opacity: .7;
}

.horario-vazio {
  background: #f9f4f2;

  border-radius: 12px;

  padding: 16px;

  color: #7a5a52;
}

/* BOTÃO */

.acoes {
  margin-top: 35px;
}


.btn-agendar {
  width: 100%;
  height: 62px;

  border-radius: 999px;

  border: 1px solid rgba(90,50,42,.15);

  background: white;

  color: #4a2a25;

  font-weight: 800;
font-family: 'Plus Jakarta Sans', sans-serif;
  letter-spacing: .06em;
  text-transform: uppercase;

  transition: .3s;
}

.btn-agendar:hover {
  background: #4a2a25;
  color: white;

  box-shadow:
    0 18px 35px rgba(74,42,37,.22);
}
/* RESPONSIVO */

@media (max-width:768px){

  .agendamento {
    padding: 60px 15px;
  }

  .agenda-box {
    padding: 22px;
    border-radius: 22px;
  }

  .horarios-grid {
    grid-template-columns:
      repeat(2,1fr);
  }

  .campo select,
  .campo input {
    height: 54px;
  }

  .btn-agendar {
    height: 54px;
  }
}

@media (max-width:480px){

  .horarios-grid {
    grid-template-columns: 1fr;
  }

  .secao-topo h2 {
    font-size: 2rem;
  }
}

/*localizar*/
/* ===================================
   LOCALIZAÇÃO PREMIUM
=================================== */

.localizacao {
  position: relative;
  overflow: hidden;
  padding: 100px 20px;

  background:
    linear-gradient(
      180deg,
      #fff8f5 0%,
      #f4e3dc 100%
    );
}

/* vídeo */

.localizacao-video {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;

  opacity: .08;

  pointer-events: none;
}

/* overlay elegante */

.localizacao::before {
  content: "";

  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      180deg,
      rgba(255,248,245,.92),
      rgba(244,227,220,.95)
    );

  z-index: 1;
}

.localizacao .container {
  position: relative;
  z-index: 2;

  max-width: 1200px;
  margin: 0 auto;
}

/* topo */

.location-header {
  text-align: center;
  margin-bottom: 55px;
}

.location-badge {
  display: inline-block;

  padding: 8px 16px;

  border-radius: 999px;

  background: rgba(176,113,93,.12);

  color: #8c5b50;

  font-size: 12px;
  font-weight: 800;

  text-transform: uppercase;
  letter-spacing: .08em;

  margin-bottom: 18px;
}

.location-header h2 {
  color: #4a2a25;

  font-size: clamp(2rem,4vw,3.2rem);
  font-weight: 900;

  margin-bottom: 14px;
}

.location-header p {
  max-width: 650px;

  margin: 0 auto;

  color: #6d4b42;

  line-height: 1.8;
}

/* layout */

.location-grid {
  display: grid;

  grid-template-columns: 1.4fr .8fr;

  gap: 30px;

  align-items: stretch;
}

/* mapa */

.location-map {
  overflow: hidden;

  border-radius: 26px;

  box-shadow:
    0 25px 50px rgba(58,33,29,.10);

  border: 1px solid rgba(176,113,93,.12);

  min-height: 520px;
}

.location-map iframe {
  width: 100%;
  height: 100%;
}

/* card */

.location-card {
  background: rgba(255,255,255,.88);

  backdrop-filter: blur(10px);

  border-radius: 26px;

  padding: 35px;

  border: 1px solid rgba(176,113,93,.15);

  box-shadow:
    0 25px 50px rgba(58,33,29,.08);

  display: flex;
  flex-direction: column;
  justify-content: center;
}

.location-card h3 {
  color: #4a2a25;

  font-size: 1.6rem;
  font-weight: 900;

  margin-bottom: 25px;
}

/* linhas */

.location-line {
  margin-bottom: 20px;

  color: #5d4139;

  line-height: 1.7;
}

.location-line strong {
  display: block;

  margin-bottom: 4px;

  color: #4a2a25;
}

.location-line a {
  color: #8c5b50;
  text-decoration: none;
}

.location-line a:hover {
  color: #5a322a;
}

/* horários */

.location-hours {
  margin-bottom: 30px;

  color: #7a5a52;
}

/* status */

.status-badge {
  display: inline-flex;

  align-items: center;

  padding: 8px 14px;

  border-radius: 999px;

  font-size: 13px;
  font-weight: 700;
}

.status-open {
  background: rgba(38,146,74,.12);
  color: #26924a;
}

.status-closed {
  background: rgba(188,56,56,.12);
  color: #bc3838;
}

/* botão */

.location-btn {
  display: flex;

  align-items: center;
  justify-content: center;

  width: 100%;

  height: 60px;

  border-radius: 999px;

  background: white;

  border: 1px solid rgba(90,50,42,.12);

  color: #4a2a25;

  font-weight: 800;

  letter-spacing: .05em;

  transition: .3s;
}

.location-btn:hover {
  background: #4a2a25;

  color: white;

  transform: translateY(-3px);

  box-shadow:
    0 18px 35px rgba(74,42,37,.20);
}

/* tablet */

@media (max-width:900px) {

  .location-grid {
    grid-template-columns: 1fr;
  }

  .location-map {
    min-height: 400px;
  }

}

/* celular */

@media (max-width:576px) {

  .localizacao {
    padding: 70px 15px;
  }

  .location-header {
    margin-bottom: 35px;
  }

  .location-card {
    padding: 24px;
  }

  .location-map {
    min-height: 300px;
  }

  .location-btn {
    height: 55px;
    font-size: 14px;
  }

}

/*rodapé*/
/* =========================
   RODAPÉ PREMIUM
========================= */

.rodape {
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, .08), transparent 32%),
    linear-gradient(180deg, #5a322a 0%, #321b17 100%);
  color: #f8eee9;
  padding: 70px 20px 24px;
}

.container-rodape {
  max-width: 1180px;
  margin: 0 auto 35px;
  display: grid;
  grid-template-columns: 1.2fr .8fr 1fr;
  gap: 48px;
  align-items: start;
}

.logo-rodape {
  width: 74px;
  height: 74px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 18px;
}

.coluna h3,
.coluna h4 {
  color: #fff;
  margin: 0 0 16px;
  font-weight: 900;
  letter-spacing: -.02em;
}

.coluna h3 {
  font-size: 1.6rem;
}

.coluna h4 {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  opacity: .9;
}

.coluna p {
  color: rgba(248, 238, 233, .78);
  line-height: 1.75;
  margin: 0 0 14px;
  font-size: 14px;
}

.coluna a {
  color: rgba(248, 238, 233, .78);
  text-decoration: none;
  transition: .25s ease;
}

.coluna a:hover {
  color: #fff;
}

.links1 ul {
  display: grid;
  gap: 10px;
}

.links1 a {
  font-size: 14px;
}

.links1 a:hover {
  padding-left: 4px;
}

/* redes sociais */

.social {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .10);
  border: 1px solid rgba(255, 255, 255, .16);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .25s ease;
}

.social a:hover {
  background: #b0715d;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(176, 113, 93, .25);
}

.social svg {
  width: 18px;
  height: 18px;
}

/* botão whatsapp do rodapé */

.btn-footer {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  margin-top: 8px;
  border-radius: 999px;
  background: #fff;
  color: #4a2a25 !important;
  font-weight: 900;
  font-size: 14px;
  transition: .25s ease;
}

.btn-footer:hover {
  background: #b0715d;
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(176, 113, 93, .28);
}

/* copy */

.copy {
  max-width: 1180px;
  margin: 0 auto;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  text-align: center;
}

.copy p {
  margin: 0;
  color: rgba(248, 238, 233, .62);
  font-size: 13px;
}

.copy span {
  color: #fff;
  font-weight: 900;
}

/* =========================
   RESPONSIVO DO RODAPÉ
========================= */

@media (max-width: 900px) {
  .container-rodape {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .links1 {
    display: none;
  }
}

@media (max-width: 768px) {
  .rodape {
    padding: 55px 18px 22px;
  }

  .container-rodape {
    display: flex;
    flex-direction: column;
    gap: 34px;
    text-align: center;
    align-items: center;
  }

  .coluna {
    width: 100%;
    max-width: 420px;
  }

  .logo-rodape {
    margin: 0 auto 16px;
  }

  .social {
    justify-content: center;
  }

  .contato p {
    margin-bottom: 16px;
  }

  .btn-footer {
    width: 100%;
    max-width: 320px;
    margin: 12px auto 0;
  }

  .links1 {
    display: none !important;
  }
}

@media (max-width: 480px) {
  .rodape {
    padding: 48px 16px 20px;
  }

  .coluna h3 {
    font-size: 1.35rem;
  }

  .coluna h4 {
    font-size: .9rem;
  }

  .coluna p,
  .coluna a {
    font-size: 13px;
  }

  .social a {
    width: 40px;
    height: 40px;
  }
}

.social svg {


  fill: currentColor;
  stroke: currentColor;

  flex-shrink: 0;
}

/* =========================
   REDES SOCIAIS PREMIUM
========================= */

.social {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.social a {
  width: 46px;
  height: 46px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: rgba(255,255,255,.08);

  border: 1px solid rgba(255,255,255,.15);

  color: #ffffff;

  transition: all .3s ease;

  flex-shrink: 0;
}

.social a:hover {
  background: #b0715d;

  border-color: #b0715d;

  transform: translateY(-4px);

  box-shadow:
    0 12px 25px rgba(176,113,93,.25);
}

/* TODOS OS SVG */

.social svg {
  width: 20px;
  height: 20px;

  display: block;

  fill: currentColor;

  stroke: none;

  flex-shrink: 0;
}

/* FACEBOOK FICA MELHOR UM POUCO MENOR */

.social a[aria-label="Facebook"] svg {
  width: 18px;
  height: 18px;
}

/* WHATSAPP */

.social a[aria-label="WhatsApp"] svg {
  width: 20px;
  height: 20px;
}

/* INSTAGRAM */

.social a[aria-label="Instagram"] svg {
  width: 20px;
  height: 20px;
}

/* MOBILE */

@media (max-width:768px) {

  .social {
    justify-content: center;
  }

  .social a {
    width: 44px;
    height: 44px;
  }

  .social svg {
    width: 19px;
    height: 19px;
  }
}

@media (max-width:480px) {

  .social a {
    width: 42px;
    height: 42px;
  }

  .social svg {
    width: 18px;
    height: 18px;
  }
}

/*sobre*/

/* ===================================
   SOBRE NÓS PREMIUM
=================================== */

.sobre-depoimentos-section {
  padding: 100px 20px;
  background:
    linear-gradient(
      180deg,
      #fff8f5 0%,
      #f5e5df 100%
    );
}

.sobre-depoimentos-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

/* GRID */

.sobre-depoimentos-grid {
  display: grid;
  grid-template-columns: 480px 1fr;
  gap: 70px;
  align-items: center;
}

/* FOTO */

.sobre-depoimentos-media {
  margin: 0;
}

.sobre-depoimentos-img {
  width: 100%;
  height: 680px;
  object-fit: cover;

  border-radius: 32px;

  box-shadow:
    0 25px 60px rgba(58,33,29,.12);
}

/* TEXTO */

.sobre-depoimentos-copy {
  max-width: 620px;
}

.sobre-depoimentos-badge {
  display: inline-flex;

  padding: 8px 16px;

  border-radius: 999px;

  background: rgba(176,113,93,.10);

  color: #8c5b50;

  font-size: 12px;
  font-weight: 800;

  letter-spacing: .08em;

  margin-bottom: 22px;
}

.sobre-depoimentos-copy h2 {
  color: #4a2a25;

  font-size: clamp(2rem,4vw,3.8rem);

  line-height: 1.05;

  font-weight: 900;

  letter-spacing: -.04em;

  margin-bottom: 22px;
}

.sobre-lead {
  color: #5a322a;

  font-size: 1.08rem;

  line-height: 1.9;

  margin-bottom: 18px;
}

.sobre-depoimentos-copy p {
  color: #6d4b42;

  line-height: 1.9;
}

/* BENEFÍCIOS */

.sobre-depoimentos-pontos {
  display: grid;
  gap: 14px;

  margin: 35px 0;
}

.sobre-depoimentos-pontos li {
  display: flex;
  align-items: center;

  gap: 12px;

  color: #4a2a25;

  font-weight: 600;
}

.sobre-depoimentos-pontos li::before {
  content: "✓";

  width: 26px;
  height: 26px;

  border-radius: 50%;

  background: rgba(176,113,93,.12);

  color: #8c5b50;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 12px;
  font-weight: 900;
}

/* MÉTRICAS */

.sobre-metricas {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 16px;

  margin: 40px 0;
}

.metrica-card {
  background: white;

  border: 1px solid rgba(176,113,93,.10);

  border-radius: 24px;

  padding: 24px 18px;

  text-align: center;

  transition: .3s;
}

.metrica-card:hover {
  transform: translateY(-4px);
}

.metrica-card strong {
  display: block;

  color: #4a2a25;

  font-size: 1.8rem;

  font-weight: 900;

  margin-bottom: 8px;
}

.metrica-card span {
  color: #7a5a52;

  font-size: .9rem;

  line-height: 1.5;
}

.metrica-card.destaque {
  background: #5a322a;
}

.metrica-card.destaque strong,
.metrica-card.destaque span {
  color: white;
}

/* BOTÕES */

.sobre-depoimentos-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-sobre-principal,
.btn-sobre-secundario {
  min-width: 220px;
  height: 62px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 0 28px;

  border-radius: 30px;

  font-size: 14px;
  font-weight: 700;

  letter-spacing: .08em;

  text-decoration: none;

  transition: .3s;
}

.btn-sobre-principal {
  background: white;

  color: #5a322a;

  border: 1px solid rgba(90,50,42,.12);
}

.btn-sobre-principal:hover {
  background: #5a322a;

  color: white;

  transform: translateY(-2px);
}

.btn-sobre-secundario {
  background: transparent;

  color: #5a322a;

  border: 1px solid rgba(90,50,42,.15);
}

.btn-sobre-secundario:hover {
  background: white;

  transform: translateY(-2px);
}

/* RESPONSIVO */

@media (max-width: 1100px) {

  .sobre-depoimentos-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .sobre-depoimentos-copy {
    max-width: none;
  }

  .sobre-depoimentos-media {
    max-width: 650px;
    margin: auto;
  }
}

@media (max-width: 768px) {

  .sobre-depoimentos-section {
    padding: 70px 20px;
  }

  .sobre-depoimentos-img {
    height: 500px;
  }

  .sobre-metricas {
    grid-template-columns: 1fr;
  }

  .sobre-depoimentos-cta {
    flex-direction: column;
  }

  .btn-sobre-principal,
  .btn-sobre-secundario {
    width: 100%;
  }
}

@media (max-width: 576px) {

  .sobre-depoimentos-img {
    height: 420px;
    border-radius: 24px;
  }

  .sobre-depoimentos-copy h2 {
    font-size: 2.1rem;
  }

  .sobre-lead {
    font-size: 1rem;
  }
}

/* ==============================
   SOBRE - RESPONSIVO CELULAR
============================== */

@media (max-width: 768px) {
  .sobre-depoimentos-section {
    padding: 65px 16px;
  }

  .sobre-depoimentos-section .container {
    max-width: 100%;
  }

  .sobre-depoimentos-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .sobre-depoimentos-media {
    max-width: 100%;
    margin: 0 auto;
  }

  .sobre-depoimentos-img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    object-position: center top;
    border-radius: 26px;
  }

  .sobre-depoimentos-copy {
    max-width: 100%;
    text-align: left;
  }

  .sobre-depoimentos-badge {
    margin-bottom: 18px;
  }

  .sobre-depoimentos-copy h2 {
    font-size: 2.15rem;
    line-height: 1.08;
    margin-bottom: 18px;
  }

  .sobre-lead {
    font-size: 1rem;
    line-height: 1.75;
  }

  .sobre-depoimentos-copy p {
    font-size: .95rem;
    line-height: 1.75;
  }

  .sobre-depoimentos-pontos {
    margin: 28px 0;
    gap: 12px;
  }

  .sobre-depoimentos-pontos li {
    align-items: flex-start;
    font-size: .95rem;
    line-height: 1.5;
  }

  .sobre-depoimentos-pontos li::before {
    flex: 0 0 26px;
  }

  .sobre-metricas {
    grid-template-columns: 1fr;
    gap: 12px;
    margin: 32px 0;
  }

  .metrica-card {
    padding: 22px 18px;
    border-radius: 22px;
  }

  .metrica-card strong {
    font-size: 1.7rem;
  }

  .sobre-depoimentos-cta {
    flex-direction: column;
    gap: 12px;
  }

  .btn-sobre-principal,
  .btn-sobre-secundario {
    width: 100%;
    height: 60px;
    min-width: 0;
    border-radius: 30px;
  }
}

@media (max-width: 480px) {
  .sobre-depoimentos-section {
    padding: 55px 14px;
  }

  .sobre-depoimentos-img {
    height: 390px;
    border-radius: 22px;
  }

  .sobre-depoimentos-copy h2 {
    font-size: 1.9rem;
  }

  .sobre-lead,
  .sobre-depoimentos-copy p {
    font-size: .93rem;
  }

  .metrica-card strong {
    font-size: 1.55rem;
  }
}

/*produto e commerce*/

/* =========================
   PRODUTOS E-COMMERCE
========================= */

.produtos-shop-section {
  padding: 90px 20px;
  background: linear-gradient(180deg, #fff8f5 0%, #f3ded7 100%);
}

.produtos-shop-section .container {
  max-width: 1180px;
  margin: 0 auto;
}

.produtos-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 45px;
}

.produtos-header span {
  display: inline-flex;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(176,113,93,.10);
  color: #8c5b50;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 16px;
}

.produtos-header h2 {
  color: #4a2a25;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  margin-bottom: 10px;
}

.produtos-header p {
  color: #7a5a52;
  line-height: 1.7;
}

.produtos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 18px;
}

.produto-card {
  position: relative;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(90,50,42,.10);
  box-shadow: 0 12px 28px rgba(90,50,42,.08);
  cursor: pointer;
  transition: .25s ease;
}

.produto-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 44px rgba(90,50,42,.14);
}

.produto-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  background: #b0715d;
  color: #fff;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
}

.produto-img {
  width: 100%;
  height: 155px;
  object-fit: cover;
  background: #f7e8e1;
}

.produto-info {
  padding: 14px;
}

.produto-info small {
  display: block;
  color: #b0715d;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.produto-info h3 {
  color: #321b17;
  font-size: 15px;
  font-weight: 900;
  margin-bottom: 6px;
}

.produto-info p {
  color: #705249;
  font-size: 12px;
  line-height: 1.45;
  margin-bottom: 10px;
}

.produto-price {
  border-top: 1px solid rgba(90,50,42,.10);
  padding-top: 10px;
  margin-bottom: 12px;
}

.produto-old {
  display: block;
  color: rgba(90,50,42,.45);
  text-decoration: line-through;
  font-size: 11px;
  font-weight: 700;
}

.produto-price strong {
  display: block;
  color: #2d7a46;
  font-size: 1.25rem;
  font-weight: 950;
}

.produto-btn {
  width: 100%;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(90,50,42,.12);
  background: #fff;
  color: #5a322a;
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
  transition: .25s ease;
}

.produto-btn:hover {
  background: #5a322a;
  color: #fff;
}

/* =========================
   MODAL PRODUTO
========================= */

.produto-modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 9999;
}

.produto-modal.active {
  display: block;
}

.produto-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(25,15,12,.72);
  backdrop-filter: blur(8px);
}

.produto-modal-box {
  position: relative;
  z-index: 2;
  width: min(1040px, calc(100% - 36px));
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  margin: 24px auto;
  background: #fffaf6;
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 30px 90px rgba(0,0,0,.34);
}

.produto-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 38px;
  height: 38px;
  border: none;
  border-radius: 50%;
  background: #5a322a;
  color: #fff;
  font-size: 24px;
  font-weight: 900;
  cursor: pointer;
  z-index: 5;
}

.produto-modal-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 34px;
}

.produto-modal-gallery {
  background: #f6e8df;
  border-radius: 24px;
  padding: 16px;
  border: 1px solid rgba(90,50,42,.12);
}

.produto-modal-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 20px;
}

.produto-modal-tag {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(176,113,93,.12);
  color: #8c5b50;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.produto-modal-info h2 {
  color: #2f1914;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
  font-weight: 950;
  margin-bottom: 16px;
}

.produto-modal-info p {
  color: #654941;
  line-height: 1.7;
  margin-bottom: 20px;
}

.produto-modal-price {
  margin-bottom: 24px;
}

.produto-modal-price span {
  display: block;
  color: rgba(90,50,42,.45);
  text-decoration: line-through;
  font-size: 1rem;
  font-weight: 700;
}

.produto-modal-price strong {
  display: block;
  color: #2d7a46;
  font-size: 2.1rem;
  font-weight: 950;
}

.produto-modal-benefits {
  border-top: 1px solid rgba(90,50,42,.12);
  padding-top: 20px;
  margin-bottom: 24px;
}

.produto-modal-benefits h4 {
  color: #2f1914;
  font-weight: 900;
  margin-bottom: 12px;
}

.produto-modal-benefits li {
  position: relative;
  color: #654941;
  margin-bottom: 8px;
  padding-left: 18px;
}

.produto-modal-benefits li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #b0715d;
  font-weight: 900;
}

.produto-qty {
  margin-bottom: 22px;
}

.produto-qty label {
  display: block;
  color: #5a322a;
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 8px;
}

.qty-control {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(90,50,42,.14);
  border-radius: 999px;
  overflow: hidden;
  background: #fff;
}

.qty-control button {
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  color: #5a322a;
  font-size: 20px;
  font-weight: 900;
  cursor: pointer;
}

.qty-control input {
  width: 58px;
  height: 44px;
  border: none;
  text-align: center;
  font-weight: 900;
  color: #4a2a25;
  outline: none;
}

.btn-add-cart,
.btn-produto-whatsapp {
  width: 100%;
  height: 58px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .04em;
  transition: .25s ease;
}

.btn-add-cart {
  border: none;
  background: #5a322a;
  color: #fff;
  margin-bottom: 12px;
  cursor: pointer;
}

.btn-add-cart:hover {
  background: #7a4a3e;
  transform: translateY(-2px);
}

.btn-produto-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid rgba(90,50,42,.12);
  color: #5a322a;
}

.btn-produto-whatsapp:hover {
  background: #f8f1ee;
  color: #5a322a;
}

/* RESPONSIVO */

@media (max-width: 850px) {
  .produto-modal-grid {
    grid-template-columns: 1fr;
  }

  .produto-modal-img {
    height: 340px;
  }
}

@media (max-width: 576px) {
  .produtos-shop-section {
    padding: 65px 14px;
  }

  .produtos-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .produto-img {
    height: 115px;
  }

  .produto-info {
    padding: 11px;
  }

  .produto-info h3 {
    font-size: 13px;
  }

  .produto-info p {
    font-size: 11px;
  }

  .produto-btn {
    height: 36px;
    font-size: 10px;
  }

  .produto-modal-box {
    width: calc(100% - 18px);
    margin: 9px auto;
    max-height: calc(100vh - 18px);
    padding: 14px;
    border-radius: 20px;
  }

  .produto-modal-img {
    height: 245px;
  }

  .produto-modal-info h2 {
    font-size: 1.8rem;
  }

  .btn-add-cart,
  .btn-produto-whatsapp {
    height: 54px;
  }
}

.produtos-shop-section {
  padding: 90px 20px;
  background: linear-gradient(180deg, #fff8f5 0%, #f3ded7 100%);
}

.produtos-shop-section .container {
  max-width: 1180px;
  margin: 0 auto;
}

.produtos-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 45px;
}

.produtos-header span {
  display: inline-flex;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(176,113,93,.10);
  color: #8c5b50;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 16px;
}

.produtos-header h2 {
  color: #4a2a25;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
}

.produtos-header p {
  color: #7a5a52;
  line-height: 1.7;
}

.produtos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 18px;
}

.produto-card {
  position: relative;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(90,50,42,.10);
  box-shadow: 0 12px 28px rgba(90,50,42,.08);
  cursor: pointer;
  transition: .25s ease;
}

.produto-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 44px rgba(90,50,42,.14);
}

.produto-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  background: #b0715d;
  color: #fff;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
}

.produto-img {
  width: 100%;
  height: 155px;
  object-fit: cover;
  background: #f7e8e1;
}

.produto-info {
  padding: 14px;
}

.produto-info small {
  display: block;
  color: #b0715d;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.produto-info h3 {
  color: #321b17;
  font-size: 15px;
  font-weight: 900;
  margin-bottom: 6px;
}

.produto-info p {
  color: #705249;
  font-size: 12px;
  line-height: 1.45;
  margin-bottom: 10px;
}

.produto-price {
  border-top: 1px solid rgba(90,50,42,.10);
  padding-top: 10px;
  margin-bottom: 12px;
}

.produto-old {
  display: block;
  color: rgba(90,50,42,.45);
  text-decoration: line-through;
  font-size: 11px;
  font-weight: 700;
}

.produto-price strong {
  display: block;
  color: #2d7a46;
  font-size: 1.25rem;
  font-weight: 950;
}

.produto-btn {
  width: 100%;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(90,50,42,.12);
  background: #fff;
  color: #5a322a;
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
  transition: .25s ease;
}

.produto-btn:hover {
  background: #5a322a;
  color: #fff;
}

.produto-modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 9999;
}

.produto-modal.active {
  display: block;
}

.produto-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(25,15,12,.72);
  backdrop-filter: blur(8px);
}

.produto-modal-box {
  position: relative;
  z-index: 2;
  width: min(1040px, calc(100% - 36px));
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  margin: 24px auto;
  background: #fffaf6;
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 30px 90px rgba(0,0,0,.34);
}

.produto-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 38px;
  height: 38px;
  border: none;
  border-radius: 50%;
  background: #5a322a;
  color: #fff;
  font-size: 24px;
  font-weight: 900;
  cursor: pointer;
  z-index: 5;
}

.produto-modal-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 34px;
}

.produto-modal-gallery {
  background: #f6e8df;
  border-radius: 24px;
  padding: 16px;
  border: 1px solid rgba(90,50,42,.12);
}

.produto-modal-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 20px;
}

.produto-thumbs {
  display: flex;
  gap: 10px;
  margin-top: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

.produto-thumb {
  width: 72px;
  height: 72px;
  border-radius: 14px;
  object-fit: cover;
  cursor: pointer;
  border: 2px solid transparent;
  transition: .25s ease;
}

.produto-thumb:hover {
  transform: scale(1.05);
}

.produto-thumb.active {
  border-color: #b0715d;
}

.produto-modal-tag {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(176,113,93,.12);
  color: #8c5b50;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.produto-modal-info h2 {
  color: #2f1914;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
  font-weight: 950;
  margin-bottom: 16px;
}

.produto-modal-info p {
  color: #654941;
  line-height: 1.7;
  margin-bottom: 20px;
}

.produto-modal-price {
  margin-bottom: 24px;
}

.produto-modal-price span {
  display: block;
  color: rgba(90,50,42,.45);
  text-decoration: line-through;
  font-size: 1rem;
  font-weight: 700;
}

.produto-modal-price strong {
  display: block;
  color: #2d7a46;
  font-size: 2.1rem;
  font-weight: 950;
}

.produto-modal-benefits {
  border-top: 1px solid rgba(90,50,42,.12);
  padding-top: 20px;
  margin-bottom: 24px;
}

.produto-modal-benefits h4 {
  color: #2f1914;
  font-weight: 900;
  margin-bottom: 12px;
}

.produto-modal-benefits li {
  position: relative;
  color: #654941;
  margin-bottom: 8px;
  padding-left: 18px;
}

.produto-modal-benefits li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #b0715d;
  font-weight: 900;
}

.produto-qty {
  margin-bottom: 22px;
}

.produto-qty label {
  display: block;
  color: #5a322a;
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 8px;
}

.qty-control {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(90,50,42,.14);
  border-radius: 999px;
  overflow: hidden;
  background: #fff;
}

.qty-control button {
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  color: #5a322a;
  font-size: 20px;
  font-weight: 900;
  cursor: pointer;
}

.qty-control input {
  width: 58px;
  height: 44px;
  border: none;
  text-align: center;
  font-weight: 900;
  color: #4a2a25;
  outline: none;
}

.btn-add-cart,
.btn-produto-whatsapp {
  width: 100%;
  height: 58px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .04em;
  transition: .25s ease;
}

.btn-add-cart {
  border: none;
  background: #5a322a;
  color: #fff;
  margin-bottom: 12px;
  cursor: pointer;
}

.btn-add-cart:hover {
  background: #7a4a3e;
  transform: translateY(-2px);
}

.btn-produto-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid rgba(90,50,42,.12);
  color: #5a322a;
}

.btn-produto-whatsapp:hover {
  background: #f8f1ee;
  color: #5a322a;
}

@media (max-width: 850px) {
  .produto-modal-grid {
    grid-template-columns: 1fr;
  }

  .produto-modal-img {
    height: 340px;
  }
}

@media (max-width: 576px) {
  .produtos-shop-section {
    padding: 65px 14px;
  }

  .produtos-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .produto-img {
    height: 115px;
  }

  .produto-info {
    padding: 11px;
  }

  .produto-info h3 {
    font-size: 13px;
  }

  .produto-info p {
    font-size: 11px;
  }

  .produto-btn {
    height: 36px;
    font-size: 10px;
  }

  .produto-modal-box {
    width: calc(100% - 18px);
    margin: 9px auto;
    max-height: calc(100vh - 18px);
    padding: 14px;
    border-radius: 20px;
  }

  .produto-modal-img {
    height: 245px;
  }

  .produto-thumb {
    width: 54px;
    height: 54px;
    border-radius: 10px;
  }

  .produto-modal-info h2 {
    font-size: 1.8rem;
  }

  .btn-add-cart,
  .btn-produto-whatsapp {
    height: 54px;
  }
}

/*menu hamburguer*/


@media (max-width: 768px) {

  .menu {
    position: sticky;
    top: 0;
    z-index: 999;

    width: 100% !important;
    max-width: none !important;

    margin: 0 !important;
    padding: 12px 18px !important;

    background: rgba(184, 134, 121, .88) !important;
    backdrop-filter: blur(18px);

    box-shadow: none !important;
  }

  .menu-bar {
    width: 100%;
    max-width: 420px;

    margin: 0 auto;

    height: 52px;

    display: flex !important;
    align-items: center;
    justify-content: space-between;
  }

  .menu-title {
    display: flex;
    align-items: center;
  }

  .menu-title img {
        width: 44px !important;
        height: 44px !important;
        border-radius: 50%;
        padding: 5px;
        object-fit: cover;
  }
  

  .menu-toggle {
    width: 46px !important;
    height: 46px !important;

    display: inline-flex !important;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(255,255,255,.10) !important;

    border: 1px solid rgba(255,255,255,.38) !important;

    box-shadow: none !important;

    cursor: pointer;
  }

  .menu-toggle .bars {
    position: relative;
    width: 21px;
    height: 16px;
  }

  .menu-toggle .bar {
    position: absolute;
    left: 0;

    width: 100%;
    height: 2px;

    border-radius: 999px;

    background: rgba(255,255,255,.92) !important;

    transition: .25s ease;
  }

  .menu-toggle .bar:nth-child(1) {
    top: 0;
  }

  .menu-toggle .bar:nth-child(2) {
    top: 7px;
  }

  .menu-toggle .bar:nth-child(3) {
    top: 14px;
  }

  .menu-toggle.is-open .bar:nth-child(1) {
    top: 7px;
    transform: rotate(45deg);
  }

  .menu-toggle.is-open .bar:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.is-open .bar:nth-child(3) {
    top: 7px;
    transform: rotate(-45deg);
  }

  .menu > ul#menu-list {
    display: block !important;

    width: calc(100% - 70px) !important;
    max-width: 340px !important;

    margin: 14px auto 0 !important;

    max-height: 0;

    padding: 0 !important;

    overflow: hidden;

    border-radius: 24px !important;

    background: rgba(255,255,255,.08) !important;

    border: 1px solid rgba(255,255,255,.12) !important;

    backdrop-filter: blur(14px);

    box-shadow: none !important;

    transition:
      max-height .35s ease,
      padding .25s ease,
      opacity .25s ease;

    opacity: 0;
  }

  .menu > ul#menu-list.open {
    max-height: 620px !important;

    padding: 10px !important;

    opacity: 1;
  }

  .menu > ul#menu-list li {
    border: none !important;
  }

  .menu > ul#menu-list li + li {
    margin-top: 2px;
  }

  .menu > ul#menu-list a,
  .menu > ul#menu-list .dropbtn {
    width: 100%;

    min-height: 48px;

    display: flex !important;
    align-items: center;

    padding: 0 16px !important;

    border-radius: 14px;

    background: transparent !important;

    color: rgba(255,255,255,.94) !important;

    font-size: 15px !important;
    font-weight: 600 !important;

    letter-spacing: -.01em;

    text-align: left;

    box-shadow: none !important;

    transition: background .25s ease;
  }

  .menu > ul#menu-list a:hover,
  .menu > ul#menu-list .dropbtn:hover {
    background: rgba(255,255,255,.08) !important;
    color: #fff !important;
    transform: none !important;
  }

  .menu .dropdown {
    position: static !important;
  }

  .menu .dropdown-content {
    position: static !important;

    display: none;

    min-width: auto !important;

    margin: 4px 0 8px !important;

    padding: 6px !important;

    border-radius: 14px !important;

    background: rgba(255,255,255,.06) !important;

    border: 1px solid rgba(255,255,255,.08) !important;

    box-shadow: none !important;

    overflow: hidden;
  }

  .menu .dropdown.open .dropdown-content {
    display: block !important;
  }

  .menu .dropdown-content a {
    min-height: 42px !important;

    padding: 0 14px !important;

    border-radius: 12px;

    color: rgba(255,255,255,.88) !important;

    font-size: 14px !important;
    font-weight: 500 !important;
  }

  .menu .dropdown-content a:hover {
    background: rgba(255,255,255,.08) !important;
  }

  .divisor {
    display: none !important;
  }
}

/* CELULARES MENORES */

@media (max-width: 420px) {

  .menu-bar {
    max-width: 360px;
  }

  .menu > ul#menu-list {
    width: calc(100% - 80px) !important;
    max-width: 320px !important;
  }

  .menu-title img {
    width: 42px !important;
    height: 42px !important;
  }

  .menu-toggle {
    width: 42px !important;
    height: 42px !important;
  }
}

/* =========================
   MENU MOBILE NO CANTO DIREITO
========================= */

@media (max-width: 768px) {
  .menu {
    position: sticky;
    top: 0;
    z-index: 999;

    width: 100% !important;
    max-width: none !important;

    margin: 0 !important;
    padding: 14px 18px !important;

    background: rgba(184, 134, 121, .88) !important;
    backdrop-filter: blur(18px);

    box-shadow: none !important;
  }

  .menu-bar {
    width: 100%;
    max-width: 420px;

    margin: 0 auto;

    height: 52px;

    display: flex !important;
    align-items: center;
    justify-content: space-between;
  }

  .menu-title img {
    width: 54px !important;
    height: 54px !important;

    border-radius: 50%;
    padding: 5px;

    object-fit: cover;
  }

  .menu-toggle {
    width: 44px !important;
    height: 44px !important;

    display: inline-flex !important;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(255,255,255,.10) !important;

    border: 1px solid rgba(255,255,255,.38) !important;

    box-shadow: none !important;

    cursor: pointer;
  }

  .menu-toggle .bars {
    position: relative;
    width: 20px;
    height: 16px;
  }

  .menu-toggle .bar {
    position: absolute;
    left: 0;

    width: 100%;
    height: 2px;

    border-radius: 999px;

    background: rgba(255,255,255,.92) !important;

    transition: .25s ease;
  }

  .menu-toggle .bar:nth-child(1) {
    top: 0;
  }

  .menu-toggle .bar:nth-child(2) {
    top: 7px;
  }

  .menu-toggle .bar:nth-child(3) {
    top: 14px;
  }

  .menu-toggle.is-open .bar:nth-child(1) {
    top: 7px;
    transform: rotate(45deg);
  }

  .menu-toggle.is-open .bar:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.is-open .bar:nth-child(3) {
    top: 7px;
    transform: rotate(-45deg);
  }

  /* PAINEL DO MENU NO CANTO DIREITO */
  .menu > ul#menu-list {
    display: block !important;

    width: 230px !important;
    max-width: 230px !important;

    margin: 12px 0 0 auto !important;

    max-height: 0;

    padding: 0 !important;

    overflow: hidden;

    border-radius: 22px !important;

    background: rgba(255,255,255,.08) !important;

    border: 1px solid rgba(255,255,255,.13) !important;

    backdrop-filter: blur(14px);

    box-shadow: none !important;

    opacity: 0;

    transition:
      max-height .35s ease,
      padding .25s ease,
      opacity .25s ease;
  }

  .menu > ul#menu-list.open {
    max-height: 540px !important;
    padding: 10px !important;
    opacity: 1;
  }

  .menu > ul#menu-list li {
    border: none !important;
  }

  .menu > ul#menu-list a,
  .menu > ul#menu-list .dropbtn {
    width: 100%;

    min-height: 44px;

    display: flex !important;
    align-items: center;

    padding: 0 14px !important;

    border-radius: 14px;

    background: transparent !important;

    color: rgba(255,255,255,.94) !important;

    font-size: 14px !important;
    font-weight: 600 !important;

    text-align: left;

    transition: background .25s ease;
  }

  .menu > ul#menu-list a:hover,
  .menu > ul#menu-list .dropbtn:hover {
    background: rgba(255,255,255,.08) !important;
    color: #fff !important;
    transform: none !important;
  }

  .menu .dropdown {
    position: static !important;
  }

  .menu .dropdown-content {
    position: static !important;

    display: none;

    margin: 4px 0 8px !important;

    padding: 6px !important;

    border-radius: 14px !important;

    background: rgba(255,255,255,.06) !important;

    border: 1px solid rgba(255,255,255,.08) !important;

    box-shadow: none !important;
  }

  .menu .dropdown.open .dropdown-content {
    display: block !important;
  }

  .menu .dropdown-content a {
    min-height: 38px !important;

    padding: 0 12px !important;

    font-size: 13px !important;
    font-weight: 500 !important;

    color: rgba(255,255,255,.88) !important;
  }

  .divisor {
    display: none !important;
  }
}


/*serviços*/

/* =========================
   SERVIÇOS - E-COMMERCE PREMIUM
========================= */

.shop-section {
  padding: 90px 16px;
  background: linear-gradient(180deg, #fff8f5 0%, #f3ded7 100%);
}

.shop-section .container {
  max-width: 1180px;
  margin: 0 auto;
}

.shop-heading {
  text-align: center;
  margin-bottom: 32px;
}

.shop-heading h2 {
  color: #4a2a25;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.04em;
}

.shop-tabs {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 46px;
}

.shop-tab {
  position: relative;
  border: 0;
  background: transparent;
  color: #87645b;
  font-size: 15px;
  font-weight: 700;
  padding: 0 0 12px;
  cursor: pointer;
}

.shop-tab.active {
  color: #4a2a25;
  font-weight: 900;
}

.shop-tab.active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 38px;
  height: 3px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: #5a322a;
}

.shop-category {
  color: #4a2a25;
  font-size: 1.7rem;
  font-weight: 500;
  margin: 42px 0 20px;
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(185px, 1fr));
  gap: 18px;
}

.shop-card {
  background: #fff;
  border: 1px solid rgba(90, 50, 42, .10);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(90, 50, 42, .07);
  cursor: pointer;
  transition: .25s ease;
}

.shop-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 44px rgba(90, 50, 42, .13);
}

.shop-card.featured {
  border-color: rgba(176, 113, 93, .35);
}

.shop-image-wrap {
  position: relative;
  padding: 9px;
  background: #f7e8e1;
}

.shop-img {
  width: 100%;
  height: 145px;
  object-fit: cover;
  border-radius: 13px;
}

.shop-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  z-index: 2;
  background: #5a322a;
  color: #fff;
  padding: 5px 9px;
  border-radius: 999px;
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
}

.shop-badge.soft {
  background: #b0715d;
}

.shop-content {
  padding: 13px;
}

.shop-content small {
  display: block;
  color: #b0715d;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.shop-content h4 {
  color: #321b17;
  font-size: 15px;
  font-weight: 900;
  margin-bottom: 6px;
}

.shop-content p {
  color: #705249;
  font-size: 12px;
  line-height: 1.45;
  margin-bottom: 10px;
}

.shop-rating {
  color: #d79b2d;
  font-size: 10px;
  font-weight: 900;
  margin-bottom: 10px;
}

.shop-rating span {
  color: #806058;
  font-weight: 700;
}

.shop-price {
  border-top: 1px solid rgba(90, 50, 42, .10);
  padding-top: 10px;
  margin-bottom: 12px;
}

.shop-price span {
  display: block;
  color: #8a6b63;
  font-size: 10px;
  font-weight: 800;
}

.shop-price strong {
  display: block;
  color: #2d7a46;
  font-size: 1.2rem;
  font-weight: 950;
}

.shop-btn {
  width: 100%;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(90, 50, 42, .12);
  background: #fff;
  color: #5a322a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
  transition: .25s ease;
}

.shop-btn:hover {
  background: #5a322a;
  color: #fff;
}

/* =========================
   MODAL SERVIÇOS
========================= */

.service-modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 9999;
}

.service-modal.active {
  display: block;
}

.service-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(25, 15, 12, .72);
  backdrop-filter: blur(8px);
}

.service-modal-box {
  position: relative;
  z-index: 2;
  width: min(1040px, calc(100% - 36px));
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  margin: 24px auto;
  background: #fffaf6;
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, .34);
}

.service-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 38px;
  height: 38px;
  border: none;
  border-radius: 50%;
  background: #5a322a;
  color: #fff;
  font-size: 24px;
  font-weight: 900;
  cursor: pointer;
  z-index: 5;
}

.service-modal-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 34px;
}

.service-modal-gallery {
  background: #f6e8df;
  border-radius: 24px;
  padding: 16px;
  border: 1px solid rgba(90, 50, 42, .12);
}

.service-modal-main-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 20px;
}

.service-modal-thumbs {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 14px;
}

.service-thumb {
  width: 62px;
  height: 62px;
  object-fit: cover;
  border-radius: 12px;
  border: 2px solid transparent;
  cursor: pointer;
}

.service-thumb.active {
  border-color: #b0715d;
}

.service-modal-category {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(176, 113, 93, .12);
  color: #8c5b50;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.service-modal-info h2 {
  color: #2f1914;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
  font-weight: 950;
  margin-bottom: 16px;
}

.service-modal-rating {
  color: #d79b2d;
  font-size: 14px;
  font-weight: 900;
  margin-bottom: 20px;
}

.service-modal-rating span {
  color: #76554d;
  margin-left: 6px;
}

.service-modal-price {
  margin-bottom: 22px;
}

.service-modal-price span {
  display: block;
  color: #806058;
  font-size: 13px;
  font-weight: 800;
}

.service-modal-price strong {
  color: #2d7a46;
  font-size: 2rem;
  font-weight: 950;
}

.service-modal-info p {
  color: #654941;
  line-height: 1.7;
  margin-bottom: 22px;
}

.service-modal-benefits {
  border-top: 1px solid rgba(90, 50, 42, .12);
  padding-top: 20px;
  margin-bottom: 24px;
}

.service-modal-benefits h4 {
  color: #2f1914;
  font-weight: 900;
  margin-bottom: 12px;
}

.service-modal-benefits li {
  color: #654941;
  margin-bottom: 8px;
  padding-left: 18px;
  position: relative;
}

.service-modal-benefits li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #b0715d;
  font-weight: 900;
}

.service-modal-btn {
  width: 100%;
  height: 58px;
  border-radius: 999px;
  background: #5a322a;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  text-decoration: none;
}

.service-modal-btn:hover {
  background: #7a4a3e;
  color: #fff;
}

/* RESPONSIVO */

@media (max-width: 850px) {
  .service-modal-grid {
    grid-template-columns: 1fr;
  }

  .service-modal-main-img {
    height: 340px;
  }
}

@media (max-width: 576px) {
  .shop-section {
    padding: 65px 14px;
  }

  .shop-tabs {
    gap: 18px;
    flex-wrap: wrap;
    margin-bottom: 34px;
  }

  .shop-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .shop-img {
    height: 115px;
  }

  .shop-content {
    padding: 11px;
  }

  .shop-content h4 {
    font-size: 13px;
  }

  .shop-content p {
    font-size: 11px;
  }

  .shop-rating span {
    display: none;
  }

  .shop-btn {
    height: 36px;
    font-size: 10px;
  }

  .service-modal-box {
    width: calc(100% - 18px);
    margin: 9px auto;
    max-height: calc(100vh - 18px);
    padding: 14px;
    border-radius: 20px;
  }

  .service-modal-main-img {
    height: 245px;
  }

  .service-thumb {
    width: 54px;
    height: 54px;
    border-radius: 10px;
  }

  .service-modal-info h2 {
    font-size: 1.8rem;
  }

  .service-modal-btn {
    height: 54px;
  }
}

/*whatsapp flutuante*/

/* =========================
   CHAT WHATSAPP PREMIUM
========================= */

.whats-chat{
  position:fixed;
  right:20px;
  bottom:90px;

  width:340px;

  background:#fff;

  border-radius:24px;

  overflow:hidden;

  box-shadow:
  0 25px 60px rgba(0,0,0,.18);

  border:1px solid rgba(0,0,0,.06);

  z-index:9999;

  opacity:0;
  visibility:hidden;

  transform:translateY(20px);

  transition:.35s;
}

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

/* HEADER */

.whats-chat-header{
  display:flex;
  align-items:center;
  gap:12px;

  padding:16px 18px;

  background:#2b1a16;

  color:white;
}

.whats-chat-avatar{
  width:58px;
  height:58px;

  border-radius:50%;

  object-fit:cover;



  padding:3px;
}

.whats-chat-header strong{
  display:block;
  font-size:15px;
  font-weight:800;
}

.whats-chat-header span{
  font-size:12px;
  opacity:.85;
}

.whats-chat-close{
  position:absolute;
  top:10px;
  right:10px;

  width:28px;
  height:28px;

  border:none;

  border-radius:50%;

  background:rgba(255,255,255,.15);

  color:white;

  font-size:20px;

  cursor:pointer;
}

/* BODY */

.whats-chat-body{
  padding:18px;

  background:
  url("https://www.transparenttextures.com/patterns/cubes.png"),
  #efeae2;

  display:flex;
  flex-direction:column;
  gap:10px;
}

.whats-message{
  max-width:85%;

  background:white;

  padding:12px 14px;

  border-radius:16px 16px 16px 4px;

  color:#222;

  font-size:13px;

  line-height:1.5;

  box-shadow:
  0 3px 8px rgba(0,0,0,.05);
}

/* INPUT */

.whats-chat-form{
  display:flex;
  align-items:center;
  gap:8px;

  padding:12px;

  background:white;

  border-top:1px solid #ececec;
}

.whats-chat-form input{
  flex:1;

  height:46px;

  border:none;

  background:#f5f5f5;

  border-radius:999px;

  padding:0 18px;

  outline:none;

  font-size:14px;
}

.whats-chat-form button{
  width:46px;
  height:46px;

  border:none;

  border-radius:50%;

  background:#2b1a16;

  color:white;

  font-size:18px;

  cursor:pointer;

  transition:.25s;
}

.whats-chat-form button:hover{
  transform:scale(1.05);
}

/* BOTÃO EXTRA */

.whats-chat-btn{
  display:flex;
  align-items:center;
  justify-content:center;

  margin:0 12px 12px;

  height:48px;

  border-radius:999px;

  text-decoration:none;

  background:#2b1a16;

  color:white;

  font-weight:700;
}

.whats-chat-btn:hover{
  color:white;
  text-decoration:none;
}

/* FAB */

.fab-whats{
  position:fixed;

  right:20px;
  bottom:20px;

  z-index:9998;

  height:60px;

  padding:0 18px;

  border:none;

  border-radius:999px;

  background:#25D366;

  color:white;

  display:flex;
  align-items:center;
  gap:10px;

  font-weight:800;

  cursor:pointer;

  box-shadow:
  0 12px 35px rgba(37,211,102,.35);
}

.fab-whats svg{
  width:24px;
  height:24px;
}

.fab-whats__label{
  font-size:14px;
}

.whats-badge{
  position:absolute;

  top:-5px;
  right:-5px;

  width:22px;
  height:22px;

  border-radius:50%;

  background:#ff3b30;

  color:white;

  font-size:12px;
  font-weight:800;

  display:flex;
  align-items:center;
  justify-content:center;

  border:2px solid white;
}

/* RESPONSIVO */

@media (max-width:768px){

  .whats-chat{
    width:320px;
    right:14px;
    bottom:85px;
  }

}

@media (max-width:480px){

  .whats-chat{
    width:290px;
    right:10px;
    bottom:82px;
  }

  .fab-whats{
    width:60px;
    height:60px;

    padding:0;

    justify-content:center;
  }

  .fab-whats__label{
    display:none;
  }

}

/* ===== USUÁRIO LOGADO NO HEADER ===== */

.login {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.user-area {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(245, 233, 231, 0.26);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #fff;
  font-weight: 800;
  box-shadow: 0 8px 18px rgba(90, 50, 42, 0.12);
}

.user-avatar,
.user-area img {
  width: 52px !important;
  min-width: 52px;
  min-height: 52px;
  aspect-ratio: 1 / 1;
  border-radius: 50% !important;
  object-fit: cover !important;
  object-position: center !important;
  display: block !important;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.8);
  background: #f5e9e7;
}

.user-area span {
  max-width: 130px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.logout-btn {
  background: #b08a80;
  color: white;
  border: 1px solid rgba(255,255,255,0.2);

  min-width: 80px;
  height: 40px;

  padding: 0 20px;

  border-radius: 999px;

  font-size: 14px;
  font-weight: 700;

  cursor: pointer;
  transition: all .25s ease;

  flex-shrink: 0;
}

.logout-btn:hover {
  background: #9a746a;
  transform: translateY(-2px);
}

.user-area span {
  max-width: 140px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  flex: 1;
}

@media (max-width: 768px) {
  .login {
    justify-content: center;
    width: 100%;
  }

  .user-area {
    width: fit-content;
    max-width: 100%;
    justify-content: center;
  }

  .user-area span {
    max-width: 160px;
  }
}

/*carrinho*/

.cart-header-btn,
.floating-cart-btn {
  position: relative;
  border: 0;
  background: #AC796B;
  color: #fff;
  border-radius: 999px;
  padding: 10px 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(90, 50, 42, 0.18);
  transition: transform .2s ease, background .2s ease;
}

.cart-header-btn:hover,
.floating-cart-btn:hover {
  transform: translateY(-2px);
  background: #8f5f53;
}

.cart-count {
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  border-radius: 999px;
  background: #fff;
  color: #8f5f53;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
}

.floating-cart-btn {
  position: fixed;
  right: 20px;
  bottom: 96px;
  z-index: 999;
  width: 58px;
  height: 58px;
  justify-content: center;
  padding: 0;
}

.floating-cart-btn svg {
  width: 24px;
  height: 24px;
}

.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(32, 20, 17, .55);
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
  transition: .25s ease;
}

.cart-overlay.active {
  opacity: 1;
  visibility: visible;
}

.cart-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: min(430px, 92vw);
  height: 100vh;
  background: #fffaf8;
  z-index: 1001;
  transform: translateX(105%);
  transition: transform .3s ease;
  box-shadow: -20px 0 50px rgba(90, 50, 42, .25);
  display: flex;
  flex-direction: column;
}

.cart-panel.active {
  transform: translateX(0);
}

.cart-panel-header,
.cart-panel-footer {
  padding: 20px;
  border-bottom: 1px solid rgba(172, 121, 107, .22);
}

.cart-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-panel-header h3 {
  margin: 0;
  color: #5a322a;
  font-size: 22px;
  font-weight: 800;
}

.cart-close {
  border: 0;
  background: #f1dfda;
  color: #5a322a;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 18px;
}

.cart-empty {
  text-align: center;
  color: #7c5a51;
  padding: 40px 10px;
}

.cart-item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 12px;
  padding: 14px;
  margin-bottom: 12px;
  background: #fff;
  border-radius: 18px;
  border: 1px solid rgba(172, 121, 107, .18);
}

.cart-item img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 14px;
}

.cart-item-info strong {
  display: block;
  color: #5a322a;
}

.cart-item-info span {
  display: block;
  color: #8f5f53;
  font-weight: 700;
  margin: 4px 0;
}

.cart-item-actions {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.cart-item-actions button {
  border: 0;
  background: #f1dfda;
  color: #5a322a;
  border-radius: 8px;
  padding: 5px 9px;
  cursor: pointer;
  font-weight: 700;
}

.cart-remove {
  background: #fff0ec !important;
}

.cart-total-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #5a322a;
  font-weight: 800;
  margin-bottom: 14px;
}

.cart-total-line strong {
  font-size: 22px;
}

.cart-checkout,
.cart-clear,
.btn-add-cart {
  width: 100%;
  border: 0;
  border-radius: 999px;
  padding: 13px 18px;
  font-weight: 800;
  cursor: pointer;
}

.cart-checkout,
.btn-add-cart {
  background: #AC796B;
  color: #fff;
}

.cart-clear {
  margin-top: 10px;
  background: #f1dfda;
  color: #5a322a;
}

.cart-header-btn{
    position:relative;
    width:60px;
    height:60px;
    border:none;
    border-radius:50%;
    background:#B98A7B;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
}

.cart-badge{
    position:absolute;
    top:4px;
    right:4px;
    min-width:22px;
    height:22px;
    border-radius:50%;
    background:#ff3b30;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:12px;
    font-weight:700;
    border:2px solid #fff;
    z-index:2;
}

.cart-badge:empty{
    display:none;
}

.cart-count {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  border-radius: 999px;
  background: #ff3b30;
  color: #fff;
  border: 2px solid #fff;
  font-size: 12px;
  font-weight: 800;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 5;
}

.cart-header-btn{
  position:relative;
}

.cart-count{
  position:absolute;
  top:-5px;
  right:-5px;

  width:22px;
  height:22px;

  border-radius:50%;

  background:#ff3b30;
  color:#fff;

  font-size:12px;
  font-weight:700;

  display:flex;
  align-items:center;
  justify-content:center;

  border:2px solid #fff;
  z-index:999;
}

/* ==========================
   REMOVER CARRINHO DO TOPO
========================== */

.cart-header-btn,
.cart-count {
    display: none !important;
}

/* ==========================
   HEADER DESKTOP
========================== */

.logo {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    width: min(1100px, 92%);
    margin: 20px auto;
    padding: 16px 24px;
    border-radius: 20px;
}

.logo-texto {
    flex: 1;
}

.login {
    margin-left: auto;
}

/* ==========================
   MOBILE
========================== */

@media (max-width: 768px) {

    .logo {
        flex-direction: column;
        text-align: center;
        gap: 14px;
        padding: 24px 16px;
        width: calc(100% - 20px);
        margin: 10px auto;
    }

    .logo .logo-img {
        width: 90px;
        height: 90px;
        flex: unset;
    }

    .logo-texto {
        width: 100%;
    }

    .est {
        font-size: 2.4rem;
        line-height: 1;
        margin-bottom: 6px;
    }

    .cab {
        font-size: 1rem;
        line-height: 1.4;
        max-width: 280px;
        margin: 0 auto;
    }

    .login {
        width: 100%;
        margin: 0;
    }

    .login-link {
        width: 100%;
        max-width: 220px;
        margin: 0 auto;
        justify-content: center;
        min-height: 50px;
    }
}

/* ==========================
   MOBILE PEQUENO
========================== */

@media (max-width: 480px) {

    .logo {
        padding: 20px 14px;
        border-radius: 18px;
    }

    .logo .logo-img {
        width: 80px;
        height: 80px;
    }

    .est {
        font-size: 2rem;
    }

    .cab {
        font-size: 0.9rem;
    }

    .login-link {
        max-width: 200px;
        padding: 12px 18px;
        font-size: 15px;
    }
}

.user-dropdown{
    position: absolute;
    top: calc(100% + 12px);
    right: 0;

    width: min(330px, calc(100vw - 28px));

    z-index: 999999;

    overflow: hidden;
    border: 1px solid rgba(117,75,66,.18);
    border-radius: 20px;

    background: rgba(255,252,249,.98);

    box-shadow: 0 24px 60px rgba(54,32,27,.24);

    opacity: 0;
    visibility: hidden;

    transform: translateY(-8px) scale(.98);
    transform-origin: top right;

    transition: .18s ease;
}

/*menu frente banner*/

/* Header */
.logo{
    position: relative;
    z-index: 2000;
}

.user-dropdown-avatar{

    width:42px;
    height:42px;

    min-width:42px;
    min-height:42px;

    display:block;

    object-fit:cover;
    object-position:center;

    border-radius:50%;

    overflow:hidden;

    border:2px solid #fff;
   

}

/* Área do login */
.login{
    position: relative;
    z-index: 2100;
}

/* Menu */
.user-menu{
    position: relative;
    z-index: 2200;
}

/* Dropdown */
.user-dropdown{
    z-index: 99999;
}

/*responsivo menu*/

@media screen and (max-width: 768px) {
  
  .user-dropdown-items {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 12px;
  }
  
}

.produtos-ver-todos {
  display: flex;
  justify-content: center;
}

.produtos-ver-todos a {
      width: 15%;
    height: 40px;
    margin: 20px;
    border-radius: 999px;
    border: 1px solid rgba(90, 50, 42, 0.12);
    background: #fff;
    color: #5a322a;
    font-size: 12px;
    font-weight: 900;
    cursor: pointer;
    transition: 0.25s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}
..produtos-ver-todos a:hover {
    background: #5a322a;
    color: #fff;
}