/* ==========================================================================
   RADIANCE BRONZEAMENTO — LUXURY STYLESHEET (ATUALIZADO & OTIMIZADO)
   Conceito: Glow Dourado, Bronze Solar, Alta Elegância & Dark Luxury
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. VARIÁVEIS CSS & RESET
   -------------------------------------------------------------------------- */
:root {
  /* Cores Principais Douradas & Bronze */
  --gold-300: #FFF3B0;
  --gold-400: #F6D365;
  --gold-500: #E5A93C;
  --gold-600: #D4AF37;
  --gold-700: #B8860B;
  --gold-800: #8C6208;
  
  --bronze-400: #E28743;
  --bronze-500: #C87D32;
  --bronze-600: #A05A20;

  /* Cores Escuras de Fundo de Luxo */
  --bg-dark: #0A090D;
  --bg-surface-1: #121118;
  --bg-surface-2: #181622;
  --bg-surface-3: #221F2F;
  --bg-card: rgba(24, 22, 34, 0.85);
  --bg-card-hover: rgba(34, 31, 47, 0.95);
  --border-gold-subtle: rgba(212, 175, 55, 0.2);
  --border-gold-active: rgba(229, 169, 60, 0.6);

  /* Tipografia */
  --font-serif: 'Cinzel', 'Playfair Display', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  /* Textos */
  --text-white: #FFFFFF;
  --text-main: #F4EFEB;
  --text-muted: #A8A096;
  --text-dim: #7A7268;

  /* Sombras & Efeitos de Glow */
  --glow-gold: 0 0 25px rgba(229, 169, 60, 0.35);
  --glow-gold-strong: 0 0 45px rgba(229, 169, 60, 0.6);
  --shadow-card: 0 10px 30px -10px rgba(0, 0, 0, 0.7);
  --shadow-card-hover: 0 20px 40px -10px rgba(212, 175, 55, 0.25);

  /* Transições & Raios */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  --transition-fast: 0.2s ease;
  --transition-normal: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
}

body {
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  background-color: var(--bg-dark);
}

/* Canvas de Partículas */
#sun-particles-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.6;
}

/* --------------------------------------------------------------------------
   2. CONTAINERS & UTILITÁRIOS
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1260px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  position: relative;
  z-index: 1;
}

.section-padding {
  padding-top: 90px;
  padding-bottom: 90px;
  position: relative;
}

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

.w-100 {
  width: 100%;
}

.gold-gradient-text {
  background: linear-gradient(135deg, var(--gold-300) 0%, var(--gold-500) 50%, var(--gold-700) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.glow-text {
  color: var(--gold-400);
  text-shadow: 0 0 20px rgba(246, 211, 101, 0.4);
}

.section-header {
  margin-bottom: 45px;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  background: rgba(229, 169, 60, 0.1);
  border: 1px solid var(--border-gold-subtle);
  border-radius: var(--radius-full);
  color: var(--gold-400);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 14px;
  backdrop-filter: blur(8px);
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.8vw, 2.7rem);
  font-weight: 700;
  color: var(--text-white);
  line-height: 1.25;
  margin-bottom: 14px;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 400;
}

/* --------------------------------------------------------------------------
   3. BOTÕES PREMIUM
   -------------------------------------------------------------------------- */
.btn-gold-glow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 26px;
  background: linear-gradient(135deg, #FFE58F 0%, #E5A93C 45%, #B87B14 100%);
  color: #1A1300;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(229, 169, 60, 0.35);
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-gold-glow::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: 0.5s;
}

.btn-gold-glow:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(229, 169, 60, 0.55);
  color: #000000;
}

.btn-gold-glow:hover::before {
  left: 100%;
}

.btn-glass {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 26px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-white);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  cursor: pointer;
  transition: var(--transition-normal);
}

.btn-glass:hover {
  background: rgba(229, 169, 60, 0.15);
  border-color: var(--gold-500);
  color: var(--gold-300);
  transform: translateY(-2px);
}

.btn-large {
  padding: 15px 32px;
  font-size: 1rem;
}

.btn-gold-sm,
.btn-sm {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 18px;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  color: #1A1300;
  font-weight: 700;
  font-size: 0.84rem;
  border-radius: var(--radius-full);
  text-decoration: none;
  transition: var(--transition-fast);
}

.btn-gold-sm:hover,
.btn-sm:hover {
  transform: scale(1.03);
  box-shadow: var(--glow-gold);
}

.btn-outline-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 22px;
  background: transparent;
  color: var(--gold-400);
  border: 1px solid var(--gold-500);
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
  transition: var(--transition-fast);
  cursor: pointer;
}

