/* Sheik do Vale - Premium Fragrances - Core Stylesheet */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700&family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400&family=Poppins:wght@300;400;500;600&display=swap');
@import "./variables.css";
@import "./animations.css";

/* Reset & Global Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  background-color: var(--color-bg-primary);
  color: var(--color-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
  background-color: var(--color-bg-primary);
}

/* Base Typography */
h1, h2, h3, h4, .brand-font-title {
  font-family: var(--font-title);
  font-weight: 400;
  letter-spacing: 0.2em;
  color: var(--color-white);
  line-height: 1.25;
}

h2 {
  font-size: 2rem;
  text-align: center;
  position: relative;
  padding-bottom: 1.25rem;
  margin-bottom: 3rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 1px;
  background: var(--gold-gradient);
}

.subtitle-accent {
  font-family: var(--font-subtitle);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--color-gold-light);
  text-align: center;
  margin-top: -2.25rem;
  margin-bottom: 3.5rem;
  display: block;
  letter-spacing: 0.1em;
  opacity: 0.9;
}

p {
  color: var(--color-gray-light);
  margin-bottom: 1rem;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Focus States & Accessibility */
a:focus-visible, button:focus-visible, select:focus-visible, input:focus-visible {
  outline: 2px solid var(--color-gold-light);
  outline-offset: 4px;
}

/* Scrollbar styling */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--color-bg-primary);
}
::-webkit-scrollbar-thumb {
  background: var(--color-bg-tertiary);
  border: 2px solid var(--color-bg-primary);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-gold);
}

/* Layout Containers */
.container {
  width: 100%;
  max-width: var(--container-max-width);
  margin-right: auto;
  margin-left: auto;
  padding-right: 1.5rem;
  padding-left: 1.5rem;
}

.section-padding {
  padding-top: var(--spacing-lg);
  padding-bottom: var(--spacing-lg);
}

/* Header & Navigation Styles */
.header-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background-color: rgba(11, 11, 11, 0.96);
  backdrop-filter: blur(15px);
  border-bottom: 1px solid var(--border-subtle);
  z-index: 1000;
  transition: var(--transition-smooth);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-icon {
  width: 32px;
  height: 32px;
  fill: var(--color-gold);
}

.logo-text {
  font-family: var(--font-title);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--color-white);
  letter-spacing: 0.3em;
  display: flex;
  flex-direction: column;
}

.logo-sub {
  font-size: 0.55rem;
  letter-spacing: 0.5em;
  color: var(--color-gold);
  margin-top: -2px;
  font-weight: 400;
}

.nav-menu {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-link {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-gray-light);
  position: relative;
  padding: 0.5rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold-gradient);
  transition: var(--transition-smooth);
}

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

.nav-link:hover::after {
  width: 100%;
}

.nav-executive-link::after {
  display: none !important;
}

.nav-executive-link:hover {
  background: var(--color-gold) !important;
  color: var(--color-bg-primary) !important;
  box-shadow: 0 0 15px rgba(201, 166, 70, 0.4);
  transform: translateY(-1px);
}

/* Mobile Menu Button */
.menu-toggle-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 24px;
  position: relative;
  z-index: 1001;
}

.menu-toggle-btn span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--color-white);
  position: absolute;
  left: 0;
  transition: var(--transition-smooth);
}

.menu-toggle-btn span:nth-child(1) { top: 2px; }
.menu-toggle-btn span:nth-child(2) { top: 11px; }
.menu-toggle-btn span:nth-child(3) { top: 20px; }

.menu-toggle-btn.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
  background-color: var(--color-gold);
}
.menu-toggle-btn.active span:nth-child(2) {
  opacity: 0;
}
.menu-toggle-btn.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
  background-color: var(--color-gold);
}

/* Buttons System */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  padding: 1.1rem 2.2rem;
  border-radius: 2px;
  cursor: pointer;
  transition: var(--transition-smooth);
  position: relative;
}

