/* === RESET === */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* === VARIÁVEIS === */
:root {
  --green: #5BA89C;
  --green-dark: #3D7269;
  --white: #FFFFFF;
  --black: #1A1A1A;
  --gray: #6B6B6B;
  --cream: #FAF8F5;
  --pink: #F4B5B5;

  --font-title: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;

  --notice-h: 36px;
  --header-h: 72px;
}

@media (min-width: 768px) {
  :root {
    --header-h: 84px;
  }
}

/* === BASE === */
html, body {
  height: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--black);
  background: var(--white);
  font-size: 14px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
  color: inherit;
}

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

ul {
  list-style: none;
}

body.no-scroll {
  overflow: hidden;
}

/* === BARRA DE AVISOS === */
.notice-bar {
  position: relative;
  height: var(--notice-h);
  background: var(--green);
  color: var(--white);
  z-index: 10;
  overflow: hidden;
}

.notice-bar__track {
  position: relative;
  height: 100%;
  width: 100%;
}

.notice-bar__item {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 16px;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0;
  transition: opacity 400ms ease;
  pointer-events: none;
  text-align: center;
}

.notice-bar__item.is-active {
  opacity: 1;
  pointer-events: auto;
}

.notice-bar__icon {
  flex-shrink: 0;
}

/* === HEADER === */
.header {
  position: sticky;
  top: 0;
  height: var(--header-h);
  background: var(--white);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  z-index: 20;
}

.header__inner {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 8px;
}

.header__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  border-radius: 4px;
  color: var(--green);
  transition: background-color 0.2s ease;
}

.header__btn:hover {
  background: rgba(91, 168, 156, 0.08);
}

.header__logo {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.header__logo-img {
  height: 52px;
  width: auto;
}

@media (min-width: 768px) {
  .header__inner {
    padding: 0 16px;
  }
  .header__logo-img {
    height: 60px;
  }
}

/* === OVERLAY === */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 80;
}

.overlay.is-open {
  opacity: 1;
  visibility: visible;
}

/* === SIDEBARS (base) === */
.side-menu,
.bag {
  position: fixed;
  top: 0;
  bottom: 0;
  width: 85%;
  max-width: 320px;
  background: var(--white);
  box-shadow: 0 0 24px rgba(0, 0, 0, 0.08);
  z-index: 90;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s ease;
  will-change: transform;
}

@media (min-width: 768px) {
  .side-menu,
  .bag {
    width: 380px;
    max-width: 380px;
  }
}

/* === MENU LATERAL (esquerda) === */
.side-menu {
  left: 0;
  transform: translateX(-100%);
}

.side-menu.is-open {
  transform: translateX(0);
}

.side-menu__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  min-height: 64px;
}

.side-menu__logo {
  height: 32px;
  width: auto;
}

.side-menu__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  border-radius: 4px;
  color: var(--green);
  transition: background-color 0.2s ease;
}

.side-menu__close:hover {
  background: rgba(91, 168, 156, 0.08);
}

.side-menu__nav {
  flex: 1;
  overflow-y: auto;
}

.side-menu__list li {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.side-menu__link {
  display: block;
  padding: 20px 24px;
  font-size: 16px;
  font-weight: 400;
  color: var(--black);
  transition: color 0.2s ease, background-color 0.2s ease;
}

.side-menu__link:hover {
  color: var(--green);
  background: rgba(91, 168, 156, 0.04);
}

/* === SACOLA (direita) === */
.bag {
  right: 0;
  transform: translateX(100%);
}

.bag.is-open {
  transform: translateX(0);
}

.bag__top {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  min-height: 64px;
}

.bag__title {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--black);
}

.bag__close {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  border-radius: 4px;
  color: var(--green);
  transition: background-color 0.2s ease;
}

.bag__close:hover {
  background: rgba(91, 168, 156, 0.08);
}

.bag__body {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  overflow-y: auto;
}

.bag__empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  max-width: 280px;
}