.btn-outline-gold:hover {
  background: rgba(229, 169, 60, 0.12);
  color: var(--gold-300);
  transform: translateY(-2px);
}

.btn-block {
  display: flex;
  width: 100%;
}

/* --------------------------------------------------------------------------
   4. TOP ANNOUNCEMENT BAR
   -------------------------------------------------------------------------- */
.top-announcement {
  background: linear-gradient(90deg, #121018 0%, #1c1926 50%, #121018 100%);
  border-bottom: 1px solid rgba(229, 169, 60, 0.15);
  font-size: 0.82rem;
  padding: 7px 0;
  position: relative;
  z-index: 101;
}

.top-announcement-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.sun-status-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-300);
  font-weight: 500;
}

.pulse-sun-icon {
  color: var(--gold-400);
  animation: pulse-sun 2s infinite ease-in-out;
}

@keyframes pulse-sun {
  0%, 100% { transform: scale(1); filter: drop-shadow(0 0 2px var(--gold-500)); }
  50% { transform: scale(1.2); filter: drop-shadow(0 0 6px var(--gold-400)); }
}

.top-announcement-links {
  display: flex;
  align-items: center;
  gap: 18px;
}

.top-info-tag {
  color: var(--text-muted);
}

.top-social-link {
  color: var(--gold-400);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  transition: var(--transition-fast);
}

.top-social-link:hover {
  color: var(--gold-300);
  text-decoration: underline;
}

/* --------------------------------------------------------------------------
   5. SITE HEADER & NAVIGATION
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 100;
  background: rgba(10, 9, 13, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: var(--transition-normal);
}

.site-header.scrolled {
  background: rgba(10, 9, 13, 0.98);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.85);
  border-bottom-color: rgba(229, 169, 60, 0.25);
}

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

/* Brand Logo */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-symbol {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 0 8px rgba(229, 169, 60, 0.45));
  transition: var(--transition-normal);
}

.brand-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-logo:hover .logo-symbol {
  transform: rotate(10deg) scale(1.05);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--text-white);
  letter-spacing: 1px;
  line-height: 1;
}

.brand-subtitle {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--gold-400);
  letter-spacing: 1.8px;
  text-transform: uppercase;
  margin-top: 3px;
}

/* Nav Menu Desktop */
.main-nav {
  display: flex;
  align-items: center;
}

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

.nav-link {
  color: var(--text-main);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  white-space: nowrap;
  transition: var(--transition-fast);
  position: relative;
  padding: 6px 2px;
  display: inline-block;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-500);
  transition: var(--transition-fast);
  border-radius: var(--radius-full);
}

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

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

.highlight-pill {
  padding: 3px 8px;
  background: rgba(229, 169, 60, 0.15);
  border: 1px solid var(--gold-500);
  border-radius: var(--radius-full);
  color: var(--gold-300);
  font-size: 0.78rem;
  font-weight: 700;
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.header-cta-btn {
  height: 40px;
  padding: 0 18px;
  font-size: 0.85rem;
  font-weight: 700;
  white-space: nowrap;
}

.mobile-toggle-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  cursor: pointer;
  padding: 8px;
}

.mobile-toggle-btn .bar {
  width: 100%;
  height: 2px;
  background: var(--gold-400);
  transition: var(--transition-fast);
}

/* Mobile Drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  height: 100vh;
  background: var(--bg-surface-2);
  border-left: 1px solid var(--border-gold-subtle);
  z-index: 1000;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition-normal);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.8);
}

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

.drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 14px;
}

.drawer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.drawer-logo-icon {
  width: 36px;
  height: 36px;
}

.drawer-title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--gold-400);
  line-height: 1;
}

.drawer-sub {
  display: block;
  font-size: 0.72rem;
  color: var(--text-muted);
}

.drawer-close-btn {
  background: none;
  border: none;
  color: var(--text-main);
  font-size: 1.8rem;
  cursor: pointer;
  line-height: 1;
}

.drawer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 20px 0;
}

.drawer-link {
  color: var(--text-main);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: var(--transition-fast);
}

.drawer-link i {
  color: var(--gold-500);
  width: 20px;
}

.drawer-link:hover {
  color: var(--gold-400);
  transform: translateX(6px);
}

.drawer-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-fast);
}

.drawer-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

/* --------------------------------------------------------------------------
   6. HERO SECTION
   -------------------------------------------------------------------------- */
.hero-section {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  padding: 50px 0 70px;
  overflow: hidden;
}

