/* ==========================================================================
   Estilos Principais - Barba & Cia (Barbearia Premium)
   ========================================================================== */

/* Importar Fontes do Google */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600;1,700&display=swap');

/* Variáveis do Tema Premium */
:root {
  --color-black: #050505;
  --color-graphite: #1c1c1c;
  --color-white: #ffffff;
  --color-light-gray: #f5f5f5;
  --color-medium-gray: #9a9a9a;
  --color-gold: #c9a646;
  --color-gold-hover: #b08e35;
  --color-gold-glow: rgba(201, 166, 70, 0.3);
  --color-glass-bg: rgba(28, 28, 28, 0.75);
  --color-glass-border: rgba(201, 166, 70, 0.15);
  
  --font-title: 'Playfair Display', serif;
  --font-text: 'Montserrat', sans-serif;
  
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease-in-out;
  
  --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.5);
  --shadow-gold: 0 4px 20px rgba(201, 166, 70, 0.15);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

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

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

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

ul {
  list-style: none;
}

button, input, textarea, select {
  font-family: inherit;
  background: none;
  border: none;
  outline: none;
}

/* Utilitários */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.text-gold { color: var(--color-gold); }
.text-center { text-align: center; }

.section-padding {
  padding: 100px 0;
}

/* Títulos Premium */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-subtitle {
  font-family: var(--font-text);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--color-gold);
  margin-bottom: 15px;
  display: block;
}

.section-title {
  font-family: var(--font-title);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.2;
}

.section-title span {
  font-style: italic;
  font-weight: 400;
  color: var(--color-gold);
}

.divider-gold {
  width: 60px;
  height: 2px;
  background: var(--color-gold);
  margin: 20px auto 0;
  position: relative;
}

.divider-gold::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  background: var(--color-gold);
  border: 2px solid var(--color-black);
  rotate: 45deg;
}

/* Botões Premium */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 35px;
  font-family: var(--font-text);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 0;
  cursor: pointer;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--color-gold);
  color: var(--color-black);
  border: 1px solid var(--color-gold);
}

.btn-primary:hover {
  background-color: transparent;
  color: var(--color-gold);
  box-shadow: var(--shadow-gold);
}

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

.btn-secondary:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
}

/* Loading Screen */
#loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-black);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: opacity 0.5s ease;
}

.loader-logo {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 700;
  font-style: italic;
  color: #ffffff;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.loader-logo em {
  font-style: italic;
  color: var(--color-gold);
  padding: 0 3px;
}

.loader-bar {
  width: 150px;
  height: 2px;
  background-color: rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.loader-bar::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 40px;
  background-color: var(--color-gold);
  animation: loading-anim 1.5s infinite ease-in-out;
}

@keyframes loading-anim {
  0% { left: -40px; }
  100% { left: 150px; }
}

/* Header & Menu Sticky */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 22px 0;
  transition: var(--transition-smooth);
}

/* Linha dourada fina abaixo do header */
.header-gold-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(201,166,70,0.6) 30%, rgba(201,166,70,0.9) 50%, rgba(201,166,70,0.6) 70%, transparent 100%);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.main-header.sticky .header-gold-line {
  opacity: 1;
}

.main-header.sticky {
  padding: 14px 0;
  background-color: rgba(5,5,5,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(201,166,70,0.08);
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
}

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

.logo a {
  display: flex;
  align-items: center;
}

.logo-svg {
  height: 45px;
  width: auto;
}

.logo-icon-img {
  height: 45px;
  width: auto;
  margin-right: 12px;
  filter: brightness(0) invert(1);
  transition: var(--transition-smooth);
}

.logo a:hover .logo-icon-img {
  transform: scale(1.08);
  filter: invert(72%) sepia(47%) saturate(543%) hue-rotate(6deg) brightness(89%) contrast(88%);
}

.nav-menu {
  display: flex;
  gap: 20px;
}

.nav-link {
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-medium-gray);
  position: relative;
  padding: 5px 0;
  white-space: nowrap;
}

.nav-link:hover, .nav-link.active {
  color: var(--color-white);
}

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

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

