html {
  scroll-behavior: smooth;
}

section {
  scroll-margin-top: 80px;
}
:root {
  --bg: #0b0a09;
  --superficie: #141210;
  --card: #1a1815;
  --champanhe: #e9ce96;
  --ouro: #c9a24b;
  --texto: #f5f0eb;
  --texto-suave: #b9ad9c;
  --borda: #2a2520;
  --display: 'Cormorant Garamond', serif;
  --sans: 'Montserrat', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: var(--bg);
  color: var(--texto);
  font-family: var(--sans);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Barra de Anúncio Superior */
.announce {
  background: var(--ouro);
  color: #000;
  text-align: center;
  padding: 0.4rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11, 10, 9, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--borda);
}

.nav-wrap {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
}

.logo {
  text-decoration: none;
  color: var(--texto);
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo b {
  font-family: var(--display);
  font-size: 1.6rem;
  letter-spacing: 2px;
  color: var(--champanhe);
}

.logo small {
  font-size: 0.6rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--texto-suave);
}

.main-nav {
  display: flex;
  gap: 2rem;
}

.main-nav a {
  color: var(--texto-suave);
  text-decoration: none;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: color 0.3s;
}

.main-nav a:hover, .main-nav a.active {
  color: var(--champanhe);
}

.nav-icons {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.icon-btn {
  background: none;
  border: none;
  color: var(--texto-suave);
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s;
}

.icon-btn:hover {
  color: var(--champanhe);
}

.badge {
  position: absolute;
  top: -6px;
  right: -8px;
  background: var(--ouro);
  color: #000;
  font-size: 0.65rem;
  font-weight: 700;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.burger {
  display: none;
  background: none;
  border: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.burger span {
  width: 22px;
  height: 2px;
  background: var(--texto);
  transition: 0.3s;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--superficie);
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--borda);
}

.mobile-nav a {
  color: var(--texto-suave);
  text-decoration: none;
  padding: 0.8rem 0;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 1px;
}

.mobile-nav.open {
  display: flex;
}

/* HERO SECTION */
.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 1.5rem;
  background: radial-gradient(circle at center, #1f1a14 0%, var(--bg) 70%);
}

.hero-inner {
  max-width: 800px;
  z-index: 2;
}

.eyebrow {
  color: var(--ouro);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  display: block;
  margin-bottom: 0.8rem;
}

.hero h1 {
  font-family: var(--display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 1.2rem;
}

.hero h1 em {
  font-style: italic;
  color: var(--champanhe);
}

.hero p {
  color: var(--texto-suave);
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto 2rem;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* BOTÕES */
.btn {
  padding: 0.9rem 2rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-decoration: none;
  border-radius: 2px;
  transition: all 0.3s;
  cursor: pointer;
}

.btn-fill {
  background: var(--ouro);
  color: #000;
  border: 1px solid var(--ouro);
  font-weight: 600;
}

.btn-fill:hover {
  background: var(--champanhe);
  border-color: var(--champanhe);
}

.btn-line {
  background: transparent;
  color: var(--texto);
  border: 1px solid var(--borda);
}

.btn-line:hover {
  border-color: var(--champanhe);
  color: var(--champanhe);
}

.btn-sm {
  padding: 0.6rem 1.2rem;
  font-size: 0.75rem;
}

/* BENEFÍCIOS */
.benefits {
  border-top: 1px solid var(--borda); border-bottom: 1px solid var(--borda);
  background: var(--superficie);
  padding: 2.5rem 1.5rem;
}

.benefits-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.benefit {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.benefit svg {
  width: 32px;
  height: 32px;
  stroke: var(--ouro);
  flex-shrink: 0;
}

.benefit-text b {
  display: block;
  font-size: 0.85rem;
  color: var(--texto);
}

.benefit-text span {
  font-size: 0.75rem;
  color: var(--texto-suave);
}

/* SEÇÃO GERAL */
.section {
  padding: 5rem 1.5rem;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-head {
  margin-bottom: 3rem;
}

.section-head.center {
  text-align: center;
}

.section-title {
  font-family: var(--display);
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--champanhe);
}

.section-sub {
  color: var(--texto-suave);
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

/* VITRINE / GRID DE PRODUTOS */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem;
}

.card {
  background: var(--card);
  border: 1px solid var(--borda);
  transition: transform 0.3s, border-color 0.3s;
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-5px);
  border-color: var(--ouro);
}

.card-media {
  position: relative;
  height: 280px;
  background: var(--superficie);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.product-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 1.5rem;
  transition: transform 0.4s ease;
}

.card:hover .product-img {
  transform: scale(1.08);
}

.fav-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(0, 0, 0, 0.4);
  border: none;
  color: var(--texto-suave);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s;
}

.fav-btn.active, .fav-btn:hover {
  color: #e74c3c;
  background: rgba(0, 0, 0, 0.8);
}

.fav-btn svg {
  width: 18px;
  height: 18px;
}

.card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-cat {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--ouro);
  margin-bottom: 0.3rem;
}

.card-name {
  font-family: var(--display);
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
}

.card-notes {
  font-size: 0.78rem;
  color: var(--texto-suave);
  margin-bottom: 1.2rem;
  flex-grow: 1;
}

.card-price-row {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  margin-bottom: 1rem;
}

.price-old {
  font-size: 0.8rem;
  text-decoration: line-through;
  color: #777;
}

.price-new {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--champanhe);
}