.hero-sun-glow {
  position: absolute;
  top: -20%;
  right: 10%;
  width: 650px;
  height: 650px;
  background: radial-gradient(circle, rgba(229, 169, 60, 0.22) 0%, rgba(200, 125, 50, 0.08) 50%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 9, 13, 0.4) 0%, rgba(10, 9, 13, 0.95) 100%);
  z-index: 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 50px;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  background: rgba(229, 169, 60, 0.12);
  border: 1px solid var(--border-gold-active);
  border-radius: var(--radius-full);
  color: var(--gold-300);
  font-size: 0.86rem;
  font-weight: 700;
  margin-bottom: 22px;
  box-shadow: 0 0 15px rgba(229, 169, 60, 0.15);
}

.hero-badge .badge-icon {
  color: var(--gold-400);
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.3rem, 4.8vw, 3.6rem);
  font-weight: 800;
  color: var(--text-white);
  line-height: 1.18;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
}

.hero-description {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 580px;
  margin-bottom: 34px;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.hero-stats-row {
  display: flex;
  align-items: center;
  gap: 26px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-card .stat-number {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--gold-400);
  line-height: 1;
}

.stat-card .stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 4px;
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 34px;
  background: rgba(255, 255, 255, 0.1);
}

/* Visual Hero Card */
.hero-visual-wrapper {
  position: relative;
}

.hero-main-card {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 8px;
  background: linear-gradient(145deg, rgba(229, 169, 60, 0.3) 0%, rgba(26, 24, 34, 0.9) 100%);
  box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.9), 0 0 35px rgba(229, 169, 60, 0.2);
}

.hero-image-box {
  position: relative;
  border-radius: calc(var(--radius-lg) - 6px);
  overflow: hidden;
  aspect-ratio: 4 / 4.8;
}

.hero-img-front {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.hero-main-card:hover .hero-img-front {
  transform: scale(1.03);
}

.hero-card-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(10, 9, 13, 0.85);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-gold-subtle);
  padding: 6px 12px;
  border-radius: var(--radius-full);
  font-size: 0.76rem;
  color: var(--gold-300);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-card-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 18px 18px;
  background: linear-gradient(0deg, rgba(10, 9, 13, 0.95) 0%, rgba(10, 9, 13, 0.6) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
}

.caption-title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-white);
}

.caption-sub {
  font-size: 0.82rem;
  color: var(--gold-300);
}

/* Floating Badges */
.floating-badge {
  position: absolute;
  background: rgba(18, 17, 24, 0.94);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-gold-active);
  padding: 10px 16px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
  z-index: 2;
  animation: float 4s ease-in-out infinite alternate;
}

.floating-badge i {
  font-size: 1.4rem;
  color: var(--gold-400);
}

.floating-badge strong {
  display: block;
  font-size: 0.88rem;
  color: var(--text-white);
}

.floating-badge span {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.badge-top-right {
  top: -16px;
  right: -16px;
}

.badge-bottom-left {
  bottom: -16px;
  left: -16px;
  animation-delay: 2s;
}

.live-sun-dot {
  width: 10px;
  height: 10px;
  background: #25D366;
  border-radius: 50%;
  box-shadow: 0 0 10px #25D366;
  animation: blink 1.5s infinite;
}

@keyframes float {
  0% { transform: translateY(0); }
  100% { transform: translateY(-8px); }
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* --------------------------------------------------------------------------
   7. WIDGET DE BRONZE & ÍNDICE UV EM BH
   -------------------------------------------------------------------------- */
.sun-widget-section {
  margin-top: -24px;
  position: relative;
  z-index: 10;
}

.sun-widget-card {
  background: linear-gradient(135deg, rgba(28, 25, 38, 0.95) 0%, rgba(20, 18, 28, 0.98) 100%);
  border: 1px solid var(--border-gold-subtle);
  border-radius: var(--radius-lg);
  padding: 26px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(14px);
}

.widget-left {
  display: flex;
  align-items: center;
  gap: 18px;
  flex: 1;
}

.widget-icon-box {
  width: 58px;
  height: 58px;
  background: rgba(229, 169, 60, 0.15);
  border: 1px solid var(--border-gold-active);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-400);
  font-size: 1.8rem;
  flex-shrink: 0;
}

.widget-pre {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold-500);
  font-weight: 700;
}

.widget-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--text-white);
  margin: 3px 0 5px;
}

.widget-text {
  font-size: 0.86rem;
  color: var(--text-muted);
  max-width: 480px;
}

.widget-stats-grid {
  display: flex;
  align-items: center;
  gap: 16px;
}