.header-cta {
  display: flex;
  align-items: center;
  margin-left: 30px;
}

.header-cta .btn {
  padding: 10px 20px;
  font-size: 0.75rem;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.menu-toggle span {
  width: 28px;
  height: 2px;
  background-color: var(--color-white);
  transition: var(--transition-smooth);
}

/* ============================================================
   HERO SECTION — PREMIUM REBUILD
   ============================================================ */

.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 750px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* ---- Background Slideshow ---- */
.hero-bg-slideshow {
  position: absolute;
  inset: -5% -2%;
  z-index: 0;
  will-change: transform;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.6s cubic-bezier(0.4, 0, 0.2, 1), transform 8s ease;
  transform: scale(1.06);
  filter: blur(1.5px) brightness(0.65) saturate(0.9);
  will-change: opacity, transform;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1.0);
}

/* ---- Overlay System ---- */
.hero-overlay-base {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(4, 4, 4, 0.72);
}

.hero-overlay-vignette {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(ellipse at center, transparent 30%, rgba(0,0,0,0.65) 90%);
}

.hero-overlay-texture {
  position: absolute;
  inset: 0;
  z-index: 3;
  opacity: 0.04;
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(255,255,255,0.015) 2px,
      rgba(255,255,255,0.015) 4px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 2px,
      rgba(255,255,255,0.008) 2px,
      rgba(255,255,255,0.008) 4px
    );
  background-size: 4px 4px;
}

.hero-overlay-gradient {
  position: absolute;
  inset: 0;
  z-index: 4;
  background:
    linear-gradient(to right, rgba(0,0,0,0.55) 0%, transparent 45%, rgba(0,0,0,0.4) 100%),
    linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, transparent 30%, transparent 65%, rgba(0,0,0,0.8) 100%);
}

/* ---- Light Rays ---- */
.hero-light-ray {
  position: absolute;
  z-index: 5;
  pointer-events: none;
  opacity: 0;
  animation: rayPulse 6s ease-in-out infinite;
}

.hero-light-ray-1 {
  top: -20%;
  left: 60%;
  width: 180px;
  height: 120vh;
  background: linear-gradient(180deg, rgba(201,166,70,0.08) 0%, transparent 80%);
  transform: rotate(-15deg);
  animation-delay: 0s;
}

.hero-light-ray-2 {
  top: -20%;
  left: 75%;
  width: 100px;
  height: 100vh;
  background: linear-gradient(180deg, rgba(201,166,70,0.05) 0%, transparent 70%);
  transform: rotate(-8deg);
  animation-delay: 2.5s;
}

@keyframes rayPulse {
  0%, 100% { opacity: 0; }
  30%, 70%  { opacity: 1; }
}

/* ---- Particles ---- */
.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 6;
  pointer-events: none;
  overflow: hidden;
}

.hero-particle {
  position: absolute;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: rgba(201,166,70,0.7);
  animation: particleRise var(--p-dur, 8s) linear var(--p-delay, 0s) infinite;
  bottom: -10px;
  opacity: 0;
}

@keyframes particleRise {
  0%   { transform: translateY(0) translateX(0) scale(0); opacity: 0; }
  10%  { opacity: 0.8; }
  80%  { opacity: 0.4; }
  100% { transform: translateY(-100vh) translateX(var(--p-drift, 20px)) scale(0.5); opacity: 0; }
}

/* ---- Hero Container & Content ---- */
.hero-container {
  position: relative;
  z-index: 10;
  width: 100%;
}

.hero-content {
  max-width: 820px;
  text-align: center;
  margin: 0 auto;
  padding-top: 80px;
}

/* ---- Staggered Animations ---- */
.hero-anim {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1) var(--hero-delay, 0s),
              transform 0.9s cubic-bezier(0.16, 1, 0.3, 1) var(--hero-delay, 0s);
}

.hero-loaded .hero-anim {
  opacity: 1;
  transform: translateY(0);
}

/* ---- Badge ---- */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(201,166,70,0.08);
  border: 1px solid rgba(201,166,70,0.25);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 10px 22px;
  border-radius: 40px;
  margin-bottom: 28px;
}

