/* =============================================
   LIKEPET VITRINE — Premium Green & Gold Design
   Versão: 2.0 — Atatech 2026
   ============================================= */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;0,800;0,900;1,700&family=DM+Sans:wght@300;400;500;600;700&display=swap');

/* ── Design Tokens ── */
:root {
  --lp-green:        #1B4D2E;
  --lp-green-deep:   #0D2418;
  --lp-green-mid:    #245C38;
  --lp-green-light:  #2D7A47;
  --lp-gold:         #D4A017;
  --lp-gold-light:   #F0C040;
  --lp-gold-pale:    #FBE9A0;
  --lp-cream:        #FAF7F0;
  --lp-white:        #FFFFFF;
  --lp-text:         #1A1A1A;
  --lp-text-muted:   #5A6475;
  --lp-border:       rgba(212, 160, 23, 0.2);

  --lp-shadow-gold:  0 8px 40px rgba(212, 160, 23, 0.15);
  --lp-shadow-green: 0 8px 40px rgba(27, 77, 46, 0.25);
  --lp-shadow-card:  0 4px 24px rgba(0,0,0,0.08);

  --lp-radius:       16px;
  --lp-radius-lg:    24px;
  --lp-radius-xl:    32px;

  --font-display:    'Playfair Display', Georgia, serif;
  --font-body:       'DM Sans', system-ui, sans-serif;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--lp-text);
  background: var(--lp-cream);
  -webkit-font-smoothing: antialiased;
}

/* ── Grain Texture Overlay ── */
.lp-grain-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
}

/* ═══════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════ */
.lp-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 247, 240, 0.92);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--lp-border);
  box-shadow: 0 1px 20px rgba(27, 77, 46, 0.06);
}

.lp-nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.lp-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.lp-logo-badge {
  width: 44px;
  height: 44px;
  background: var(--lp-green);
  border-radius: 50%;
  border: 2.5px solid var(--lp-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lp-gold);
  font-size: 18px;
  box-shadow: 0 0 0 4px rgba(212, 160, 23, 0.12);
  flex-shrink: 0;
}

.lp-logo-text {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 900;
  color: var(--lp-green);
  letter-spacing: -0.5px;
  line-height: 1;
}

.lp-logo-text span {
  display: block;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--lp-gold);
  margin-top: 2px;
}

.lp-nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.lp-nav-menu a {
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--lp-green);
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.2s;
  letter-spacing: 0.01em;
}

.lp-nav-menu a:hover {
  background: rgba(27, 77, 46, 0.07);
  color: var(--lp-green-light);
}

.lp-nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ═══════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════ */
.lp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: all 0.22s cubic-bezier(0.34, 1.56, 0.64, 1);
  white-space: nowrap;
  letter-spacing: 0.02em;
}

.lp-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 26px;
  background: var(--lp-green);
  color: var(--lp-gold-light);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  border: 2px solid transparent;
  text-decoration: none;
  transition: all 0.22s cubic-bezier(0.34, 1.56, 0.64, 1);
  white-space: nowrap;
  letter-spacing: 0.02em;
}

.lp-btn-primary:hover {
  background: var(--lp-green-light);
  color: var(--lp-gold-light);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(27, 77, 46, 0.35);
}

.lp-btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: linear-gradient(135deg, var(--lp-gold) 0%, var(--lp-gold-light) 100%);
  color: var(--lp-green-deep);
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
  white-space: nowrap;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 20px rgba(212, 160, 23, 0.35);
}

.lp-btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(212, 160, 23, 0.45);
  background: linear-gradient(135deg, var(--lp-gold-light) 0%, #FFD966 100%);
}

.lp-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: transparent;
  color: var(--lp-gold-light);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid rgba(240, 192, 64, 0.45);
  text-decoration: none;
  transition: all 0.2s;
  white-space: nowrap;
}

.lp-btn-outline:hover {
  border-color: var(--lp-gold-light);
  background: rgba(240, 192, 64, 0.08);
  color: var(--lp-gold-light);
}

.lp-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 20px;
  background: rgba(27, 77, 46, 0.07);
  color: var(--lp-green);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid rgba(27, 77, 46, 0.15);
  text-decoration: none;
  transition: all 0.2s;
  white-space: nowrap;
}

.lp-btn-ghost:hover {
  background: rgba(27, 77, 46, 0.13);
  border-color: rgba(27, 77, 46, 0.3);
}

/* ═══════════════════════════════════════
   CARDS
   ═══════════════════════════════════════ */
.lp-card {
  background: var(--lp-white);
  border-radius: var(--lp-radius-lg);
  padding: 28px;
  box-shadow: var(--lp-shadow-card);
  border: 1px solid rgba(27, 77, 46, 0.07);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.lp-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(27, 77, 46, 0.12);
  border-color: rgba(212, 160, 23, 0.2);
}