.uv-box {
  background: rgba(10, 9, 13, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 12px 18px;
  border-radius: var(--radius-md);
  text-align: center;
  display: flex;
  flex-direction: column;
  min-width: 125px;
}

.uv-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 1px;
}

.uv-value {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--gold-400);
  margin: 3px 0;
}

.uv-value small {
  font-size: 0.72rem;
  color: #25D366;
  font-family: var(--font-sans);
  font-weight: 600;
}

.uv-tag {
  font-size: 0.68rem;
  background: rgba(229, 169, 60, 0.15);
  color: var(--gold-300);
  padding: 2px 6px;
  border-radius: 4px;
}

/* --------------------------------------------------------------------------
   8. PROCEDIMENTOS & SERVIÇOS
   -------------------------------------------------------------------------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 26px;
}

.service-card {
  background: var(--bg-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-normal);
  position: relative;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-gold-active);
  box-shadow: var(--shadow-card-hover);
}

.service-card.featured {
  border-color: var(--border-gold-active);
  background: linear-gradient(180deg, rgba(34, 30, 48, 0.9) 0%, rgba(20, 18, 28, 0.95) 100%);
}

.service-card-tag {
  position: absolute;
  top: 14px;
  right: 14px;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-700));
  color: #000;
  font-weight: 800;
  font-size: 0.72rem;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  z-index: 2;
}

.service-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.service-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.service-icon {
  position: absolute;
  bottom: -18px;
  right: 20px;
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  color: #1A1300;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.5);
  z-index: 2;
}

.service-body {
  padding: 28px 22px 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-name {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 10px;
}

.service-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 18px;
  line-height: 1.6;
}

.service-benefits {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 22px;
}

.service-benefits li {
  font-size: 0.84rem;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-benefits li i {
  color: var(--gold-400);
  font-size: 0.78rem;
}

.service-footer {
  margin-top: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 14px;
}

.btn-gold-card {
  color: var(--gold-400);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.88rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition-fast);
}

.btn-gold-card:hover {
  color: var(--gold-300);
  gap: 12px;
}

/* --------------------------------------------------------------------------
   9. SIMULADOR DE MARQUINHA & FOTOTIPO
   -------------------------------------------------------------------------- */
.simulator-wrapper {
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}

.simulator-card-box {
  background: linear-gradient(145deg, rgba(26, 23, 36, 0.95) 0%, rgba(16, 14, 22, 0.98) 100%);
  border: 1px solid var(--border-gold-subtle);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), 0 0 30px rgba(229, 169, 60, 0.1);
}

.sim-step-group {
  margin-bottom: 32px;
}

.sim-step-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 16px;
}

.step-num {
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  color: #1A1300;
  font-weight: 800;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
}

.sim-options-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px;
}

.sim-option-btn {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 15px;
  text-align: left;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: var(--transition-fast);
  color: var(--text-main);
  position: relative;
}

.sim-option-btn i,
.sim-option-btn .option-emoji {
  font-size: 1.25rem;
  color: var(--gold-400);
  margin-bottom: 3px;
}

.sim-option-btn .color-dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  margin-bottom: 3px;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.skin-light { background: #FCE0D1; }
.skin-medium-light { background: #E5B896; }
.skin-medium { background: #B87B44; }
.skin-dark { background: #633C1E; }

.sim-option-btn .option-name {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--text-white);
}

.sim-option-btn .option-desc {
  font-size: 0.76rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.sim-option-btn:hover {
  background: rgba(229, 169, 60, 0.08);
  border-color: rgba(229, 169, 60, 0.4);
}

.sim-option-btn.active {
  background: rgba(229, 169, 60, 0.15);
  border-color: var(--gold-500);
  box-shadow: 0 0 15px rgba(229, 169, 60, 0.25);
}

.sim-option-btn.active::after {
  content: '✓';
  position: absolute;
  top: 10px;
  right: 12px;
  font-size: 0.85rem;
  font-weight: 900;
  color: var(--gold-400);
}

/* Painel de Resultado do Simulador */
.simulator-result-box {
  background: linear-gradient(135deg, rgba(38, 33, 52, 0.9) 0%, rgba(22, 19, 30, 0.95) 100%);
  border: 1px solid var(--border-gold-active);
  border-radius: var(--radius-md);
  padding: 26px;
  margin-top: 18px;
  box-shadow: var(--shadow-card);
}

.result-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #25D366;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.result-title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--gold-300);
  margin-bottom: 18px;
}

.result-details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 14px;
  margin-bottom: 22px;
  background: rgba(10, 9, 13, 0.5);
  padding: 16px;
  border-radius: var(--radius-sm);
}

.res-item {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.res-label {
  font-size: 0.74rem;
  color: var(--text-muted);
  text-transform: uppercase;
}

.res-val {
  font-size: 0.92rem;
  color: var(--text-white);
}

.res-val.highlight-gold {
  color: var(--gold-400);
}

/* --------------------------------------------------------------------------
   10. ARRASTADOR ANTES / DEPOIS (RESPONSIVO)
   -------------------------------------------------------------------------- */
.ba-slider-container {
  max-width: 800px;
  margin: 0 auto;
}

.ba-slider-box {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.8);
  border: 1px solid var(--border-gold-subtle);
  user-select: none;
  cursor: ew-resize;
}

.ba-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.ba-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ba-before {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 50%;
  overflow: hidden;
  z-index: 2;
  border-right: 2px solid var(--gold-400);
}

.ba-before img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: var(--ba-box-width, 100%);
  max-width: none;
  object-fit: cover;
}

.ba-tag {
  position: absolute;
  bottom: 18px;
  padding: 6px 14px;
  background: rgba(10, 9, 13, 0.8);
  backdrop-filter: blur(8px);
  color: var(--text-white);
  font-size: 0.78rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.15);
  z-index: 3;
}