.hero-badge-stars {
  color: var(--color-gold);
  font-size: 0.9rem;
  letter-spacing: 3px;
}

.hero-badge-sep {
  width: 1px;
  height: 18px;
  background: rgba(201,166,70,0.35);
}

.hero-badge-text {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.85);
}

/* ---- Separator Line ---- */
.hero-sep-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 24px;
}

.hero-sep-dot {
  width: 5px;
  height: 5px;
  background: var(--color-gold);
  border-radius: 50%;
  display: block;
  opacity: 0.7;
}

.hero-sep-track {
  display: block;
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,166,70,0.6), transparent);
}

/* ---- Title ---- */
.hero-title-wrap {
  position: relative;
  margin-bottom: 20px;
}

.hero-glow-aura {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 120px;
  background: radial-gradient(ellipse, rgba(201,166,70,0.12) 0%, transparent 70%);
  pointer-events: none;
  filter: blur(20px);
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3.2rem, 7vw, 6.5rem);
  font-weight: 700;
  font-style: italic;
  color: #ffffff;
  line-height: 1;
  letter-spacing: 1px;
  text-shadow:
    0 0 60px rgba(201,166,70,0.2),
    0 4px 30px rgba(0,0,0,0.8);
  margin-bottom: 16px;
}

.hero-title em {
  font-style: italic;
  color: var(--color-gold);
  text-shadow: 0 0 40px rgba(201,166,70,0.5);
  padding: 0 6px;
}

.hero-tagline {
  font-family: var(--font-text);
  font-size: clamp(0.65rem, 1.3vw, 0.85rem);
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--color-gold);
  opacity: 0.9;
}

/* ---- Subtitle ---- */
.hero-subtitle {
  font-size: clamp(0.95rem, 1.4vw, 1.1rem);
  color: rgba(200,200,200,0.82);
  font-weight: 300;
  line-height: 1.7;
  margin: 28px auto 44px;
  max-width: 600px;
}

.hero-subtitle strong {
  color: rgba(255,255,255,0.95);
  font-weight: 500;
}

.hero-br { display: inline; }

/* ---- Buttons ---- */
.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 17px 42px;
  font-family: var(--font-text);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  border-radius: 2px;
}

/* Botão Dourado Principal */
.hero-btn-primary {
  background: linear-gradient(135deg, #d4a832 0%, #c9a646 40%, #b8941e 100%);
  color: #0a0a0a;
  border: 1px solid rgba(212,168,50,0.5);
  box-shadow:
    0 4px 20px rgba(201,166,70,0.3),
    inset 0 1px 0 rgba(255,255,255,0.15);
}

.hero-btn-primary:hover {
  background: linear-gradient(135deg, #e8bb3d 0%, #d4a832 50%, #c9a646 100%);
  box-shadow:
    0 8px 35px rgba(201,166,70,0.5),
    0 2px 10px rgba(201,166,70,0.3),
    inset 0 1px 0 rgba(255,255,255,0.2);
  transform: translateY(-3px) scale(1.02);
  color: #000;
}

/* Shimmer no botão dourado */
.hero-btn-shimmer {
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
  transform: skewX(-20deg);
  transition: left 0.6s ease;
  pointer-events: none;
}

.hero-btn-primary:hover .hero-btn-shimmer {
  left: 140%;
}

/* Botão Glass */
.hero-btn-glass {
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.9);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}

.hero-btn-glass:hover {
  background: rgba(201,166,70,0.1);
  border-color: rgba(201,166,70,0.5);
  color: var(--color-gold);
  box-shadow:
    0 8px 25px rgba(0,0,0,0.3),
    0 0 20px rgba(201,166,70,0.1),
    inset 0 1px 0 rgba(201,166,70,0.1);
  transform: translateY(-3px);
}

.hero-btn-arrow {
  font-size: 1.1rem;
  transition: transform 0.3s ease;
  display: inline-block;
}

.hero-btn-glass:hover .hero-btn-arrow {
  transform: translateX(5px);
}

/* ---- Scroll Indicator ---- */
.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0;
  animation: fadeInScroll 1s ease 1.5s forwards;
}