.lp-card-dark {
  background: rgba(13, 36, 24, 0.9);
  border: 1px solid rgba(212, 160, 23, 0.2);
  border-radius: var(--lp-radius-lg);
  padding: 28px;
  box-shadow: var(--lp-shadow-gold);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.lp-card-dark:hover {
  transform: translateY(-5px);
  border-color: rgba(212, 160, 23, 0.45);
  box-shadow: 0 20px 60px rgba(212, 160, 23, 0.2);
}

.lp-card-supplier {
  background: var(--lp-white);
  border-radius: var(--lp-radius-lg);
  padding: 32px;
  border: 1px solid rgba(27, 77, 46, 0.1);
  border-top: 4px solid var(--lp-gold);
  box-shadow: var(--lp-shadow-card);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}

.lp-card-supplier::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 100%;
  background: linear-gradient(180deg, rgba(27,77,46,0.03) 0%, transparent 60%);
  pointer-events: none;
}

.lp-card-supplier:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(27, 77, 46, 0.12);
  border-top-color: var(--lp-green);
}

.lp-card-stat {
  background: var(--lp-green);
  border-radius: var(--lp-radius-lg);
  padding: 36px 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(212, 160, 23, 0.2);
}

.lp-card-stat::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 120px; height: 120px;
  background: rgba(212, 160, 23, 0.07);
  border-radius: 50%;
}

.lp-card-stat::after {
  content: '';
  position: absolute;
  bottom: -30px; left: -20px;
  width: 90px; height: 90px;
  background: rgba(212, 160, 23, 0.05);
  border-radius: 50%;
}

/* ═══════════════════════════════════════
   INPUTS
   ═══════════════════════════════════════ */
.lp-input {
  width: 100%;
  padding: 13px 16px;
  background: var(--lp-white);
  border: 2px solid rgba(27, 77, 46, 0.15);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--lp-text);
  transition: all 0.2s;
  outline: none;
}

.lp-input:focus {
  border-color: var(--lp-green);
  box-shadow: 0 0 0 4px rgba(27, 77, 46, 0.08);
}

.lp-input::placeholder { color: #9AA5B1; }

.lp-input-dark {
  background: rgba(255,255,255,0.06);
  border-color: rgba(212, 160, 23, 0.2);
  color: var(--lp-white);
}

.lp-input-dark:focus {
  border-color: var(--lp-gold);
  box-shadow: 0 0 0 4px rgba(212, 160, 23, 0.1);
}

.lp-input-dark::placeholder { color: rgba(255,255,255,0.35); }

select.lp-input {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%231B4D2E'%3E%3Cpath d='M7 10l5 5 5-5H7z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 20px;
  padding-right: 42px;
}

/* ═══════════════════════════════════════
   BADGES / TAGS
   ═══════════════════════════════════════ */
.lp-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 99px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lp-tag-gold {
  background: rgba(212, 160, 23, 0.15);
  color: var(--lp-gold);
  border: 1px solid rgba(212, 160, 23, 0.3);
}

.lp-tag-green {
  background: rgba(27, 77, 46, 0.1);
  color: var(--lp-green);
  border: 1px solid rgba(27, 77, 46, 0.2);
}

.lp-tag-dark {
  background: rgba(212, 160, 23, 0.18);
  color: var(--lp-gold-light);
  border: 1px solid rgba(212, 160, 23, 0.35);
}

/* ═══════════════════════════════════════
   GLASS EFFECTS
   ═══════════════════════════════════════ */
.lp-glass {
  background: rgba(250, 247, 240, 0.85);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  border: 1px solid rgba(212, 160, 23, 0.15);
}

.lp-glass-dark {
  background: rgba(13, 36, 24, 0.85);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid rgba(212, 160, 23, 0.18);
}

/* ═══════════════════════════════════════
   SECTION LAYOUT
   ═══════════════════════════════════════ */
.lp-section {
  padding: 100px 0;
}

.lp-section-sm {
  padding: 64px 0;
}

.lp-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

.lp-section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lp-gold);
  margin-bottom: 16px;
}

.lp-section-label::before {
  content: '';
  width: 20px;
  height: 2px;
  background: var(--lp-gold);
  border-radius: 2px;
}

.lp-title {
  font-family: var(--font-display);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.lp-title-xl {
  font-size: clamp(38px, 5.5vw, 72px);
}

.lp-title-lg {
  font-size: clamp(30px, 4vw, 52px);
}

.lp-title-md {
  font-size: clamp(24px, 3vw, 38px);
}

/* ═══════════════════════════════════════
   DIVIDER
   ═══════════════════════════════════════ */
.lp-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--lp-gold), var(--lp-gold-light));
  border-radius: 3px;
  margin: 20px 0;
}

/* ═══════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════ */
@keyframes lp-float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-14px); }
}

