/* ═══════════════════════════════════════════════════════════════════════════════
   MORE THAN AROMAS — LUXURY BIO LINKS SYSTEM DESIGN
   Responsive, Mobile-First, Ultra-Premium Dark Mode with Shimmer & Glassmorphism
═══════════════════════════════════════════════════════════════════════════════ */

:root {
  --bg-dark: #0A0D12;
  --bg-card: rgba(255, 255, 255, 0.04);
  --gold-primary: #D4AF37;
  --gold-light: #F9E08E;
  --gold-dark: #A67C1E;
  --emerald-glow: rgba(16, 185, 129, 0.15);
  --gold-glow: rgba(212, 175, 55, 0.25);
  --text-main: #F0F4F8;
  --text-muted: #94A3B8;
  --border-subtle: rgba(255, 255, 255, 0.1);
  --border-gold: rgba(212, 175, 55, 0.45);
}

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

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

/* ── 1. AMBIENT GLOW BACKDROP ── */
.ambient-backdrop {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.65;
}

.orb-top {
  width: 500px;
  height: 500px;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, var(--gold-glow), transparent 70%);
}

.orb-bottom {
  width: 600px;
  height: 600px;
  bottom: -250px;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, var(--emerald-glow), transparent 70%);
}

/* ── 2. MAIN CONTAINER (MAX-WIDTH 480PX MOBILE BIO LAYOUT) ── */
.links-container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 460px;
  padding: 40px 20px 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  animation: pageFadeIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes pageFadeIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── 3. HEADER & LOGO ── */
.links-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  width: 100%;
}

.logo-wrapper {
  display: inline-block;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.logo-wrapper:hover {
  transform: scale(1.05);
}

.logo-img {
  width: 145px;
  height: auto;
  filter: drop-shadow(0 4px 18px rgba(212, 175, 55, 0.35));
}

.page-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.45rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--text-main);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  letter-spacing: -0.01em;
}

/* ── 4. LINKS STACK (ACTION BUTTONS) ── */
.links-stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
}

.link-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 56px;
  padding: 0 24px;
  border-radius: 999px;
  text-decoration: none;
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

/* Primary Gold Glow Button */
.btn-gold-glow {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.25), rgba(166, 124, 30, 0.12));
  border: 1px solid var(--border-gold);
  color: var(--gold-light);
  box-shadow: 0 6px 25px rgba(212, 175, 55, 0.18);
}

.btn-gold-glow:hover {
  transform: translateY(-3px);
  border-color: #FFF;
  color: #FFF;
  box-shadow: 0 12px 32px rgba(212, 175, 55, 0.4);
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.35), rgba(166, 124, 30, 0.22));
}

/* Secondary Glassmorphic Button */
.btn-glass {
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--border-subtle);
  color: var(--text-main);
  backdrop-filter: blur(12px);
}

.btn-glass:hover {
  transform: translateY(-3px);
  border-color: var(--gold-primary);
  color: var(--gold-light);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.5);
}

/* Amazon Badge Button (3000x800 Certified Badge PNG) */
.btn-amazon-badge {
  background: #FFFFFF;
  border: 1px solid var(--gold-primary);
  color: #0A0D12;
  justify-content: center;
  padding: 6px 16px;
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.15);
}

.btn-amazon-badge:hover {
  transform: translateY(-3px);
  background: #F8FAFC;
  box-shadow: 0 12px 30px rgba(255, 255, 255, 0.3);
}

.amazon-badge-img {
  height: 38px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.btn-arrow {
  opacity: 0.8;
  transition: transform 0.3s ease;
}

.link-btn:hover .btn-arrow {
  transform: translateX(4px);
}

/* ── 5. SOCIAL MEDIA ROW ── */
.social-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  width: 100%;
  margin-top: 2px;
}

.social-icon-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  color: var(--text-main);
  text-decoration: none;
  backdrop-filter: blur(12px);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.social-icon-btn:hover {
  transform: translateY(-4px) scale(1.08);
  border-color: var(--gold-primary);
  color: var(--gold-light);
  background: rgba(212, 175, 55, 0.12);
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

/* ── 6. FEATURED PRODUCT CARD ── */
.product-card {
  position: relative;
  width: 100%;
  border-radius: 26px;
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.012));
  border: 1px solid var(--border-gold);
  padding: 32px 24px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(16px);
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.product-card:hover {
  border-color: var(--gold-light);
  box-shadow: 0 24px 50px rgba(212, 175, 55, 0.22);
}

.card-glow-aura {
  position: absolute;
  width: 280px;
  height: 280px;
  top: 15%;
  left: 50%;
  transform: translate(-50%, -20%);
  background: radial-gradient(circle, rgba(212, 175, 55, 0.22), rgba(16, 185, 129, 0.12), transparent 70%);
  filter: blur(55px);
  z-index: 0;
  pointer-events: none;
}

.product-img-wrapper {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 8px;
}

.product-img {
  max-height: 320px;
  width: auto;
  max-width: 92%;
  object-fit: contain;
  filter: drop-shadow(0 18px 30px rgba(212, 175, 55, 0.35));
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover .product-img {
  transform: scale(1.05) translateY(-6px);
}

.product-info {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.product-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--gold-light);
  margin: 14px 0 18px;
  text-transform: uppercase;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

.btn-buynow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  height: 52px;
  border-radius: 999px;
  background: linear-gradient(135deg, #F9E08E, #D4AF37, #B8860B);
  color: #0A0D12;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.35);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-buynow:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 35px rgba(212, 175, 55, 0.55);
  background: linear-gradient(135deg, #FFF, #F9E08E, #D4AF37);
}

/* ── 7. FOOTER ── */
.links-footer {
  margin-top: 14px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 100%;
}

.legal-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  list-style: none;
}

.legal-nav a {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s ease;
}

.legal-nav a:hover {
  color: var(--gold-light);
}

/* Link discreto abaixo das páginas legais em cor mais opaca */
.discreet-footer-row {
  margin-top: 2px;
}

.footer-discreet-link {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.35);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.3s ease;
}

.footer-discreet-link:hover {
  color: rgba(255, 255, 255, 0.75);
}

.copyright-text {
  font-size: 0.75rem;
  color: var(--text-muted);
  opacity: 0.65;
}

/* ── 8. RESPONSIVE TOUCH TUNING ── */
@media (max-width: 480px) {
  .links-container {
    padding: 32px 16px 40px;
    gap: 24px;
  }
  .page-title {
    font-size: 1.35rem;
  }
  .link-btn {
    height: 54px;
    padding: 0 20px;
    font-size: 0.9rem;
  }
  .product-card {
    padding: 24px 18px 22px;
  }
  .product-img {
    max-height: 280px;
  }
  .product-title {
    font-size: 1.05rem;
  }
}