@keyframes fadeInScroll {
  to { opacity: 1; }
}

.hero-scroll-label {
  font-size: 0.62rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  font-weight: 500;
}

.hero-scroll-track {
  width: 1.5px;
  height: 48px;
  background: rgba(255,255,255,0.12);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}

.hero-scroll-thumb {
  width: 100%;
  height: 40%;
  background: linear-gradient(180deg, var(--color-gold), transparent);
  border-radius: 2px;
  animation: scrollThumb 1.8s ease-in-out infinite;
}

@keyframes scrollThumb {
  0%   { transform: translateY(-100%); opacity: 0; }
  20%  { opacity: 1; }
  100% { transform: translateY(300%); opacity: 0; }
}

/* ---- Slideshow Dots ---- */
.hero-dots {
  position: absolute;
  right: 36px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  border: none;
  cursor: pointer;
  transition: all 0.4s ease;
  padding: 0;
}

.hero-dot.active {
  background: var(--color-gold);
  box-shadow: 0 0 8px rgba(201,166,70,0.6);
  transform: scale(1.4);
}

/* Seção Sobre */
.about-section {
  background-color: var(--color-graphite);
  position: relative;
}

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

.about-img-container {
  position: relative;
  padding: 20px;
}

.about-img-wrapper {
  position: relative;
  z-index: 2;
  border: 1px solid var(--color-glass-border);
  box-shadow: var(--shadow-soft);
}

.about-img-wrapper img {
  filter: grayscale(20%) brightness(85%);
  transition: var(--transition-smooth);
}

.about-img-wrapper:hover img {
  filter: grayscale(0%) brightness(100%);
}

.about-img-decorator {
  position: absolute;
  top: 0;
  left: 0;
  width: calc(100% - 40px);
  height: calc(100% - 40px);
  border: 2px solid var(--color-gold);
  z-index: 1;
  transform: translate(30px, 30px);
  pointer-events: none;
}

.about-badge {
  position: absolute;
  bottom: 0;
  left: 50px;
  background-color: var(--color-black);
  border: 1px solid var(--color-gold);
  padding: 20px 30px;
  z-index: 3;
  text-align: center;
  box-shadow: var(--shadow-soft);
}

.badge-years {
  font-family: var(--font-title);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--color-gold);
  line-height: 1;
  display: block;
}

.badge-text {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  color: var(--color-white);
}

.about-text {
  font-size: 1rem;
  color: var(--color-medium-gray);
  margin-bottom: 25px;
  font-weight: 300;
}

.about-text p {
  margin-bottom: 20px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 35px;
}

.about-feat-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

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

.about-feat-text {
  font-weight: 500;
  font-size: 0.85rem;
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Seção Serviços */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  background-color: var(--color-graphite);
  border: 1px solid rgba(255, 255, 255, 0.03);
  padding: 50px 40px;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 380px;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--color-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition-smooth);
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: var(--color-glass-border);
  box-shadow: var(--shadow-soft);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon-box {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.05);
  margin-bottom: 30px;
  color: var(--color-gold);
  font-size: 1.8rem;
  background-color: rgba(255, 255, 255, 0.01);
  transition: var(--transition-smooth);
}

.service-card:hover .service-icon-box {
  background-color: var(--color-gold);
  color: var(--color-black);
  border-color: var(--color-gold);
}

.service-title {
  font-family: var(--font-title);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 15px;
}

.service-desc {
  color: var(--color-medium-gray);
  font-size: 0.9rem;
  font-weight: 300;
  margin-bottom: 30px;
  flex-grow: 1;
}

.service-cta {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-gold);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.service-cta span {
  transition: var(--transition-fast);
}

.service-card:hover .service-cta span {
  transform: translateX(5px);
}


/* Diferenciais - Por que escolher */
.why-section {
  background-color: var(--color-graphite);
}

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

