/* ============================================================
   JOSEF BARBEARIA - CSS PREMIUM
   Identidade Visual: Preto | Dourado | Marrom | Bronze | Branco
   ============================================================ */

/* ===== CSS VARIABLES ===== */
:root {
  --gold: #C9A84C;
  --gold-light: #E8C97A;
  --gold-dark: #A07830;
  --gold-gradient: linear-gradient(135deg, #C9A84C 0%, #E8C97A 40%, #C9A84C 60%, #A07830 100%);
  --gold-gradient-h: linear-gradient(90deg, #A07830 0%, #C9A84C 40%, #E8C97A 60%, #C9A84C 80%, #A07830 100%);

  --black: #080808;
  --dark: #0E0E0E;
  --dark-2: #141414;
  --dark-3: #1A1A1A;
  --dark-4: #202020;
  --dark-card: #111111;
  --gray: #888888;
  --gray-light: #BBBBBB;
  --white: #FFFFFF;
  --white-soft: #F5F5F0;
  --brown: #3D2B1F;
  --bronze: #8B5E3C;

  --font-display: 'Cinzel', serif;
  --font-heading: 'Cormorant Garamond', 'Playfair Display', serif;
  --font-serif: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;

  --radius: 12px;
  --radius-lg: 20px;
  --radius-sm: 8px;
  --shadow: 0 8px 32px rgba(0,0,0,0.5);
  --shadow-gold: 0 4px 20px rgba(201,168,76,0.25);
  --shadow-hover: 0 16px 48px rgba(0,0,0,0.7);

  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);

  --nav-h: 80px;
}

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

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

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

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 100px 0; }

/* ===== UTILITY CLASSES ===== */
.gold { color: var(--gold); }
.gold-bg { background: var(--gold-gradient); }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5 { font-family: var(--font-heading); line-height: 1.2; }

/* ===== BUTTONS ===== */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--gold-gradient);
  color: var(--black);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--gold);
  letter-spacing: 0.5px;
  transition: var(--transition);
  box-shadow: var(--shadow-gold);
  cursor: pointer;
  white-space: nowrap;
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201,168,76,0.5);
  filter: brightness(1.1);
  color: var(--black);
}
.btn-gold.btn-lg { padding: 18px 36px; font-size: 1.05rem; border-radius: var(--radius); }
.btn-gold.btn-sm { padding: 10px 20px; font-size: 0.88rem; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: transparent;
  color: var(--gold);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--gold);
  letter-spacing: 0.5px;
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
}
.btn-outline:hover {
  background: rgba(201,168,76,0.1);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}
.btn-outline.btn-lg { padding: 18px 36px; font-size: 1.05rem; border-radius: var(--radius); }

/* ===== SECTION HEADER ===== */
.section-header { text-align: center; margin-bottom: 64px; }
.section-badge {
  display: inline-block;
  padding: 6px 18px;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 50px;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--white);
}
.section-desc {
  font-size: 1rem;
  color: var(--gray-light);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}
