/* =========================================
   DOM MARCOS VINICIUS - SITE OFICIAL
   Paleta: Dourado (#C9A96E), Branco (#FAFAF8),
           Off-White (#F5F0E8), Carvão (#1A1A1A),
           Vinho sutil (#5C1A2E)
   ========================================= */

:root {
  --gold: #C9A96E;
  --gold-light: #E8D5A3;
  --gold-dark: #9B7E4E;
  --white: #FAFAF8;
  --off-white: #F5F0E8;
  --cream: #EDE4D3;
  --charcoal: #1A1A1A;
  --dark: #0D0D0D;
  --gray: #6B6B6B;
  --light-gray: #C4C4C4;
  --wine: #5C1A2E;
  --wine-light: #8B3252;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Lato', 'Helvetica Neue', sans-serif;
  --font-script: 'Great Vibes', cursive;
  --radius: 4px;
  --radius-lg: 12px;
  --shadow: 0 4px 30px rgba(0,0,0,0.12);
  --shadow-gold: 0 4px 20px rgba(201,169,110,0.3);
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

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

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

/* ===== TYPOGRAPHY HELPERS ===== */
.script {
  font-family: var(--font-script);
  color: var(--gold);
  font-size: 1.2em;
}

.section-label {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.section-label::before, .section-label::after {
  content: '';
  display: inline-block;
  width: 30px;
  height: 1px;
  background: var(--gold);
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--charcoal);
  margin-bottom: 1rem;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--gray);
  max-width: 520px;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-header .section-label {
  justify-content: center;
}
.section-header .section-sub {
  margin: 0 auto;
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--dark);
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: var(--radius);
  transition: var(--transition);
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover {
  background: var(--gold-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201,169,110,0.5);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--charcoal);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 13px 30px;
  border-radius: var(--radius);
  border: 1.5px solid var(--gold);
  transition: var(--transition);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--dark);
  transform: translateY(-2px);
}

.btn-sm { padding: 10px 20px; font-size: 0.8rem; }

/* ===== PRELOADER ===== */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#preloader.hidden {
  opacity: 0;
  visibility: hidden;
}
.preloader-inner {
  text-align: center;
  color: var(--gold);
}
.preloader-cross {
  font-size: 3rem;
  animation: pulseCross 1.2s ease-in-out infinite alternate;
  display: block;
  margin-bottom: 12px;
}
.preloader-inner p {
  font-family: var(--font-script);
  font-size: 1.8rem;
  color: var(--gold-light);
  animation: fadeIn 1s ease forwards;
}
@keyframes pulseCross {
  from { opacity: 0.3; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1.1); }
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== NAVBAR ===== */
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: var(--transition);
  padding: 0;
}
#header.scrolled {
  background: rgba(13, 13, 13, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 32px;
  max-width: 1400px;
  margin: 0 auto;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gold-light);
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 500;
}
.brand-cross {
  font-size: 1.4rem;
  color: var(--gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-links li a {
  color: rgba(255,255,255,0.85);
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: var(--radius);
  transition: var(--transition);
}
.nav-links li a:hover { color: var(--gold); }
.btn-nav {
  background: var(--gold) !important;
  color: var(--dark) !important;
  font-weight: 700 !important;
  padding: 8px 20px !important;
}
.btn-nav:hover {
  background: var(--gold-dark) !important;
  color: var(--white) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold-light);
  transition: var(--transition);
  border-radius: 2px;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, #0D0D0D 0%, #1a0a14 40%, #0d0d0d 100%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 20% 50%, rgba(201,169,110,0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 30%, rgba(92,26,46,0.12) 0%, transparent 50%);
}

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

.particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0;
  animation: floatParticle linear infinite;
}

@keyframes floatParticle {
  0% { opacity: 0; transform: translateY(0) scale(0); }
  10% { opacity: 0.6; }
  90% { opacity: 0.3; }
  100% { opacity: 0; transform: translateY(-100vh) scale(1); }
}

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

