/* ============================================
   SUPER STORE JS — Luxury Perfume Landing Page
   Estilo Premium — Especial Dia dos Namorados
============================================ */

/* --- IMPORT FONTS --- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

/* --- CSS VARIABLES --- */
:root {
  --black: #050505;
  --black-surface: #0e0e0e;
  --black-card: #151515;
  --white: #ffffff;
  
  /* Luxury Gold colors */
  --gold: #D4AF37;
  --gold-light: #F3E5AB;
  --gold-dark: #aa861c;
  --gold-glow: rgba(212, 175, 55, 0.15);
  
  /* Romantic Crimson / Burgundy for Dia dos Namorados Campaign */
  --red-campaign: #8B0F1E;
  --red-campaign-light: #A81C2E;
  --red-campaign-dark: #58030D;
  --red-campaign-glow: rgba(139, 15, 30, 0.25);
  
  /* Typography */
  --font-serif: 'Cormorant Garamond', serif;
  --font-sans: 'Plus Jakarta Sans', sans-serif;
  
  /* Borders and elements */
  --border-gold: rgba(212, 175, 55, 0.18);
  --border-red: rgba(139, 15, 30, 0.2);
  --border-light: rgba(255, 255, 255, 0.05);
  
  /* Shadows and Transitions */
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 12px 28px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 24px 50px rgba(0, 0, 0, 0.7);
  --shadow-red-glow: 0 8px 30px rgba(139, 15, 30, 0.35);
  --shadow-gold-glow: 0 8px 30px rgba(212, 175, 55, 0.2);
  
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  
  --radius-lg: 20px;
  --radius-md: 12px;
  --radius-sm: 8px;
  --max-w: 1200px;
}

/* --- RESET & BASE --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  background-color: var(--black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  outline: none;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--black);
}
::-webkit-scrollbar-thumb {
  background: #222222;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--gold-dark);
}

/* --- CONTAINER --- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  line-height: 1.15;
  letter-spacing: -0.01em;
  font-weight: 500;
}

h1 {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
}

h2 {
  font-size: clamp(1.8rem, 4.5vw, 3rem);
}

h3 {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
}

p {
  color: #c4c4c4;
}

.gold-text {
  color: var(--gold);
  background: linear-gradient(135deg, var(--gold-light) 30%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.red-text {
  color: var(--red-campaign-light);
}

/* --- BUTTONS --- */
.btn-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 36px;
  background: linear-gradient(135deg, var(--red-campaign), var(--red-campaign-light));
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  border-radius: 50px;
  box-shadow: var(--shadow-red-glow);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal), opacity var(--transition-fast);
  border: 1px solid rgba(255, 255, 255, 0.15);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.btn-wa::before {
  content: '';
  position: absolute;
  top: 0;
  left: -50%;
  width: 200%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.3) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-25deg);
  transition: 0.75s;
  animation: shine 3s infinite;
}

@keyframes shine {
  0% { left: -100%; }
  50% { left: 100%; }
  100% { left: 100%; }
}

.btn-wa:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(139, 15, 30, 0.55);
  opacity: 0.95;
}

.btn-wa:active {
  transform: translateY(-1px);
}

.btn-wa-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--black);
  box-shadow: var(--shadow-gold-glow);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-wa-gold:hover {
  box-shadow: 0 12px 35px rgba(212, 175, 55, 0.4);
  color: var(--black);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 36px;
  background: transparent;
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  transition: all var(--transition-normal);
}

.btn-outline:hover {
  border-color: var(--gold);
  background: var(--gold-glow);
  color: var(--gold-light);
  transform: translateY(-2px);
}

/* --- HEADER --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: background var(--transition-normal), backdrop-filter var(--transition-normal), padding var(--transition-normal), box-shadow var(--transition-normal);
}

.header.scrolled {
  background: rgba(5, 5, 5, 0.85);
  backdrop-filter: blur(20px);
  padding: 14px 0;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 1px;
}

.logo-icon {
  color: var(--gold);
  font-size: 1.2rem;
}

.logo strong {
  color: var(--gold);
  font-weight: 700;
}

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav a {
  font-size: 0.85rem;
  font-weight: 500;
  color: #c4c4c4;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: color var(--transition-fast);
}

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

.nav .nav-cta {
  padding: 10px 24px;
  background: var(--gold-glow);
  color: var(--gold-light);
  border: 1px solid var(--border-gold);
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.5px;
}

.nav .nav-cta:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

/* Mobile Menu Button */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-light);
  border-radius: 50%;
  transition: all var(--transition-fast);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--white);
  border-radius: 1px;
  transition: all var(--transition-fast);
}