.section-cta { text-align: center; margin-top: 48px; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(8,8,8,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(8,8,8,0.97);
  border-bottom-color: rgba(201,168,76,0.3);
  box-shadow: 0 4px 20px rgba(0,0,0,0.8);
}
.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.logo-img { width: 44px; height: 44px; object-fit: contain; }
.logo-text {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--white);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-link {
  padding: 8px 14px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--gray-light);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  letter-spacing: 0.3px;
}
.nav-link:hover, .nav-link.active { color: var(--gold); }
.nav-cta { margin-left: 8px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 1010;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 990;
  backdrop-filter: blur(4px);
}
.menu-overlay.active { display: block; }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: var(--nav-h);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.35) saturate(0.6);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(8,8,8,0.3) 0%,
    rgba(8,8,8,0.1) 30%,
    rgba(8,8,8,0.4) 70%,
    rgba(8,8,8,0.95) 100%
  );
}
/* Texture overlay */
.hero-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(201,168,76,0.08) 0%, transparent 70%);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 60px 24px;
  max-width: 800px;
  animation: heroFadeIn 1.2s ease-out;
}
@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-logo-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}
.hero-logo {
  width: 120px;
  height: 120px;
  object-fit: contain;
  filter: drop-shadow(0 0 30px rgba(201,168,76,0.5));
  animation: logoGlow 3s ease-in-out infinite alternate;
}
@keyframes logoGlow {
  from { filter: drop-shadow(0 0 20px rgba(201,168,76,0.3)); }
  to { filter: drop-shadow(0 0 40px rgba(201,168,76,0.7)); }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 20px;
  border: 1px solid rgba(201,168,76,0.4);
  border-radius: 50px;
  background: rgba(201,168,76,0.08);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.hero-badge i { font-size: 0.6rem; }

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
  text-shadow: 0 4px 20px rgba(0,0,0,0.8);
}
.hero-gold {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}
.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--gray-light);
  margin-bottom: 16px;
  font-style: italic;
  letter-spacing: 0.5px;
}
.hero-quote {
  font-family: var(--font-heading);
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  color: var(--gold);
  font-style: italic;
  margin-bottom: 40px;
  letter-spacing: 0.5px;
  opacity: 0.9;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  padding: 24px 32px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
}
.hero-stat { text-align: center; }
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}
.stat-label {
  font-size: 0.75rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.hero-divider {
  width: 1px;
  height: 40px;
  background: rgba(201,168,76,0.2);
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  animation: scrollBounce 2s ease-in-out infinite;
}
.hero-scroll-icon { font-size: 1rem; color: var(--gold); }
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ===== SERVICES ===== */
.services-preview { background: var(--dark-2); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.service-card {
  position: relative;
  background: var(--dark-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  border-color: rgba(201,168,76,0.35);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 0 1px rgba(201,168,76,0.2);
}
.service-card.featured {
  border-color: rgba(201,168,76,0.4);
  background: linear-gradient(135deg, var(--dark-card) 0%, #1a1508 100%);
}
.featured-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--gold-gradient);
  color: var(--black);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  z-index: 2;
}
.service-icon-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 24px 24px 0;
}
.service-icon {
  font-size: 2rem;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.service-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: var(--transition-slow);
}
.service-card:hover .service-img { transform: scale(1.05); }

.service-body { padding: 20px 24px 24px; flex: 1; display: flex; flex-direction: column; gap: 10px; }
.service-name {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
}
.service-desc { font-size: 0.88rem; color: var(--gray); line-height: 1.6; flex: 1; }
.service-price {
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* ===== ABOUT PREVIEW ===== */
.about-preview { background: var(--black); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-img-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
  border: 1px solid rgba(201,168,76,0.3);
  box-shadow: 0 12px 40px rgba(0,0,0,0.6);
  transition: var(--transition);
}
.about-img-frame::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: var(--radius-lg);
  background: var(--gold-gradient);
  z-index: -1;
  opacity: 0.4;
}
.about-img {
  border-radius: var(--radius-lg);
  width: 100%;
  height: 100%;
  max-height: 550px;
  object-fit: cover;
  aspect-ratio: 4/5;
  display: block;
}
.about-img-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--gold-gradient);
  color: var(--black);
  padding: 16px 20px;
  border-radius: var(--radius);
  font-size: 0.82rem;
  font-weight: 700;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  box-shadow: var(--shadow);
}
.about-img-badge i { font-size: 1.4rem; }
.about-content { display: flex; flex-direction: column; gap: 20px; }
.about-text { color: var(--gray-light); line-height: 1.8; font-size: 0.97rem; }

.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 8px 0;
}
.about-value {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--gray-light);
  font-weight: 500;
}
.about-value i { font-size: 1rem; flex-shrink: 0; }