.bag__empty-eyebrow {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gray);
  margin: 0;
}

.bag__empty-title {
  font-family: var(--font-title);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.3;
  color: var(--black);
  margin: 0;
}

.bag__empty-cta {
  margin-top: 8px;
  background: var(--green);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: background-color 0.2s ease;
}

.bag__empty-cta:hover {
  background: var(--green-dark);
}

/* === PRODUTO === */
.product {
  max-width: 600px;
  margin: 0 auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

@media (min-width: 768px) {
  .product {
    max-width: 720px;
    padding: 24px;
    gap: 20px;
  }
}

/* === GALERIA === */
.product__gallery {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.product__main-image {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  background: var(--cream);
  border-radius: 12px;
  overflow: hidden;
}

@media (min-width: 768px) {
  .product__main-image {
    max-width: 500px;
    margin: 0 auto;
  }
}

.gallery-track {
  display: flex;
  width: 100%;
  height: 100%;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

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

.gallery-slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  scroll-snap-align: center;
  scroll-snap-stop: always;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.gallery-slide img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}

.gallery-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 12px;
  margin-bottom: 4px;
}

.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.18);
  cursor: pointer;
  padding: 0;
  transition: background 0.2s ease, width 0.2s ease;
}

.dot.is-active {
  background: var(--green);
  width: 22px;
  border-radius: 999px;
}

.product__thumbs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 2px;
}

.product__thumbs::-webkit-scrollbar {
  display: none;
}

.thumb {
  flex: 0 0 auto;
  width: 72px;
  height: 72px;
  border-radius: 10px;
  background: var(--cream);
  border: 1px solid transparent;
  padding: 0;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.2s ease, transform 0.15s ease;
}

.thumb:hover {
  transform: translateY(-1px);
}

.thumb.is-active {
  border: 2px solid var(--green);
}

.thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (min-width: 768px) {
  .thumb {
    width: 80px;
    height: 80px;
  }
}

/* === INFO === */
.product__info {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* === SELOS === */
.product__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1;
}

.badge--brazil {
  background: #E8F5E9;
  color: var(--black);
}

.badge--brazil svg {
  flex-shrink: 0;
  border-radius: 2px;
}

.badge--gray {
  background: #F1EFE8;
  color: var(--gray);
}

.badge--solid {
  background: var(--black);
  color: var(--white);
}

/* === TÍTULO === */
.product__title {
  font-family: var(--font-title);
  font-size: 28px;
  font-weight: 500;
  line-height: 1.2;
  color: var(--black);
  margin: -2px 0 -4px;
}

@media (min-width: 768px) {
  .product__title {
    font-size: 34px;
  }
}

/* === RATING === */
.product__rating {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.stars {
  display: inline-flex;
  align-items: center;
  gap: 2px;
}

.rating-value {
  font-size: 14px;
  font-weight: 500;
  color: var(--black);
}

.rating-count {
  font-size: 13px;
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
  transition: color 0.2s ease;
}

.rating-count:hover {
  color: var(--green-dark);
}

/* === PREÇO === */
.product__price {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.price-main {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 12px;
}

.price-current {
  font-family: var(--font-body);
  font-size: 38px;
  font-weight: 700;
  color: var(--black);
  line-height: 1.1;
  letter-spacing: -0.5px;
}

@media (min-width: 768px) {
  .price-current {
    font-size: 44px;
  }
}

.price-old {
  font-size: 14px;
  font-weight: 400;
  color: #9B9B9B;
  text-decoration: line-through;
  text-decoration-color: #9B9B9B;
}

.price-discount {
  display: inline-block;
  background: var(--green);
  color: var(--white);
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  margin-left: 8px;
}

.price-installments {
  font-size: 13px;
  color: var(--gray);
  margin-top: 4px;
}

/* === PERKS === */
.product__perks {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: var(--cream);
  padding: 12px 14px;
  border-radius: 8px;
  flex-wrap: wrap;
}

.perk {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.perk--discount {
  font-size: 13px;
  color: var(--black);
}

.perk--discount strong {
  font-weight: 500;
  text-decoration: underline;
}

.perk--discount svg {
  flex-shrink: 0;
}

.perk--shipping {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--gray);
}

/* === SELETOR DE COR === */
.product__colors {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.colors-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray);
  margin: 0;
}

.colors-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.color-option {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.12);
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.color-option:hover {
  border-color: rgba(0, 0, 0, 0.25);
}

.color-option.is-active {
  border: 1.5px solid var(--green);
  box-shadow: 0 0 0 2px rgba(91, 168, 156, 0.12);
}

.color-dot {
  display: inline-block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.08);
  flex-shrink: 0;
}