.menu-toggle:hover {
  background: var(--gold-glow);
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Mobile Menu overlay */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(5, 5, 5, 0.98);
  backdrop-filter: blur(20px);
  z-index: 99;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  transform: translateY(-100%);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-menu.open {
  transform: translateY(0);
}

.mobile-menu a {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 300;
  color: var(--white);
}

.mobile-menu a:hover {
  color: var(--gold);
}

.mobile-menu .nav-cta {
  padding: 14px 40px;
  background: var(--gold);
  color: var(--black);
  border-radius: 50px;
  font-size: 1.2rem;
  font-family: var(--font-sans);
  font-weight: 700;
}

/* --- HERO --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 140px 0 100px;
  overflow: hidden;
  text-align: center;
  background: radial-gradient(circle at center, rgba(139, 15, 30, 0.12) 0%, transparent 60%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  opacity: 0.6;
}

.hero-orb1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(139, 15, 30, 0.22) 0%, transparent 70%);
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
}

.hero-orb2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
  bottom: -100px;
  left: 10%;
}

.hero-inner-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.hero-logo-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  opacity: 0.9;
}

.hero-logo-box .brand-label {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 300;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.hero-logo-box .brand-label strong {
  color: var(--gold);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: var(--red-campaign-glow);
  border: 1px solid rgba(139, 15, 30, 0.3);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: 1px;
  text-transform: uppercase;
  box-shadow: 0 4px 15px rgba(139, 15, 30, 0.15);
}

.hero h1 {
  font-size: clamp(2.5rem, 7vw, 4.8rem);
  font-weight: 400;
  margin-bottom: 20px;
  max-width: 900px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.6);
}

.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: #d1d1d1;
  max-width: 680px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

/* Video Component Stylings */
.video-wrapper {
  position: relative;
  width: 100%;
  max-width: 820px;
  margin: 0 auto 48px;
  border-radius: var(--radius-lg);
  padding: 1px;
  background: linear-gradient(135deg, var(--gold) 0%, rgba(139, 15, 30, 0.5) 50%, var(--gold-dark) 100%);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), 0 0 40px rgba(139, 15, 30, 0.25);
  overflow: hidden;
  aspect-ratio: 16 / 9;
}

.video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: calc(var(--radius-lg) - 1px);
  display: block;
}

.hero .btn-wa {
  margin-bottom: 60px;
}

/* Highlighted Perfumes inside Hero */
.featured-perfumes-wrap {
  width: 100%;
  margin-top: 20px;
  max-width: 1000px;
}

.featured-title {
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.featured-mini-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 16px;
  text-align: left;
  transition: all var(--transition-normal);
}

.featured-mini-card:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--border-gold);
  transform: translateY(-4px);
}

.featured-mini-card img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  background: var(--black);
}

.featured-mini-info {
  display: flex;
  flex-direction: column;
}

.featured-mini-info span {
  font-size: 0.7rem;
  text-transform: uppercase;
  color: var(--gold);
  letter-spacing: 0.5px;
}

.featured-mini-info h4 {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
}

.featured-mini-info .price {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--gold-light);
  font-weight: 600;
  margin-top: 2px;
}

/* --- SECTION GENERAL --- */
.section {
  padding: 120px 0;
  position: relative;
}

.section-dark {
  background-color: var(--black-surface);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 72px;
}

.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-header h2 {
  margin-bottom: 20px;
  font-weight: 400;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.section-header p {
  font-size: 1.05rem;
  color: #adadad;
  line-height: 1.6;
}

/* --- SEÇÃO PROMOCIONAL (DIA DOS NAMORADOS) --- */
.promo-banner-section {
  background: linear-gradient(135deg, var(--red-campaign-dark) 0%, #150306 100%);
  border-top: 1px solid rgba(139, 15, 30, 0.4);
  border-bottom: 1px solid rgba(139, 15, 30, 0.4);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.promo-banner-section::before {
  content: '❤️';
  position: absolute;
  top: -40px;
  left: 5%;
  font-size: 12rem;
  opacity: 0.03;
  pointer-events: none;
}

.promo-banner-section::after {
  content: '❤️';
  position: absolute;
  bottom: -40px;
  right: 5%;
  font-size: 10rem;
  opacity: 0.03;
  pointer-events: none;
}

.promo-banner-inner {
  text-align: center;
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.promo-banner-inner h2 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.2;
}

.promo-banner-inner p {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: #f7d2d6;
  line-height: 1.6;
  max-width: 640px;
  margin: 0 auto;
}

/* --- CATÁLOGO DE PERFUMES --- */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 32px;
}

.product-card {
  background-color: var(--black-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform var(--transition-slow), box-shadow var(--transition-slow), border-color var(--transition-normal);
}

.product-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  border: 1px solid transparent;
  pointer-events: none;
  transition: border-color var(--transition-normal);
  z-index: 3;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg), 0 0 25px rgba(212, 175, 55, 0.15);
  border-color: rgba(212, 175, 55, 0.35);
}

.product-card:hover::after {
  border-color: rgba(212, 175, 55, 0.35);
}

.product-img-wrap {
  position: relative;
  aspect-ratio: 1 / 1;
  background: #090909;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform var(--transition-slow);
}

.product-card:hover .product-img-wrap img {
  transform: scale(1.08);
}

.product-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  background: linear-gradient(135deg, var(--red-campaign), var(--red-campaign-light));
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 6px 14px;
  border-radius: 50px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  text-transform: uppercase;
}