.tag-after { right: 18px; color: var(--gold-300); border-color: var(--gold-500); }
.tag-before { left: 18px; }

.ba-handle {
  position: absolute;
  top: 0;
  left: 50%;
  bottom: 0;
  width: 40px;
  margin-left: -20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 4;
  pointer-events: none;
}

.ba-handle-line {
  flex: 1;
  width: 2px;
  background: var(--gold-400);
  box-shadow: 0 0 8px var(--gold-500);
}

.ba-handle-btn {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  color: #1A1300;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(229, 169, 60, 0.8);
  font-size: 0.95rem;
}

.ba-hint {
  text-align: center;
  margin-top: 14px;
  font-size: 0.86rem;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   11. GALERIA DE FOTOS & VÍDEOS COM FILTROS
   -------------------------------------------------------------------------- */
.gallery-filters {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.filter-btn {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-main);
  padding: 8px 20px;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-fast);
}

.filter-btn:hover {
  background: rgba(229, 169, 60, 0.1);
  border-color: var(--gold-500);
  color: var(--gold-300);
}

.filter-btn.active {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  color: #1A1300;
  border-color: transparent;
  box-shadow: 0 4px 15px rgba(229, 169, 60, 0.35);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 22px;
}

.gallery-item {
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.gallery-item.hidden {
  display: none;
}

.gallery-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--bg-surface-2);
  border: 1px solid rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(10, 9, 13, 0.92) 0%, rgba(10, 9, 13, 0.3) 60%, transparent 100%);
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  transition: opacity 0.3s ease;
}

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

.gallery-category-tag {
  align-self: flex-start;
  background: rgba(229, 169, 60, 0.2);
  color: var(--gold-300);
  border: 1px solid var(--border-gold-subtle);
  padding: 3px 9px;
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.video-tag {
  background: rgba(255, 68, 68, 0.25);
  color: #FF8888;
  border-color: rgba(255, 68, 68, 0.5);
}

.gallery-item-title {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--text-white);
  margin-bottom: 6px;
}

.view-btn {
  font-size: 0.82rem;
  color: var(--gold-400);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* Video Card Preview */
.is-video-card .video-preview-thumb {
  position: relative;
  width: 100%;
  height: 100%;
}

.play-pulse-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 52px;
  height: 52px;
  background: rgba(229, 169, 60, 0.9);
  color: #1A1300;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: 0 0 25px rgba(229, 169, 60, 0.7);
  transition: transform 0.3s ease;
  z-index: 1;
}

.gallery-card:hover .play-pulse-btn {
  transform: translate(-50%, -50%) scale(1.15);
}

.gallery-bottom-cta {
  margin-top: 44px;
}

.cta-note {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.btn-instagram-glow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 28px;
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
  color: #fff;
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 20px rgba(253, 29, 29, 0.35);
  transition: var(--transition-fast);
}

.btn-instagram-glow:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(253, 29, 29, 0.55);
}