.color-name {
  font-size: 13px;
  font-weight: 400;
  color: var(--black);
}

/* === BOTÃO COMPRAR === */
.buy-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  width: 100%;
  padding: 14px 24px;
  border-radius: 10px;
  background: var(--green);
  color: var(--white);
  text-align: center;
  margin-top: 16px;
  text-decoration: none;
  transition: background 0.2s, transform 0.1s;
}

@media (min-width: 768px) {
  .buy-btn {
    padding: 16px 24px;
  }
}

.buy-btn:hover {
  background: var(--green-dark);
}

.buy-btn:active {
  transform: scale(0.98);
}

.buy-btn__main {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.buy-btn__main svg {
  flex-shrink: 0;
}

.buy-btn__sub {
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  opacity: 0.9;
}

/* === DETALHES (acordeons + descrição) === */
.product-details {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 16px 32px;
}

@media (min-width: 768px) {
  .product-details {
    max-width: 720px;
    padding: 0 24px 40px;
  }
}

/* === ACORDEONS === */
.accordion-group {
  margin-top: 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.accordion {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.accordion__header {
  width: 100%;
  background: transparent;
  border: none;
  padding: 18px 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  color: var(--black);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  text-align: left;
}

.accordion__title {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.accordion__icon {
  color: var(--black);
  flex-shrink: 0;
}

.accordion__chevron {
  color: var(--black);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.accordion.is-open .accordion__chevron {
  transform: rotate(180deg);
}

.accordion__panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.accordion__content {
  padding: 0 4px 18px;
  font-size: 14px;
  line-height: 1.65;
  color: var(--gray);
}

/* === DESCRIÇÃO === */
.description {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.description__title {
  font-family: var(--font-title);
  font-size: 26px;
  font-weight: 500;
  color: var(--black);
  margin: 0 0 16px;
  letter-spacing: -0.3px;
}

.description__body {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.7;
  color: #3D3D3D;
}

.description__body p {
  margin: 0 0 14px;
}

.description__subtitle {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--black);
  margin: 24px 0 10px;
  letter-spacing: 0.2px;
}

.description__list {
  margin: 0 0 14px;
  line-height: 1.9;
}

.description__total {
  margin: 4px 0 14px;
  color: var(--black);
}

.description__total strong {
  font-weight: 600;
}

@media (min-width: 768px) {
  .description__title {
    font-size: 30px;
  }
  .description__body {
    font-size: 15px;
  }
}

/* === AVALIAÇÕES === */
.reviews {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.reviews__summary {
  text-align: center;
  margin-bottom: 24px;
}

.reviews__score {
  font-family: var(--font-body);
  font-size: 56px;
  font-weight: 700;
  letter-spacing: -2px;
  color: var(--black);
  line-height: 1;
  margin-bottom: 12px;
}

.reviews__stars {
  display: inline-flex;
  gap: 3px;
  margin-bottom: 8px;
}

.reviews__count {
  font-size: 13px;
  color: var(--gray);
  margin: 0;
}

.reviews__bars {
  margin: 24px auto 20px;
  max-width: 480px;
}

.bar-row {
  display: grid;
  grid-template-columns: 28px 1fr 36px;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.bar-label {
  font-size: 13px;
  color: var(--black);
  display: inline-flex;
  align-items: center;
  gap: 2px;
}

.bar-track {
  height: 6px;
  background: rgba(0, 0, 0, 0.08);
  border-radius: 999px;
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  background: var(--black);
  border-radius: 999px;
}

.bar-count {
  font-size: 12px;
  color: var(--gray);
  text-align: right;
}

.reviews__write-btn {
  display: block;
  width: 100%;
  padding: 14px 20px;
  background: var(--black);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.3px;
  cursor: pointer;
  margin-top: 8px;
  margin-bottom: 12px;
  transition: background 0.2s;
}

.reviews__write-btn:hover {
  background: #000;
}

.reviews__filter {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  padding: 12px 20px;
  background: #F1EFE8;
  color: var(--black);
  border: none;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  margin-bottom: 20px;
}

/* === GRADE DE CARDS === */
.reviews__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.review-card {
  display: flex;
  flex-direction: column;
}

.review-card__photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: var(--cream);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 12px;
}

.review-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.review-card__stars {
  display: flex;
  gap: 1px;
  margin-bottom: 6px;
}

.review-card__name {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--black);
  margin: 0 0 8px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  line-height: 1.2;
}

.review-card__text {
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.55;
  color: var(--black);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.review-card.is-expanded .review-card__text {
  -webkit-line-clamp: unset;
  display: block;
  overflow: visible;
}

.review-card__more {
  display: inline-block;
  margin-top: 6px;
  font-size: 12px;
  color: var(--green);
  font-weight: 500;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
  background: transparent;
  border: none;
  padding: 0;
}

.review-card__more:hover {
  color: var(--green-dark);
}

@media (min-width: 768px) {
  .reviews__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
}

/* === MODAL DE AVALIAÇÃO === */
.review-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.review-modal.is-open {
  display: flex;
}

.review-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.review-modal__content {
  position: relative;
  background: var(--white);
  border-radius: 12px;
  padding: 28px 24px 24px;
  max-width: 440px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
}

.review-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: transparent;
  border: none;
  padding: 6px;
  cursor: pointer;
  color: var(--black);
  border-radius: 6px;
}

.review-modal__close:hover {
  background: rgba(0, 0, 0, 0.05);
}

.review-modal__title {
  font-family: var(--font-title);
  font-size: 24px;
  font-weight: 500;
  color: var(--black);
  margin: 0 0 6px;
}

.review-modal__sub {
  font-size: 13px;
  color: var(--gray);
  margin: 0 0 20px;
}

.review-form__field {
  display: block;
  margin-bottom: 14px;
}

.review-form__field > span {
  display: block;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--gray);
  margin-bottom: 6px;
}

.review-form__field input,
.review-form__field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--black);
  background: var(--white);
  transition: border-color 0.2s;
}

.review-form__field input:focus,
.review-form__field textarea:focus {
  outline: none;
  border-color: var(--green);
}

.review-form__field textarea {
  resize: vertical;
  min-height: 90px;
  font-family: var(--font-body);
}

.review-form__stars {
  display: flex;
  gap: 4px;
}

.rating-star {
  background: transparent;
  border: none;
  font-size: 28px;
  color: rgba(0, 0, 0, 0.18);
  cursor: pointer;
  padding: 2px 4px;
  line-height: 1;
  transition: color 0.15s;
}

.rating-star.is-active,
.rating-star.is-hover {
  color: #F5B400;
}

.review-form__submit {
  width: 100%;
  padding: 14px 20px;
  background: var(--green);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
}

.review-form__submit:hover {
  background: var(--green-dark);
}

.review-form__success {
  margin-top: 16px;
  padding: 12px;
  background: #E8F5E9;
  color: #1F6E3D;
  border-radius: 8px;
  font-size: 13px;
  text-align: center;
}

/* === FAQ === */
.faq {
  margin-top: 32px;
  padding-top: 32px;
  padding-bottom: 16px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.faq__title {
  font-family: var(--font-title);
  font-size: 28px;
  font-weight: 500;
  color: var(--black);
  text-align: center;
  margin: 0 0 24px;
  letter-spacing: -0.3px;
}

.faq__group {
  border-top: none;
  margin-top: 0;
}

@media (min-width: 768px) {
  .faq__title {
    font-size: 34px;
    margin-bottom: 32px;
  }
}

/* === FOOTER === */
.site-footer {
  margin-top: 32px;
  padding: 40px 20px 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  background: var(--white);
}

.site-footer__inner {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.site-footer__brand {
  text-align: center;
}

.site-footer__logo {
  height: 72px;
  width: auto;
  display: inline-block;
}

.site-footer__heading {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--black);
  margin: 0 0 14px;
}

.site-footer__contact,
.site-footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.site-footer__contact li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--black);
}

.site-footer__contact svg {
  color: var(--green);
  flex-shrink: 0;
}

.site-footer__contact a,
.site-footer__links a {
  color: var(--black);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}

.site-footer__contact a:hover,
.site-footer__links a:hover {
  color: var(--green);
}

.site-footer__newsletter-text {
  font-size: 13px;
  line-height: 1.6;
  color: var(--gray);
  margin: 0 0 14px;
}

.newsletter-form {
  position: relative;
  display: flex;
  align-items: center;
  background: #F4F2EC;
  border-radius: 10px;
  padding: 4px;
}

.newsletter-form input[type="email"] {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--black);
  min-width: 0;
}