.hero-sub {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.hero-sub::before, .hero-sub::after {
  content: '';
  display: inline-block;
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 300;
  line-height: 1;
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.hero-title .script {
  font-size: 1.1em;
  display: block;
}

.hero-tagline {
  font-family: var(--font-serif);
  font-size: clamp(0.95rem, 1.8vw, 1.15rem);
  color: rgba(255,255,255,0.65);
  font-style: italic;
  margin: 20px 0 32px;
  line-height: 1.6;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(201,169,110,0.12);
  border: 1px solid rgba(201,169,110,0.3);
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 6px 16px;
  border-radius: 100px;
}
.badge i { color: var(--gold); }

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}
.hero-cta .btn-outline {
  color: rgba(255,255,255,0.85);
  border-color: rgba(201,169,110,0.5);
}
.hero-cta .btn-outline:hover {
  color: var(--dark);
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: rgba(255,255,255,0.35);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: scrollBounce 2s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ===== CREDIBILITY BAR ===== */
.credibility-bar {
  background: var(--off-white);
  border-bottom: 1px solid var(--cream);
  padding: 28px 0;
}
.cred-items {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
}
.cred-item {
  display: flex;
  align-items: center;
  gap: 14px;
}
.cred-item i {
  font-size: 1.6rem;
  color: var(--gold);
}
.cred-item strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 0.95rem;
  color: var(--charcoal);
}
.cred-item span {
  font-size: 0.75rem;
  color: var(--gray);
}
.cred-divider {
  width: 1px;
  height: 40px;
  background: var(--cream);
}

/* ===== SOBRE ===== */
.sobre {
  padding: 100px 0;
  background: var(--white);
}
.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}
.sobre-image-wrap { position: relative; }
.sobre-img-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.sobre-img-frame::before {
  content: '';
  position: absolute;
  inset: -8px;
  border: 1.5px solid var(--gold);
  border-radius: calc(var(--radius-lg) + 4px);
  z-index: -1;
}
.sobre-img {
  width: 100%;
  height: 550px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  filter: sepia(10%) brightness(0.95);
  transition: var(--transition);
}
.sobre-img:hover { filter: sepia(0%) brightness(1); }

.sobre-img-badge {
  position: absolute;
  bottom: 24px;
  right: -20px;
  background: var(--gold);
  color: var(--dark);
  padding: 14px 18px;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  box-shadow: var(--shadow);
  font-family: var(--font-serif);
  font-size: 0.85rem;
  font-weight: 600;
}
.sobre-img-badge i { font-size: 1.4rem; }

.sobre-text .section-label { justify-content: flex-start; }
.sobre-text .section-label::before { display: none; }

.sobre-lead {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  line-height: 1.7;
  color: var(--charcoal);
  margin: 20px 0 16px;
  font-style: italic;
}
.sobre-text p {
  color: var(--gray);
  margin-bottom: 16px;
  line-height: 1.8;
}
.sobre-text p strong { color: var(--charcoal); }

.sobre-curriculum {
  background: var(--off-white);
  border-left: 3px solid var(--gold);
  padding: 20px 24px;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 28px 0 32px;
}
.sobre-curriculum h3 {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--charcoal);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}
.sobre-curriculum ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--gray);
  padding: 5px 0;
}
.sobre-curriculum ul li i { color: var(--gold); font-size: 0.75rem; }

/* ===== SERVIÇOS ===== */
.servicos {
  padding: 100px 0;
  background: var(--off-white);
  position: relative;
}
.servicos::before {
  content: '✝';
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 3rem;
  color: var(--cream);
  opacity: 0.5;
}

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

.servico-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
  transition: var(--transition);
  border: 1px solid transparent;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}
.servico-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: var(--gold-light);
}
.servico-card.featured {
  background: linear-gradient(135deg, var(--charcoal) 0%, #2a1a0a 100%);
  color: var(--white);
  border: none;
}
.servico-card.featured .servico-icon { color: var(--gold); }
.servico-card.featured h3 { color: var(--white); }
.servico-card.featured p { color: rgba(255,255,255,0.7); }
.servico-card.featured p strong { color: var(--gold-light); }

.servico-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--dark);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 100px;
  white-space: nowrap;
}

.servico-icon {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 18px;
}
.servico-card h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 12px;
}
.servico-card p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.7;
}

/* ===== COMO FUNCIONA ===== */
.como-funciona {
  padding: 100px 0;
  background: var(--white);
}

.steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.step {
  text-align: center;
  flex: 1;
  min-width: 180px;
  max-width: 220px;
  padding: 20px 10px;
}
.step-num {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--cream);
  line-height: 1;
  margin-bottom: 8px;
}
.step-icon {
  font-size: 1.8rem;
  color: var(--gold);
  margin-bottom: 14px;
}
.step h3 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 10px;
}
.step p {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.7;
}
.step-arrow {
  display: flex;
  align-items: center;
  padding-top: 50px;
  color: var(--gold-light);
  font-size: 1.2rem;
  flex-shrink: 0;
}