/* ===== QUOTE BANNER ===== */
.quote-banner {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--brown) 0%, var(--dark-3) 50%, var(--brown) 100%);
  position: relative;
  overflow: hidden;
}
.quote-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold-gradient-h);
  opacity: 0.07;
}
.quote-banner::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold-gradient-h);
}
.quote-content {
  text-align: center;
  position: relative;
  z-index: 1;
}
.quote-icon {
  font-size: 2.5rem;
  color: var(--gold);
  opacity: 0.4;
  margin-bottom: 20px;
  display: block;
}
.quote-text {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-style: italic;
  color: var(--white);
  line-height: 1.4;
  max-width: 700px;
  margin: 0 auto 16px;
}
.quote-author {
  font-size: 0.85rem;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-style: normal;
  font-weight: 600;
}

/* ===== GALLERY PREVIEW ===== */
.gallery-preview { background: var(--dark-2); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 12px;
}
.gallery-large { grid-row: span 2; }
.gallery-wide { grid-column: span 2; }

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
}
.gallery-large { aspect-ratio: auto; }
.gallery-wide { aspect-ratio: 2; }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  transition: var(--transition);
  color: var(--gold);
  font-weight: 600;
  font-size: 0.88rem;
}
.gallery-overlay i { font-size: 1.5rem; }
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* ===== PRODUCTS PREVIEW ===== */
.products-preview { background: var(--black); }
.products-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.products-img { border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.products-info { display: flex; flex-direction: column; gap: 24px; }
.product-list { display: flex; flex-direction: column; gap: 14px; }
.product-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.97rem;
  color: var(--gray-light);
}
.product-item i { font-size: 1.1rem; flex-shrink: 0; }

/* ===== CTA SECTION ===== */
.cta-section { background: var(--dark-2); }
.cta-box {
  text-align: center;
  padding: 80px 40px;
  background: linear-gradient(135deg, var(--dark-card) 0%, #0d0a00 100%);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.cta-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold-gradient-h);
}
.cta-logo img { width: 90px; height: 90px; object-fit: contain; }
.cta-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
}
.cta-desc { color: var(--gray-light); max-width: 500px; font-size: 1rem; line-height: 1.7; }

/* ===== FOOTER ===== */
.footer { background: var(--dark-3); border-top: 1px solid rgba(201,168,76,0.15); }
.footer-top { padding: 72px 0 48px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
}
.footer-logo-img { width: 40px; height: 40px; object-fit: contain; }
.footer-tagline { color: var(--gray-light); font-size: 0.9rem; margin-bottom: 8px; }
.footer-quote { color: var(--gold); font-style: italic; font-size: 0.85rem; margin-bottom: 20px; }

.footer-socials { display: flex; gap: 10px; }
.social-link {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.2);
  color: var(--gray-light);
  font-size: 0.95rem;
  transition: var(--transition);
}
.social-link:hover {
  background: var(--gold-gradient);
  color: var(--black);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.footer-heading {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.88rem;
  color: var(--gray);
  transition: var(--transition);
}
.footer-links a:hover { color: var(--gold); padding-left: 4px; }

.footer-info { display: flex; flex-direction: column; gap: 12px; margin-bottom: 20px; }
.footer-info li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.86rem;
  color: var(--gray);
}
.footer-info li i { margin-top: 2px; flex-shrink: 0; }

.footer-bottom {
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-copy, .footer-made { font-size: 0.82rem; color: var(--gray); }

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: var(--white);
  padding: 14px 22px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.92rem;
  box-shadow: 0 6px 24px rgba(37,211,102,0.5);
  transition: var(--transition);
  border: 2px solid rgba(201,168,76,0.5);
  animation: waBounce 3s ease-in-out infinite;
}
.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 36px rgba(37,211,102,0.7);
  color: var(--white);
}
.whatsapp-icon { font-size: 1.5rem; }
.whatsapp-pulse {
  position: absolute;
  inset: -6px;
  border-radius: 50px;
  border: 2px solid #25D366;
  animation: pulse 2s ease-out infinite;
  opacity: 0;
}
@keyframes pulse {
  0% { opacity: 0.8; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.3); }
}
@keyframes waBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

