/* ============================================
   UNIVERSE AURA — FITNESS WEAR
   Paleta: Preto, Branco, Dourado, Bege/Areia
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&family=Montserrat:wght@200;300;400;500;600;700;800;900&family=Playfair+Display:ital,wght@0,400;0,500;0,700;1,400&display=swap');

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

:root {
  --black:       #0a0a0a;
  --white:       #ffffff;
  --off-white:   #f7f5f2;
  --gold:        #c9a84c;
  --gold-light:  #e8c96a;
  --gold-dark:   #9a7a2e;
  --beige:       #c4b5a0;
  --beige-light: #ede8e1;
  --beige-dark:  #8a7a68;
  --silver:      #b0b0b0;
  --grey:        #5a5a5a;
  --grey-light:  #e0ddd9;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body:    'Montserrat', sans-serif;
  --transition:   0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-slow: 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background-color: var(--black);
  color: var(--white);
  overflow-x: hidden;
  cursor: default;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }

/* ── SELECTION ── */
::selection { background: var(--gold); color: var(--black); }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 300; letter-spacing: 0.05em; }

/* ── ANNOUNCEMENT BAR ── */
.announcement-bar {
  background: var(--gold);
  color: var(--black);
  text-align: center;
  padding: 10px 20px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* ── NAVIGATION ── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 40px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(10, 10, 10, 0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
  height: 65px;
}

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

.nav-logo img {
  height: 42px;
  width: auto;
  filter: invert(1) brightness(2);
  transition: var(--transition);
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.nav-logo-name {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--white);
  text-transform: uppercase;
}

.nav-logo-sub {
  font-family: var(--font-body);
  font-size: 8px;
  font-weight: 400;
  letter-spacing: 0.35em;
  color: var(--gold);
  text-transform: uppercase;
  margin-top: 3px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
  position: relative;
  transition: color var(--transition);
}

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

.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }

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

.nav-icon-btn {
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  transition: color var(--transition);
  display: flex;
  align-items: center;
  font-size: 18px;
}

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

.nav-cart {
  position: relative;
}

.cart-badge {
  position: absolute;
  top: -6px;
  right: -8px;
  background: var(--gold);
  color: var(--black);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  font-size: 9px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-cta {
  background: var(--gold);
  color: var(--black);
  border: none;
  padding: 10px 22px;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.nav-cta:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

/* ── HAMBURGER ── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}

/* ── MOBILE MENU ── */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: var(--black);
  border-left: 1px solid rgba(201, 168, 76, 0.3);
  z-index: 2000;
  padding: 90px 40px 40px;
  transition: right var(--transition-slow);
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.mobile-menu.open { right: 0; }

.mobile-menu a {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding-bottom: 16px;
  transition: color var(--transition);
}

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

.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 1999;
}

.mobile-overlay.open { display: block; }

/* ── HERO ── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--black);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(201, 168, 76, 0.07) 0%, transparent 70%),
    radial-gradient(ellipse 40% 80% at 20% 60%, rgba(201, 168, 76, 0.04) 0%, transparent 60%),
    radial-gradient(ellipse 40% 80% at 80% 60%, rgba(201, 168, 76, 0.04) 0%, transparent 60%);
}
/* GOLD LIGHT EFFECT */
.hero::before {
  content: '';
  position: absolute;
  top: -250px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 700px;

  background: radial-gradient(
    circle,
    rgba(201,168,76,0.28) 0%,
    rgba(201,168,76,0.10) 25%,
    rgba(201,168,76,0.04) 45%,
    transparent 75%
  );

  pointer-events: none;
  z-index: 1;
  filter: blur(30px);
}

.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: rgba(255, 230, 160, 0.9);
  border-radius: 50%;
  opacity: 0;
  filter: blur(0.5px);
  box-shadow: 0 0 12px rgba(255, 215, 120, 0.8);
  animation: float-particle var(--duration, 10s) var(--delay, 0s) infinite;
}

@keyframes float-particle {
  0% { transform: translateY(100vh) scale(0); opacity: 0; }
  10% { opacity: 0.6; }
  90% { opacity: 0.2; }
  100% { transform: translateY(-20px) scale(1); opacity: 0; }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 0 20px;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 30px;
  opacity: 0;
  animation: fadeInUp 1s 0.3s forwards;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.hero-eyebrow::before, .hero-eyebrow::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.hero-logo-img {
  width: 180px;

  height: auto;

  margin: 0 auto 30px;

  display: block;

  opacity: 0;

  animation: fadeInDown 1s 0.5s forwards;

  position: relative;

  z-index: 2;

  filter:
    drop-shadow(0 0 12px rgba(255,215,120,0.18));

  transition: all 0.4s ease;
}

.hero-logo-img::before {
  content: '';
  position: absolute;
  inset: -60px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.4) 0%, rgba(201, 168, 76, 0.15) 40%, transparent 70%);
  border-radius: 50%;
  z-index: -1;
  filter: blur(40px);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(56px, 9vw, 120px);
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.1;
  text-align: center;
  width: 100%;
  color: var(--white);
  text-transform: uppercase;
  opacity: 0;
  animation: fadeInUp 1s 0.7s forwards;
  margin-bottom: 10px;
}

.hero-title .gold {
  color: var(--gold);
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 30px;
}

.hero-title .gold::before,
.hero-title .gold::after {
  content: '';
  display: inline-block;
  width: 60px;
  height: 1px;
  background: linear-gradient(to right, var(--gold), transparent);
}

.hero-title .gold::after {
  background: linear-gradient(to left, var(--gold), transparent);
}

.top-line {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  white-space: nowrap;
}

.top-line .left,
.top-line .right,
.top-line .amp {
  display: inline-block;
}
.top-line .amp {
  font-size: 0.7em;
  position: relative;
  top: 2px;
  left: 3px;
}

.hero-subtitle {
  font-family: var(--font-display);
  font-size: clamp(18px, 3vw, 30px);
  font-weight: 300;
  letter-spacing: 0.35em;
  color: var(--beige);
  text-transform: uppercase;
  opacity: 0;
  animation: fadeInUp 1s 0.9s forwards;
  margin-bottom: 50px;
}

.hero-slogan {
  font-family: var(--font-display);
  font-size: 18px;
  font-style: italic;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.1em;
  opacity: 0;
  animation: fadeInUp 1s 1.1s forwards;
  margin-bottom: 50px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeInUp 1s 1.3s forwards;
}

.btn-primary {
  background: var(--gold);
  color: var(--black);
  padding: 16px 40px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold-light);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.btn-primary:hover::before { transform: scaleX(1); }
.btn-primary span { position: relative; z-index: 1; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(201,168,76,0.4); }

.btn-outline {
  background: transparent;
  color: var(--white);
  padding: 15px 40px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.4);
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: var(--transition);
}

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

.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeIn 1s 2s forwards;
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  animation: scroll-pulse 2s infinite;
}

@keyframes scroll-pulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.1); }
}

.scroll-text {
  font-family: var(--font-body);
  font-size: 9px;
  letter-spacing: 0.3em;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  margin-top: 4px;
}

/* ── SECTION BASE ── */
section { position: relative; }

.section-header {
  text-align: center;
  margin-bottom: 70px;
}

.section-tag {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 20px;
}

.section-tag::before, .section-tag::after {
  content: '';
  display: block;
  width: 30px;
  height: 1px;
  background: var(--gold);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: 20px;
}