/* --------------------------------------------------------------------------
   12. SOBRE A KELLY CRISTINA (DUO SHOWCASE SEM SOBREPOSIÇÃO)
   -------------------------------------------------------------------------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 50px;
}

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

.about-photo-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-gold-active);
  box-shadow: var(--shadow-card);
  background: var(--bg-surface-2);
  transition: var(--transition-normal);
}

.about-photo-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}

.main-photo-card {
  aspect-ratio: 3 / 4;
}

.sub-photo-card {
  aspect-ratio: 3 / 4;
  margin-top: 24px;
}

.about-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.photo-caption-tag {
  position: absolute;
  bottom: 10px;
  left: 10px;
  right: 10px;
  background: rgba(10, 9, 13, 0.88);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-gold-subtle);
  padding: 8px 10px;
  border-radius: var(--radius-sm);
  font-size: 0.74rem;
  color: var(--gold-300);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}

.about-experience-badge {
  position: absolute;
  bottom: 10px;
  left: 10px;
  right: 10px;
  background: rgba(18, 17, 24, 0.94);
  backdrop-filter: blur(10px);
  border: 1px solid var(--gold-500);
  padding: 8px 10px;
  border-radius: var(--radius-sm);
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.about-experience-badge i {
  color: var(--gold-400);
  font-size: 1rem;
}

.about-experience-badge strong {
  font-size: 0.78rem;
  color: var(--text-white);
}

.about-experience-badge span {
  font-size: 0.68rem;
  color: var(--gold-300);
}

.about-subtitle {
  font-size: 1.1rem;
  color: var(--gold-400);
  font-weight: 600;
  margin-bottom: 18px;
}

.about-paragraph {
  font-size: 0.96rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.about-pillars {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 26px 0;
}

.pillar-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.pillar-icon {
  width: 40px;
  height: 40px;
  background: rgba(229, 169, 60, 0.12);
  border: 1px solid var(--border-gold-subtle);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-400);
  font-size: 1rem;
  flex-shrink: 0;
}

.pillar-info strong {
  display: block;
  font-size: 0.95rem;
  color: var(--text-white);
  margin-bottom: 2px;
}

.pillar-info span {
  font-size: 0.84rem;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   13. PACOTES & PREÇOS
   -------------------------------------------------------------------------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 26px;
  margin-bottom: 36px;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition-normal);
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-6px);
  border-color: rgba(229, 169, 60, 0.4);
}

.featured-pricing {
  background: linear-gradient(180deg, rgba(34, 30, 48, 0.95) 0%, rgba(20, 18, 28, 0.98) 100%);
  border: 2px solid var(--gold-500);
  box-shadow: var(--shadow-card-hover);
  transform: scale(1.03);
}

.featured-pricing:hover {
  transform: scale(1.05) translateY(-6px);
}

.pricing-badge-popular {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  color: #000;
  font-weight: 800;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 16px;
  border-radius: var(--radius-full);
}

.plan-name {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 8px;
}

.plan-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 22px;
  min-height: 40px;
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.plan-price .currency {
  font-size: 1.15rem;
  color: var(--gold-400);
  font-weight: 700;
}

.plan-price .amount {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--text-white);
  line-height: 1;
}

.plan-price .period {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 28px;
}

.plan-features li {
  font-size: 0.88rem;
  color: var(--text-main);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.plan-features li i {
  color: var(--gold-400);
  margin-top: 4px;
  font-size: 0.82rem;
}

.pricing-note {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   14. GUIA DE CUIDADOS (PRÉ E PÓS BRONZE)
   -------------------------------------------------------------------------- */
.care-timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 26px;
}

.care-step-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  position: relative;
  transition: var(--transition-normal);
}

.care-step-card:hover {
  border-color: var(--gold-500);
  transform: translateY(-4px);
}

.step-badge-icon {
  width: 50px;
  height: 50px;
  background: rgba(229, 169, 60, 0.12);
  border: 1px solid var(--border-gold-active);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-400);
  font-size: 1.3rem;
  margin-bottom: 16px;
}

.step-timeline-tag {
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold-500);
  font-weight: 700;
}

.step-title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--text-white);
  margin: 6px 0 10px;
}