.newsletter-form input[type="email"]::placeholder {
  color: var(--gray);
}

.newsletter-form button {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--white);
  color: var(--black);
  border: none;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.newsletter-form button:hover {
  background: var(--green);
  color: var(--white);
}

.newsletter-success {
  margin: 12px 0 0;
  padding: 10px 14px;
  background: #E8F5E9;
  color: #1F6E3D;
  border-radius: 8px;
  font-size: 13px;
  line-height: 1.5;
}

.site-footer__bottom {
  max-width: 600px;
  margin: 32px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
}

.site-footer__bottom p {
  margin: 0;
  font-size: 12px;
  color: var(--gray);
}

.site-footer__privacy {
  font-size: 12px;
  color: var(--gray);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s;
}

.site-footer__privacy:hover {
  color: var(--green);
}

@media (min-width: 768px) {
  .site-footer {
    padding: 64px 24px 24px;
  }

  .site-footer__inner {
    max-width: 1000px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 40px;
    align-items: start;
  }

  .site-footer__brand {
    grid-column: 1 / -1;
    margin-bottom: 8px;
  }

  .site-footer__logo {
    height: 88px;
  }

  .site-footer__bottom {
    max-width: 1000px;
    flex-direction: row;
    justify-content: space-between;
  }
}

/* === COMPARATIVO === */
.compare {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.section-title {
  font-family: var(--font-title);
  font-size: 26px;
  font-weight: 500;
  color: var(--black);
  text-align: center;
  margin: 0 0 6px;
  letter-spacing: -0.3px;
}

.section-subtitle {
  font-size: 13px;
  color: var(--gray);
  text-align: center;
  margin: 0 0 22px;
}

.compare__table-wrap {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: var(--white);
}

.compare__table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.compare__table thead th {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  color: var(--gray);
  background: var(--cream);
  padding: 14px 6px;
  text-align: center;
  vertical-align: middle;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  line-height: 1.25;
}

.compare__feature-col {
  width: 40%;
}

.compare__brand-col {
  width: 20%;
}

.compare__brand-col--us {
  color: var(--green-dark);
  background: rgba(91, 168, 156, 0.12) !important;
  font-weight: 700;
  letter-spacing: 0.6px;
}

.compare__table tbody td {
  padding: 14px 6px;
  text-align: center;
  vertical-align: middle;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  font-size: 13px;
  color: var(--black);
}

.compare__table tbody tr:last-child td {
  border-bottom: none;
}

.compare__table tbody td:first-child {
  text-align: left;
  padding-left: 14px;
  font-weight: 500;
  color: var(--black);
  line-height: 1.35;
}

.compare__us {
  background: rgba(91, 168, 156, 0.06);
}

.check,
.cross,
.warn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}