.section-desc {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.08em;
  line-height: 1.8;
  max-width: 500px;
  margin: 0 auto;
}

/* ── LINES SECTION ── */
.lines-section {
  padding: 120px 0;
  background: var(--black);
}

.lines-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  max-width: 1400px;
  margin: 0 auto;
}

.line-card {
  position: relative;
  height: 650px;
  overflow: hidden;
  cursor: pointer;
}

.line-card-bg {
  position: absolute;
  inset: 0;
  transition: transform var(--transition-slow);
}

.line-card:hover .line-card-bg {
  transform: scale(1.05);
}

/* BRAVE AURA — dark/silver */
.brave-card .line-card-bg {
  background:
    linear-gradient(160deg, #1a1a1a 0%, #0a0a0a 50%, #141414 100%);
}

.brave-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(176,176,176,0.05) 0%, transparent 60%);
  z-index: 1;
}

/* GRACE AURA — warm/golden */
.grace-card .line-card-bg {
  background:
    linear-gradient(160deg, #1c1710 0%, #0d0b08 50%, #161208 100%);
}

.grace-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201,168,76,0.08) 0%, transparent 60%);
  z-index: 1;
}

.line-card-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 50px;
  text-align: center;
  transition: var(--transition);
}

.line-card-symbol {
  width: 120px;
  height: auto;
  margin-bottom: 40px;
  transition: transform var(--transition);
}

.brave-card .line-card-symbol {
  filter: brightness(1.4) contrast(1.2);
  opacity: 0.9;
}

.grace-card .line-card-symbol {
  filter: drop-shadow(0 0 20px rgba(201,168,76,0.4));
}

.line-card:hover .line-card-symbol {
  transform: scale(1.08) translateY(-6px);
}

.line-card-line-name {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.brave-card .line-card-line-name { color: var(--silver); }
.grace-card .line-card-line-name { color: var(--gold); }

.line-card-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1;
}

.brave-card .line-card-title span { color: var(--silver); }
.grace-card .line-card-title span { color: var(--gold); }

.line-card-desc {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.06em;
  line-height: 1.8;
  max-width: 320px;
  margin-bottom: 40px;
}

.line-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 13px 32px;
  border: 1px solid;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.brave-card .line-card-btn {
  color: var(--silver);
  border-color: rgba(176,176,176,0.4);
}

.brave-card .line-card-btn:hover {
  background: var(--silver);
  color: var(--black);
  border-color: var(--silver);
}

.grace-card .line-card-btn {
  color: var(--gold);
  border-color: rgba(201,168,76,0.4);
}

.grace-card .line-card-btn:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

.line-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  transform: scaleX(0);
  transition: transform var(--transition);
}

.brave-card .line-card-overlay { background: var(--silver); }
.grace-card .line-card-overlay { background: var(--gold); }
.line-card:hover .line-card-overlay { transform: scaleX(1); }

/* ── MANIFESTO ── */
.manifesto-section {
  padding: 140px 40px;
  background: var(--off-white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.manifesto-section::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}

.manifesto-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: clamp(80px, 15vw, 200px);
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(0,0,0,0.04);
  text-transform: uppercase;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}

.manifesto-content { position: relative; z-index: 1; }

.manifesto-bird {
  width: 80px;
  margin: 0 auto 40px;
  display: block;
  opacity: 0.7;
}

.manifesto-quote {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 300;
  font-style: italic;
  color: var(--black);
  line-height: 1.4;
  letter-spacing: 0.03em;
  max-width: 800px;
  margin: 0 auto 30px;
}

.manifesto-slogan {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold-dark);
}

.manifesto-divider {
  width: 60px;
  height: 1px;
  background: var(--gold-dark);
  margin: 24px auto 0;
}

/* ── COLLECTIONS SECTION ── */
.collections-section {
  padding: 120px 60px;
  background: var(--black);
}

/* Brave Products */
.brave-section {
  margin-bottom: 120px;
}

.grace-section { }

.collection-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 50px;
  flex-wrap: wrap;
  gap: 20px;
}

.collection-line-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.collection-line-badge img {
  width: 32px;
  height: auto;
}

.brave-section .collection-line-badge img {
  filter: brightness(1.4);
  opacity: 0.85;
}

.grace-section .collection-line-badge img {
  filter: drop-shadow(0 0 6px rgba(201,168,76,0.5));
}

.collection-line-label {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.4em;
  text-transform: uppercase;
}

.brave-section .collection-line-label { color: var(--silver); }
.grace-section .collection-line-label { color: var(--gold); }

.collection-title {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
}

.collection-view-all {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
}

.brave-section .collection-view-all { color: var(--silver); }
.grace-section .collection-view-all { color: var(--gold); }
.collection-view-all:hover { gap: 16px; }

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.product-card {
  position: relative;
  cursor: pointer;
  group: true;
}

.product-img-wrap {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: #141414;
  margin-bottom: 16px;
}

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

  position: relative;
  z-index: 2;
}

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

.product-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 5px 12px;
  z-index: 2;
}

.badge-new { background: var(--gold); color: var(--black); }
.badge-drop { background: var(--black); color: var(--white); border: 1px solid rgba(255,255,255,0.3); }

.product-quick-add {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;

 z-index: 5; 
  background: var(--gold);
  color: var(--black);
  padding: 14px;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-align: center;
  transform: translateY(100%);
  transition: transform var(--transition);
  cursor: pointer;
  border: none;
}

.product-card:hover .product-quick-add {
  transform: translateY(0);
}

.product-quick-add.is-disabled {
  background: rgba(192, 192, 192, 0.88);
  color: var(--black);
  cursor: default;
  pointer-events: none;
  transform: translateY(0);
}

.product-info { padding: 0 4px; }

.product-name {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--white);
  margin-bottom: 6px;
  line-height: 1.4;
}

.product-line-tag {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.brave-tag { color: var(--silver); }
.grace-tag { color: var(--gold); }

.product-price {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
}

.product-price .old {
  text-decoration: line-through;
  color: rgba(255,255,255,0.35);
  margin-right: 8px;
  font-weight: 400;
}

.product-colors {
  display: flex;
  gap: 6px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.color-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  cursor: pointer;
  transition: transform var(--transition);
}

.color-dot:hover { transform: scale(1.3); }

/* ── FEATURES / DIFERENCIAIS ── */
.features-section {
  padding: 100px 60px;
  background: #0d0d0d;
  position: relative;
}

.features-section::before, .features-section::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201,168,76,0.3), transparent);
}

.features-section::before { top: 0; }
.features-section::after { bottom: 0; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.feature-item { padding: 20px; }

.feature-icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold);
  font-size: 22px;
  transition: var(--transition);
}

.feature-item:hover .feature-icon {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

.feature-title {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 12px;
}

.feature-desc {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 300;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  letter-spacing: 0.03em;
}

/* ── ABOUT SECTION ── */
.about-section {
  padding: 140px 60px;
  background: var(--black);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 100px;
  max-width: 1300px;
  margin: 0 auto;
}

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

.about-ring {
  position: absolute;
  width: 340px;
  height: 340px;
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 50%;
  animation: rotate-slow 20s linear infinite;
}

.about-ring-2 {
  position: absolute;
  width: 280px;
  height: 280px;
  border: 1px dashed rgba(201,168,76,0.1);
  border-radius: 50%;
  animation: rotate-slow 15s linear infinite reverse;
}

@keyframes rotate-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.about-symbol {
  width: 320px;
  height: auto;
  position: relative;
  z-index: 2;
  opacity: 1;
  filter: invert(1) brightness(1.2);
  left: 0;
}
.about-text .section-tag { justify-content: flex-start; }
.about-text .section-tag::before { display: none; }

.about-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.5vw, 50px);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 30px;
}