.product-body {
  padding: 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.product-brand {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.product-name {
  font-family: var(--font-sans);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
}

.product-desc {
  font-size: 0.85rem;
  color: #a3a3a3;
  line-height: 1.6;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-price {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--gold-light);
  margin-top: auto;
}

.product-btns {
  padding: 0 24px 24px;
}

.product-btns .product-btn-wa {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 0;
  background: linear-gradient(135deg, #121212 0%, #1e1e1e 100%);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: all var(--transition-normal);
}

.product-btns .product-btn-wa svg {
  fill: currentColor;
  transition: transform var(--transition-fast);
}

.product-card:hover .product-btn-wa {
  background: linear-gradient(135deg, var(--red-campaign), var(--red-campaign-light));
  border-color: var(--red-campaign-light);
  box-shadow: var(--shadow-red-glow);
}

.product-btns .product-btn-wa:hover {
  transform: translateY(-2px);
}

/* --- SEÇÃO DE CONFIANÇA (TRUST BAR) --- */
.trust-bar {
  background-color: var(--black-surface);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 40px 0;
}

.trust-inner {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 24px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #e2e2e2;
  white-space: nowrap;
}

.trust-item .check-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  font-size: 0.8rem;
}

/* --- SEÇÃO DE DIFERENCIAIS --- */
.differentials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.diff-card {
  background-color: var(--black-card);
  border: 1px solid var(--border-light);
  padding: 40px 32px;
  border-radius: var(--radius-lg);
  text-align: center;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.diff-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.diff-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-gold);
}

.diff-card:hover::before {
  opacity: 1;
}

.diff-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 16px;
  color: var(--gold);
  font-size: 1.8rem;
  transition: all var(--transition-normal);
}

.diff-card:hover .diff-icon {
  background: var(--gold);
  color: var(--black);
  transform: scale(1.1);
}

.diff-card h3 {
  font-family: var(--font-sans);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.diff-card p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #a8a8a8;
}

/* --- SEÇÃO DE AVALIAÇÕES / DEPOIMENTOS --- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.review-card {
  background-color: var(--black-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all var(--transition-normal);
}

.review-card:hover {
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-4px);
}

.review-stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.review-card p {
  font-size: 0.95rem;
  font-style: italic;
  line-height: 1.7;
  color: #d1d1d1;
  margin-bottom: 24px;
  position: relative;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--black);
  font-weight: 800;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.review-info strong {
  display: block;
  font-size: 0.9rem;
  color: var(--white);
}

.review-info span {
  display: block;
  font-size: 0.75rem;
  color: #7c7c7c;
}

/* --- FAQ ACCORDION --- */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background-color: var(--black-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition-normal);
}

.faq-item[open] {
  border-color: var(--border-gold);
}