.btn-gold {
  background: var(--gold-gradient);
  color: #000000;
  border: 1px solid transparent;
  font-weight: 600;
}

.btn-gold:hover {
  background: linear-gradient(135deg, #E7C978 0%, #C9A646 100%);
  color: #000000;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(201, 166, 70, 0.25);
}

.btn-outline {
  background-color: transparent;
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-outline:hover {
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--color-white);
  background-color: rgba(255, 255, 255, 0.03);
  transform: translateY(-2px);
}

.icon-inline {
  transition: transform 0.3s ease;
}

.btn:hover .icon-inline {
  transform: translateY(-2px);
}

/* Hero Section Styles */
.hero-section {
  min-height: 100vh;
  padding-top: calc(var(--header-height) + 2rem);
  display: flex;
  align-items: center;
  position: relative;
  background: radial-gradient(circle at 50% 50%, rgba(201, 166, 70, 0.08) 0%, rgba(11, 11, 11, 0) 70%), var(--color-bg-primary);
  overflow: hidden;
}

.hero-grid {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero-content {
  opacity: 0;
  animation: fadeIn 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}

.hero-brand {
  font-family: var(--font-subtitle);
  font-style: italic;
  font-size: 1.35rem;
  color: var(--color-gold);
  margin-bottom: 0.5rem;
  display: block;
  letter-spacing: 0.1em;
}

.hero-title {
  font-size: 3.25rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
}

.hero-subtitle {
  font-family: var(--font-subtitle);
  font-size: 1.35rem;
  font-style: italic;
  color: var(--color-gray-light);
  margin-bottom: 2.5rem;
  opacity: 0.85;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.hero-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  animation: fadeInSimple 2s ease-out 0.4s forwards;
}

.hero-image-wrapper::before {
  content: '';
  position: absolute;
  width: 380px;
  height: 480px;
  border: 0.5px solid rgba(201, 166, 70, 0.15);
  transform: rotate(12deg);
  z-index: -1;
  pointer-events: none;
  transition: var(--transition-smooth);
}

.hero-image-wrapper::after {
  content: '';
  position: absolute;
  width: 380px;
  height: 480px;
  border: 0.5px solid rgba(201, 166, 70, 0.08);
  transform: rotate(-6deg);
  z-index: -1;
  pointer-events: none;
  transition: var(--transition-smooth);
}

.hero-image-wrapper:hover::before {
  transform: rotate(15deg) scale(1.02);
}

.hero-image-wrapper:hover::after {
  transform: rotate(-8deg) scale(1.02);
}

.hero-img {
  width: 100%;
  max-width: 450px;
  filter: drop-shadow(0px 25px 50px rgba(0, 0, 0, 0.8));
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-img:hover {
  transform: scale(1.03) rotate(1deg);
}

.hero-image-glow {
  position: absolute;
  width: 80%;
  height: 80%;
  background: radial-gradient(circle, rgba(201, 166, 70, 0.1) 0%, rgba(0,0,0,0) 70%);
  z-index: -1;
  border-radius: 50%;
  filter: blur(40px);
}

/* Diferenciais Section */
.differentials-section {
  background-color: var(--color-bg-secondary);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.differentials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-md);
}

.differential-card {
  background-color: var(--color-bg-primary);
  border: 1px solid var(--border-subtle);
  padding: 3rem 2rem;
  text-align: center;
  transition: var(--transition-smooth);
  position: relative;
  border-radius: 2px;
}

.differential-card:hover {
  transform: translateY(-5px);
  border-color: var(--color-gold);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), 0 0 40px rgba(201, 166, 70, 0.05);
}

.diff-icon-box {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(201, 166, 70, 0.2);
  background-color: rgba(20, 20, 20, 0.5);
  color: var(--color-gold);
  transition: var(--transition-smooth);
}

.differential-card:hover .diff-icon-box {
  background: var(--gold-gradient);
  color: #000000;
  border-color: transparent;
  box-shadow: 0 0 20px rgba(201, 166, 70, 0.3);
}

.diff-title {
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 500;
}

.diff-text {
  font-size: 0.85rem;
  color: var(--color-gray-light);
  line-height: 1.6;
  opacity: 0.8;
}

/* About Us Section (Quem Somos) */
.about-section {
  position: relative;
  overflow: hidden;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: var(--spacing-lg);
  align-items: center;
}

.about-images-stack {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-images-stack::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(201, 166, 70, 0.08) 0%, rgba(0,0,0,0) 70%);
  z-index: 1;
  pointer-events: none;
  filter: blur(40px);
}