.about-title .gold { color: var(--gold); }

.about-body {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  line-height: 1.9;
  letter-spacing: 0.03em;
  margin-bottom: 20px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin: 40px 0;
  padding: 30px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.stat-number {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 300;
  color: var(--gold);
  letter-spacing: 0.05em;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

/* ── NEWSLETTER ── */
.newsletter-section {
  padding: 100px 40px;
  background: #0a0a0a;
  text-align: center;
  position: relative;
}

.newsletter-inner {
  max-width: 600px;
  margin: 0 auto;
}

.newsletter-bird {
  width: 60px;
  margin: 0 auto 30px;
  display: block;
  opacity: 0.6;
}

.newsletter-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 14px;
}

.newsletter-desc {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 300;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.06em;
  line-height: 1.7;
  margin-bottom: 40px;
}

.newsletter-form {
  display: flex;
  gap: 0;
  max-width: 480px;
  margin: 0 auto;
}

.newsletter-form input {
  flex: 1;
  padding: 16px 20px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-right: none;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.05em;
  outline: none;
  transition: border-color var(--transition);
}

.newsletter-form input::placeholder { color: rgba(255,255,255,0.3); }
.newsletter-form input:focus { border-color: var(--gold); }

.newsletter-form button {
  background: var(--gold);
  color: var(--black);
  border: none;
  padding: 16px 28px;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  transition: var(--transition);
}

.newsletter-form button:hover { background: var(--gold-light); }

/* ── FOOTER ── */
footer {
  background: #060606;
  border-top: 1px solid rgba(201,168,76,0.15);
  padding: 80px 60px 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand { }

.footer-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  text-decoration: none;
}

.footer-logo img {
  width: 36px;
  height: auto;
  filter: invert(1) brightness(2);
}

.footer-logo-text {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--white);
  text-transform: uppercase;
}

.footer-tagline {
  font-family: var(--font-display);
  font-size: 15px;
  font-style: italic;
  color: rgba(255,255,255,0.4);
  margin-bottom: 28px;
  letter-spacing: 0.05em;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 15px;
  transition: var(--transition);
}

.social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 300;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-copy {
  font-family: var(--font-body);
  font-size: 11px;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.08em;
}

.footer-payments {
  display: flex;
  gap: 8px;
  align-items: center;
}

.payment-icon {
  padding: 4px 10px;
  border: 1px solid rgba(255,255,255,0.12);
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
}

.footer-lines-badge {
  display: flex;
  gap: 16px;
  align-items: center;
}

.footer-line-item {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-line-item .dot { width: 6px; height: 6px; border-radius: 50%; }
.footer-line-item.brave .dot { background: var(--silver); }
.footer-line-item.grace .dot { background: var(--gold); }
.footer-line-item.brave { color: var(--silver); }
.footer-line-item.grace { color: var(--gold); }

/* ── ANIMATIONS ── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-left.visible { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* ── LOADING SCREEN ── */
.loading-screen {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 30px;
  transition: opacity 0.6s ease;
}

.loading-screen.done { opacity: 0; pointer-events: none; }

.loading-logo {
  width: 80px;
  filter: invert(1) brightness(2);
  animation: pulse-logo 1.5s ease infinite;
}

@keyframes pulse-logo {
  0%, 100% { opacity: 0.4; transform: scale(0.95); }
  50% { opacity: 1; transform: scale(1.05); }
}

.loading-bar-wrap {
  width: 160px;
  height: 1px;
  background: rgba(255,255,255,0.1);
  position: relative;
  overflow: hidden;
}

.loading-bar {
  position: absolute;
  top: 0;
  left: -100%;
  height: 100%;
  width: 100%;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  animation: loading-sweep 1.2s ease infinite;
}

@keyframes loading-sweep {
  from { left: -100%; }
  to { left: 100%; }
}

.loading-text {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-section { grid-template-columns: 1fr; gap: 60px; text-align: center; }
  .about-text .section-tag { justify-content: center; }
  .about-text .section-tag::before { display: block; }
  .collections-section { padding: 80px 30px; }
}

@media (max-width: 768px) {
  .navbar { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }

  .lines-grid { grid-template-columns: 1fr; }
  .line-card { height: 520px; }
  .hero-title { letter-spacing: 0.08em; }

  .manifesto-section { padding: 80px 20px; }
  .newsletter-form { flex-direction: column; }
  .newsletter-form input { border-right: 1px solid rgba(255,255,255,0.15); border-bottom: none; }

  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .features-section { padding: 80px 20px; }
  .about-section { padding: 80px 20px; }
  .collections-section { padding: 80px 20px; }
}

@media (max-width: 480px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .hero-actions { flex-direction: column; align-items: center; }
  .about-stats { grid-template-columns: repeat(3, 1fr); gap: 16px; }
}
.dev-credit {
  width: 100%;
  text-align: center;
  margin-top: 35px;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

.dev-credit span {
  color: #c9a84c;
  font-weight: 600;
}

/* ── SIZING GUIDE ── */
.sizing-section {
  padding: 100px 60px;
  background: #0d0d0d;
  position: relative;
}

.sizing-section::before, .sizing-section::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201,168,76,0.3), transparent);
}

.sizing-section::before { top: 0; }
.sizing-section::after { bottom: 0; }

.sizing-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  margin-top: 60px;
}

.sizing-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(201, 168, 76, 0.15);
  padding: 40px;
  border-radius: 4px;
  transition: var(--transition);
}

.sizing-card:hover {
  border-color: rgba(201, 168, 76, 0.35);
  background: rgba(255, 255, 255, 0.04);
}

.sizing-title {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.sizing-subtitle {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
  margin-bottom: 30px;
}

.sizing-table-wrapper {
  overflow-x: auto;
}

.sizing-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-body);
  font-size: 11px;
  text-align: center;
}

.sizing-table thead {
  background: rgba(201, 168, 76, 0.08);
  border-bottom: 2px solid rgba(201, 168, 76, 0.2);
}

.sizing-table th {
  padding: 14px 8px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  border-right: 1px solid rgba(201, 168, 76, 0.1);
}

.sizing-table th:last-child {
  border-right: none;
}

.sizing-table tbody tr {
  border-bottom: 1px solid rgba(201, 168, 76, 0.1);
}

.sizing-table tbody tr:last-child {
  border-bottom: none;
}

.sizing-table td {
  padding: 12px 8px;
  color: rgba(255, 255, 255, 0.7);
  border-right: 1px solid rgba(201, 168, 76, 0.1);
}

.sizing-table td:last-child {
  border-right: none;
}

.sizing-table td.label {
  font-weight: 600;
  color: var(--white);
  text-align: left;
  background: rgba(201, 168, 76, 0.04);
}

.sizing-note {
  font-family: var(--font-body);
  font-size: 10px;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 12px;
  text-align: center;
  letter-spacing: 0.05em;
}
/* ══════════════════════════════════
   SIZING / TABELA DE MEDIDAS
══════════════════════════════════ */