.why-card {
  text-align: center;
  padding: 40px 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.why-card:last-child {
  border-right: none;
}

.why-icon {
  font-size: 2.2rem;
  color: var(--color-gold);
  margin-bottom: 20px;
  display: block;
}

.why-card-title {
  font-family: var(--font-title);
  font-size: 1.3rem;
  color: var(--color-white);
  margin-bottom: 10px;
}

.why-card-desc {
  font-size: 0.85rem;
  color: var(--color-medium-gray);
  font-weight: 300;
}

/* Galeria Geral Interativa */
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 40px;
}

.filter-btn {
  padding: 8px 25px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-medium-gray);
  border: 1px solid rgba(255, 255, 255, 0.05);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.filter-btn.active, .filter-btn:hover {
  color: var(--color-black);
  background-color: var(--color-gold);
  border-color: var(--color-gold);
}

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

.gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.03);
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(40%) brightness(80%);
  transition: var(--transition-smooth);
}

.gallery-item-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(5, 5, 5, 0.85);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: var(--transition-smooth);
  padding: 20px;
  text-align: center;
}

.gallery-item-icon {
  font-size: 1.5rem;
  color: var(--color-gold);
  margin-bottom: 10px;
  transform: translateY(20px);
  transition: var(--transition-smooth);
}

.gallery-item-title {
  font-family: var(--font-title);
  font-size: 1.2rem;
  color: var(--color-white);
  transform: translateY(20px);
  transition: var(--transition-smooth);
  transition-delay: 0.05s;
}

.gallery-item-cat {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-gold);
  margin-top: 5px;
  transform: translateY(20px);
  transition: var(--transition-smooth);
  transition-delay: 0.1s;
}

.gallery-item:hover img {
  transform: scale(1.08);
  filter: grayscale(0%) brightness(100%);
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-item:hover .gallery-item-icon,
.gallery-item:hover .gallery-item-title,
.gallery-item:hover .gallery-item-cat {
  transform: translateY(0);
}

/* Lightbox Estilizado */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(5, 5, 5, 0.98);
  z-index: 9999;
  display: none;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.lightbox.active {
  display: flex;
  opacity: 1;
}

.lightbox-content {
  position: relative;
  max-width: 80%;
  max-height: 80vh;
}

.lightbox-img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border: 1px solid var(--color-glass-border);
  box-shadow: var(--shadow-soft);
}

.lightbox-caption {
  position: absolute;
  bottom: -65px;
  left: 0;
  width: 100%;
  text-align: center;
  color: var(--color-white);
  font-family: var(--font-text);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.lightbox-title {
  font-family: var(--font-title);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-white);
}

.lightbox-desc {
  font-family: var(--font-text);
  font-size: 0.85rem;
  color: var(--color-gold);
  font-weight: 500;
  letter-spacing: 1px;
}

.lightbox-close {
  position: absolute;
  top: 40px;
  right: 40px;
  font-size: 2.5rem;
  color: var(--color-white);
  cursor: pointer;
  transition: var(--transition-fast);
}

.lightbox-close:hover {
  color: var(--color-gold);
}

.lightbox-prev, .lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 3rem;
  color: var(--color-white);
  cursor: pointer;
  padding: 10px;
  transition: var(--transition-fast);
}

.lightbox-prev:hover, .lightbox-next:hover {
  color: var(--color-gold);
}

.lightbox-prev { left: 40px; }
.lightbox-next { right: 40px; }

/* Seção Depoimentos (Google Layout) */
.testimonials-section {
  background-color: var(--color-graphite);
  overflow: hidden;
}

.testimonials-carousel-wrapper {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.testimonials-carousel {
  position: relative;
  height: 280px;
}

.testimonial-card {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s ease-in-out;
  background-color: var(--color-black);
  border: 1px solid var(--color-glass-border);
  padding: 40px;
  box-shadow: var(--shadow-soft);
}

.testimonial-card.active {
  opacity: 1;
  pointer-events: auto;
}

.google-review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 15px;
}

.google-reviewer {
  display: flex;
  align-items: center;
  gap: 15px;
}

.reviewer-img-fallback {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--color-gold);
  color: var(--color-black);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.reviewer-info-box {
  display: flex;
  flex-direction: column;
}