.step-text {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.step-check {
  font-size: 0.8rem;
  color: var(--gold-300);
  background: rgba(229, 169, 60, 0.08);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* --------------------------------------------------------------------------
   15. DEPOIMENTOS
   -------------------------------------------------------------------------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 26px;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.test-stars {
  color: #FFB800;
  display: flex;
  gap: 4px;
  margin-bottom: 14px;
}

.test-text {
  font-size: 0.92rem;
  color: var(--text-main);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 22px;
}

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

.author-avatar {
  width: 40px;
  height: 40px;
  background: rgba(229, 169, 60, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-400);
}

.test-author strong {
  display: block;
  font-size: 0.92rem;
  color: var(--text-white);
}

.test-author span {
  font-size: 0.75rem;
  color: var(--gold-400);
}

/* --------------------------------------------------------------------------
   16. FAQ ACCORDION
   -------------------------------------------------------------------------- */
.faq-accordion-box {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition-fast);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 22px;
  text-align: left;
  color: var(--text-white);
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  gap: 16px;
}

.faq-question i {
  color: var(--gold-400);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 22px;
  background: rgba(10, 9, 13, 0.3);
}

.faq-item.active .faq-answer {
  max-height: 600px;
  padding: 0 22px 20px;
}

.faq-answer p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* --------------------------------------------------------------------------
   17. FORMULÁRIO DE AGENDAMENTO
   -------------------------------------------------------------------------- */
.booking-card-wrapper {
  background: linear-gradient(145deg, rgba(30, 26, 42, 0.95) 0%, rgba(16, 14, 24, 0.98) 100%);
  border: 1px solid var(--border-gold-active);
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: var(--shadow-card), var(--glow-gold);
}

.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 44px;
  align-items: center;
}

.booking-title {
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 3.2vw, 2.4rem);
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 14px;
}

.booking-desc {
  font-size: 0.96rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 24px;
}

.booking-perks {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 26px;
}

.perk-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-main);
}

.perk-row i {
  color: #25D366;
}

.insta-direct-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-400);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
}

/* Campos do Formulário */
.booking-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-main);
}

.form-input,
.form-select,
.form-textarea {
  background: rgba(10, 9, 13, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  color: var(--text-white);
  font-family: var(--font-sans);
  font-size: 0.92rem;
  transition: var(--transition-fast);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--gold-500);
  box-shadow: 0 0 10px rgba(229, 169, 60, 0.25);
  background: rgba(14, 12, 18, 0.9);
}

.form-select option {
  background: var(--bg-surface-2);
  color: var(--text-white);
}

.form-secure-text {
  font-size: 0.75rem;
  color: var(--text-dim);
  text-align: center;
  margin-top: 4px;
}

/* --------------------------------------------------------------------------
   18. LOCALIZAÇÃO
   -------------------------------------------------------------------------- */
.location-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 26px;
}

.location-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  display: flex;
  flex-direction: column;
}

.loc-icon-box {
  width: 46px;
  height: 46px;
  background: rgba(229, 169, 60, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-400);
  font-size: 1.2rem;
  margin-bottom: 18px;
}

.loc-card-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--text-white);
  margin-bottom: 8px;
}

.loc-card-text {
  font-size: 1rem;
  color: var(--gold-300);
  font-weight: 600;
  margin-bottom: 5px;
}

.loc-card-sub {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 18px;
  line-height: 1.5;
}

.loc-actions {
  margin-top: auto;
}

.hours-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 14px;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--text-main);
  border-bottom: 1px dashed rgba(255, 255, 255, 0.08);
  padding-bottom: 5px;
}

.hours-list strong {
  color: var(--gold-400);
}

.hours-note {
  font-size: 0.74rem;
  color: var(--text-dim);
}

.contact-channels {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.channel-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  text-decoration: none;
  color: var(--text-white);
  transition: var(--transition-fast);
}

.channel-link i {
  font-size: 1.3rem;
  color: var(--gold-400);
}

.channel-link strong {
  display: block;
  font-size: 0.88rem;
}

.channel-link span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.channel-link:hover {
  background: rgba(229, 169, 60, 0.1);
  border-color: var(--gold-500);
}

/* --------------------------------------------------------------------------
   19. FOOTER
   -------------------------------------------------------------------------- */
.site-footer {
  background: #060508;
  border-top: 1px solid rgba(229, 169, 60, 0.2);
  padding-top: 70px;
  padding-bottom: 28px;
}

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

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.footer-logo-icon {
  width: 40px;
  height: 40px;
}

.footer-logo .brand-title {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  color: var(--gold-400);
}

.footer-logo .brand-subtitle {
  display: block;
  font-size: 0.72rem;
  color: var(--text-muted);
}

.footer-text {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 20px;
}

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

.footer-socials a {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-400);
  text-decoration: none;
  transition: var(--transition-fast);
}

.footer-socials a:hover {
  background: var(--gold-500);
  color: #000;
  box-shadow: var(--glow-gold);
}

.footer-heading {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--text-white);
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 6px;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 22px;
  height: 2px;
  background: var(--gold-500);
}

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

.footer-nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.88rem;
  transition: var(--transition-fast);
}