.check {
  background: rgba(91, 168, 156, 0.18);
  color: var(--green-dark);
}

.cross {
  background: rgba(0, 0, 0, 0.06);
  color: #B5B5B5;
}

.warn {
  background: #FFF1DC;
  color: #B47416;
}

.compare__legend {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 18px;
  margin: 16px 0 0;
  font-size: 12px;
  color: var(--gray);
}

.compare__legend > span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.compare__legend .check,
.compare__legend .cross,
.compare__legend .warn {
  width: 16px;
  height: 16px;
  font-size: 9px;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 30px;
  }

  .compare__table thead th {
    padding: 18px 12px;
    font-size: 12px;
  }

  .compare__table tbody td {
    padding: 18px 12px;
    font-size: 14px;
  }

  .compare__table tbody td:first-child {
    padding-left: 20px;
  }

  .check,
  .cross,
  .warn {
    width: 28px;
    height: 28px;
    font-size: 13px;
  }
}

/* === SEÇÃO A — GRADE DE USOS === */
.usage-grid {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.usage-grid__wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.usage-card {
  border-radius: 14px;
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-height: 180px;
  justify-content: center;
  transition: transform 0.2s ease;
}

.usage-card:hover { transform: translateY(-2px); }

.usage-card--oven       { background: #FCF3D6; color: #8A6A1A; }
.usage-card--freezer    { background: #D9EAF7; color: #2C5A82; }
.usage-card--dishwasher { background: #E8DDF5; color: #5A3B82; }
.usage-card--microwave  { background: #D9EDDE; color: #2B6B3C; }

.usage-card__icon { width: 52px; height: 52px; margin-bottom: 12px; }
.usage-card__icon svg { width: 100%; height: 100%; }

.usage-card__title {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 6px;
  color: inherit;
}

.usage-card__desc {
  font-family: var(--font-body);
  font-size: 12px;
  line-height: 1.4;
  color: inherit;
  opacity: 0.85;
  margin: 0;
}

@media (min-width: 768px) {
  .usage-grid__wrap { grid-template-columns: repeat(4, 1fr); gap: 16px; }
  .usage-card { min-height: 220px; padding: 32px 20px; }
  .usage-card__icon { width: 64px; height: 64px; margin-bottom: 16px; }
  .usage-card__title { font-size: 18px; }
  .usage-card__desc { font-size: 13px; }
}

/* === BLOCO DE VÍDEO === */
.product-video { margin-top: 48px; }

.video-wrap {
  width: 100%;
  aspect-ratio: 4 / 5;
  max-width: 100%;
  margin: 0 auto;
  background: var(--cream);
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}

.product-video__media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-placeholder {
  position: relative;
  width: 100%;
  height: 100%;
}

.video-placeholder__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7);
}

.video-placeholder__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.video-placeholder__play {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  color: var(--green);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s ease;
}

.video-placeholder__play:hover { transform: scale(1.08); }

.video-placeholder__label {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--white);
  margin: 0;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

@media (min-width: 768px) {
  .video-wrap { max-width: 900px; aspect-ratio: 16 / 9; }
}

/* === SEÇÃO B — POR QUE ESCOLHER === */
.why-choose {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.why-choose__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.why-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  padding: 4px 0;
}

.why-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #E8F2F0;
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.why-card__icon svg { width: 22px; height: 22px; }

.why-card__title {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--black);
  margin: 0 0 4px;
  line-height: 1.3;
}

.why-card__desc {
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.55;
  color: var(--gray);
  margin: 0;
}

@media (min-width: 768px) {
  .why-choose__grid { grid-template-columns: repeat(4, 1fr); gap: 24px; }
}