.reviewer-name {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-white);
}

.reviewer-source {
  font-size: 0.7rem;
  color: var(--color-medium-gray);
  display: flex;
  align-items: center;
  gap: 5px;
}

.google-logo-mini {
  height: 12px;
}

.review-stars {
  color: #fbbc05; /* Cor oficial das estrelas Google */
  font-size: 1rem;
  letter-spacing: 2px;
}

.testimonial-text {
  font-style: italic;
  font-family: var(--font-title);
  font-size: 1.25rem;
  line-height: 1.5;
  color: var(--color-light-gray);
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.15);
  cursor: pointer;
  transition: var(--transition-fast);
}

.carousel-dot.active {
  background-color: var(--color-gold);
  transform: scale(1.3);
}

/* Seção Blog */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.blog-card {
  background-color: var(--color-graphite);
  border: 1px solid rgba(255, 255, 255, 0.02);
  transition: var(--transition-smooth);
}

.blog-card:hover {
  transform: translateY(-5px);
  border-color: var(--color-glass-border);
  box-shadow: var(--shadow-soft);
}

.blog-card-img {
  aspect-ratio: 1.6;
  overflow: hidden;
  position: relative;
}

.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(10%) brightness(85%);
  transition: var(--transition-smooth);
}

.blog-card:hover .blog-card-img img {
  filter: grayscale(0%) brightness(100%);
  transform: scale(1.04);
}

.blog-card-category {
  position: absolute;
  bottom: 15px;
  left: 15px;
  background-color: var(--color-gold);
  color: var(--color-black);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 5px 12px;
}

.blog-card-content {
  padding: 30px;
}

.blog-card-date {
  font-size: 0.75rem;
  color: var(--color-medium-gray);
  margin-bottom: 10px;
  display: block;
}

.blog-card-title {
  font-family: var(--font-title);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 15px;
  line-height: 1.3;
}

.blog-card-desc {
  font-size: 0.85rem;
  color: var(--color-medium-gray);
  font-weight: 300;
  margin-bottom: 20px;
  line-height: 1.5;
}

.blog-card-link {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-gold);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.blog-card-link:hover {
  color: var(--color-white);
}