.footer-nav a:hover {
  color: var(--gold-300);
  padding-left: 4px;
}

.footer-contact-item {
  font-size: 0.85rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.footer-contact-item i {
  color: var(--gold-400);
}

.footer-cta-box {
  margin-top: 16px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.82rem;
  color: var(--text-dim);
}

.footer-badges {
  display: flex;
  gap: 18px;
  color: var(--gold-400);
}

/* --------------------------------------------------------------------------
   20. LIGHTBOX FULLSCREEN MODAL
   -------------------------------------------------------------------------- */
.lightbox-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
}

.lightbox-modal.active {
  display: flex;
}

.lightbox-overlay {
  position: absolute;
  inset: 0;
  background: rgba(5, 4, 8, 0.92);
  backdrop-filter: blur(12px);
}

.lightbox-dialog {
  position: relative;
  z-index: 2;
  width: 90%;
  max-width: 900px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-close {
  position: absolute;
  top: -45px;
  right: 0;
  background: none;
  border: none;
  color: var(--text-white);
  font-size: 2.5rem;
  cursor: pointer;
  line-height: 1;
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: rgba(22, 20, 30, 0.8);
  border: 1px solid var(--border-gold-subtle);
  border-radius: 50%;
  color: var(--gold-400);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
}

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

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

.lightbox-media-container {
  width: 100%;
  max-height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.9);
}

.lightbox-media-container img,
.lightbox-media-container video {
  max-width: 100%;
  max-height: 75vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
}

.lightbox-caption-bar {
  width: 100%;
  margin-top: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-white);
  font-size: 0.88rem;
}

.lightbox-counter {
  color: var(--gold-400);
  font-weight: 700;
}

/* --------------------------------------------------------------------------
   21. BOTÃO FLUTUANTE DO WHATSAPP
   -------------------------------------------------------------------------- */
.floating-whatsapp-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
  text-decoration: none;
  z-index: 990;
  transition: transform 0.3s ease;
}

.floating-whatsapp-btn:hover {
  transform: scale(1.08) rotate(6deg);
}

.whatsapp-pulse-ring {
  position: absolute;
  inset: -5px;
  border: 2px solid #25D366;
  border-radius: 50%;
  animation: pulse-ring 2s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
}

@keyframes pulse-ring {
  0% { transform: scale(0.9); opacity: 0.8; }
  100% { transform: scale(1.4); opacity: 0; }
}

.whatsapp-tooltip {
  position: absolute;
  right: 74px;
  background: rgba(18, 17, 24, 0.95);
  border: 1px solid var(--border-gold-subtle);
  color: var(--gold-300);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  white-space: nowrap;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
  pointer-events: none;
  opacity: 0;
  transform: translateX(10px);
  transition: var(--transition-fast);
}

.floating-whatsapp-btn:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* --------------------------------------------------------------------------
   22. RESPONSIVIDADE (MEDIA QUERIES)
   -------------------------------------------------------------------------- */
@media (max-width: 1080px) {
  .main-nav .nav-list {
    gap: 12px;
  }
  .nav-link {
    font-size: 0.82rem;
  }
  .header-cta-btn {
    padding: 0 14px;
    font-size: 0.8rem;
  }
}

@media (max-width: 980px) {
  .main-nav {
    display: none;
  }

  .mobile-toggle-btn {
    display: flex;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-content {
    text-align: center;
  }

  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-cta-group {
    justify-content: center;
  }

  .hero-stats-row {
    justify-content: center;
  }

  .hero-visual-wrapper {
    max-width: 460px;
    margin: 0 auto;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .booking-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 860px) {
  .sun-widget-card {
    flex-direction: column;
    text-align: center;
    padding: 24px;
  }

  .widget-left {
    flex-direction: column;
  }

  .widget-stats-grid {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }

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

@media (max-width: 600px) {
  .section-padding {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .top-announcement {
    display: none;
  }

  .header-cta-btn {
    display: none;
  }

  .about-duo-gallery {
    grid-template-columns: 1fr;
  }

  .sub-photo-card {
    margin-top: 0;
  }

  .featured-pricing {
    transform: none;
  }

  .featured-pricing:hover {
    transform: translateY(-6px);
  }

  .hero-stats-row {
    gap: 14px;
  }

  .stat-card .stat-number {
    font-size: 1.4rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .booking-card-wrapper {
    padding: 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .floating-badge {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero-cta-group .btn-large {
    width: 100%;
  }

  .pricing-grid,
  .care-timeline,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .hero-title {
    font-size: 2.1rem;
  }
}