.sizing-section {
  padding: 120px 40px;
  background: #050505;
}

.sizing-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.sizing-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(201,168,76,0.15);
  padding: 40px;
  border-radius: 18px;
  backdrop-filter: blur(4px);
  transition: 0.4s ease;
}

.sizing-card:hover {
  border-color: rgba(201,168,76,0.4);
  transform: translateY(-4px);
}

.sizing-title {
  font-size: 28px;
  color: var(--gold);
  margin-bottom: 20px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sizing-subtitle {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255,255,255,0.7);
  margin-bottom: 30px;
}

.sizing-table-wrapper {
  width: 100%;
  overflow-x: auto;
  display: flex;
  justify-content: center;
}

.sizing-table {
  width: 100%;
  border-collapse: collapse;
}

.sizing-table th {
  background: rgba(201,168,76,0.12);
  color: var(--gold);
  padding: 14px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.sizing-table td {
  padding: 14px;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.85);
  font-size: 13px;
}

.sizing-table td.label {
  color: var(--white);
  font-weight: 700;
  text-align: left;
}

.sizing-note {
  margin-top: 16px;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  text-align: center;
}

/* MOBILE */
@media (max-width: 980px) {

  .sizing-container {
    grid-template-columns: 1fr;
  }

  .sizing-card {
    padding: 28px;
  }

  .sizing-title {
    font-size: 22px;
  }

}

/* HERO MOBILE FIX */
@media (max-width: 768px) {

  .hero-title {
    font-size: 42px;
    line-height: 1.1;
    letter-spacing: 0.03em;
  }

  .top-line {
    display: flex;
    flex-direction: column;
    gap: 0px;
    white-space: normal;
  }

  .top-line .left,
  .top-line .right {
    display: block;
  }

  .top-line .amp {
    display: block;
    font-size: 0.7em;
    margin: -8px 0;
    left: 0;
    top: 0;
  }

  .hero-title .gold {
    gap: 10px;
  }

  .hero-title .gold::before,
  .hero-title .gold::after {
    width: 24px;
  }

}

/* MOBILE TABLE REFINEMENT */
@media (max-width: 768px) {

  .sizing-container {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .sizing-card {
    padding: 24px 16px;
    overflow: hidden;
  }

  .sizing-table-wrapper {
    width: 100%;
    overflow-x: auto;
    display: block;
  }

  .sizing-table {
    width: 100%;
    min-width: unset;
    table-layout: fixed;
  }

  .sizing-table th,
  .sizing-table td {
    padding: 10px 4px;
    font-size: 11px;
    word-break: break-word;
  }

  .sizing-card h3 {
    font-size: 22px;
    text-align: center;
  }

  .sizing-subtitle {
    text-align: center;
    font-size: 13px;
    line-height: 1.7;
  }

  .sizing-note {
    text-align: center;
    font-size: 11px;
  }

}

/* PREMIUM IMAGE VIEWER */

.zoomable-image {
  cursor: zoom-in;
  transition: transform 0.4s ease;
}

.zoomable-image:hover {
  transform: scale(1.02);
}

.image-modal {
  position: fixed;
  inset: 0;

  background: rgba(0,0,0,0.96);
  backdrop-filter: blur(10px);

  display: flex;
  justify-content: center;
  align-items: center;

  opacity: 0;
  visibility: hidden;

  transition:
    opacity 0.35s ease,
    visibility 0.35s ease;

  z-index: 999999;
}

.image-modal.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  width: auto;
  height: auto;

  max-width: 92vw;
  max-height: 92vh;

  object-fit: contain;

  border-radius: 18px;

  transform: scale(0.92);

  transition: transform 0.35s ease;

  box-shadow:
    0 0 80px rgba(201,168,76,0.18),
    0 0 180px rgba(201,168,76,0.08);
}

.image-modal.active .modal-content {
  transform: scale(1);
}

.close-modal {
  position: absolute;

  top: 24px;
  right: 30px;

  font-size: 46px;
  color: white;

  cursor: pointer;

  transition: 0.3s ease;

  z-index: 10;
}

.close-modal:hover {
  transform: scale(1.1);
  color: var(--gold);
}
.shield-link {
  color: var(--gold);
  text-decoration: none;
  transition: 0.3s ease;
}

.shield-link:hover {
  opacity: 0.8;
}

/* ======================================================
   HERO PREMIUM REFINEMENT — Aura Universe / Brave & Grace
   Objetivo: aproximar a primeira dobra da referência enviada
   mantendo partículas, animações e estrutura atual do site.
   ====================================================== */

.hero {
  min-height: 100svh;
  background: #050505;
}

.hero-bg {
  background:
    radial-gradient(ellipse 58% 46% at 50% 27%, rgba(232, 201, 106, 0.16) 0%, rgba(201, 168, 76, 0.075) 34%, rgba(0,0,0,0) 72%),
    radial-gradient(ellipse 90% 75% at 50% 48%, rgba(201, 168, 76, 0.055) 0%, rgba(0,0,0,0) 68%),
    linear-gradient(180deg, #030303 0%, #090806 45%, #020202 100%);
}

/* foco de luz superior, estilo cinematográfico */
.hero::before {
  content: '';
  position: absolute;
  top: -330px;
  left: 50%;
  transform: translateX(-50%);
  width: 760px;
  height: 760px;
  background: radial-gradient(
    circle,
    rgba(255, 226, 146, 0.28) 0%,
    rgba(201, 168, 76, 0.11) 28%,
    rgba(201, 168, 76, 0.035) 52%,
    transparent 76%
  );
  pointer-events: none;
  z-index: 1;
  filter: blur(32px);
}

/* linha sutil de luz no topo, como na referência */
.hero::after {
  content: '';
  position: absolute;
  top: 92px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 231, 166, 0.22), rgba(255, 231, 166, 0.72), rgba(255, 231, 166, 0.22), transparent);
  box-shadow: 0 0 20px rgba(255, 222, 138, 0.30);
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  max-width: 980px;
  padding: 0 20px;
  transform: translateY(16px);
}

.hero-logo-img {
  width: clamp(164px, 20vw, 260px);
  margin-bottom: 34px;
  filter:
    invert(1)
    brightness(2.15)
    drop-shadow(0 0 18px rgba(255, 218, 129, 0.30))
    drop-shadow(0 18px 34px rgba(0,0,0,0.58));
}

.hero-title {
  font-family: var(--font-display);
  font-size: initial;
  font-weight: 300;
  letter-spacing: initial;
  line-height: 1;
  margin-bottom: 22px;
}

.top-line {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 14px;
  white-space: nowrap;
  margin-bottom: 16px;
  font-family: var(--font-body);
  font-size: clamp(10px, 1.55vw, 15px);
  font-weight: 400;
  letter-spacing: clamp(0.42em, 1vw, 0.72em);
  color: #d2b66e;
  text-transform: uppercase;
  text-shadow: 0 0 10px rgba(255, 218, 129, 0.12);
}

.top-line .left,
.top-line .right,
.top-line .amp {
  display: inline-block;
}

.top-line .amp {
  position: static;
  font-size: 1em;
  opacity: 0.95;
  margin: 0 2px;
  color: #f2d98a;
}