/* ===== GALERIA ===== */
.galeria {
  padding: 100px 0;
  background: var(--charcoal);
}
.galeria .section-header .section-label { color: var(--gold); }
.galeria .section-title { color: var(--white); }
.galeria .section-sub { color: rgba(255,255,255,0.5); }

.galeria-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px;
  gap: 8px;
}

.galeria-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
}
.galeria-item.large {
  grid-column: span 2;
  grid-row: span 2;
}
.galeria-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.galeria-item:hover img { transform: scale(1.08); }
.galeria-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  opacity: 0;
  transition: var(--transition);
}
.galeria-item:hover .galeria-overlay {
  background: rgba(0,0,0,0.45);
  opacity: 1;
}

.galeria-note {
  text-align: center;
  margin-top: 28px;
  color: rgba(255,255,255,0.4);
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.galeria-note i { color: var(--gold); }
.galeria-note p { display: flex; align-items: center; gap: 8px; }

/* ===== LIGHTBOX ===== */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 9000;
  display: none;
  align-items: center;
  justify-content: center;
}
.lightbox.active { display: flex; }
.lightbox-img-wrap img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius);
}
.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  color: var(--white);
  font-size: 1.2rem;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { background: var(--gold); color: var(--dark); }
.lightbox-close { top: 20px; right: 20px; }
.lightbox-prev { left: 20px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 20px; top: 50%; transform: translateY(-50%); }

/* ===== VÍDEOS ===== */
.videos {
  padding: 100px 0;
  background: var(--off-white);
}

.videos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-bottom: 48px;
}

.video-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: var(--transition);
  cursor: pointer;
}
.video-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.video-thumb {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
}
.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.video-card:hover .video-thumb img { transform: scale(1.04); }

.video-play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.3);
  transition: var(--transition);
}
.video-play-btn i {
  width: 60px;
  height: 60px;
  background: rgba(201,169,110,0.95);
  color: var(--dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  padding-left: 4px;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.video-card:hover .video-play-btn { background: rgba(0,0,0,0.1); }
.video-card:hover .video-play-btn i { transform: scale(1.1); background: var(--gold); }

.video-info {
  padding: 20px 22px;
}
.video-info h4 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--charcoal);
  margin-bottom: 4px;
}
.video-info p {
  font-size: 0.82rem;
  color: var(--gray);
}

.videos-cta { text-align: center; }

.btn-youtube {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #FF0000;
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: var(--radius);
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(255,0,0,0.25);
}
.btn-youtube:hover {
  background: #CC0000;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255,0,0,0.35);
}
.btn-youtube i { font-size: 1.2rem; }

/* Modal de Vídeo */
.video-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.93);
  z-index: 9000;
  display: none;
  align-items: center;
  justify-content: center;
}
.video-modal.active { display: flex; }
.video-modal-inner {
  position: relative;
  width: 90vw;
  max-width: 900px;
}
.video-modal-close {
  position: absolute;
  top: -50px;
  right: 0;
  color: var(--white);
  font-size: 1.3rem;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.video-modal-close:hover { background: var(--gold); color: var(--dark); }
.video-modal-frame { aspect-ratio: 16/9; }
.video-modal-frame iframe { width: 100%; height: 100%; border-radius: var(--radius); }

/* ===== PRÊMIOS ===== */
.premios {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--charcoal) 0%, #2a1a0a 100%);
  position: relative;
  overflow: hidden;
}
.premios::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(201,169,110,0.08) 0%, transparent 70%);
}

.premios-inner {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 60px;
  align-items: center;
}

.premios-icon {
  font-size: 6rem;
  color: var(--gold);
  opacity: 0.15;
  line-height: 1;
}

.premios-text .section-label { color: var(--gold); }
.premios-text .section-title { color: var(--white); }
.premios-text p {
  color: rgba(255,255,255,0.7);
  margin-bottom: 16px;
  font-size: 0.95rem;
}
.premios-text p strong { color: var(--gold-light); }
.premios-text p em { color: rgba(255,255,255,0.55); font-style: italic; }

.premios-selos {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.selo {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(201,169,110,0.12);
  border: 1px solid rgba(201,169,110,0.25);
  border-radius: var(--radius);
  padding: 10px 16px;
  color: var(--gold-light);
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-weight: 600;
  transition: var(--transition);
}
.selo:hover {
  background: rgba(201,169,110,0.2);
  border-color: var(--gold);
}
.selo i { color: var(--gold); }

/* ===== DEPOIMENTOS ===== */
.depoimentos {
  padding: 100px 0;
  background: var(--white);
  overflow: hidden;
}

.depo-slider {
  overflow: hidden;
  position: relative;
}

.depo-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s ease;
}