/* Seção Contato e Localização */
.contact-section {
  position: relative;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-form-box {
  background-color: var(--color-graphite);
  border: 1px solid rgba(255, 255, 255, 0.02);
  padding: 50px;
  box-shadow: var(--shadow-soft);
  position: relative;
}

.contact-form-box::after {
  content: '';
  position: absolute;
  top: 15px;
  left: 15px;
  right: 15px;
  bottom: 15px;
  border: 1px solid var(--color-glass-border);
  pointer-events: none;
}

.form-group {
  margin-bottom: 25px;
  position: relative;
}

.form-input {
  width: 100%;
  background-color: var(--color-black);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 15px 20px;
  color: var(--color-white);
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

.form-input:focus {
  border-color: var(--color-gold);
  box-shadow: var(--shadow-gold);
}

textarea.form-input {
  resize: vertical;
  min-height: 120px;
}

.form-select {
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  background-color: var(--color-black);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 15px 20px;
  color: var(--color-white);
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

.form-select:focus {
  border-color: var(--color-gold);
}

.select-wrapper {
  position: relative;
}

.select-wrapper::after {
  content: '▼';
  font-size: 0.6rem;
  color: var(--color-gold);
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  pointer-events: none;
}

.form-response {
  margin-top: 20px;
  font-size: 0.9rem;
  display: none;
  padding: 12px;
  text-align: center;
}

.form-response.success {
  display: block;
  background-color: rgba(201, 166, 70, 0.1);
  border: 1px solid var(--color-gold);
  color: var(--color-gold);
}

.form-response.error {
  display: block;
  background-color: rgba(255, 0, 0, 0.05);
  border: 1px solid #ff4444;
  color: #ff4444;
}

.contact-info-column {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.info-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.info-icon-box {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-glass-border);
  color: var(--color-gold);
  font-size: 1.3rem;
  background-color: rgba(255, 255, 255, 0.02);
}

.info-details h4 {
  font-family: var(--font-title);
  font-size: 1.25rem;
  color: var(--color-white);
  margin-bottom: 8px;
}

.info-details p {
  font-size: 0.9rem;
  color: var(--color-medium-gray);
  font-weight: 300;
  line-height: 1.5;
}

.map-wrapper {
  width: 100%;
  height: 250px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(100%) invert(90%) contrast(120%);
}

/* Rodapé */
.main-footer {
  background-color: var(--color-black);
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  padding: 80px 0 30px;
}

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

.footer-about .footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  font-style: italic;
  color: #ffffff;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.footer-about .footer-logo em {
  font-style: italic;
  color: var(--color-gold);
  padding: 0 3px;
}

.footer-desc {
  font-size: 0.85rem;
  color: var(--color-medium-gray);
  margin-bottom: 25px;
  line-height: 1.6;
  font-weight: 300;
}

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

.social-link {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--color-medium-gray);
  font-size: 1rem;
  transition: var(--transition-fast);
}

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

.footer-title {
  font-family: var(--font-title);
  font-size: 1.25rem;
  color: var(--color-white);
  margin-bottom: 25px;
  position: relative;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 30px;
  height: 1px;
  background-color: var(--color-gold);
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  font-size: 0.85rem;
  color: var(--color-medium-gray);
  font-weight: 300;
}

.footer-links a:hover {
  color: var(--color-gold);
  padding-left: 5px;
}

.footer-hours p {
  font-size: 0.85rem;
  color: var(--color-medium-gray);
  margin-bottom: 12px;
  font-weight: 300;
}

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

.copyright {
  font-size: 0.75rem;
  color: var(--color-medium-gray);
  font-weight: 300;
}

.developer {
  font-size: 0.75rem;
  color: var(--color-medium-gray);
  font-weight: 300;
}

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

/* Floating WhatsApp */
.floating-whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 2rem;
  z-index: 999;
  box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
  transition: var(--transition-smooth);
}

.floating-whatsapp:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.5);
}

/* Animações no Scroll (Fade In) */
.reveal {
  position: relative;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* ==========================================================================
   PÁGINAS COMPLEMENTARES (BLOG, DETALHES DE POST, SEO)
   ========================================================================== */

.page-header {
  padding: 180px 0 80px;
  background-color: var(--color-graphite);
  border-bottom: 1px solid rgba(255, 255, 255, 0.02);
  text-align: center;
}

.page-title {
  font-family: var(--font-title);
  font-size: 3.5rem;
  color: var(--color-white);
  margin-bottom: 15px;
}

.breadcrumbs {
  font-size: 0.8rem;
  color: var(--color-medium-gray);
  display: flex;
  justify-content: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

/* Layout Geral do Blog List & Posts */
.blog-layout {
  display: grid;
  grid-template-columns: 2.3fr 1fr;
  gap: 50px;
  padding: 80px 0;
}

.post-main-content {
  background-color: var(--color-graphite);
  padding: 50px;
  border: 1px solid rgba(255, 255, 255, 0.02);
}

.post-detail-img {
  margin-bottom: 40px;
  border: 1px solid var(--color-glass-border);
}

.post-meta-details {
  display: flex;
  gap: 20px;
  font-size: 0.8rem;
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 25px;
}

.post-body {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--color-light-gray);
  font-weight: 300;
}

.post-body p {
  margin-bottom: 25px;
}

.post-body h2, .post-body h3 {
  font-family: var(--font-title);
  color: var(--color-white);
  margin: 40px 0 20px;
}

.post-body blockquote {
  border-left: 3px solid var(--color-gold);
  padding-left: 25px;
  margin: 35px 0;
  font-style: italic;
  font-family: var(--font-title);
  font-size: 1.3rem;
  color: var(--color-white);
}

/* Sidebar */
.sidebar {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.widget {
  background-color: var(--color-graphite);
  padding: 35px;
  border: 1px solid rgba(255, 255, 255, 0.02);
}

.widget-title {
  font-family: var(--font-title);
  font-size: 1.3rem;
  color: var(--color-white);
  margin-bottom: 20px;
  position: relative;
}

.widget-title::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 25px;
  height: 1px;
  background-color: var(--color-gold);
}

.categories-list li {
  margin-bottom: 12px;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.05);
  padding-bottom: 8px;
}