.hero-title .gold {
  display: block;
  position: relative;
  align-items: initial;
  gap: 0;
  width: 100%;
  font-size: clamp(96px, 18vw, 220px);
  line-height: 0.86;
  letter-spacing: clamp(0.08em, 1.5vw, 0.18em);
  font-weight: 300;
  text-transform: uppercase;
  color: transparent;
  background: linear-gradient(
    180deg,
    #fff8dc 0%,
    #f7dc8a 22%,
    #d6ad44 54%,
    #9f7826 72%,
    #fff1ad 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: none;
  filter:
    drop-shadow(0 0 9px rgba(255, 222, 138, 0.20))
    drop-shadow(0 18px 34px rgba(0,0,0,0.45));
}

/* remove linhas laterais antigas do AURA sem remover partículas */
.hero-title .gold::before,
.hero-title .gold::after {
  content: none !important;
  display: none !important;
}

/* brilho fino abaixo do AURA */
.hero-title::after {
  content: '';
  display: block;
  width: min(380px, 64vw);
  height: 1px;
  margin: 30px auto 0;
  background: linear-gradient(90deg, transparent, rgba(255, 224, 142, 0.20), rgba(255, 224, 142, 0.70), rgba(255, 224, 142, 0.20), transparent);
  box-shadow: 0 0 15px rgba(255, 222, 138, 0.20);
}

.hero-slogan {
  font-family: var(--font-display);
  font-size: clamp(22px, 4vw, 34px);
  font-style: italic;
  font-weight: 300;
  color: rgba(255,255,255,0.82);
  letter-spacing: clamp(0.13em, 0.7vw, 0.26em);
  margin-bottom: 54px;
  text-shadow: 0 0 12px rgba(255,255,255,0.08);
}

.hero-actions {
  gap: 22px;
}

/* botão principal da HERO no estilo da referência */
.hero .btn-primary {
  min-width: min(520px, 78vw);
  background: transparent;
  color: #ead083;
  border: 1px solid rgba(234, 208, 131, 0.72);
  padding: 20px 54px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.55em;
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.025),
    0 0 16px rgba(255, 218, 129, 0.08);
}

.hero .btn-primary::before {
  background: radial-gradient(circle at center, rgba(255, 224, 142, 0.22), transparent 58%);
  transform: scaleX(1);
  opacity: 0;
  transition: opacity var(--transition), transform var(--transition);
}

.hero .btn-primary::after {
  content: '';
  position: absolute;
  top: -1px;
  left: 50%;
  width: 82px;
  height: 1px;
  transform: translateX(-50%);
  background: #fff0ac;
  box-shadow: 0 0 16px rgba(255, 231, 166, 0.85);
  opacity: 0.85;
}

.hero .btn-primary:hover {
  transform: translateY(-2px);
  color: #fff0ac;
  border-color: rgba(255, 231, 166, 0.92);
  box-shadow:
    0 0 24px rgba(255, 218, 129, 0.18),
    inset 0 0 28px rgba(255, 218, 129, 0.045);
}

.hero .btn-primary:hover::before {
  opacity: 1;
}

.hero .btn-primary span {
  position: relative;
  z-index: 1;
}

.hero .btn-outline {
  background: transparent;
  border: none;
  color: rgba(234, 208, 131, 0.88);
  padding: 18px 30px 8px;
  font-size: 10px;
  letter-spacing: 0.55em;
  font-weight: 500;
  position: relative;
}

.hero .btn-outline::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 160px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(234,208,131,0.72), transparent);
}

.hero-scroll-hint {
  bottom: 28px;
}

.scroll-line {
  height: 76px;
  background: linear-gradient(to bottom, transparent, rgba(255, 224, 142, 0.85), transparent);
  box-shadow: 0 0 12px rgba(255, 224, 142, 0.30);
}

.scroll-text {
  color: rgba(234, 208, 131, 0.72);
  letter-spacing: 0.45em;
}

.hamburger span {
  background: #d8bd72;
}