.depo-card {
  flex: 0 0 calc(50% - 12px);
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 36px;
  position: relative;
  border: 1px solid var(--cream);
}
.depo-card::before {
  content: '"';
  position: absolute;
  top: 12px;
  left: 28px;
  font-family: var(--font-serif);
  font-size: 6rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0.15;
}

.depo-stars { color: var(--gold); margin-bottom: 18px; letter-spacing: 3px; }

.depo-text {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--charcoal);
  line-height: 1.75;
  margin-bottom: 24px;
  position: relative;
}

.depo-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.depo-avatar {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--dark);
  flex-shrink: 0;
}
.depo-author strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 0.95rem;
  color: var(--charcoal);
}
.depo-author span {
  font-size: 0.78rem;
  color: var(--gray);
}

.depo-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 36px;
}
.depo-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--off-white);
  border: 1.5px solid var(--cream);
  color: var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: var(--transition);
}
.depo-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--dark); }
.depo-dots {
  display: flex;
  gap: 8px;
}
.depo-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cream);
  transition: var(--transition);
  cursor: pointer;
}
.depo-dot.active { background: var(--gold); width: 24px; border-radius: 4px; }

/* ===== REDES SOCIAIS ===== */
.redes-sociais {
  padding: 80px 0;
  background: var(--off-white);
}
.redes-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}
.rede-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 28px 32px;
  border-radius: var(--radius-lg);
  color: var(--white);
  min-width: 140px;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}
.rede-card:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,0.2); }
.rede-card i { font-size: 2rem; }
.rede-card span { font-weight: 700; font-size: 0.9rem; letter-spacing: 0.05em; }
.rede-card small { font-size: 0.72rem; opacity: 0.75; }
.rede-card.instagram { background: linear-gradient(135deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%); }
.rede-card.facebook { background: #1877F2; }
.rede-card.tiktok { background: linear-gradient(135deg, #010101 50%, #69C9D0); }
.rede-card.youtube { background: #FF0000; }
.rede-card.casamentos { background: linear-gradient(135deg, var(--wine), var(--wine-light)); }

/* ===== CONTATO ===== */
.contato {
  padding: 120px 0;
  position: relative;
  background: var(--off-white);
  overflow: hidden;
}
.contato::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C9A96E' fill-opacity='0.05'%3E%3Cpath d='M30 5 L32 25 L52 25 L36 36 L42 56 L30 45 L18 56 L24 36 L8 25 L28 25 Z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.contato-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,26,26,0.97) 0%, rgba(42,10,20,0.97) 100%);
}
.contato .container { position: relative; z-index: 1; }

.contato-inner { text-align: center; max-width: 720px; margin: 0 auto; }
.contato-inner .section-label { justify-content: center; color: var(--gold); }
.contato-inner .section-label::before, .contato-inner .section-label::after { background: var(--gold); }
.contato-inner .section-title { color: var(--white); }
.contato-sub {
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 48px;
}

.contato-opcoes {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-bottom: 40px;
}

.contato-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 28px;
  border-radius: var(--radius);
  transition: var(--transition);
  min-width: 200px;
}
.contato-btn i { font-size: 1.8rem; }
.contato-btn div { text-align: left; }
.contato-btn strong { display: block; font-weight: 700; font-size: 1rem; }
.contato-btn span { font-size: 0.78rem; opacity: 0.8; }
.contato-btn:hover { transform: translateY(-4px); }