.faq-item summary {
  padding: 24px 28px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  transition: color var(--transition-fast);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary:hover {
  color: var(--gold);
}

.faq-item summary::after {
  content: '↓';
  font-size: 1.2rem;
  color: var(--gold);
  transition: transform var(--transition-normal);
}

.faq-item[open] summary::after {
  transform: rotate(-180deg);
}

.faq-item p {
  padding: 0 28px 24px;
  font-size: 0.9rem;
  color: #b0b0b0;
  line-height: 1.7;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* --- SEÇÃO DE CONTATO --- */
.contact-section {
  position: relative;
  background-color: var(--black-surface);
  text-align: center;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.contact-inner {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-section h2 {
  font-weight: 400;
  margin-bottom: 20px;
}

.contact-section p {
  font-size: 1.1rem;
  margin-bottom: 40px;
  max-width: 560px;
}

.contact-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 32px;
  width: 100%;
  flex-wrap: wrap;
}

.contact-info-block {
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: #888888;
  font-size: 0.85rem;
}

.contact-info-block strong {
  color: var(--gold-light);
  font-size: 1rem;
}

/* --- FOOTER --- */
.footer {
  background-color: var(--black);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 64px 0 40px;
  font-size: 0.85rem;
  color: #8c8c8c;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  text-align: center;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  width: 100%;
  flex-wrap: wrap;
  gap: 40px;
  text-align: left;
}

.footer-col {
  flex: 1;
  min-width: 250px;
}

.footer-col h3 {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-col p {
  font-size: 0.85rem;
  color: #8c8c8c;
  line-height: 1.6;
}

.footer-logo {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-logo strong {
  color: var(--gold);
}

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

.footer-links-list a {
  color: #8c8c8c;
  transition: color var(--transition-fast);
}

.footer-links-list a:hover {
  color: var(--gold);
}

.footer-campaign-text {
  background: var(--red-campaign-glow);
  border: 1px solid rgba(139, 15, 30, 0.25);
  padding: 16px 20px;
  border-radius: var(--radius-md);
  color: #f7d2d6;
}

.footer-divider {
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.08);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 0.8rem;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a:hover {
  color: var(--white);
}

/* --- WHATSAPP FIXED FLOAT BUTTON --- */
.wa-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 90;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 24px;
  background: #25D366;
  color: #ffffff;
  border-radius: 50px;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.wa-float svg {
  fill: currentColor;
}

.wa-float:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(37, 211, 102, 0.55);
  color: #ffffff;
}

.wa-float-label {
  white-space: nowrap;
}

/* --- SCROLL FADE-IN ANIMATIONS --- */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- RESPONSIVE / MEDIA QUERIES --- */

/* Tablets and small screens */
@media (max-width: 992px) {
  .featured-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .differentials-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 860px) {
  .nav {
    display: none;
  }
  
  .menu-toggle {
    display: flex;
  }
  
  .footer-top {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-col {
    min-width: 100%;
  }
}

/* Mobile Devices */
@media (max-width: 600px) {
  .container {
    padding: 0 20px;
  }
  
  .hero {
    padding: 120px 0 80px;
  }
  
  .hero-logo-box .brand-label {
    font-size: 1.8rem;
  }
  
  .hero h1 {
    font-size: clamp(2rem, 8vw, 2.8rem);
  }
  
  .hero-sub {
    font-size: 0.95rem;
    margin-bottom: 32px;
  }
  
  .video-wrapper {
    margin-bottom: 32px;
    border-radius: var(--radius-md);
  }
  
  .video-wrapper video {
    border-radius: calc(var(--radius-md) - 1px);
  }
  
  .hero .btn-wa {
    width: 100%;
    margin-bottom: 48px;
  }
  
  .section {
    padding: 80px 0;
  }
  
  .section-header {
    margin-bottom: 48px;
  }
  
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  
  .product-card {
    border-radius: var(--radius-md);
  }
  
  .product-card::after {
    border-radius: var(--radius-md);
  }
  
  .product-img-wrap {
    padding: 12px;
  }
  
  .product-badge {
    top: 10px;
    left: 10px;
    font-size: 0.58rem;
    padding: 4px 10px;
  }
  
  .product-body {
    padding: 16px;
    gap: 4px;
  }
  
  .product-brand {
    font-size: 0.65rem;
  }
  
  .product-name {
    font-size: 1rem;
  }
  
  .product-desc {
    display: none; /* Hide product description on mobile cards to keep them compact and clean */
  }
  
  .product-price {
    font-size: 1.3rem;
    margin-top: 8px;
  }
  
  .product-btns {
    padding: 0 16px 16px;
  }
  
  .product-btns .product-btn-wa {
    padding: 10px 0;
    font-size: 0.75rem;
    border-radius: var(--radius-sm);
  }
  
  .trust-bar {
    padding: 24px 0;
  }
  
  .trust-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    max-width: 280px;
    margin: 0 auto;
  }
  
  .differentials-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .diff-card {
    padding: 32px 24px;
  }
  
  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .contact-btns {
    flex-direction: column;
    align-items: stretch;
  }
  
  .contact-btns .btn-wa,
  .contact-btns .btn-outline {
    width: 100%;
  }
  
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
  }
  
  .wa-float {
    bottom: 24px;
    right: 24px;
    padding: 14px;
    border-radius: 50%;
  }
  
  .wa-float-label {
    display: none;
  }
}

/* Small mobile devices */
@media (max-width: 380px) {
  .products-grid {
    grid-template-columns: 1fr;
  }
  
  .product-desc {
    display: -webkit-box;
  }
}
