/* ============ Ótica Moreira Griff — Premium Styles ============ */

html { scroll-behavior: smooth; }

body {
  font-feature-settings: "ss01", "cv11";
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

/* Navbar scrolled */
#navbar.scrolled { box-shadow: 0 4px 30px -10px rgba(31, 27, 23, 0.10); }

/* Hero video subtle ken-burns */
#hero video { animation: kenburns 28s ease-in-out infinite alternate; }
@keyframes kenburns {
  from { transform: scale(1.02); }
  to   { transform: scale(1.10); }
}

/* Selection */
::selection { background: #C9A86A; color: #1F1B17; }

/* Scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: #F3EFE7; }
::-webkit-scrollbar-thumb { background: #C9A86A; border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: #A6864B; }

/* ============ Category Pills (nav under hero) ============ */
.cat-pill {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 14px 8px;
  border-radius: 16px;
  background: #FBF8F3;
  color: #1F1B17;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  border: 1px solid transparent;
  transition: all .3s ease;
}
.cat-pill:hover {
  border-color: #C9A86A;
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px -8px rgba(31,27,23,.15);
}
.cat-pill svg { color: #C9A86A; }
.cat-pill span { line-height: 1.2; text-align: center; }

/* ============ Filter Chips ============ */
.filter-chip {
  padding: 8px 18px;
  border-radius: 999px;
  background: #fff;
  color: #5A544C;
  border: 1px solid #E7DAC2;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: all .3s ease;
  cursor: pointer;
}
.filter-chip:hover {
  background: #C9A86A;
  color: #1F1B17;
  border-color: #C9A86A;
}
.filter-chip.active {
  background: #1F1B17;
  color: #FBF8F3;
  border-color: #1F1B17;
}

/* ============ Product Card ============ */
.product-card {
  display: block;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px -8px rgba(31,27,23,.10);
  transition: all .4s ease;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px -15px rgba(31,27,23,.25);
}
.product-image {
  aspect-ratio: 1;
  overflow: hidden;
  background: #F3EFE7;
}
.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s ease;
}
.product-card:hover .product-image img { transform: scale(1.08); }
.product-info { padding: 18px; }
.product-tag {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #C9A86A;
  font-weight: 600;
}
.product-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  margin-top: 4px;
  color: #1F1B17;
  line-height: 1.2;
}
.product-cta {
  display: inline-block;
  margin-top: 12px;
  font-size: 12px;
  font-weight: 500;
  color: #5A544C;
  letter-spacing: 0.04em;
  transition: color .3s;
}
.product-card:hover .product-cta { color: #C9A86A; }

/* ============ Face Shape Cards ============ */
.face-card {
  display: block;
  background: #fff;
  border-radius: 20px;
  padding: 28px 22px;
  text-align: center;
  border: 1px solid transparent;
  transition: all .4s ease;
  box-shadow: 0 4px 15px -8px rgba(31,27,23,.08);
}
.face-card:hover {
  border-color: #C9A86A;
  transform: translateY(-6px);
  box-shadow: 0 20px 40px -10px rgba(31,27,23,.18);
}
.face-shape {
  width: 80px;
  height: 100px;
  margin: 0 auto 18px;
  background: #F3EFE7;
  border: 2px solid #C9A86A;
  transition: all .4s ease;
}
.face-card:hover .face-shape { background: #E7DAC2; }
.face-shape.oval      { border-radius: 50% / 60%; }
.face-shape.redondo   { border-radius: 50%; height: 90px; width: 90px; }
.face-shape.quadrado  { border-radius: 12px; }
.face-shape.coracao   { border-radius: 50% 50% 50% 50% / 35% 35% 65% 65%; clip-path: polygon(0 0, 100% 0, 85% 100%, 15% 100%); }
.face-shape.triangular{ clip-path: polygon(50% 0%, 100% 100%, 0% 100%); border-radius: 0; }
.face-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  color: #1F1B17;
  margin-bottom: 8px;
}
.face-card p {
  color: #5A544C;
  font-size: 13px;
  font-weight: 300;
  line-height: 1.5;
}

/* ============ Lens Cards (dark section) ============ */
.lens-card {
  padding: 32px;
  border-radius: 24px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  transition: all .4s ease;
}
.lens-card:hover {
  border-color: rgba(201,168,106,0.4);
  background: rgba(255,255,255,0.06);
  transform: translateY(-4px);
}
.lens-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(201,168,106,0.18);
  color: #C9A86A;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.lens-icon svg { width: 24px; height: 24px; }
.lens-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  color: #FBF8F3;
}
.lens-card p {
  margin-top: 10px;
  color: rgba(251,248,243,.7);
  font-weight: 300;
  font-size: 14px;
  line-height: 1.6;
}

/* ============ Step Numbers (atendimento) ============ */
.step-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(201,168,106,0.15);
  color: #C9A86A;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 16px;
  flex-shrink: 0;
}

/* ============ Benefit Cards (por que Moreira Griff) ============ */
.benefit-card {
  background: #fff;
  padding: 28px 24px;
  border-radius: 20px;
  text-align: center;
  border: 1px solid transparent;
  transition: all .4s ease;
}
.benefit-card:hover {
  border-color: #C9A86A;
  transform: translateY(-4px);
  box-shadow: 0 15px 40px -10px rgba(31,27,23,.15);
}
.benefit-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #FBF8F3;
  color: #C9A86A;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}
.benefit-icon svg { width: 28px; height: 28px; }
.benefit-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  color: #1F1B17;
  margin-bottom: 8px;
}
.benefit-card p {
  color: #5A544C;
  font-size: 13px;
  font-weight: 300;
  line-height: 1.5;
}

/* ============ FAQ Accordion ============ */
.faq-item {
  background: #fff;
  border-radius: 16px;
  border: 1px solid #F3EFE7;
  overflow: hidden;
  transition: all .3s ease;
}
.faq-item[open] { border-color: #C9A86A; box-shadow: 0 8px 30px -10px rgba(31,27,23,.10); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 24px;
  font-weight: 500;
  font-size: 16px;
  color: #1F1B17;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 24px;
  color: #C9A86A;
  font-weight: 300;
  transition: transform .3s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-answer {
  padding: 0 24px 22px;
  color: #5A544C;
  font-weight: 300;
  font-size: 14px;
  line-height: 1.7;
}
.faq-answer strong { color: #1F1B17; font-weight: 600; }

/* ============ Contact Cards ============ */
.contact-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 20px;
  border-radius: 16px;
  background: #F3EFE7;
  border: 1px solid transparent;
  transition: all .3s ease;
}
.contact-icon {
  width: 24px;
  height: 24px;
  color: #C9A86A;
  flex-shrink: 0;
  margin-top: 4px;
}

/* ============ Footer ============ */
.footer-social {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FBF8F3;
  transition: all .3s ease;
}
.footer-social:hover { background: #C9A86A; color: #1F1B17; }
.footer-title {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #C9A86A;
  margin-bottom: 18px;
  font-weight: 600;
}
.footer-list { display: flex; flex-direction: column; gap: 10px; }
.footer-list li { font-size: 14px; color: rgba(251,248,243,.7); font-weight: 300; }
.footer-list a { transition: color .3s; }
.footer-list a:hover { color: #C9A86A; }

/* ============ Reduced motion ============ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