.card-add {
  width: 100%;
  padding: 0.8rem;
  background: transparent;
  border: 1px solid var(--ouro);
  color: var(--champanhe);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: 0.3s;
}

.card-add:hover {
  background: var(--ouro);
  color: #000;
}

/* QUIZ */
.quiz-section {
  background: var(--superficie);
  border-top: 1px solid var(--borda); border-bottom: 1px solid var(--borda);
}

.quiz-box {
  max-width: 600px;
  margin: 0 auto;
  background: var(--card);
  border: 1px solid var(--borda);
  padding: 2.5rem;
  position: relative;
}

.quiz-progress {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.quiz-progress .dot {
  flex: 1;
  height: 3px;
  background: var(--borda);
  position: relative;
}

.quiz-progress .dot i {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background: var(--ouro);
  width: 0;
  transition: width 0.3s;
}

.quiz-step {
  display: none;
}

.quiz-step.active {
  display: block;
}

.quiz-step h3 {
  font-family: var(--display);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.quiz-options {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.quiz-opt {
  padding: 1rem;
  border: 1px solid var(--borda);
  background: var(--superficie);
  cursor: pointer;
  font-size: 0.85rem;
  transition: 0.3s;
}

.quiz-opt:hover {
  border-color: var(--ouro);
  color: var(--champanhe);
}

.quiz-nav {
  margin-top: 1.5rem;
}

.quiz-back {
  background: none;
  border: none;
  color: var(--texto-suave);
  cursor: pointer;
  font-size: 0.8rem;
}

.quiz-result {
  display: none;
  text-align: center;
}

.quiz-result.active {
  display: block;
}

.quiz-result-card {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  text-align: left;
  background: var(--superficie);
  padding: 1.5rem;
  border: 1px solid var(--borda);
  margin: 1.5rem 0;
}

.quiz-restart {
  background: none;
  border: none;
  color: var(--texto-suave);
  text-decoration: underline;
  cursor: pointer;
  font-size: 0.8rem;
  margin-top: 1rem;
}

/* SOBRE NÓS */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-visual {
  background: var(--superficie);
  border: 1px solid var(--borda);
  padding: 4rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.about-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
}

.stat b {
  display: block;
  font-family: var(--display);
  font-size: 2rem;
  color: var(--champanhe);
}

.stat span {
  font-size: 0.75rem;
  color: var(--texto-suave);
}

/* FOOTER */
footer {
  background: var(--superficie);
  border-top: 1px solid var(--borda);
  padding: 4rem 1.5rem 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo {
  font-family: var(--display);
  font-size: 1.5rem;
  color: var(--champanhe);
  margin-bottom: 0.8rem;
}

.footer-about {
  color: var(--texto-suave);
  font-size: 0.85rem;
  max-width: 300px;
}

.footer-col h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--ouro);
  margin-bottom: 1rem;
}

.footer-col a {
  display: block;
  color: var(--texto-suave);
  text-decoration: none;
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
  transition: color 0.3s;
}

.footer-col a:hover {
  color: var(--champanhe);
}

.footer-bottom {
  border-top: 1px solid var(--borda);
  padding-top: 2rem;
  text-align: center;
  font-size: 0.75rem;
  color: var(--texto-suave);
}

/* BOTÃO WHATSAPP FLUTUANTE */
.wa-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.5);
  z-index: 99;
  transition: transform 0.3s;
}

.wa-float:hover {
  transform: scale(1.1);
}

.wa-float svg {
  width: 28px;
  height: 28px;
}

/* RESPONSIVO */
@media (max-width: 768px) {
  .main-nav, .desktop-only {
    display: none;
  }
  .burger {
    display: flex;
  }
  .about-grid, .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .quiz-result-card {
    flex-direction: column;
    text-align: center;
  }
}/* --- ESTILOS DO CARROSSEL DE PERFUMES --- */