/* ===== SCROLL TOP ===== */
.scroll-top {
  position: fixed;
  bottom: 30px;
  left: 30px;
  z-index: 999;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.4);
  color: var(--gold);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  opacity: 0;
  pointer-events: none;
}
.scroll-top.visible { opacity: 1; pointer-events: all; }
.scroll-top:hover { background: var(--gold-gradient); color: var(--black); transform: translateY(-2px); }

/* ===== PAGE HERO (sub-pages) ===== */
.page-hero {
  min-height: 45vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: var(--nav-h);
  position: relative;
  overflow: hidden;
  background: var(--dark-2);
  text-align: center;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold-gradient-h);
}
.page-hero-content { position: relative; z-index: 1; padding: 60px 24px; }
.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.page-hero-desc { font-size: 1rem; color: var(--gray-light); max-width: 500px; margin: 0 auto; }
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--gray);
  margin-bottom: 20px;
}
.breadcrumb a { color: var(--gold); }
.breadcrumb span { color: var(--gray); }

/* ===== TEAM CARDS ===== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}
.team-card {
  background: var(--dark-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-align: center;
  transition: var(--transition);
}
.team-card:hover {
  border-color: rgba(201,168,76,0.35);
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}
.team-img-wrap { position: relative; overflow: hidden; aspect-ratio: 1; }
.team-img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition-slow); }
.team-card:hover .team-img { transform: scale(1.05); }
.team-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 50%, rgba(0,0,0,0.9) 100%);
}
.team-body { padding: 24px; }
.team-name { font-family: var(--font-heading); font-size: 1.2rem; font-weight: 700; margin-bottom: 4px; }
.team-role { font-size: 0.82rem; color: var(--gold); letter-spacing: 1px; text-transform: uppercase; font-weight: 600; margin-bottom: 10px; }
.team-bio { font-size: 0.86rem; color: var(--gray); line-height: 1.6; }

/* ===== PRODUCTS (LOJA) ===== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}
.product-card {
  background: var(--dark-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}
.product-card:hover {
  border-color: rgba(201,168,76,0.35);
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.product-card-img {
  aspect-ratio: 1;
  overflow: hidden;
}
.product-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: var(--transition-slow);
}
.product-card:hover .product-card-img img { transform: scale(1.06); }
.product-card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; gap: 8px; }
.product-card-name { font-family: var(--font-heading); font-size: 1rem; font-weight: 700; }
.product-card-desc { font-size: 0.84rem; color: var(--gray); flex: 1; line-height: 1.5; }
.product-card-price { font-size: 1rem; color: var(--gold); font-weight: 700; }

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 24px; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--dark-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  transition: var(--transition);
}
.contact-item:hover { border-color: rgba(201,168,76,0.3); }
.contact-icon {
  width: 48px; height: 48px;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-item-title { font-weight: 600; font-size: 0.9rem; margin-bottom: 4px; color: var(--white); }
.contact-item-text { font-size: 0.88rem; color: var(--gray-light); }

.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(201,168,76,0.2);
  box-shadow: var(--shadow);
}
.map-wrap iframe { display: block; width: 100%; }

/* ===== GALLERY PAGE ===== */
.gallery-full {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}
.gallery-full .gallery-item { aspect-ratio: 1; }

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate { animation: fadeInUp 0.7s ease-out both; }
.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }
.animate-delay-4 { animation-delay: 0.4s; }

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== MODAL (Gallery) ===== */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.95);
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal.active { display: flex; }
.modal-img { max-width: 90vw; max-height: 90vh; border-radius: var(--radius); }
.modal-close {
  position: absolute;
  top: 20px; right: 20px;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}
.modal-close:hover { background: rgba(255,255,255,0.1); }