.categories-list a {
  font-size: 0.9rem;
  color: var(--color-medium-gray);
  display: flex;
  justify-content: space-between;
}

.categories-list a:hover {
  color: var(--color-gold);
  padding-left: 5px;
}

.recent-post-item {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.recent-post-item:last-child {
  margin-bottom: 0;
}

.recent-post-thumb {
  width: 70px;
  height: 70px;
  object-fit: cover;
}

.recent-post-info h5 {
  font-family: var(--font-title);
  font-size: 0.95rem;
  color: var(--color-white);
  line-height: 1.3;
  margin-bottom: 5px;
}

.recent-post-info a:hover h5 {
  color: var(--color-gold);
}

.recent-post-date {
  font-size: 0.7rem;
  color: var(--color-medium-gray);
}

/* ==========================================================================
   RESPONSIVIDADE (MEDIA QUERIES)
   ========================================================================== */

@media (max-width: 1200px) {
  .section-title { font-size: 2.4rem; }
  .about-grid, .groom-container, .contact-grid { gap: 40px; }
  
  /* Ajustes do cabeçalho para caber em telas de notebook (1024px - 1200px) */
  .logo-svg { height: 38px; }
  .logo-icon-img { height: 38px !important; margin-right: 8px; }
  .nav-menu { gap: 12px; }
  .nav-link { font-size: 0.72rem; letter-spacing: 1px; }
  .header-cta .btn { padding: 8px 15px; font-size: 0.7rem; }

  /* Hero dots reposition */
  .hero-dots { right: 18px; }
}

@media (max-width: 991px) {
  .section-padding { padding: 80px 0; }
  .section-title { font-size: 2.2rem; }
  
  /* Menu Mobile */
  .menu-toggle { display: flex; z-index: 1001; }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background-color: var(--color-black);
    border-left: 1px solid var(--color-glass-border);
    flex-direction: column;
    padding: 100px 40px;
    transition: var(--transition-smooth);
    z-index: 1000;
  }
  
  .nav-menu.active { right: 0; }
  
  .header-cta .btn { display: none; }
  
  /* Grids */
  .about-grid, .groom-container, .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .about-img-container {
    max-width: 500px;
    margin: 0 auto;
  }
  
  .services-grid, .why-grid, .gallery-grid, .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .groom-content { max-width: 100%; }
  
  .why-card { border-right: none; border-bottom: 1px solid rgba(255, 255, 255, 0.05); }
  .why-card:last-child { border-bottom: none; }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .blog-layout {
    grid-template-columns: 1fr;
  }
  
  .lightbox-content { max-width: 90%; }
  .lightbox-prev, .lightbox-next { font-size: 2rem; }
  .lightbox-prev { left: 15px; }
  .lightbox-next { right: 15px; }
}

@media (max-width: 767px) {
  .section-title { font-size: 1.8rem; }

  /* Hero mobile */
  .hero-content { text-align: center; padding-top: 70px; }
  .hero-buttons { flex-direction: column; align-items: center; gap: 14px; }
  .hero-btn { width: 100%; max-width: 300px; justify-content: center; }
  .hero-dots { display: none; }
  .hero-br { display: none; }
  .hero-scroll-indicator { display: none; }
  .hero-badge { flex-wrap: wrap; justify-content: center; gap: 8px; }

  .services-grid, .gallery-grid, .blog-grid {
    grid-template-columns: 1fr;
  }
  
  .gallery-filters {
    flex-wrap: wrap;
    gap: 10px;
  }
  
  .filter-btn {
    flex: 1 1 calc(50% - 10px);
    text-align: center;
    padding: 8px 10px;
  }
  
  .testimonial-card { padding: 30px 20px; }
  .testimonial-text { font-size: 1.1rem; }
  
  .contact-form-box { padding: 30px 20px; }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}