.about-img-main {
  width: 100%;
  max-width: 480px;
  height: 420px;
  object-fit: cover;
  border: 1px solid var(--border-subtle);
  border-radius: 4px;
  position: relative;
  z-index: 2;
  box-shadow: 0 20px 50px rgba(0,0,0,0.6);
  transition: var(--transition-smooth);
}

.about-images-stack:hover .about-img-main {
  transform: scale(1.03);
}

.about-content h2 {
  text-align: left;
  margin-bottom: 2rem;
}

.about-content h2::after {
  left: 0;
  transform: none;
}

.about-lead {
  font-family: var(--font-subtitle);
  font-size: 1.35rem;
  font-style: italic;
  color: var(--color-gold-light);
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
}

.about-text {
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
}

/* Categorias */
.categories-section {
  background-color: var(--color-bg-secondary);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-md);
}

.category-card {
  position: relative;
  height: 380px;
  overflow: hidden;
  border: 1px solid rgba(201, 166, 70, 0.18);
  cursor: pointer;
  border-radius: 3px;
  background-color: #0b0b0b;
  /* Premium texture: leather-inspired fine mesh and subtle radial gold glow */
  background-image: 
    radial-gradient(circle at 50% 50%, rgba(201, 166, 70, 0.04) 0%, transparent 75%),
    linear-gradient(rgba(255, 255, 255, 0.006) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.006) 1px, transparent 1px);
  background-size: 100% 100%, 10px 10px, 10px 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2.5rem;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.category-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  filter: brightness(0.25) contrast(1.1) grayscale(0.25);
  z-index: 0;
  pointer-events: none;
}

.category-card:hover .category-bg {
  transform: scale(1.08);
  filter: brightness(0.35) contrast(1.1) grayscale(0.1);
}

.category-icon-wrapper {
  position: relative;
  width: 120px;
  height: 120px;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.category-card .radial-gold-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(201, 166, 70, 0.08) 0%, rgba(201, 166, 70, 0.03) 50%, transparent 75%);
  pointer-events: none;
  border-radius: 50%;
  transition: background 0.35s ease;
}

.category-card:hover .radial-gold-glow {
  background: radial-gradient(circle, rgba(201, 166, 70, 0.16) 0%, rgba(201, 166, 70, 0.06) 50%, transparent 70%);
}

.category-icon {
  width: 84px;
  height: 84px;
  z-index: 2;
  filter: drop-shadow(0 0 4px rgba(201, 166, 70, 0.2));
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.category-card:hover .category-icon {
  transform: scale(1.05) translateY(-4px);
}

.category-overlay {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  z-index: 2;
}

.category-title {
  font-size: 1.25rem;
  color: var(--color-white);
  margin-bottom: 0.5rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-family: var(--font-title);
  transition: var(--transition-smooth);
}

.category-subtitle {
  font-family: var(--font-subtitle);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--color-gold);
  opacity: 0.8;
  transform: translateY(10px);
  transition: var(--transition-smooth);
  text-align: center;
}

.category-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 166, 70, 0.65);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.65), 0 0 25px rgba(201, 166, 70, 0.08);
}

.category-card:hover .category-title {
  color: var(--color-gold-light);
  transform: translateY(-2px);
}