/* ===== GOLD DIVIDER ===== */
.gold-divider {
  width: 60px;
  height: 3px;
  background: var(--gold-gradient);
  margin: 16px auto;
  border-radius: 2px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-img-wrap { max-width: 500px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-brand { grid-column: span 2; }
  .products-showcase { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --nav-h: 70px; }
  .section { padding: 70px 0; }

  .hamburger { display: flex; }
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: min(320px, 85vw);
    height: 100vh;
    background: var(--dark-3);
    border-left: 1px solid rgba(201,168,76,0.2);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 32px 40px;
    gap: 4px;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    overflow-y: auto;
  }
  .nav-links.open { right: 0; }
  .nav-link { font-size: 1rem; padding: 12px 0; width: 100%; border-bottom: 1px solid rgba(255,255,255,0.05); }
  .nav-cta { margin-left: 0; margin-top: 16px; }

  .hero-title { font-size: 2.5rem; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-stats { gap: 20px; }
  .hero-divider { height: 30px; }

  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-large { grid-row: span 1; }
  .gallery-wide { grid-column: span 2; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-brand { grid-column: span 1; }
  .footer-bottom .container { flex-direction: column; text-align: center; }

  .contact-grid { grid-template-columns: 1fr; }
  .about-values { grid-template-columns: 1fr; }

  .whatsapp-float { bottom: 20px; right: 16px; padding: 12px 18px; }
  .scroll-top { bottom: 20px; left: 16px; }

  .cta-box { padding: 48px 24px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-logo { width: 90px; height: 90px; }
  .hero-title { font-size: 2rem; }
  .btn-gold.btn-lg, .btn-outline.btn-lg { padding: 14px 24px; font-size: 0.95rem; }
  .hero-stats { flex-direction: column; gap: 16px; }
  .hero-divider { width: 100%; height: 1px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-wide { grid-column: span 1; }
  .whatsapp-text { display: none; }
  .whatsapp-float { padding: 14px; border-radius: 50%; }
}

/* ============================================================
   IDENTIDADE CRISTA ELEGANTE — ATUALIZACOES
   Fe, Proposito, Excelencia, Honra e Gratidao
   ============================================================ */

/* ===== CORMORANT GARAMOND — Titulos Classicos e Nobles ===== */
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
  color: var(--white);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ===== HERO BADGE LEAF ===== */
.hero-badge-leaf {
  color: var(--gold);
  font-size: 0.65rem;
  opacity: 0.8;
}

/* ===== QUOTE BANNER — PREMIUM BLACK LEATHER BIBLE COVER (INLINE SVG FILTER) ===== */
.quote-banner {
  padding: 110px 0;
  background-color: #080808;
  position: relative;
  overflow: hidden;
  box-shadow: 
    inset 0 0 100px rgba(0, 0, 0, 0.95),
    0 10px 30px rgba(0, 0, 0, 0.5);
  border-top: 2px solid rgba(212, 175, 55, 0.25);
  border-bottom: 2px solid rgba(212, 175, 55, 0.25);
}

.quote-banner-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, #28241b 0%, #12100c 90%); /* Degradê sutil de iluminação sobre o couro */
  filter: url(#leather-filter);
  z-index: 1;
}

.quote-banner-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(0, 0, 0, 0) 10%, rgba(0, 0, 0, 0.8) 100%);
  z-index: 2;
  pointer-events: none;
}

/* Moldura dourada elegante da Bíblia */
.quote-banner::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 32px;
  right: 32px;
  bottom: 32px;
  border: 1px solid rgba(212, 175, 55, 0.35); /* Dourado sutil */
  pointer-events: none;
  z-index: 2;
  box-shadow: 
    inset 0 0 10px rgba(0, 0, 0, 0.7),
    0 0 1px rgba(255, 255, 255, 0.05);
}

/* Costura dourada fina e realista do couro */
.quote-banner::after {
  content: '';
  position: absolute;
  top: 24px;
  left: 24px;
  right: 24px;
  bottom: 24px;
  border: 1.5px dashed rgba(212, 175, 55, 0.25); /* Costura dourada suave */
  pointer-events: none;
  z-index: 2;
  box-shadow: 0 0.5px 0.5px rgba(0, 0, 0, 0.8); /* Relevo escuro da costura */
}

.quote-content {
  text-align: center;
  position: relative;
  z-index: 4;
  padding: 0 40px;
}

/* Marcador/Detalhe da Bíblia */
.quote-bible-badge {
  font-size: 1.6rem;
  color: #f3cd5d;
  margin-bottom: 16px;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.6));
  opacity: 0.9;
}

