/* =========================
VARIÁVEIS DE CORES
========================= */

:root {
  --verde: #1D361F;
  --verde-escuro: #162918;

  --dourado: linear-gradient(45deg,
      #a67c00 0%,
      #bf953f 25%,
      #fcf6ba 50%,
      #b38728 75%,
      #aa771c 100%);

  --dourado-solido: #bf953f;

  --branco: #ffffff;
  --cinza: #f8f8f8;
  --texto: #333;
}



/* RESET */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  background: var(--branco);
  color: var(--texto);
  line-height: 1.6;
}

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

ul {
  list-style: none;
}


/* CONTAINER */

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}



/* =========================
  NAVBAR
  ========================= */

.header {
  width: 100%;
  background: var(--verde-escuro);
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
}

.logo {
  font-size: 22px;
  font-weight: bold;
  background: var(--dourado);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  font-weight: 500;
  transition: 0.3s;
  background: var(--dourado);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-links a:hover {
  font-weight: bold;
  background: var(--dourado);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}



/* MENU MOBILE */

.menu-toggle {
  display: none;
  background: var(--dourado);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  border: none;
  font-size: 26px;
  cursor: pointer;
}



/* =========================
  HERO / BANNER
  ========================= */

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

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


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

.products {
  padding: 40px 0 80px;
}

.products h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 50px;
  color: var(--verde);
}


/* GRID */

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}


/* CARD */

.product-card {
  background: var(--branco);
  border: 1px solid #1D361F;
  border-radius: 10px;
  text-align: center;
  transition: 0.3s;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
}

.product-card-content {
  padding: 20px;
  flex: 1;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.product-card img {
  width: 100%;
  height: 200px;
  object-fit: contain;
}

.product-card h3 {
  font-size: 23px;
  margin-bottom: 5px;
  margin-top: -20px;
  color: var(--verde);
}

/* BOTÃO */

.btn-buy {
  background: var(--verde);
  color: var(--branco);
  height: 50px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  border: none;
  transition: 0.3s;
}

/* Stretched link: expande a área clicável do link para cobrir o card inteiro */
.product-card .btn-buy::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
}

/* Botão de wishlist fica acima do overlay para continuar funcional */
.btn-wishlist-card {
  position: relative;
  z-index: 2;
}

.btn-buy:hover {
  background: var(--verde-escuro);
}

/* =========================
  DEPOIMENTOS / REELS
  ========================= */

.reels-section {
  background: #162918;
  padding: 80px 0;
}

.reels-section h2 {
  text-align: center;
  font-size: 30px;
  margin-bottom: 50px;
  background: var(--dourado);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.reels-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.reel-viewport {
  position: relative;
  width: 100%;
  max-width: 340px;
  aspect-ratio: 9/16;
  border-radius: 16px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.6);
  flex-shrink: 0;
}

.reel-item {
  display: none;
  width: 100%;
  height: 100%;
}

.reel-item.active {
  display: block;
}

.reel-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.reel-mute-btn {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: rgba(0, 0, 0, 0.55);
  border: none;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #fff;
  z-index: 10;
  transition: background 0.2s;
  padding: 0;
}

.reel-mute-btn:hover {
  background: rgba(0, 0, 0, 0.8);
}

.reel-mute-btn svg {
  width: 22px;
  height: 22px;
  pointer-events: none;
}

.reel-arrow {
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #fff;
  flex-shrink: 0;
  transition: background 0.2s, border-color 0.2s;
  padding: 0;
}

.reel-arrow:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.55);
}

.reel-arrow svg {
  width: 22px;
  height: 22px;
  pointer-events: none;
}

.reel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.reel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  flex-shrink: 0;
}

.reel-dot.active {
  background: var(--dourado);
  transform: scale(1.4);
}



/* =========================
  SOBRE
  ========================= */

.about {
  padding: 80px 0 40px;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.about-text h2 {
  font-size: 30px;
  margin-bottom: 20px;
  color: var(--verde);
}

.about-text p {
  margin-bottom: 15px;
}

.about-image img {
  width: 100%;
  border-radius: 10px;
}



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

.footer {
  background: var(--verde-escuro);
  color: var(--branco);
  padding: 60px 0 20px 0;
}

.footer-content {
  display: flex;
  justify-content: center;
  text-align: center;
}

.footer h3 {
  margin-bottom: 15px;
  font-size: 22px;
  font-weight: bold;
  display: inline-block;
  color: transparent;
  background: var(--dourado);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer h4 {
  margin-bottom: 15px;
}

.footer ul li {
  margin-bottom: 10px;
}

.footer a {
  color: #ddd;
}

.footer a:hover {
  background: var(--dourado);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer p {
  color: #ccc;
}

.copyright {
  text-align: center;
  margin-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 20px;
  font-size: 14px;
  color: #ccc;
}



/* =========================
  NAVBAR ACTIONS
  ========================= */

.navbar-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}


/* =========================
  WISHLIST
  ========================= */

/* Botão do header */

.wishlist-btn {
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  padding: 4px;
}

.wishlist-icon {
  font-size: 22px;
  background: var(--dourado);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}

.wishlist-count {
  position: absolute;
  top: -4px;
  right: -6px;
  background: #e63946;
  color: white;
  font-size: 10px;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  border-radius: 9px;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}

/* Overlay */

.wishlist-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

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

/* Sidebar */

.wishlist-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  width: 360px;
  height: 100%;
  background: var(--branco);
  z-index: 2001;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
}

.wishlist-sidebar.open {
  transform: translateX(0);
}

.wishlist-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid #eee;
  background: var(--verde-escuro);
}

.wishlist-header h2 {
  font-size: 18px;
  color: var(--branco);
}

.wishlist-close {
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: var(--branco);
  padding: 4px 8px;
  border-radius: 4px;
  transition: background 0.2s;
  line-height: 1;
}

.wishlist-close:hover {
  background: rgba(255, 255, 255, 0.15);
}

.wishlist-body {
  flex: 1;
  overflow-y: auto;
  padding: 16px 24px;
}

.wishlist-empty {
  text-align: center;
  color: #888;
  margin-top: 60px;
  font-size: 15px;
}

.wishlist-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
}

.wishlist-item img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  border-radius: 6px;
  background: #f5f5f5;
  flex-shrink: 0;
}

.wishlist-item-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.wishlist-item-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--texto);
}

.wishlist-item-link {
  font-size: 12px;
  color: var(--verde);
  font-weight: 500;
  text-decoration: underline;
  transition: opacity 0.2s;
}

.wishlist-item-link:hover {
  opacity: 0.7;
}

.wishlist-remove {
  background: none;
  border: none;
  font-size: 16px;
  color: #aaa;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
  flex-shrink: 0;
}

.wishlist-remove:hover {
  color: #e63946;
  background: #fff0f0;
}

.wishlist-footer {
  padding: 16px 24px;
  border-top: 1px solid #eee;
}

.btn-continue {
  width: 100%;
  padding: 12px;
  border: 2px solid var(--verde);
  background: transparent;
  color: var(--verde);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.btn-continue:hover {
  background: var(--verde);
  color: white;
}

/* Botão coração nos cards */

.btn-wishlist-card {
  position: absolute;
  top: 10px;
  right: 10px;
  background: white;
  border: none;
  font-size: 18px;
  cursor: pointer;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s;
  z-index: 1;
  color: #ccc;
  line-height: 1;
}

.btn-wishlist-card:hover {
  transform: scale(1.15);
}

.btn-wishlist-card.active {
  color: #e63946;
}

@media (max-width: 480px) {
  .wishlist-sidebar {
    width: 100%;
  }
}