@keyframes lp-pulse-gold {
  0%, 100% { box-shadow: 0 0 0 0 rgba(212, 160, 23, 0.4); }
  50%       { box-shadow: 0 0 0 12px rgba(212, 160, 23, 0); }
}

@keyframes lp-fade-up {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes lp-fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes lp-shimmer {
  0%   { background-position: -200% center; }
  100% { background-position:  200% center; }
}

.lp-animate-float { animation: lp-float 6s ease-in-out infinite; }
.lp-animate-float-delayed { animation: lp-float 6s ease-in-out infinite; animation-delay: -3s; }

.lp-reveal {
  opacity: 0;
  animation: lp-fade-up 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.lp-reveal-1 { animation-delay: 0.1s; }
.lp-reveal-2 { animation-delay: 0.22s; }
.lp-reveal-3 { animation-delay: 0.36s; }
.lp-reveal-4 { animation-delay: 0.50s; }
.lp-reveal-5 { animation-delay: 0.66s; }

.lp-pulse-gold {
  animation: lp-pulse-gold 2.5s ease-in-out infinite;
}

/* ═══════════════════════════════════════
   PRODUCT CARD (catálogo)
   ═══════════════════════════════════════ */
.lp-product-card {
  background: var(--lp-white);
  border-radius: var(--lp-radius-lg);
  padding: 24px;
  border: 1px solid rgba(27, 77, 46, 0.08);
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: all 0.28s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.lp-product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(27, 77, 46, 0.1);
  border-color: rgba(212, 160, 23, 0.25);
}

.lp-product-price {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: var(--lp-green);
  letter-spacing: -0.03em;
}

.lp-product-locked {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--lp-text-muted);
  background: rgba(27, 77, 46, 0.05);
  padding: 10px 14px;
  border-radius: 8px;
  border: 1px dashed rgba(27, 77, 46, 0.2);
}

/* ═══════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════ */
.lp-footer {
  background: var(--lp-green-deep);
  color: rgba(255,255,255,0.75);
  padding: 56px 0 32px;
  border-top: 1px solid rgba(212, 160, 23, 0.2);
}

.lp-footer-brand {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 900;
  color: var(--lp-gold-light);
  margin-bottom: 8px;
}

.lp-footer-tagline {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.05em;
}

.lp-footer-divider {
  height: 1px;
  background: rgba(212, 160, 23, 0.15);
  margin: 40px 0 24px;
}

/* ═══════════════════════════════════════
   CONTACT BOX
   ═══════════════════════════════════════ */
.lp-contact-card {
  background: var(--lp-green);
  border-radius: var(--lp-radius-xl);
  padding: 56px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  border: 1px solid rgba(212, 160, 23, 0.2);
  position: relative;
  overflow: hidden;
}

.lp-contact-card::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  background: rgba(212, 160, 23, 0.07);
  border-radius: 50%;
}

.lp-contact-card::after {
  content: '';
  position: absolute;
  bottom: -40px; left: 30%;
  width: 140px; height: 140px;
  background: rgba(212, 160, 23, 0.05);
  border-radius: 50%;
}

/* ═══════════════════════════════════════
   HERO STATS BAR
   ═══════════════════════════════════════ */
.lp-hero-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid rgba(212, 160, 23, 0.2);
}

.lp-hero-stat-num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 900;
  color: var(--lp-gold-light);
  line-height: 1;
}

.lp-hero-stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  margin-top: 4px;
  letter-spacing: 0.03em;
}

/* ═══════════════════════════════════════
   ALERT
   ═══════════════════════════════════════ */
.lp-alert {
  padding: 14px 18px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
}

.lp-alert-error {
  background: rgba(220, 38, 38, 0.08);
  color: #ef4444;
  border: 1px solid rgba(220, 38, 38, 0.25);
}

.lp-alert-success {
  background: rgba(27, 77, 46, 0.08);
  color: var(--lp-green);
  border: 1px solid rgba(27, 77, 46, 0.2);
}

/* ═══════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════ */
@media (max-width: 1024px) {
  .lp-contact-card { grid-template-columns: 1fr; gap: 32px; }
  .lp-nav-menu { display: none; }
}

@media (max-width: 768px) {
  .lp-container { padding: 0 20px; }
  .lp-section { padding: 64px 0; }
  .lp-nav-inner { padding: 0 20px; }
  .lp-hero-stats { gap: 24px; }
  .lp-contact-card { padding: 36px 24px; }
  .lp-card-supplier { padding: 24px; }
}

@media (max-width: 480px) {
  .lp-btn-primary, .lp-btn-gold, .lp-btn-outline, .lp-btn-ghost {
    padding: 11px 18px;
    font-size: 13px;
  }
  .lp-nav-actions .lp-btn-ghost { display: none; }
}

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--lp-cream); }
::-webkit-scrollbar-thumb { background: var(--lp-green); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--lp-green-light); }