@media (max-width: 768px) {
  .navbar {
    height: 82px;
    padding: 0 28px;
  }

  .nav-logo img {
    height: 54px;
  }

  .hamburger span {
    width: 34px;
    height: 2px;
    background: #d8bd72;
  }

  .hero {
    min-height: 100svh;
    height: 100svh;
  }

  .hero::after {
    top: 104px;
    left: 6%;
    right: 6%;
  }

  .hero-content {
    padding: 0 18px;
    transform: translateY(10px);
  }

  .hero-logo-img {
    width: clamp(184px, 46vw, 245px);
    margin-bottom: 34px;
  }

  .hero-title {
    font-size: initial;
    line-height: 1;
    letter-spacing: initial;
    margin-bottom: 18px;
  }

  .top-line {
    flex-direction: row;
    gap: 10px;
    white-space: nowrap;
    font-size: clamp(10px, 3.2vw, 13px);
    letter-spacing: clamp(0.34em, 1.65vw, 0.58em);
    margin-bottom: 18px;
  }

  .top-line .left,
  .top-line .right,
  .top-line .amp {
    display: inline-block;
  }

  .top-line .amp {
    display: inline-block;
    font-size: 1em;
    margin: 0;
    position: static;
  }

  .hero-title .gold {
    font-size: clamp(84px, 25vw, 150px);
    line-height: 0.86;
    letter-spacing: clamp(0.09em, 1.9vw, 0.16em);
    gap: 0;
  }

  .hero-title .gold::before,
  .hero-title .gold::after {
    content: none !important;
    display: none !important;
  }

  .hero-title::after {
    width: min(300px, 70vw);
    margin-top: 26px;
  }

  .hero-slogan {
    font-size: clamp(21px, 6vw, 30px);
    letter-spacing: 0.16em;
    margin-bottom: 48px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .hero .btn-primary {
    width: min(78vw, 520px);
    min-width: 0;
    padding: 19px 26px;
    letter-spacing: 0.42em;
  }

  .hero .btn-outline {
    letter-spacing: 0.44em;
  }

  .hero-scroll-hint {
    bottom: 18px;
  }

  .scroll-line {
    height: 64px;
  }
}

@media (max-width: 390px) {
  .top-line {
    font-size: 9px;
    letter-spacing: 0.30em;
    gap: 8px;
  }

  .hero-title .gold {
    font-size: clamp(76px, 24vw, 118px);
  }

  .hero-slogan {
    font-size: 20px;
  }

  .hero .btn-primary {
    letter-spacing: 0.30em;
  }
}

/* =========================================================
   AJUSTE FINAL — LOGO DOURADO HERO
   Remove o efeito branco/azulado antigo e deixa o logo
   integrado ao dourado premium da referência.
   ========================================================= */
.hero .hero-logo-img {
  width: clamp(128px, 10.5vw, 155px) !important;
  height: auto !important;
  margin: 0 auto 30px !important;
  display: block !important;
  opacity: 0;
  animation: fadeInDown 1s 0.5s forwards;
  position: relative;
  z-index: 3;
  filter:
    drop-shadow(0 0 8px rgba(255, 215, 120, 0.12))
    drop-shadow(0 12px 24px rgba(0, 0, 0, 0.46)) !important;
}

/* Mantém o brilho do fundo, mas sem estourar o logo */
.hero::before {
  background: radial-gradient(
    circle,
    rgba(201,168,76,0.18) 0%,
    rgba(201,168,76,0.08) 28%,
    rgba(201,168,76,0.025) 50%,
    transparent 76%
  ) !important;
  filter: blur(34px) !important;
}

/* Garante que o AURA continue como protagonista */
.hero-title .gold {
  display: block !important;
  font-size: clamp(96px, 18vw, 210px) !important;
  line-height: 0.88 !important;
  letter-spacing: clamp(0.08em, 1.2vw, 0.16em) !important;
  font-weight: 300 !important;
  text-transform: uppercase !important;
  background:
    linear-gradient(
      to bottom,
      #fff8dc 0%,
      #f7d774 24%,
      #d4af37 55%,
      #fff2b3 100%
    ) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  filter:
    drop-shadow(0 0 10px rgba(255,215,120,0.16))
    drop-shadow(0 14px 28px rgba(0,0,0,0.52)) !important;
}

.hero-title .gold::before,
.hero-title .gold::after {
  content: none !important;
  display: none !important;
}

.top-line {
  font-size: clamp(12px, 1.15vw, 15px) !important;
  letter-spacing: clamp(0.42em, 0.78vw, 0.70em) !important;
  gap: 12px !important;
  color: #d7bd72 !important;
  font-weight: 400 !important;
}

.top-line .amp {
  position: static !important;
  left: auto !important;
  top: auto !important;
  font-size: 0.95em !important;
  opacity: 0.9 !important;
}

/* Desktop: baixa um pouco o bloco para equilibrar com o menu */
.hero-content {
  transform: translateY(10px);
}

/* Mobile first: logo menor, sem neon, mais próximo da referência */
@media (max-width: 768px) {
  .hero .hero-logo-img {
    width: clamp(128px, 33vw, 165px) !important;
    margin-bottom: 30px !important;
    filter:
      drop-shadow(0 0 7px rgba(255, 215, 120, 0.10))
      drop-shadow(0 10px 22px rgba(0, 0, 0, 0.46)) !important;
  }

  .hero-content {
    transform: translateY(4px);
  }

  .top-line {
    font-size: clamp(10px, 3vw, 13px) !important;
    letter-spacing: clamp(0.30em, 1.35vw, 0.52em) !important;
    margin-bottom: 16px !important;
  }

  .hero-title .gold {
    font-size: clamp(82px, 24vw, 140px) !important;
    letter-spacing: clamp(0.07em, 1.45vw, 0.13em) !important;
  }

  .hero-slogan {
    margin-bottom: 44px !important;
  }
}

@media (max-width: 390px) {
  .hero .hero-logo-img {
    width: clamp(112px, 32vw, 138px) !important;
    margin-bottom: 24px !important;
  }

  .hero-title .gold {
    font-size: clamp(74px, 22vw, 112px) !important;
  }
}



/* === SHIELD T.I — AJUSTE HERO METÁLICO v18.3 ===
   Ajuste solicitado:
   1) “Nossa História” abaixo de “Explorar Linhas”
   2) Efeito metálico nas escritas Brave & Grace e AURA
   Sem alterar tamanhos principais da hero.
==================================================== */

.hero-actions {
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.hero-actions .btn-primary,
.hero-actions .btn-outline {
  min-width: 230px;
  text-align: center;
}

.top-line .left,
.top-line .right,
.top-line .amp {
  background:
    linear-gradient(
      115deg,
      #8f6f22 0%,
      #caa64a 22%,
      #fff2b3 42%,
      #d4af37 58%,
      #7c5f1f 78%,
      #f6d77a 100%
    );
  background-size: 220% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow:
    0 0 8px rgba(255, 215, 120, 0.12),
    0 0 18px rgba(201, 168, 76, 0.08);
  filter: drop-shadow(0 0 6px rgba(255, 215, 120, 0.08));
  animation: metallicTextSweep 7s ease-in-out infinite;
}

.hero-title .gold {
  background:
    linear-gradient(
      115deg,
      #7c5f1f 0%,
      #c99b2e 18%,
      #fff4bf 36%,
      #d4af37 52%,
      #8a6820 70%,
      #f8dc82 100%
    );
  background-size: 240% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow:
    0 0 10px rgba(255, 215, 120, 0.16),
    0 0 22px rgba(201, 168, 76, 0.10),
    0 2px 8px rgba(0, 0, 0, 0.45);
  filter: drop-shadow(0 0 10px rgba(255, 215, 120, 0.10));
  animation: metallicTextSweep 8s ease-in-out infinite;
}

.hero-title .gold::before,
.hero-title .gold::after {
  background: linear-gradient(
    to right,
    transparent,
    rgba(255, 230, 160, 0.92),
    rgba(201, 168, 76, 0.45),
    transparent
  );
  box-shadow: 0 0 12px rgba(255, 215, 120, 0.18);
}

.hero-title .gold::after {
  background: linear-gradient(
    to left,
    transparent,
    rgba(255, 230, 160, 0.92),
    rgba(201, 168, 76, 0.45),
    transparent
  );
}

@keyframes metallicTextSweep {
  0%, 100% {
    background-position: 0% center;
  }
  50% {
    background-position: 100% center;
  }
}

/* === SHIELD T.I — AJUSTES MOBILE HERO v18.5 ===
   1) Esconde o texto BRAVE & GRACE branco do menu apenas no mobile
   2) Aumenta suavemente o monograma dourado do hero no mobile
   3) Diminui o slogan Built from within no mobile
==================================================== */
@media (max-width: 768px) {
  .navbar .nav-logo-text,
  .navbar .nav-logo-name {
    display: none !important;
  }

  .hero .hero-logo-img {
    width: clamp(148px, 38vw, 185px) !important;
    margin-bottom: 28px !important;
  }

  .hero-slogan {
    font-size: clamp(17px, 4.8vw, 22px) !important;
    letter-spacing: 0.14em !important;
    margin-bottom: 44px !important;
  }
}

@media (max-width: 390px) {
  .hero .hero-logo-img {
    width: clamp(130px, 37vw, 152px) !important;
    margin-bottom: 24px !important;
  }

  .hero-slogan {
    font-size: 17px !important;
  }
}

/* =========================================================
   SHIELD T.I — HERO AURA CINEMATOGRÁFICO + PARTÍCULAS CENTRAIS v18.7
   Ajuste aplicado nesta base: fundo hero em WEBP + partículas douradas
   subindo apenas da luz central, sem espalhar pela tela inteira.
   ========================================================= */
.hero {
  min-height: 100svh !important;
  height: 100svh !important;
  overflow: hidden !important;
  isolation: isolate;
  background: #020201 !important;
}

.hero-bg {
  position: absolute !important;
  inset: 0 !important;
  background-image:
    linear-gradient(90deg, rgba(0,0,0,.78) 0%, rgba(0,0,0,.34) 22%, rgba(0,0,0,.10) 50%, rgba(0,0,0,.34) 78%, rgba(0,0,0,.78) 100%),
    linear-gradient(180deg, rgba(0,0,0,.45) 0%, rgba(0,0,0,.10) 36%, rgba(0,0,0,.66) 100%),
    url('assets/aura-hero-bg.webp') !important;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  transform: scale(1.015);
  filter: saturate(1.06) contrast(1.04) brightness(.92);
  z-index: 0 !important;
}

/* Luz vertical central — acompanha o caminho da imagem sem espalhar a tela toda */
.hero::before {
  content: '' !important;
  position: absolute !important;
  left: 50% !important;
  top: 0 !important;
  bottom: 0 !important;
  width: min(22vw, 330px) !important;
  height: auto !important;
  transform: translateX(-50%) !important;
  background:
    linear-gradient(180deg,
      rgba(255, 220, 128, .34) 0%,
      rgba(255, 205, 95, .12) 34%,
      rgba(255, 186, 58, .18) 74%,
      rgba(255, 218, 128, .46) 100%) !important;
  filter: blur(24px) !important;
  opacity: .58 !important;
  mix-blend-mode: screen;
  pointer-events: none !important;
  z-index: 1 !important;
}

/* Vignette premium para valorizar textos e laterais */
.hero::after {
  content: '' !important;
  position: absolute !important;
  inset: 0 !important;
  background:
    radial-gradient(ellipse at center, transparent 0%, transparent 34%, rgba(0,0,0,.48) 78%, rgba(0,0,0,.88) 100%),
    linear-gradient(180deg, rgba(0,0,0,.56) 0%, transparent 22%, rgba(0,0,0,.50) 100%) !important;
  pointer-events: none !important;
  z-index: 1 !important;
}

.hero-content {
  z-index: 4 !important;
  max-width: 980px !important;
  transform: translateY(12px);
}

/* Contêiner estreito: as bolinhas só nascem do eixo da luz */
.hero-particles {
  position: absolute !important;
  left: 50% !important;
  bottom: 0 !important;
  width: min(22vw, 280px) !important;
  height: 74vh !important;
  transform: translateX(-50%) !important;
  overflow: visible !important;
  pointer-events: none !important;
  z-index: 3 !important;
  opacity: .95;
  mix-blend-mode: screen;
}

.particle {
  position: absolute !important;
  border-radius: 999px !important;
  background: radial-gradient(circle, #fff5c3 0%, #ffd36c 34%, rgba(201,168,76,.22) 68%, transparent 100%) !important;
  box-shadow:
    0 0 8px rgba(255, 224, 142, .80),
    0 0 18px rgba(201, 168, 76, .38) !important;
  opacity: 0;
  filter: blur(.15px);
  animation: auraCentralParticle var(--duration, 10s) var(--delay, 0s) infinite ease-out !important;
}

@keyframes auraCentralParticle {
  0% {
    transform: translate3d(0, 0, 0) scale(var(--start-scale, .35));
    opacity: 0;
  }
  12% { opacity: .86; }
  48% { opacity: .42; }
  100% {
    transform: translate3d(var(--drift, 0px), calc(-1 * var(--rise, 70vh)), 0) scale(var(--end-scale, 1));
    opacity: 0;
  }
}

.hero .btn-primary span::after {
  content: ' →';
  letter-spacing: .1em;
}

@media (max-width: 900px) {
  .hero-bg {
    background-position: center center !important;
  }

  .hero-particles {
    width: 150px !important;
    height: 68vh !important;
  }

  .hero::before {
    width: 155px !important;
    filter: blur(20px) !important;
    opacity: .50 !important;
  }

  .hero-content {
    transform: translateY(22px) !important;
  }
}

@media (max-width: 520px) {
  .hero-bg {
    background-size: auto 100% !important;
    background-position: center center !important;
    filter: saturate(1.04) contrast(1.03) brightness(.82);
  }

  .hero::after {
    background:
      radial-gradient(ellipse at center, rgba(0,0,0,.10) 0%, rgba(0,0,0,.46) 58%, rgba(0,0,0,.86) 100%),
      linear-gradient(180deg, rgba(0,0,0,.72) 0%, transparent 28%, rgba(0,0,0,.64) 100%) !important;
  }

  .hero-particles {
    width: 118px !important;
    height: 62vh !important;
  }
}

/* ============================================
   AURA SOCIAL SECTION — INSTAGRAM / YOUTUBE
   ============================================ */
.aura-social-section {
  position: relative;
  overflow: hidden;
  padding: 120px 40px;
  background:
    radial-gradient(circle at 18% 22%, rgba(201, 168, 76, 0.14), transparent 28%),
    radial-gradient(circle at 84% 72%, rgba(255, 255, 255, 0.07), transparent 30%),
    linear-gradient(135deg, #070707 0%, #111111 48%, #050505 100%);
  border-top: 1px solid rgba(201, 168, 76, 0.12);
  border-bottom: 1px solid rgba(201, 168, 76, 0.12);
}

.aura-social-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201, 168, 76, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 168, 76, 0.04) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: radial-gradient(circle at center, rgba(0,0,0,0.9), transparent 72%);
  pointer-events: none;
}

.aura-social-orb {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 999px;
  filter: blur(50px);
  opacity: 0.18;
  pointer-events: none;
}

.aura-social-orb.orb-left {
  top: 90px;
  left: -110px;
  background: var(--gold);
}

.aura-social-orb.orb-right {
  right: -130px;
  bottom: 60px;
  background: var(--silver);
}

.aura-social-container {
  position: relative;
  z-index: 2;
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: center;
}

.aura-social-title {
  margin-top: 18px;
  margin-bottom: 24px;
  font-size: clamp(3rem, 6vw, 6.2rem);
  line-height: 0.9;
  color: var(--white);
}

.aura-social-title span {
  color: var(--gold);
  font-style: italic;
}

.aura-social-text {
  max-width: 540px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 15px;
  line-height: 1.9;
  letter-spacing: 0.03em;
}

.aura-social-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 36px;
}

.aura-social-main-btn,
.aura-social-ghost-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition), background var(--transition);
}