.category-card:hover .category-subtitle {
  transform: translateY(0);
  opacity: 1;
}

/* Catálogo & Filtros Section */
.catalog-section {
  background-color: var(--color-bg-primary);
}

.catalog-header {
  margin-bottom: 3.5rem;
}

.catalog-controls {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  background-color: var(--color-bg-secondary);
  border: 1px solid var(--border-subtle);
  padding: 2rem;
  margin-bottom: 3rem;
  border-radius: 2px;
}

.search-filter-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  align-items: center;
}

.search-input-wrapper {
  position: relative;
}

.search-input-wrapper svg {
  position: absolute;
  left: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-gold);
  pointer-events: none;
}

.search-field {
  width: 100%;
  background-color: var(--color-bg-primary);
  border: 1px solid var(--border-subtle);
  color: var(--color-white);
  padding: 1.1rem 1.1rem 1.1rem 3.5rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  transition: var(--transition-fast);
  border-radius: 2px;
}

.search-field:focus {
  border-color: var(--color-gold);
  box-shadow: 0 0 15px rgba(201, 166, 70, 0.1);
  outline: none;
}

.select-field {
  background-color: var(--color-bg-primary);
  border: 1px solid var(--border-subtle);
  color: var(--color-white);
  padding: 1.1rem 2.5rem 1.1rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg fill='none' stroke='%23C9A646' stroke-width='2' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'><polyline points='6 9 12 15 18 9'></polyline></svg>");
  background-repeat: no-repeat;
  background-position: right 1.25rem center;
  background-size: 1.1rem;
  transition: var(--transition-fast);
  border-radius: 2px;
}

.select-field:focus {
  border-color: var(--color-gold);
  box-shadow: 0 0 15px rgba(201, 166, 70, 0.1);
  outline: none;
}

.category-buttons-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn-filter {
  background-color: transparent;
  color: var(--color-gray-light);
  border: 1px solid var(--border-subtle);
  padding: 0.75rem 1.5rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: var(--transition-fast);
  border-radius: 2px;
}

.btn-filter:hover {
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--color-white);
}

.btn-filter.active {
  background: var(--gold-gradient);
  color: #000000;
  border-color: transparent;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(201, 166, 70, 0.2);
}

.results-status {
  font-size: 0.85rem;
  color: var(--color-gray-dark);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Perfume Grid and Cards */
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem 2rem;
}

.perfume-card {
  background-color: #0b0b0b;
  border: 1px solid rgba(201, 166, 70, 0.18);
  display: flex;
  flex-direction: column;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  height: 100%;
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
}

.perfume-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 166, 70, 0.65);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.65), 0 0 25px rgba(201, 166, 70, 0.08);
}

.card-illustration-wrapper {
  position: relative;
  height: 240px;
  background-color: #0b0b0b;
  /* Premium textured style */
  background-image: 
    radial-gradient(circle at 50% 50%, rgba(201, 166, 70, 0.05) 0%, transparent 80%),
    linear-gradient(rgba(255, 255, 255, 0.007) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.007) 1px, transparent 1px);
  background-size: 100% 100%, 8px 8px, 8px 8px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid rgba(201, 166, 70, 0.15);
  transition: background-color 0.3s ease;
}

.radial-gold-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(201, 166, 70, 0.08) 0%, rgba(201, 166, 70, 0.03) 50%, transparent 70%);
  pointer-events: none;
  border-radius: 50%;
  transition: background 0.35s ease;
}

.perfume-card:hover .radial-gold-glow {
  background: radial-gradient(circle, rgba(201, 166, 70, 0.14) 0%, rgba(201, 166, 70, 0.05) 50%, transparent 70%);
}