/* Título em destaque: Provérbios 16:3 */
.quote-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  font-weight: 700;
  text-transform: uppercase;
  color: #e5c060; /* Dourado metálico */
  letter-spacing: 5px;
  margin-bottom: 22px;
  display: block;
  text-shadow: 
    -1px -1px 0px rgba(0, 0, 0, 0.95), /* Profundidade de corte */
    1px 1px 0.5px rgba(255, 255, 255, 0.25), /* Luz de relevo dourado */
    0px 4px 8px rgba(0, 0, 0, 0.9);
}

/* Frase da citação */
.quote-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  font-style: italic;
  font-weight: 600;
  color: #fce7b2; /* Champagne dourado para alto contraste e beleza */
  line-height: 1.5;
  max-width: 850px;
  margin: 0 auto 28px;
  text-shadow: 
    -1px -1px 0px rgba(0, 0, 0, 0.95),
    1px 1px 0.5px rgba(255, 255, 255, 0.2),
    0px 5px 10px rgba(0, 0, 0, 0.85);
}

/* Ornamento dourado */
.quote-ornament-gold {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-top: 15px;
  opacity: 0.8;
}
.quote-ornament-gold .gold-line {
  height: 1px;
  width: 60px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.6), transparent);
}
.quote-ornament-gold .gold-diamond {
  color: #f3cd5d;
  font-size: 0.85rem;
  text-shadow: 0 1px 2px rgba(0,0,0,0.8);
}

/* Helper para quebras de linha em desktop */
@media (min-width: 768px) {
  .desktop-only {
    display: inline;
  }
}
@media (max-width: 767px) {
  .desktop-only {
    display: none;
  }
}

/* ===== PURPOSE SECTION ===== */
.purpose-section {
  background:
    radial-gradient(ellipse 80% 60% at 30% 50%, rgba(201,168,76,0.04) 0%, transparent 60%),
    var(--dark-2);
  position: relative;
  overflow: hidden;
}

/* Subtle watermark — ancient arch/columns drawn with CSS */
.purpose-watermark {
  position: absolute;
  top: 0; right: -60px;
  width: 480px;
  height: 100%;
  background-image:
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 48px,
      rgba(201,168,76,0.03) 48px,
      rgba(201,168,76,0.03) 50px
    ),
    repeating-linear-gradient(
      180deg,
      transparent,
      transparent 60px,
      rgba(201,168,76,0.02) 60px,
      rgba(201,168,76,0.02) 62px
    );
  clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 20% 100%);
  opacity: 0.6;
  pointer-events: none;
}
/* Arch shape on top-right */
.purpose-watermark::before {
  content: '';
  position: absolute;
  top: 8%;
  right: 60px;
  width: 180px;
  height: 220px;
  border: 1px solid rgba(201,168,76,0.06);
  border-radius: 50% 50% 0 0;
  pointer-events: none;
}
.purpose-watermark::after {
  content: '';
  position: absolute;
  top: 8%;
  right: 100px;
  width: 100px;
  height: 130px;
  border: 1px solid rgba(201,168,76,0.04);
  border-radius: 50% 50% 0 0;
  pointer-events: none;
}

.purpose-grid {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 60px;
  align-items: center;
}

.purpose-left {
  display: flex;
  align-items: center;
  justify-content: center;
}