/* Cabeçalho alinhado com as setas */
.section-head-slider {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 2rem;
  gap: 1rem;
}

/* Botões de seta */
.slider-controls {
  display: flex;
  gap: 0.8rem;
}

.slider-arrow {
  background: var(--superficie);
  border: 1px solid var(--borda);
  color: var(--champanhe);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-arrow:hover {
  background: var(--ouro);
  color: #000;
  border-color: var(--ouro);
}

/* Modo Carrossel */
.product-slider-wrapper {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.product-grid.slider-mode {
  display: flex !important;
  grid-template-columns: none !important;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding-bottom: 1rem;
  /* Esconde a barra de rolagem */
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE / Edge */
}

.product-grid.slider-mode::-webkit-scrollbar {
  display: none; /* Chrome / Safari */
}

/* Define tamanho fixo dos cards no slider */
.product-grid.slider-mode .card {
  flex: 0 0 280px; /* Largura padrão de cada card */
  scroll-snap-align: start;
}

@media (max-width: 768px) {
  .product-grid.slider-mode .card {
    flex: 0 0 240px; /* Um pouco menor no celular */
  }


}/* --- CORREÇÃO DO CARROSSEL EM MASCULINOS E FEMININOS --- */
.product-grid {
  display: flex !important;
  gap: 1.5rem !important;
  overflow-x: auto !important;
  scroll-behavior: smooth !important;
  scroll-snap-type: x mandatory !important;
  padding-bottom: 1rem !important;
  scrollbar-width: none !important; /* Firefox */
  -ms-overflow-style: none !important; /* IE / Edge */
}

.product-grid::-webkit-scrollbar {
  display: none !important; /* Chrome / Safari */
}

.product-grid .card {
  flex: 0 0 280px !important; /* Mantém os cards lado a lado */
  scroll-snap-align: start !important;
}

@media (max-width: 768px) {
  .product-grid .card {
    flex: 0 0 240px !important; /* Tamanho ajustado no celular */
  }
}/* --- ESTILO DOS BOTÕES DO CARROSSEL --- */
.slider-controls {
  display: flex;
  gap: 0.5rem;
}

.slide-btn {
  background: var(--superficie, #141210);
  border: 1px solid var(--borda, #2a2521);
  color: var(--ouro, #d4af37);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.slide-btn svg {
  width: 18px;
  height: 18px;
}

.slide-btn:hover {
  background: var(--ouro, #d4af37);
  color: #000;
  border-color: var(--ouro, #d4af37);
}
/* --- ESPAÇAMENTO GLOBAL DAS SEÇÕES --- */
.quiz-section, .catalog-section, section {
  padding: 5rem 0 !important; /* Aumenta o respiro acima e abaixo da seção */
}

/* --- ESTILIZAÇÃO PREMIUM DO QUIZ --- */
.quiz-container {
  max-width: 650px;
  margin: 2rem auto 0;
  background: var(--superficie, #141210);
  border: 1px solid var(--borda, #2a2521);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.quiz-step {
  display: none;
}

.quiz-step.active {
  display: block;
}

.quiz-step h3 {
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 1.5rem;
  text-align: center;
}

.quiz-options {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.quiz-opt {
  width: 100%;
  padding: 1.1rem 1.5rem;
  background: #1c1917;
  border: 1px solid var(--borda, #2a2521);
  color: #f3f3f3;
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.quiz-opt:hover {
  background: var(--ouro, #d4af37);
  color: #000;
  border-color: var(--ouro, #d4af37);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.25);
}

.quiz-back {
  margin-top: 1.5rem;
  background: transparent;
  border: none;
  color: #888;
  cursor: pointer;
  font-size: 0.85rem;
  transition: color 0.2s;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.quiz-back:hover {
  color: var(--ouro, #d4af37);
}

/* Barra de Progresso */
.quiz-progress {
  display: flex;
  justify-content: space-between;
  margin-bottom: 2rem;
  gap: 1rem;
}

.progress-step {
  flex: 1;
  text-align: center;
}

.progress-step span {
  font-size: 0.8rem;
  color: var(--ouro, #d4af37);
  font-weight: bold;
}

.progress-bar {
  height: 4px;
  background: #2a2521;
  border-radius: 2px;
  margin-top: 0.4rem;
  overflow: hidden;
}

.progress-bar .fill {
  height: 100%;
  background: var(--ouro, #d4af37);
  width: 0%;
  transition: width 0.4s ease;
}