.contato-btn.whatsapp { background: #25D366; color: var(--dark); }
.contato-btn.whatsapp:hover { background: #1EB851; box-shadow: 0 8px 25px rgba(37,211,102,0.35); }
.contato-btn.instagram-btn {
  background: linear-gradient(135deg, #e6683c, #dc2743, #bc1888);
  color: var(--white);
}
.contato-btn.instagram-btn:hover { box-shadow: 0 8px 25px rgba(220,39,67,0.3); }
.contato-btn.casamentos-btn {
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.15);
}
.contato-btn.casamentos-btn:hover {
  background: rgba(255,255,255,0.18);
  border-color: var(--gold);
}

.contato-area {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: rgba(255,255,255,0.45);
  font-size: 0.85rem;
}
.contato-area i { color: var(--gold); }
.contato-area p strong { color: rgba(255,255,255,0.7); }

/* ===== FOOTER ===== */
.footer {
  background: var(--dark);
  padding: 70px 0 30px;
  border-top: 1px solid rgba(201,169,110,0.15);
}

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

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.footer-brand .brand-name { font-family: var(--font-serif); font-size: 1rem; color: var(--gold-light); }
.footer-brand p { font-size: 0.85rem; color: rgba(255,255,255,0.45); line-height: 1.7; margin-bottom: 20px; }

.footer-socials {
  display: flex;
  gap: 10px;
}
.footer-socials a {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  transition: var(--transition);
}
.footer-socials a:hover { background: var(--gold); color: var(--dark); }

.footer-links h4, .footer-servicos h4, .footer-contato h4 {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.footer-links ul li, .footer-servicos ul li {
  padding: 5px 0;
  font-size: 0.85rem;
}
.footer-links ul li a {
  color: rgba(255,255,255,0.45);
  transition: var(--transition);
}
.footer-links ul li a:hover { color: var(--gold-light); padding-left: 6px; }

.footer-servicos ul li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.45);
}
.footer-servicos ul li i { color: var(--gold); font-size: 0.7rem; }

.footer-contato p {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.45);
  font-size: 0.85rem;
  margin-bottom: 8px;
}
.footer-contato p i { color: var(--gold); }
.footer-contato .btn-primary { margin-top: 16px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.25); }

/* ===== WHATSAPP FLUTUANTE ===== */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 800;
  background: #25D366;
  color: var(--white);
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: var(--transition);
  animation: wfPulse 3s ease-in-out infinite;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37,211,102,0.55);
}
.wf-tooltip {
  position: absolute;
  right: 70px;
  background: var(--charcoal);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: var(--radius);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.wf-tooltip::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-right: none;
  border-left-color: var(--charcoal);
}
.whatsapp-float:hover .wf-tooltip { opacity: 1; }

@keyframes wfPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 30px rgba(37,211,102,0.7), 0 0 0 10px rgba(37,211,102,0.1); }
}

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 100px;
  right: 30px;
  z-index: 800;
  background: rgba(201,169,110,0.2);
  border: 1px solid var(--gold);
  color: var(--gold);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: var(--transition);
  opacity: 0;
  pointer-events: none;
}
.back-to-top.visible {
  opacity: 1;
  pointer-events: all;
}
.back-to-top:hover { background: var(--gold); color: var(--dark); }

/* ===== AOS (scroll animations) – simple fallback ===== */
[data-aos] {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-aos="fade-up"] { transform: translateY(30px); }
[data-aos="fade-right"] { transform: translateX(-40px); }
[data-aos="fade-left"] { transform: translateX(40px); }
[data-aos="zoom-in"] { transform: scale(0.92); }
[data-aos].aos-animate {
  opacity: 1;
  transform: none;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .sobre-grid { grid-template-columns: 1fr; gap: 50px; }
  .sobre-img { height: 420px; }
  .sobre-img-badge { right: 0; }
  .servicos-grid { grid-template-columns: repeat(2, 1fr); }
  .premios-inner { grid-template-columns: 1fr; text-align: center; gap: 32px; }
  .premios-selos { flex-direction: row; flex-wrap: wrap; justify-content: center; }
  .premios-icon { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .galeria-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: min(320px, 80vw);
    background: rgba(13,13,13,0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 80px 32px 32px;
    gap: 4px;
    transition: right 0.4s ease;
    z-index: 999;
    border-left: 1px solid rgba(201,169,110,0.15);
  }
  .nav-links.open { right: 0; }
  .nav-links li a { font-size: 1rem; padding: 10px 0; }
  .nav-toggle { display: flex; z-index: 1000; }

  .hero-badges { flex-direction: column; align-items: center; }
  .servicos-grid { grid-template-columns: 1fr; }
  .videos-grid { grid-template-columns: 1fr; }
  .galeria-grid { grid-template-columns: repeat(2, 1fr); }
  .galeria-item.large { grid-column: span 2; }
  .depo-card { flex: 0 0 100%; }
  .steps { flex-direction: column; align-items: center; }
  .step-arrow { display: none; }
  .cred-divider { display: none; }
  .contato-opcoes { flex-direction: column; align-items: center; }
  .contato-btn { width: 100%; max-width: 320px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .sobre-img { height: 320px; }
  .premios-inner .section-label { justify-content: center; }
}

@media (max-width: 480px) {
  .galeria-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .credibility-bar { padding: 20px 0; }
  .cred-items { flex-direction: column; gap: 16px; }
  .navbar { padding: 16px 20px; }
}