.aura-social-main-btn {
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
  color: var(--black);
  box-shadow: 0 18px 50px rgba(201, 168, 76, 0.18);
}

.aura-social-ghost-btn {
  border: 1px solid rgba(201, 168, 76, 0.45);
  color: var(--gold);
  background: rgba(255, 255, 255, 0.03);
}

.aura-youtube-btn {
  border-color: rgba(255, 255, 255, 0.18);
}

.aura-social-main-btn:hover,
.aura-social-ghost-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 65px rgba(201, 168, 76, 0.22);
}

.aura-social-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.aura-social-card {
  min-height: 315px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 22px;
  border: 1px solid rgba(201, 168, 76, 0.20);
  border-radius: 28px;
  color: var(--white);
  text-decoration: none;
  background: #111;
  isolation: isolate;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.aura-social-card:nth-child(even) {
  transform: translateY(34px);
}

.aura-social-card:hover {
  transform: translateY(-8px);
  border-color: rgba(201, 168, 76, 0.70);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.42);
}

.aura-social-card:nth-child(even):hover {
  transform: translateY(24px);
}

.aura-social-image {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
  transition: transform 0.8s ease, filter 0.8s ease;
}

.aura-social-card:hover .aura-social-image {
  transform: scale(1.09);
  filter: saturate(1.05) contrast(1.06);
}

.aura-social-video {
  background: #050505;
}

.aura-social-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
  transition: transform 0.8s ease, filter 0.8s ease;
}

.aura-social-card:hover .aura-social-video video {
  transform: scale(1.09);
  filter: saturate(1.05) contrast(1.06);
}

.card-reels .aura-social-image { background-image: url('assets/aura-hero-bg.webp'); }
.card-youtube-channel .aura-social-image { background-image: url('assets/manifesto.jpg'); }
.card-community .aura-social-image { background-image: url('assets/armor-collection-comunidade.webp'); background-position: center top; }

.aura-social-card::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.08) 0%, rgba(0,0,0,0.48) 42%, rgba(0,0,0,0.91) 100%),
    radial-gradient(circle at top right, rgba(201, 168, 76, 0.22), transparent 40%);
  pointer-events: none;
}

