/* ==========================================================================
   RESET E CONFIGURAÇÕES BÁSICAS
   ========================================================================== */
:root {
  --color-bg: #f6f2e8;          /* Bege Secundário oficial */
  --color-primary: #f07ba5;     /* Rosa Principal oficial */
  --color-primary-light: #fce4ec;/* Rosa bem clarinho para o cupom */
  --color-success: #5FBE65;     /* Verde de sucesso no clique */
  --color-text-dark: #1f1f1f;   /* Escuro principal */
  --color-card-bg: #ffffff;     /* Fundo branco dos botões */
  --color-icon-bg-light: #f7f2ed;/* Fundo circular suave do ícone */
  --shadow-card: 0 5px 15px rgba(0, 0, 0, 0.04), 0 2px 4px rgba(0, 0, 0, 0.02);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: var(--color-bg);
  color: var(--color-text-dark);
  display: flex;
  justify-content: center;
  align-items: flex-start;
  min-height: 100vh;
  padding: 30px 16px 40px 16px;
  -webkit-font-smoothing: antialiased;
}

/* Canvas do Glitter Dourado Flutuante */
#glitterCanvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 9999;
}

.container {
  width: 100%;
  max-width: 440px; /* Largura ideal tipo mobile/Linktree */
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ==========================================================================
   CABEÇALHO / LOGO / CUPOM
   ========================================================================== */
.header {
  text-align: center;
  width: 100%;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo-container {
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
}

.brand-logo {
  max-width: 170px;
  height: auto;
  display: block;
}

.subtitle {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 14.5px;
  color: var(--color-text-dark);
  margin-bottom: 8px;
  letter-spacing: -0.1px;
}

.shipping-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #e8f5e9;
  border-radius: 20px;
  padding: 5px 16px;
  margin-bottom: 16px;
}

.shipping-badge span {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 12.5px;
  color: #1b5e20;
}

.coupon-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: var(--color-primary-light);
  padding: 14px 16px;
  border-radius: 24px;
  gap: 10px;
  text-align: center;
}

.coupon-text {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: #4a2c35;
  line-height: 1.4;
}

.coupon-text strong {
  font-weight: 700;
  color: #1f1f1f;
}

.copy-button {
  background-color: var(--color-primary);
  color: #ffffff;
  border: none;
  border-radius: 20px;
  padding: 8px 20px;
  font-size: 12.5px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background-color 0.2s ease, transform 0.1s ease, box-shadow 0.2s ease;
  font-family: 'Inter', sans-serif;
}

.copy-button:active {
  transform: scale(0.96);
}

.copy-button.copied {
  background-color: var(--color-success) !important;
  box-shadow: 0 0 12px rgba(95, 190, 101, 0.4);
}

/* ==========================================================================
   BOTÕES / LINKS
   ========================================================================== */
.links-nav {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.link-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--color-card-bg);
  padding: 8px 16px 8px 8px;
  border-radius: 50px;
  box-shadow: var(--shadow-card);
  text-decoration: none;
  color: var(--color-text-dark);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  min-height: 62px;
}

.link-card:hover, .link-card:active {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.icon-wrapper {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.icon-wrapper.pink-filled {
  background-color: var(--color-primary);
  color: #ffffff;
}

.icon-wrapper.outline-pink {
  background-color: var(--color-icon-bg-light);
}

.icon-wrapper svg {
  width: 20px;
  height: 20px;
}

.link-label {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  flex-grow: 1;
  padding: 0 10px;
  letter-spacing: -0.2px;
}

.dots-menu {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 4px;
  opacity: 0.3;
}

.dots-menu span {
  width: 3px;
  height: 3px;
  background-color: #000000;
  border-radius: 50%;
}

.section-title {
  font-family: 'Inter', sans-serif;
  text-align: center;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--color-text-dark);
  text-transform: uppercase;
  margin: 28px 0 10px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-title::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background-color: var(--color-primary);
  border-radius: 2px;
  margin-top: 6px;
}

/* ==========================================================================
   CARROSSEL NOSSOS DESTAQUES
   ========================================================================== */
.carousel-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.carousel-container {
  width: 100%;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding: 6px 2px 10px 2px;
  cursor: grab;
  user-select: none;
  scrollbar-width: none;
}

.carousel-container.active {
  cursor: grabbing;
  scroll-snap-type: none;
}

.carousel-container::-webkit-scrollbar {
  display: none;
}

.carousel-track {
  display: flex;
  gap: 12px;
  width: max-content;
}

.product-card {
  scroll-snap-align: start;
  scroll-snap-stop: always;
  width: calc((100vw - 32px - 12px) / 2); 
  max-width: 198px;
  background-color: var(--color-card-bg);
  border-radius: 20px;
  padding: 10px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex-shrink: 0;
}

.product-image-container {
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 14px;
  overflow: hidden;
  background-color: var(--color-icon-bg-light);
  margin-bottom: 8px;
}

.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.product-name {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 400;
  color: var(--color-text-dark);
  line-height: 1.3;
  margin-bottom: 10px;
  text-transform: uppercase;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 43px;
}

.buy-button {
  width: 100%;
  background-color: var(--color-primary);
  color: #ffffff;
  text-decoration: none;
  border-radius: 16px;
  padding: 7px 10px;
  font-size: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: transform 0.1s ease, background-color 0.2s ease;
}

.buy-button svg {
  width: 12px;
  height: 12px;
}

.buy-button:active {
  transform: scale(0.96);
}

.carousel-dots {
  display: flex;
  gap: 6px;
  margin-top: 4px;
}

.carousel-dots .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.15);
  transition: background-color 0.25s ease, transform 0.25s ease;
}

.carousel-dots .dot.active {
  background-color: var(--color-primary);
  transform: scale(1.2);
}

/* ==========================================================================
   SEÇÃO EXPERIÊNCIA DE COMPRA (VÍDEO)
   ========================================================================== */
.video-card {
  width: 100%;
  background-color: var(--color-card-bg);
  border-radius: 24px;
  padding: 8px;
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.experience-video {
  width: 100%;
  border-radius: 18px;
  display: block;
  background-color: #000;
  outline: none;
}

/* ==========================================================================
   RODAPÉ SOCIAL (Imagens PNG Próprias)
   ========================================================================== */
.social-footer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 22px;
  margin-top: 32px;
  width: 100%;
}

.social-footer a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.2s ease;
}

.social-footer a:hover {
  transform: scale(1.12);
}

.social-icon {
  width: 28px;
  height: 28px;
  object-fit: contain;
  display: block;
}