.perfume-line-art-icon {
  width: 96px;
  height: 96px;
  z-index: 2;
  filter: drop-shadow(0 0 4px rgba(201, 166, 70, 0.2));
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.perfume-card:hover .perfume-line-art-icon {
  transform: scale(1.03) translateY(-2px);
}

.perfume-profile-box {
  margin-top: 0.5rem;
  margin-bottom: 1.5rem;
  padding: 0.85rem 1rem;
  background: rgba(255, 255, 255, 0.02);
  border-left: 2px solid var(--color-gold);
  border-radius: 0 4px 4px 0;
}

.profile-label {
  display: block;
  font-family: var(--font-title);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-gold-light);
  margin-bottom: 0.25rem;
  font-weight: 500;
}

.card-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background-color: rgba(11, 11, 11, 0.85);
  backdrop-filter: blur(5px);
  color: var(--color-gold-light);
  border: 1px solid rgba(201, 166, 70, 0.25);
  padding: 0.4rem 0.8rem;
  font-size: 0.7rem;
  font-family: var(--font-body);
  letter-spacing: 0.05em;
  font-weight: 500;
  border-radius: 2px;
}

.card-info {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-category {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-gold);
  font-weight: 500;
  margin-bottom: 0.5rem;
  display: block;
}

.card-title {
  font-size: 1.15rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.25rem;
  line-height: 1.3;
  text-transform: uppercase;
  font-family: var(--font-title);
}

.card-brand {
  font-family: var(--font-subtitle);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--color-gray-light);
  margin-bottom: 1.5rem;
  opacity: 0.8;
}

/* Perfume Details block inside Card */
.card-details-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: 1.25rem 0;
  margin-bottom: 1.25rem;
}

.detail-item {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  line-height: 1.4;
}

.detail-label {
  color: var(--color-gray-dark);
}

.detail-val {
  color: var(--color-white);
  font-weight: 400;
  text-align: right;
  max-width: 60%;
}

.card-description {
  font-size: 0.85rem;
  color: var(--color-gray-light);
  line-height: 1.5;
  margin-bottom: 1.75rem;
  flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  opacity: 0.85;
}

/* Testimonials (Depoimentos) */
.testimonials-section {
  background-color: var(--color-bg-secondary);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-md);
}

.testimonial-card {
  background-color: var(--color-bg-primary);
  border: 1px solid var(--border-subtle);
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  position: relative;
  border-radius: 2px;
  transition: var(--transition-smooth);
}