.aura-social-card::after {
  content: '\f16d';
  position: absolute;
  top: 20px;
  right: 22px;
  z-index: 4;
  font-family: 'Font Awesome 6 Brands';
  font-size: 22px;
  color: rgba(255, 255, 255, 0.75);
  pointer-events: none;
}

.card-youtube-short::after,
.card-youtube-channel::after {
  content: '\f167';
  color: rgba(255, 255, 255, 0.86);
}

.aura-social-content {
  position: relative;
  z-index: 3;
}

.aura-social-content span {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--gold-light);
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.aura-social-content h3 {
  margin-bottom: 10px;
  font-size: 28px;
  line-height: 1;
  color: var(--white);
}

.aura-social-content p {
  color: rgba(255, 255, 255, 0.70);
  font-size: 13px;
  line-height: 1.6;
}

.aura-card-cta {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding: 12px 15px;
  border-radius: 999px;
  border: 1px solid rgba(201, 168, 76, 0.38);
  color: var(--gold-light);
  background: rgba(0, 0, 0, 0.24);
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: var(--transition);
}

.aura-card-cta:hover {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.10);
  transform: translateY(-2px);
}

.aura-video-card {
  min-height: 560px;
  padding: 0;
  align-items: stretch;
  flex-direction: column;
}

.aura-video-card::before {
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.04) 0%, rgba(0,0,0,0.26) 48%, rgba(0,0,0,0.78) 100%),
    radial-gradient(circle at top right, rgba(201, 168, 76, 0.18), transparent 40%);
}

.aura-video-card .aura-social-content {
  z-index: 3;
  padding: 22px;
  background: linear-gradient(180deg, rgba(11,11,11,0.82), rgba(5,5,5,0.96));
  border-top: 1px solid rgba(201, 168, 76, 0.14);
}

.aura-native-video-wrap {
  position: relative;
  z-index: 2;
  flex: 1;
  min-height: 405px;
  overflow: hidden;
  background: #050505;
}

.aura-native-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  background: #050505;
}

.aura-video-hint {
  position: absolute;
  left: 16px;
  top: 16px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.16);
  color: rgba(255,255,255,0.78);
  background: rgba(0,0,0,0.46);
  backdrop-filter: blur(10px);
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  pointer-events: none;
}

@media (max-width: 1050px) {
  .aura-social-container {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .aura-social-copy {
    text-align: center;
  }

  .aura-social-text {
    margin: 0 auto;
  }

  .aura-social-actions {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .aura-social-section {
    padding: 82px 18px 96px;
  }

  .aura-social-grid {
    grid-template-columns: 1fr;
  }

  .aura-social-card,
  .aura-social-card:nth-child(even),
  .aura-social-card:hover,
  .aura-social-card:nth-child(even):hover {
    min-height: 285px;
    transform: none;
  }

  .aura-video-card,
  .aura-video-card:nth-child(even),
  .aura-video-card:hover,
  .aura-video-card:nth-child(even):hover {
    min-height: 540px;
  }

  .aura-native-video-wrap {
    min-height: 360px;
  }

  .aura-social-main-btn,
  .aura-social-ghost-btn {
    width: 100%;
    padding: 0 18px;
    letter-spacing: 0.11em;
    text-align: center;
  }
}

@media (max-width: 430px) {
  .aura-social-title {
    font-size: clamp(2.65rem, 17vw, 4.4rem);
  }

  .aura-social-content h3 {
    font-size: 25px;
  }
}



/* ─────────────────────────────────────────────
   PATCH v20 — Comunidade mobile alinhada
   Corrige eixo, largura dos cards e acabamento dos vídeos no celular.
───────────────────────────────────────────── */
@media (max-width: 768px) {
  .aura-social-section {
    padding: 78px 16px 88px;
    overflow: hidden;
  }

  .aura-social-section .section-tag {
    display: inline-flex;
    max-width: 100%;
  }

  .aura-social-container,
  .aura-social-copy,
  .aura-social-grid {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .aura-social-copy {
    padding: 0;
  }

  .aura-social-title {
    margin-top: 14px;
    margin-bottom: 18px;
    text-align: center;
  }

  .aura-social-text {
    max-width: 342px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    font-size: 13.5px;
    line-height: 1.75;
  }

  .aura-social-actions {
    width: min(100%, 342px);
    margin: 30px auto 0;
  }

  .aura-social-main-btn,
  .aura-social-ghost-btn {
    min-height: 50px;
    width: 100%;
    padding: 0 16px;
    border-radius: 18px;
    white-space: normal;
    line-height: 1.25;
  }

  .aura-social-grid {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 24px;
    margin: 0 auto;
  }

  .aura-social-card,
  .aura-social-card:nth-child(even),
  .aura-social-card:hover,
  .aura-social-card:nth-child(even):hover {
    width: min(100%, 342px);
    max-width: 342px;
    margin-left: auto;
    margin-right: auto;
    transform: none !important;
    border-radius: 24px;
  }

  .aura-video-card,
  .aura-video-card:nth-child(even),
  .aura-video-card:hover,
  .aura-video-card:nth-child(even):hover {
    min-height: 0;
    align-items: stretch;
  }

  .aura-native-video-wrap {
    flex: 0 0 auto;
    width: 100%;
    min-height: 0;
    aspect-ratio: 9 / 16;
    border-radius: 24px 24px 0 0;
    overflow: hidden;
  }

  .aura-native-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .aura-video-card .aura-social-content {
    padding: 18px;
  }

  .aura-social-content h3 {
    font-size: 24px;
  }

  .aura-social-content p {
    font-size: 12.5px;
  }

  .aura-card-cta {
    max-width: 100%;
    white-space: normal;
    line-height: 1.25;
  }

  .aura-video-hint {
    left: 12px;
    top: 12px;
    padding: 7px 9px;
    font-size: 9px;
    letter-spacing: 0.08em;
  }

  .reveal-left,
  .reveal-right {
    transform: translateY(28px);
  }

  .reveal-left.visible,
  .reveal-right.visible {
    transform: translateY(0);
  }
}

@media (max-width: 380px) {
  .aura-social-card,
  .aura-social-card:nth-child(even),
  .aura-social-actions {
    width: 100%;
    max-width: 100%;
  }

  .aura-social-section {
    padding-left: 14px;
    padding-right: 14px;
  }
}

/* ─────────────────────────────────────────────
   PATCH v21 — Título Comunidade mobile
   Evita corte do texto "Comunidade" em telas estreitas.
───────────────────────────────────────────── */
@media (max-width: 768px) {
  .aura-social-copy,
  .aura-social-container {
    overflow: visible;
  }

  .aura-social-title,
  #comunidade-title {
    width: 100%;
    max-width: 100%;
    display: block;
    overflow: visible;
    white-space: normal;
    word-break: keep-all;
    overflow-wrap: normal;
    text-align: center;
    font-size: clamp(2.35rem, 11.8vw, 3.25rem) !important;
    line-height: 1.02;
    letter-spacing: -0.035em;
    padding-left: 2px;
    padding-right: 2px;
  }
}

@media (max-width: 380px) {
  .aura-social-title,
  #comunidade-title {
    font-size: clamp(2.15rem, 11.2vw, 2.75rem) !important;
    letter-spacing: -0.045em;
  }
}
