/* LEPARQUĒ - Style System */

:root {
  --bg-dark: #050505;          /* Black */
  --bg-light: #FAFAFA;         /* White */
  --bg-nude: #F4E7D3;          /* Nude/Peach */
  --bg-rose: #D4B0B1;          /* Dusty Rose */
  --bg-offwhite: #E8ECF1;      /* Off-white */
  --color-bordeaux: #5b1e36;   /* Bordeaux/Wine */
  
  --text-dark: #1A1A1A;
  --text-light: #FFFFFF;
  --text-muted: rgba(255, 255, 255, 0.6);
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-light);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

body::-webkit-scrollbar {
  display: none;
}

html {
  scroll-behavior: smooth;
}

/* Animations from Gemini Template */
/* Handled mainly by GSAP now for reliability */

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.animate-marquee { animation: marquee 30s linear infinite; }

/* Header Dynamic Theme Transitions */
.header-link,
#btn-loja-online {
  transition: color 0.5s ease, border-color 0.5s ease, background-color 0.5s ease;
}

/* Ticker Banner */
@keyframes ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.ticker-banner {
  position: absolute;
  top: 80px;
  left: 0;
  right: 0;
  z-index: 50;
  overflow: hidden;
  background: linear-gradient(135deg, #D94F8E 0%, #E06BA3 40%, #D94F8E 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 20px rgba(217, 79, 142, 0.3);
  padding: 10px 0;
}

.ticker-banner::before,
.ticker-banner::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 60px;
  z-index: 2;
  pointer-events: none;
}

.ticker-banner::before {
  left: 0;
  background: linear-gradient(to right, #D94F8E, transparent);
}

.ticker-banner::after {
  right: 0;
  background: linear-gradient(to left, #D94F8E, transparent);
}

.ticker-track {
  display: flex;
  align-items: center;
  white-space: nowrap;
  animation: ticker-scroll 25s linear infinite;
  gap: 0;
  will-change: transform;
}

.ticker-item {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #FFFFFF;
  padding: 0 24px;
  flex-shrink: 0;
}

.ticker-separator {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.65rem;
  flex-shrink: 0;
}

/* WhatsApp Pulse Animation */
@keyframes whatsapp-pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.2);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
  }
}

.btn-whatsapp-pulse {
  animation: whatsapp-pulse 2s ease-in-out infinite;
}

.btn-whatsapp-pulse:hover {
  animation-play-state: paused;
}

@keyframes textSlide {
  0% { transform: translateY(110%); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

.text-clip-anim span {
  display: inline-block;
  opacity: 0;
  transform: translateY(110%);
}

.text-clip-anim.animate span {
  animation: textSlide 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Flashlight Effect */
.flashlight-card { 
  background: rgba(255, 255, 255, 0.03); 
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.flashlight-card::before {
  content: "";
  position: absolute;
  inset: 0px;
  background: radial-gradient(
    600px circle at var(--mouse-x) var(--mouse-y),
    rgba(255, 255, 255, 0.1),
    transparent 40%
  );
  opacity: 0;
  transition: opacity 0.5s;
  pointer-events: none;
  z-index: 2;
}

.flashlight-card:hover::before { opacity: 1; }
.flashlight-card:hover { transform: translateY(-5px); border-color: rgba(255, 255, 255, 0.2); }

/* Utility Classes */
.glass-panel {
  background: rgba(23, 23, 23, 0.4);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.text-outline {
  -webkit-text-stroke: 1px var(--color-bordeaux);
  color: transparent;
}

/* Custom Overrides */
.bg-bordeaux { background-color: var(--color-bordeaux); }
.text-bordeaux { color: var(--color-bordeaux); }
.bg-nude { background-color: var(--bg-nude); }
.text-nude { color: var(--bg-nude); }
.bg-rose { background-color: var(--bg-rose); }
.text-rose { color: var(--bg-rose); }

/* Minimalist Hover Buttons */
.btn-beam {
  position: relative;
  z-index: 10;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-beam::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 150%;
  height: 100%;
  background: linear-gradient(
    115deg,
    transparent 0%,
    rgba(255, 255, 255, 0.05) 30%,
    rgba(255, 255, 255, 0.2) 50%,
    rgba(255, 255, 255, 0.05) 70%,
    transparent 100%
  );
  transform: translateX(-100%);
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
}

.btn-beam:hover {
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 10px 30px -10px rgba(255, 255, 255, 0.15);
}

.btn-beam:hover::before {
  transform: translateX(100%);
}

/* FAQ Accordion */
.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-content {
  max-height: 300px;
}

.faq-item.active {
  border-color: rgba(217, 79, 142, 0.3);
  box-shadow: 0 4px 20px rgba(217, 79, 142, 0.08);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-trigger:focus {
  outline: none;
}

.faq-trigger:focus-visible {
  outline: 2px solid #D94F8E;
  outline-offset: -2px;
  border-radius: 12px;
}

/* ===== Mobile Menu ===== */
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 70;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
  pointer-events: auto;
  opacity: 1;
}

.mobile-menu-overlay::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(5, 5, 5, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.mobile-menu-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: 80%;
  max-width: 360px;
  height: 100%;
  background: linear-gradient(180deg, rgba(30, 10, 20, 0.97) 0%, rgba(5, 5, 5, 0.98) 100%);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}

.mobile-menu-overlay.active .mobile-menu-panel {
  transform: translateX(0);
}

.mobile-nav-link {
  display: block;
  padding: 14px 16px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link:active {
  color: #D94F8E;
  background: rgba(217, 79, 142, 0.08);
}

.mobile-nav-btn {
  display: block;
  padding: 14px 20px;
  text-align: center;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 9999px;
  transition: all 0.3s ease;
  margin-bottom: 8px;
}

.mobile-nav-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(217, 79, 142, 0.2);
}

/* Hamburger Theme Adaptation */
.hamburger-line {
  transition: background-color 0.5s ease, transform 0.3s ease, opacity 0.3s ease;
}

/* ===== Product Showcase 3D Section ===== */
.product-showcase-section {
  /* Total height = viewport + scroll distance for animation */
}

.product-showcase-pin {
  position: relative;
  width: 100%;
  min-height: 100vh;
}

.product-3d-stage {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
}

.product-3d-wrapper {
  position: relative;
  width: 100%;
}

.product-video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0;
  object-fit: contain;
  background: transparent;
}

.product-shadow {
  position: absolute;
  bottom: -30px;
  left: 15%;
  right: 15%;
  height: 40px;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.15) 0%, transparent 70%);
  filter: blur(12px);
  border-radius: 50%;
  will-change: transform, opacity;
}

.product-text {
  will-change: opacity, transform;
}