.testimonial-card:hover {
  border-color: var(--color-gold);
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.quote-icon {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  font-size: 4rem;
  line-height: 1;
  font-family: var(--font-title);
  color: rgba(201, 166, 70, 0.08);
  user-select: none;
}

.stars-rating {
  color: var(--color-gold-light);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  letter-spacing: 0.2em;
}

.testimonial-text {
  font-family: var(--font-subtitle);
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--color-white);
  margin-bottom: 2rem;
  flex-grow: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.author-avatar {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--color-gold);
  box-shadow: 0 4px 15px rgba(201, 166, 70, 0.2);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.testimonial-card:hover .author-avatar {
  transform: scale(1.05);
  border-color: var(--color-gold-light);
}

.author-info h4 {
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.15rem;
}

.author-info p {
  font-size: 0.75rem;
  color: var(--color-gray-dark);
  margin: 0;
}

/* FAQ Accordion Section */
.faq-section {
  background-color: var(--color-bg-primary);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.faq-item {
  background-color: var(--color-bg-secondary);
  border: 1px solid var(--border-subtle);
  transition: var(--transition-smooth);
  border-radius: 2px;
}

.faq-item.open {
  border-color: var(--color-gold);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--color-white);
  text-align: left;
  padding: 1.75rem 2rem;
  font-family: var(--font-title);
  font-size: 1rem;
  letter-spacing: 0.1em;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  outline: none;
  text-transform: uppercase;
}

.faq-question:hover {
  color: var(--color-gold-light);
}

.faq-icon {
  width: 14px;
  height: 14px;
  position: relative;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-icon::before, .faq-icon::after {
  content: '';
  position: absolute;
  background-color: var(--color-gold);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-icon::before {
  top: 6px;
  left: 0;
  width: 100%;
  height: 2px;
}

.faq-icon::after {
  top: 0;
  left: 6px;
  width: 2px;
  height: 100%;
}

.faq-item.open .faq-icon {
  transform: rotate(135deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item.open .faq-answer {
  max-height: 300px; /* high enough limit */
}

.faq-answer-inner {
  padding: 0 2rem 1.75rem 2rem;
  font-size: 0.9rem;
  color: var(--color-gray-light);
  line-height: 1.7;
  opacity: 0.9;
}

/* Contato Section */
.contact-section {
  background-color: var(--color-bg-secondary);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-lg);
  align-items: center;
}

.contact-info {
  padding-right: 2rem;
}

.contact-info h2 {
  text-align: left;
  margin-bottom: 2rem;
}

.contact-info h2::after {
  left: 0;
  transform: none;
}

.contact-sub {
  font-family: var(--font-subtitle);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--color-gold-light);
  margin-bottom: 1.5rem;
}

.contact-lead-text {
  font-size: 0.95rem;
  margin-bottom: 2.5rem;
}

.contact-channels {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.channel-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}

.channel-icon {
  color: var(--color-gold);
  background-color: rgba(201, 166, 70, 0.05);
  border: 1px solid rgba(201, 166, 70, 0.15);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.channel-detail h4 {
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
  font-family: var(--font-title);
}

.channel-detail p, .channel-detail a {
  font-size: 0.9rem;
  color: var(--color-gray-light);
  margin: 0;
}

.channel-detail a:hover {
  color: var(--color-gold-light);
}

.contact-interactive {
  display: flex;
  justify-content: center;
}

.contact-cta-box {
  background-color: var(--color-bg-primary);
  border: 1px solid var(--border-gold-subtle);
  padding: 3.5rem 3rem;
  text-align: center;
  max-width: 480px;
  width: 100%;
  box-shadow: 0 25px 55px rgba(0,0,0,0.5);
  position: relative;
  border-radius: 2px;
}

.contact-cta-box::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  border: 1px solid rgba(201, 166, 70, 0.05);
  pointer-events: none;
}

.cta-box-badge {
  color: var(--color-gold);
  font-family: var(--font-title);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  display: block;
}

.cta-box-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  line-height: 1.3;
  font-family: var(--font-title);
}

.cta-box-desc {
  font-size: 0.85rem;
  color: var(--color-gray-light);
  margin-bottom: 2.25rem;
  opacity: 0.9;
}

/* Footer Section */
.footer-section {
  background-color: #060606;
  border-top: 1px solid var(--border-subtle);
  padding-top: 5rem;
  padding-bottom: 2rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: var(--spacing-lg);
  margin-bottom: 4rem;
}

.footer-brand h3 {
  font-size: 1.35rem;
  letter-spacing: 0.2em;
  margin-bottom: 0.5rem;
}

.footer-brand .logo-sub {
  font-size: 0.65rem;
  margin-bottom: 1.5rem;
}

.footer-desc {
  font-size: 0.85rem;
  color: var(--color-gray-light);
  line-height: 1.6;
  max-width: 320px;
  opacity: 0.8;
}

.footer-title {
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1.75rem;
  color: var(--color-white);
  font-weight: 500;
  font-family: var(--font-title);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-link-item a {
  font-size: 0.85rem;
  color: var(--color-gray-light);
  opacity: 0.8;
}

.footer-link-item a:hover {
  color: var(--color-gold-light);
  padding-left: 4px;
  opacity: 1;
}

.footer-bottom {
  border-top: 1px solid var(--border-subtle);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.copyright-text {
  font-size: 0.8rem;
  color: var(--color-gray-dark);
  margin: 0;
}

.developer-tag {
  font-size: 0.8rem;
  color: var(--color-gray-dark);
}

.developer-tag a:hover {
  color: var(--color-gold);
}