.purpose-icon-wrap {
  position: relative;
  width: 160px;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.purpose-icon-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 50%;
  animation: purposeRingPulse 4s ease-in-out infinite;
}
.purpose-icon-wrap::after {
  content: '';
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(201,168,76,0.12);
  border-radius: 50%;
}
@keyframes purposeRingPulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.06); opacity: 1; }
}

.purpose-dove {
  font-size: 3.5rem;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 20px rgba(201,168,76,0.3));
  position: relative;
  z-index: 1;
}

.purpose-right {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.purpose-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 600;
  line-height: 1.2;
}

.purpose-text {
  font-size: 1.05rem;
  color: var(--gray-light);
  line-height: 1.85;
  font-family: var(--font-body);
  border-left: 2px solid rgba(201,168,76,0.3);
  padding-left: 20px;
  max-width: 620px;
}

.purpose-pillars {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin-top: 8px;
}

.purpose-pillar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(201,168,76,0.06);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 50px;
  transition: var(--transition);
}
.purpose-pillar:hover {
  background: rgba(201,168,76,0.12);
  border-color: rgba(201,168,76,0.35);
  transform: translateY(-2px);
}

.pillar-symbol {
  font-size: 0.5rem;
  color: var(--gold);
  opacity: 0.7;
}
.pillar-text {
  font-family: 'Cinzel', serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-light);
}

/* ===== FAITH TEXTURE — Sections with subtle stone/parchment ===== */
.services-preview {
  background:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 79px,
      rgba(201,168,76,0.015) 79px,
      rgba(201,168,76,0.015) 80px
    ),
    var(--dark-2);
}

.about-preview {
  background:
    radial-gradient(ellipse 60% 80% at 10% 50%, rgba(61,43,31,0.3) 0%, transparent 70%),
    var(--black);
}

/* ===== GOLDEN LIGHT GLOW — Strategic sections ===== */
.cta-section .cta-box::after {
  content: '';
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 200px;
  background: radial-gradient(ellipse, rgba(201,168,76,0.08) 0%, transparent 70%);
  pointer-events: none;
  border-radius: 50%;
}

/* ===== SECTION BADGE — slight upgrade ===== */
.section-badge {
  font-family: 'Cinzel', serif;
  letter-spacing: 2.5px;
}

/* ===== CORMORANT for page hero titles ===== */
.page-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: none;
  margin-bottom: 12px;
}

/* ===== HERO SUBTITLE REFINEMENT ===== */
.hero-subtitle {
  font-size: clamp(0.95rem, 1.8vw, 1.15rem);
  color: rgba(187,187,187,0.9);
  margin-bottom: 14px;
  font-style: normal;
  letter-spacing: 0.5px;
  font-family: var(--font-body);
}

.hero-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: var(--gold);
  font-style: italic;
  font-weight: 600;
  margin-bottom: 40px;
  letter-spacing: 0.3px;
  opacity: 0.95;
  text-shadow: 0 0 30px rgba(201,168,76,0.3);
}

/* ===== FOOTER QUOTE UPGRADE ===== */
.footer-quote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.95rem;
  color: var(--gold);
  opacity: 0.8;
  margin-bottom: 20px;
  letter-spacing: 0.3px;
}

/* ===== ABOUT IMG BADGE UPGRADE ===== */
.about-img-badge {
  font-family: 'Cinzel', serif;
  font-size: 0.75rem;
  letter-spacing: 1px;
}

/* ===== RESPONSIVE — Purpose Section ===== */
@media (max-width: 900px) {
  .purpose-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .purpose-left { display: none; }
}
@media (max-width: 600px) {
  .purpose-pillars { gap: 8px 12px; }
  .purpose-pillar { padding: 6px 12px; }
  .pillar-text { font-size: 0.72rem; }
  .quote-banner-rays { width: 300px; height: 300px; }
  .purpose-text { font-size: 0.95rem; }
}

@media print {
  .navbar, .whatsapp-float, .scroll-top, .hamburger { display: none; }
  body { background: white; color: black; }
}
