/*
Theme Name: Lion Models
Theme URI: https://lionmodelsoficial.com.br
Author: InfoBecker
Author URI: https://infobecker.com
Description: Tema oficial da Lion Models - Produtora de Talentos e Modelos Profissionais. Landing page completa com animações GSAP, modo escuro/claro, galeria coverflow 3D, formulário WhatsApp e muito mais.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: lion-models
Tags: one-page, dark-mode, custom-colors, full-width-template, animation
*/

/* --- DESIGN SYSTEM & CSS VARIABLES --- */
:root {
  /* Fonts */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Color Palette - Dark Mode (Default) */
  --bg-primary: #080808;
  --bg-secondary: #121212;
  --bg-tertiary: #1a1a1a;
  --bg-card: rgba(20, 20, 20, 0.65);
  --bg-glass: rgba(10, 10, 10, 0.7);
  --border-glass: rgba(212, 175, 55, 0.15);
  --border-glass-hover: rgba(212, 175, 55, 0.4);
  
  --text-primary: #ffffff;
  --text-secondary: #b0b0b0;
  --text-muted: #666666;
  
  --color-gold: #d4af37;
  --color-gold-light: #f3e5ab;
  --color-gold-dark: #aa7c11;
  --color-accent: #d4af37;
  --color-success: #25d366; /* WhatsApp Green */
  
  --gradient-gold: linear-gradient(135deg, #aa7c11 0%, #d4af37 50%, #f3e5ab 100%);
  --gradient-gold-hover: linear-gradient(135deg, #d4af37 0%, #f3e5ab 50%, #aa7c11 100%);
  --gradient-dark: linear-gradient(180deg, #0a0a0a 0%, #161616 100%);
  --gradient-card: linear-gradient(135deg, rgba(30,30,30,0.4) 0%, rgba(10,10,10,0.8) 100%);
  
  --shadow-gold: 0 10px 30px -10px rgba(212, 175, 55, 0.25);
  --shadow-gold-glow: 0 0 25px rgba(212, 175, 55, 0.35);
  --shadow-nav: 0 10px 30px rgba(0, 0, 0, 0.5);

  --transition-smooth: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-fast: all 0.2s ease;
  
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  
  --nav-height: 80px;
}

[data-theme="light"] {
  /* Color Palette - Light Mode */
  --bg-primary: #FAF8F5;
  --bg-secondary: #F3EFE9;
  --bg-tertiary: #E8E2D9;
  --bg-card: rgba(255, 255, 255, 0.75);
  --bg-glass: rgba(250, 248, 245, 0.8);
  --border-glass: rgba(170, 124, 17, 0.15);
  --border-glass-hover: rgba(170, 124, 17, 0.4);
  
  --text-primary: #151515;
  --text-secondary: #555555;
  --text-muted: #8c8c8c;
  
  --color-gold: #b8860b;
  --color-gold-light: #d4af37;
  --color-gold-dark: #8b6508;
  --color-accent: #b8860b;
  
  --gradient-gold: linear-gradient(135deg, #8b6508 0%, #b8860b 50%, #d4af37 100%);
  --gradient-gold-hover: linear-gradient(135deg, #b8860b 0%, #d4af37 50%, #8b6508 100%);
  --gradient-dark: linear-gradient(180deg, #FAF8F5 0%, #EFEBE4 100%);
  --gradient-card: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(245,241,235,0.6) 100%);
  
  --shadow-gold: 0 10px 30px -10px rgba(184, 134, 11, 0.2);
  --shadow-gold-glow: 0 0 20px rgba(184, 134, 11, 0.25);
  --shadow-nav: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* --- GRADUAL ILLUMINATION TRANSITIONS --- */
body, 
header, 
.nav-link,
.glass-card, 
.faq-item, 
.footer, 
.btn, 
.form-control, 
.theme-switch-btn, 
h1, h2, h3, h4, p, span, i {
  transition: background 0.8s ease, color 0.8s ease, border-color 0.8s ease, box-shadow 0.8s ease;
}

/* Prevent slow fade transitions from clashing with the clip-path circular reveal */
html.theme-transitioning,
html.theme-transitioning * {
  transition: none !important;
}

/* --- RESET & BASIC STYLES --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
}

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

/* --- CORE LAYOUT CONTAINERS --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
  position: relative;
  z-index: 10;
}

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

/* --- BACKGROUND ANIMATED CANVAS & EFFECTS --- */
#bg-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  opacity: 0.6;
  transition: opacity 0.5s ease;
}

.gradient-bg-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.07) 0%, rgba(212, 175, 55, 0) 70%);
  z-index: 2;
  pointer-events: none;
  filter: blur(40px);
  animation: float-slow 20s infinite alternate;
}

@keyframes float-slow {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(100px, 50px) scale(1.2); }
  100% { transform: translate(-50px, 150px) scale(0.9); }
}

/* --- THEME REVEAL NATIVE VIEW TRANSITION --- */
::view-transition-old(root),
::view-transition-new(root) {
  animation: none;
  mix-blend-mode: normal;
}

::view-transition-old(root) {
  z-index: 1;
}

::view-transition-new(root) {
  z-index: 2;
}

/* --- TYPOGRAPHY UTILITIES --- */
.text-gradient {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px auto;
}

.section-tag {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-gold);
  margin-bottom: 12px;
  display: inline-block;
}

.section-title {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.section-subtitle {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 32px;
  }
}

/* --- MODERN GLASS CARDS & BUTTONS --- */
.glass-card {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 30px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 16px 36px;
  border-radius: var(--radius-full);
  font-size: 14px;
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary {
  background: var(--gradient-gold);
  color: #000000;
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  background: var(--gradient-gold-hover);
  box-shadow: var(--shadow-gold-glow);
  transform: scale(1.03);
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 2px solid var(--color-gold);
}

.btn-secondary:hover {
  background: rgba(212, 175, 55, 0.1);
  color: var(--color-gold-light);
  transform: translateY(-2px);
}

/* --- HEADER & NAVIGATION --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  z-index: 1000;
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-glass);
}

.header.scrolled {
  height: 70px;
  box-shadow: var(--shadow-nav);
  background: rgba(8, 8, 8, 0.95);
}

[data-theme="light"] .header.scrolled {
  background: rgba(250, 248, 245, 0.95);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.logo img {
  height: 54px;
  width: auto;
  transition: transform 0.4s ease;
}

.logo:hover img {
  transform: scale(1.05);
}

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

.nav-link {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
  position: relative;
  padding: 8px 0;
}

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

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

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

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

/* Menu Toggle Button for Mobile */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 24px;
  position: relative;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--text-primary);
  position: absolute;
  transition: var(--transition-fast);
}

.menu-toggle span:nth-child(1) { top: 0; }
.menu-toggle span:nth-child(2) { top: 11px; }
.menu-toggle span:nth-child(3) { top: 22px; }

.menu-toggle.active span:nth-child(1) { transform: translateY(11px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-11px) rotate(-45deg); }

/* --- THEME TOGGLE SWITCH (Fixed Sun Icon) --- */
.theme-switch-btn {
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--border-glass);
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.theme-switch-btn:hover {
  background: rgba(212, 175, 55, 0.2);
  border-color: var(--color-gold);
  transform: scale(1.05);
}

.theme-switch-btn i {
  font-size: 18px;
  color: var(--color-gold);
}

.theme-switch-btn .sun-icon {
  display: none;
}

.theme-switch-btn .moon-icon {
  display: block;
}

[data-theme="light"] .theme-switch-btn .moon-icon {
  display: none;
}

[data-theme="light"] .theme-switch-btn .sun-icon {
  display: block;
}

@media (max-width: 992px) {
  .menu-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--bg-secondary);
    border-left: 1px solid var(--border-glass);
    flex-direction: column;
    justify-content: center;
    gap: 40px;
    z-index: 999;
    transition: var(--transition-smooth);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
  }

  .nav-menu.active {
    right: 0;
  }
  
  .nav-actions {
    margin-right: 40px;
  }
}

/* --- HERO SECTION --- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--nav-height) + 40px);
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 150px;
  background: linear-gradient(to top, var(--bg-primary), transparent);
  z-index: 5;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 10;
}

.hero-tagline {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-gold);
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-tagline::before {
  content: '';
  width: 30px;
  height: 2px;
  background: var(--color-gold);
}

.hero-title {
  font-size: 56px;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero-description {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 40px;
  max-width: 540px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  margin-bottom: 50px;
}

.hero-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.hero-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--text-secondary);
}

.hero-feature-icon {
  width: 40px;
  height: 40px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--border-glass);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  flex-shrink: 0;
}

/* Lion Medallion Render */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
}

.lion-shield-container {
  position: relative;
  width: 100%;
  max-width: 420px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, rgba(0, 0, 0, 0) 70%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.lion-shield-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 110%;
  height: 110%;
  border-radius: 50%;
  border: 2px dashed rgba(212, 175, 55, 0.2);
  animation: rotate-slow 40s linear infinite;
}

[data-theme="light"] .lion-shield-container {
  background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, transparent 70%);
}

[data-theme="light"] .lion-shield-glow {
  border-color: rgba(184, 134, 11, 0.6);
}

@keyframes rotate-slow {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* --- METALLIC SHINE EFFECT ON TRANSPARENT LOGO --- */
.lion-logo-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 85%;
  max-width: 350px;
  margin: 0 auto;
  animation: pulse-gentle 6s ease-in-out infinite alternate;
  
  /* Mask limits shine to logo contours - kept static on wrapper */
  mask-image: url('assets/logotipo/Lion_Models_Logo.webp');
  -webkit-mask-image: url('assets/logotipo/Lion_Models_Logo.webp');
  mask-size: contain;
  -webkit-mask-size: contain;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-position: center;
}

.lion-logo-gold {
  width: 100%;
  height: auto;
  animation: jewel-glow 5s ease-in-out infinite alternate;
}

@keyframes jewel-glow {
  0% {
    filter: drop-shadow(0 10px 20px rgba(212, 175, 55, 0.4)) drop-shadow(0 0 10px rgba(212, 175, 55, 0.2));
    transform: scale(1);
  }
  50% {
    filter: drop-shadow(0 15px 35px rgba(212, 175, 55, 0.65)) drop-shadow(0 0 25px rgba(255, 215, 0, 0.55)) drop-shadow(0 0 50px rgba(212, 175, 55, 0.3));
    transform: scale(1.02);
  }
  100% {
    filter: drop-shadow(0 10px 20px rgba(212, 175, 55, 0.4)) drop-shadow(0 0 10px rgba(212, 175, 55, 0.2));
    transform: scale(1);
  }
}

[data-theme="light"] .lion-logo-gold {
  animation: jewel-glow-light 5s ease-in-out infinite alternate;
}

@keyframes jewel-glow-light {
  0% {
    filter: drop-shadow(0 10px 20px rgba(184, 134, 11, 0.7)) drop-shadow(0 0 15px rgba(212, 175, 55, 0.5));
    transform: scale(1);
  }
  50% {
    filter: drop-shadow(0 15px 35px rgba(184, 134, 11, 0.9)) drop-shadow(0 0 35px rgba(255, 215, 0, 0.7)) drop-shadow(0 0 60px rgba(212, 175, 55, 0.6));
    transform: scale(1.02);
  }
  100% {
    filter: drop-shadow(0 10px 20px rgba(184, 134, 11, 0.7)) drop-shadow(0 0 15px rgba(212, 175, 55, 0.5));
    transform: scale(1);
  }
}

.logo-shine {
  position: absolute;
  top: 0;
  left: -150%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(212, 175, 55, 0.3) 30%,
    rgba(255, 255, 255, 0.8) 50%,
    rgba(212, 175, 55, 0.3) 70%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-25deg);
  animation: logo-shimmer 6s infinite ease-in-out;
  pointer-events: none;
  mix-blend-mode: overlay;
}

@keyframes logo-shimmer {
  0% { left: -150%; }
  35% { left: 150%; }
  100% { left: 150%; }
}

@keyframes pulse-gentle {
  0% { transform: translateY(0) scale(1); }
  100% { transform: translateY(-15px) scale(1.02); }
}

@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }
  
  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .hero-tagline {
    justify-content: center;
  }
  
  .hero-features {
    justify-items: center;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .lion-shield-container {
    max-width: 320px;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 38px;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
  
  .hero-features {
    grid-template-columns: 1fr;
    justify-items: start;
    max-width: 280px;
  }
}

/* --- SOBRE NÓS (Blending Light Founder Image in Dark Theme) --- */
.about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 80px;
  align-items: center;
}

.about-image-wrapper {
  position: relative;
}

.about-image-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-glass);
  box-shadow: var(--shadow-gold);
}

/* Fade blend overlay on founder photo to ease light background into themes */
.about-image-frame::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(8, 8, 8, 0) 40%, rgba(8, 8, 8, 0.45) 75%, rgba(8, 8, 8, 0.95) 100%);
  pointer-events: none;
}

[data-theme="light"] .about-image-frame::after {
  background: linear-gradient(180deg, rgba(250, 248, 245, 0) 40%, rgba(250, 248, 245, 0.45) 75%, rgba(250, 248, 245, 0.95) 100%);
}

.about-image-frame img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  filter: brightness(0.92) contrast(1.06) saturate(0.95);
  transition: filter 0.5s ease;
}

.about-image-frame:hover img {
  filter: brightness(0.98) contrast(1.02) saturate(1);
}

.about-badge {
  position: absolute;
  bottom: -30px;
  right: -30px;
  background: var(--gradient-gold);
  color: #000000;
  padding: 20px 28px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-gold-glow);
  text-align: center;
  z-index: 15;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.about-badge-num {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 800;
  line-height: 1.2;
}

.about-badge-text {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 4px;
}

.about-content .section-title {
  text-align: left;
}

.about-text {
  color: var(--text-secondary);
  font-size: 16px;
  margin-bottom: 24px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.stat-item {
  border-left: 3px solid var(--color-gold);
  padding-left: 15px;
}

.stat-num {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 800;
  color: var(--color-gold);
  line-height: 1;
}

.stat-label {
  font-size: 12px;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 6px;
}

@media (max-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  
  .about-badge {
    bottom: -15px;
    right: -15px;
    padding: 16px 20px;
  }
  
  .about-badge-num {
    font-size: 18px;
  }
}

@media (max-width: 576px) {
  .about-stats {
    grid-template-columns: 1fr;
    gap: 25px;
  }
}

/* --- PARA QUEM É (TARGET) --- */
.profiles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.profile-card {
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.profile-icon-box {
  width: 70px;
  height: 70px;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  margin-bottom: 24px;
  font-size: 28px;
  transition: var(--transition-smooth);
}

.profile-card:hover .profile-icon-box {
  background: var(--gradient-gold);
  color: #000000;
  box-shadow: var(--shadow-gold-glow);
  transform: rotateY(360deg);
}

.profile-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  text-transform: uppercase;
  color: var(--text-primary);
}

.profile-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

@media (max-width: 992px) {
  .profiles-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .profiles-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* --- BENEFÍCIOS --- */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.benefit-card {
  text-align: left;
  border-top: 4px solid var(--color-gold);
}

.benefit-num {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 900;
  opacity: 0.15;
  color: var(--color-gold);
  line-height: 1;
  margin-bottom: 16px;
}

.benefit-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.benefit-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

@media (max-width: 992px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }
}

/* --- DEPOIMENTOS (Corrected Side Space & Arrows) --- */
.testimonials-slider-container {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 70px; /* Space on left/right for navigation arrows */
}

.testimonials-wrapper-outer {
  overflow: hidden;
  width: 100%;
}

.testimonials-wrapper {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
  will-change: transform;
}

.testimonial-slide {
  flex: 0 0 100%;
  width: 100%;
  padding: 0 10px;
}

.testimonial-card {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 40px;
  align-items: center;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-glass);
  padding: 40px;
  backdrop-filter: blur(16px);
  position: relative;
}

.testimonial-img-box {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-glass);
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-gold);
}

.testimonial-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-quote-icon {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 100px;
  font-family: var(--font-heading);
  line-height: 1;
  color: var(--color-gold);
  opacity: 0.1;
  pointer-events: none;
}

.testimonial-content {
  display: flex;
  flex-direction: column;
}

.testimonial-rating {
  color: var(--color-gold);
  font-size: 18px;
  margin-bottom: 20px;
}

.testimonial-text {
  font-size: 17px;
  font-style: italic;
  line-height: 1.7;
  color: var(--text-primary);
  margin-bottom: 24px;
}

.testimonial-author-name {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--color-gold);
  text-transform: uppercase;
}

.testimonial-author-role {
  font-size: 12px;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 4px;
}

/* Slider Navigation Buttons (Repositioned inside padding) */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  color: var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 100;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.slider-btn:hover {
  background: var(--gradient-gold);
  color: #000000;
  border-color: var(--color-gold-light);
  box-shadow: var(--shadow-gold-glow);
}

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

/* Slider Dots indicators */
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.2);
  border: 1px solid var(--border-glass);
  cursor: pointer;
}

.slider-dot.active {
  background: var(--color-gold);
  width: 30px;
  border-radius: 6px;
  box-shadow: var(--shadow-gold-glow);
}

@media (max-width: 992px) {
  .testimonials-slider-container {
    padding: 0 20px;
  }
  
  .testimonial-card {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 30px;
  }
  
  .testimonial-img-box {
    max-width: 250px;
    margin: 0 auto;
  }
  
  .slider-btn {
    top: auto;
    bottom: -90px;
    transform: translateY(0);
  }
  
  .slider-btn-prev { left: calc(50% - 70px); }
  .slider-btn-next { right: calc(50% - 70px); }
  
  .slider-dots {
    margin-top: 50px;
  }
}

/* --- INSCRIÇÃO FORM & URGENCY (COUNTDOWN) --- */
.register-section {
  position: relative;
}

.register-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}

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

.countdown-box {
  display: flex;
  gap: 16px;
  margin: 30px 0;
}

.countdown-item {
  flex: 1;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 16px;
  text-align: center;
  backdrop-filter: blur(8px);
}

.countdown-val {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 800;
  color: var(--color-gold);
  line-height: 1;
}

.countdown-label {
  font-size: 11px;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-top: 4px;
}

.bullets-list {
  list-style: none;
  margin-top: 24px;
}

.bullet-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.bullet-icon {
  color: var(--color-gold);
  font-size: 18px;
  margin-top: 2px;
}

/* Glass Form styling */
.register-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  position: relative;
}

.form-label {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-gold);
  margin-bottom: 8px;
}

.form-control {
  font-family: var(--font-body);
  background: rgba(8, 8, 8, 0.4);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  padding: 14px 18px;
  font-size: 14px;
}

[data-theme="light"] .form-control {
  background: rgba(255, 255, 255, 0.5);
}

.form-control:focus {
  outline: none;
  border-color: var(--color-gold);
  box-shadow: var(--shadow-gold-glow);
  background: rgba(8, 8, 8, 0.7);
}

[data-theme="light"] .form-control:focus {
  background: rgba(255, 255, 255, 0.9);
}

.form-control::placeholder {
  color: var(--text-muted);
}

.form-group-checkbox {
  flex-direction: row;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  margin-top: 10px;
}

.form-checkbox {
  accent-color: var(--color-gold);
  width: 18px;
  height: 18px;
}

.form-checkbox-label {
  font-size: 13px;
  color: var(--text-secondary);
}

.form-footer-note {
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 12px;
}

@media (max-width: 992px) {
  .register-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

@media (max-width: 576px) {
  .form-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* --- FAQ SECTION --- */
.faq-max-width {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-item {
  border-radius: var(--radius-md);
  border: 1px solid var(--border-glass);
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  overflow: hidden;
}

.faq-header {
  padding: 24px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

.faq-question {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
}

.faq-icon-box {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.1);
  color: var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  transition: transform 0.4s ease, background 0.4s ease, color 0.4s ease;
}

.faq-item.active {
  border-color: var(--border-glass-hover);
  box-shadow: var(--shadow-gold);
}

.faq-item.active .faq-question {
  color: var(--color-gold);
}

.faq-item.active .faq-icon-box {
  transform: rotate(45deg);
  background: var(--gradient-gold);
  color: #000000;
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.faq-content {
  padding: 0 30px 30px 30px;
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.7;
}

@media (max-width: 576px) {
  .faq-header {
    padding: 20px;
  }
  
  .faq-content {
    padding: 0 20px 20px 20px;
  }
  
  .faq-question {
    font-size: 15px;
  }
}

/* --- INSTAGRAM COVERFLOW 3D GALLERY --- */
#galeria {
  overflow: visible;
}

.coverflow-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 0 100px;
  perspective: 1200px;
}

.coverflow-stage {
  position: relative;
  width: 100%;
  height: 440px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

/* Floor reflection surface */
.coverflow-stage::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 120px;
  background: radial-gradient(ellipse, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
  pointer-events: none;
  filter: blur(20px);
  z-index: 0;
}

/* Individual card */
.cf-card {
  position: absolute;
  width: 260px;
  height: 370px;
  border-radius: var(--radius-md);
  overflow: visible;
  cursor: pointer;
  will-change: transform, opacity;
  /* Reflection */
  -webkit-box-reflect: below 8px
    linear-gradient(transparent 65%, rgba(255, 255, 255, 0.15));
}

.cf-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 2px solid rgba(212, 175, 55, 0.12);
  transition: border-color 0.5s ease, box-shadow 0.5s ease;
}

/* Shadow/dimming overlay on all cards */
.cf-card-inner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  transition: background 0.5s ease;
  pointer-events: none;
  z-index: 2;
}

/* Studio top-light gradient on card — hidden by default */
.cf-card-inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(180deg, rgba(255, 215, 0, 0.18) 0%, transparent 100%);
  pointer-events: none;
  z-index: 3;
  opacity: 0;
  transition: opacity 0.5s ease;
}

/* Active card glows */
.cf-card.is-active .cf-card-inner {
  border-color: var(--color-gold);
  box-shadow:
    0 20px 50px -10px rgba(212, 175, 55, 0.5),
    0 0 60px rgba(212, 175, 55, 0.15),
    0 0 120px rgba(212, 175, 55, 0.05);
}

.cf-card.is-active .cf-card-inner::after {
  background: rgba(0, 0, 0, 0);
}

.cf-card.is-active .cf-card-inner::before {
  opacity: 1;
}

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

/* Instagram badge overlay */
.cf-card .insta-badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(212, 175, 55, 0.25);
  z-index: 5;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease 0.15s, transform 0.4s ease 0.15s;
}

.cf-card.is-active .insta-badge {
  opacity: 1;
  transform: translateY(0);
}

.cf-card .insta-badge i {
  color: var(--color-gold);
  font-size: 18px;
}

.cf-card .insta-badge span {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 0.03em;
}

/* Coverflow Navigation Buttons */
.cf-controls {
  position: absolute;
  top: 50%;
  left: -15px;
  right: -15px;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  padding: 0;
  z-index: 200;
}

.cf-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border-glass);
  color: var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  pointer-events: auto;
  font-size: 18px;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.cf-btn:hover {
  background: var(--gradient-gold);
  color: #000000;
  border-color: var(--color-gold-light);
  box-shadow: var(--shadow-gold-glow);
  transform: scale(1.12);
}

/* Carousel counter / indicator */
.cf-counter {
  text-align: center;
  margin-top: 40px;
  font-family: var(--font-heading);
  font-size: 14px;
  color: var(--text-muted);
  letter-spacing: 0.1em;
}

.cf-counter .cf-current {
  color: var(--color-gold);
  font-size: 22px;
  font-weight: 800;
}

.cf-counter .cf-total {
  font-weight: 600;
}

/* Progress bar */
.cf-progress {
  width: 200px;
  height: 3px;
  background: rgba(212, 175, 55, 0.15);
  border-radius: 2px;
  margin: 16px auto 0;
  overflow: hidden;
}

.cf-progress-bar {
  height: 100%;
  background: var(--gradient-gold);
  border-radius: 2px;
  transition: width 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 0 8px rgba(212, 175, 55, 0.4);
}

/* Instagram CTA link */
.carousel-insta-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: var(--transition-fast);
}

.carousel-insta-cta:hover {
  color: var(--color-gold-light);
  transform: translateY(-2px);
}

.carousel-insta-cta i {
  font-size: 22px;
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* --- LIGHTBOX MODAL FOR GALLERY --- */
.gallery-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.gallery-lightbox.open {
  opacity: 1;
  pointer-events: auto;
}

.gallery-lightbox-inner {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid var(--color-gold);
  box-shadow: 0 25px 70px rgba(212, 175, 55, 0.35), 0 0 100px rgba(212, 175, 55, 0.1);
  transform: scale(0.85) rotateY(15deg);
  transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.gallery-lightbox.open .gallery-lightbox-inner {
  transform: scale(1) rotateY(0deg);
}

.gallery-lightbox-inner img {
  display: block;
  max-width: 85vw;
  max-height: 85vh;
  object-fit: contain;
}

.gallery-lightbox-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-glass);
  color: var(--color-gold);
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition-smooth);
}

.gallery-lightbox-close:hover {
  background: var(--gradient-gold);
  color: #000;
  transform: scale(1.1) rotate(90deg);
}

.gallery-lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-glass);
  color: var(--color-gold);
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition-smooth);
}

.gallery-lightbox-nav:hover {
  background: var(--gradient-gold);
  color: #000;
  box-shadow: var(--shadow-gold-glow);
}

.gallery-lightbox-nav.lb-prev { left: 16px; }
.gallery-lightbox-nav.lb-next { right: 16px; }

/* Responsive Coverflow */
@media (max-width: 992px) {
  .coverflow-stage {
    height: 380px;
  }
  .cf-card {
    width: 220px;
    height: 320px;
  }
  .cf-btn {
    width: 46px;
    height: 46px;
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .coverflow-container {
    padding: 10px 0 80px;
  }
  .coverflow-stage {
    height: 340px;
  }
  .cf-card {
    width: 200px;
    height: 290px;
  }
  .cf-controls {
    top: auto;
    bottom: -30px;
    transform: none;
    justify-content: center;
    gap: 24px;
    padding: 0;
  }
}

@media (max-width: 576px) {
  .coverflow-stage {
    height: 300px;
  }
  .cf-card {
    width: 180px;
    height: 260px;
  }
  .gallery-lightbox-inner img {
    max-width: 95vw;
    max-height: 80vh;
  }
  .gallery-lightbox-nav {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }
  .gallery-lightbox-nav.lb-prev { left: 6px; }
  .gallery-lightbox-nav.lb-next { right: 6px; }
}


/* --- FOOTER --- */
.footer {
  background: #050505;
  border-top: 1px solid var(--border-glass);
  padding: 80px 0 30px 0;
  position: relative;
  z-index: 10;
  color: var(--text-secondary);
}

[data-theme="light"] .footer {
  background: #EFEBE4;
  border-top-color: var(--border-glass);
}

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

.footer-about-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-logo {
  height: 64px;
  width: auto;
  align-self: flex-start;
}

.footer-contact-link {
  color: var(--text-secondary);
  transition: var(--transition-fast);
  text-decoration: none;
}

.footer-contact-link:hover {
  color: var(--color-gold);
  text-decoration: underline;
}

.footer-desc {
  font-size: 14px;
  line-height: 1.6;
}

.footer-title {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 24px;
  letter-spacing: 0.05em;
}

.footer-links-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link {
  font-size: 14px;
  cursor: pointer;
}

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

.footer-contact-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
}

.footer-contact-icon {
  color: var(--color-gold);
  font-size: 16px;
  margin-top: 4px;
  flex-shrink: 0;
}

.social-links {
  display: flex;
  gap: 14px;
  margin-top: 15px;
}

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-glass);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  transition: transform 0.4s ease, background 0.4s ease, color 0.4s ease;
}

.social-btn:hover {
  background: var(--gradient-gold);
  color: #000000;
  transform: translateY(-3px) scale(1.05);
  box-shadow: var(--shadow-gold-glow);
}

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

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .footer {
    padding-bottom: 140px;
  }
}

@media (max-width: 576px) {
  .footer {
    padding-bottom: 120px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}

/* --- FIXED UTILITY CONTROLS --- */
/* Pulse WhatsApp Button Bottom Right */
.whatsapp-fixed-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--color-success);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
  z-index: 9999;
  cursor: pointer;
  font-size: 30px;
  animation: pulse-ring 2s infinite;
}

.whatsapp-fixed-btn:hover {
  transform: scale(1.1) rotate(10deg);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.6);
}

@keyframes pulse-ring {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}


/* Custom Studio Tripod Light Back-To-Top Button */
.back-to-top-btn {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 66px;
  height: 96px;
  border-radius: 33px;
  background: rgba(10, 10, 10, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-glass);
  color: var(--text-secondary);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding-bottom: 8px;
  cursor: pointer;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  transition: opacity 0.4s ease, visibility 0.4s ease, border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, transform 0.3s ease;
}

[data-theme="light"] .back-to-top-btn {
  background: rgba(245, 240, 230, 0.6);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.back-to-top-btn.visible {
  opacity: 1;
  visibility: visible;
}

/* Hover glow effects */
.back-to-top-btn:hover {
  border-color: var(--color-gold);
  background: rgba(15, 15, 15, 0.75);
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.45);
  color: var(--color-gold);
  transform: translateY(-5px);
}

[data-theme="light"] .back-to-top-btn:hover {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

/* SVG Structure & Styling */
.tripod-wrapper {
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 75px;
  pointer-events: none;
}

.tripod-svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

/* Tripod lines default (sleek metallic/gold) */
.tripod-line {
  stroke: var(--text-muted);
  stroke-width: 2.5;
  stroke-linecap: round;
  fill: none;
  transition: stroke 0.3s ease;
}

.tripod-knob,
.tripod-joint {
  fill: var(--text-muted);
  transition: fill 0.3s ease;
}

.light-head {
  fill: #222;
  stroke: var(--text-muted);
  stroke-width: 1.5;
  transition: fill 0.3s ease, stroke 0.3s ease;
}

[data-theme="light"] .light-head {
  fill: #ddd;
}

.light-hood {
  fill: #111;
  stroke: var(--text-muted);
  stroke-width: 1.5;
  transition: fill 0.3s ease, stroke 0.3s ease;
}

[data-theme="light"] .light-hood {
  fill: #ccc;
}

.light-lens {
  fill: #444;
  transition: fill 0.3s ease, filter 0.3s ease;
}

/* Hover active states for Tripod */
.back-to-top-btn:hover .tripod-line {
  stroke: var(--color-gold);
}

.back-to-top-btn:hover .tripod-knob,
.back-to-top-btn:hover .tripod-joint {
  fill: var(--color-gold);
}

.back-to-top-btn:hover .light-head {
  fill: #2c2512;
  stroke: var(--color-gold);
}

.back-to-top-btn:hover .light-hood {
  fill: #1e190b;
  stroke: var(--color-gold);
}

.back-to-top-btn:hover .light-lens {
  fill: #ffffff;
  filter: drop-shadow(0 0 8px #fff) drop-shadow(0 0 12px var(--color-gold));
}

/* Light Beam default (hidden) */
.light-beam {
  opacity: 0;
  transform: scaleY(0);
  transform-origin: 30px 18px;
  transition: opacity 0.3s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.back-to-top-btn:hover .light-beam {
  opacity: 1;
  transform: scaleY(1);
}

/* Text style */
.back-to-top-btn .btn-text {
  font-family: var(--font-heading);
  font-size: 8px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  transition: color 0.3s ease;
  z-index: 2;
}

.back-to-top-btn:hover .btn-text {
  color: var(--color-gold);
}

/* --- ANIMATIONS FOR CLICK --- */
.back-to-top-btn.shooting {
  pointer-events: none;
}

.back-to-top-btn.shooting .btn-text {
  animation: fade-out-text 0.2s ease forwards;
}

.back-to-top-btn.shooting .tripod-svg {
  animation: tripod-recoil 0.7s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.back-to-top-btn.shooting .light-beam {
  animation: shoot-light-beam 1.0s cubic-bezier(0.1, 0.8, 0.1, 1) forwards;
}

.back-to-top-btn.shooting .light-lens {
  animation: lens-flare 1.0s cubic-bezier(0.1, 0.8, 0.1, 1) forwards;
}

@keyframes fade-out-text {
  0% { opacity: 1; }
  100% { opacity: 0; }
}

@keyframes tripod-recoil {
  0% { transform: scale(1) translateY(0); }
  15% { transform: scale(0.85, 1.15) translateY(6px); }
  45% { transform: scale(1.1, 0.9) translateY(-12px); }
  70% { transform: scale(0.95, 1.05) translateY(2px); }
  100% { transform: scale(1) translateY(0); }
}

@keyframes shoot-light-beam {
  0% {
    transform: scale(1, 1) translateY(0);
    opacity: 1;
    filter: brightness(2) blur(2px) drop-shadow(0 0 15px #ffffff);
  }
  15% {
    transform: scale(14, 45) translateY(-30px);
    opacity: 1;
    filter: brightness(4) blur(4px) drop-shadow(0 0 40px var(--color-gold)) drop-shadow(0 0 60px #ffffff);
  }
  50% {
    transform: scale(16, 55) translateY(-120px);
    opacity: 0.95;
    filter: brightness(3.5) blur(5px) drop-shadow(0 0 50px var(--color-gold)) drop-shadow(0 0 80px #ffffff);
  }
  80% {
    transform: scale(12, 60) translateY(-250px);
    opacity: 0.7;
    filter: brightness(2) blur(8px) drop-shadow(0 0 30px var(--color-gold));
  }
  100% {
    transform: scale(1, 65) translateY(-650px);
    opacity: 0;
    filter: brightness(1) blur(12px);
  }
}

@keyframes lens-flare {
  0% {
    fill: #ffffff;
    filter: drop-shadow(0 0 10px #ffffff);
  }
  15% {
    fill: #ffffff;
    filter: drop-shadow(0 0 40px #ffffff) drop-shadow(0 0 80px var(--color-gold));
  }
  100% {
    fill: #444444;
    filter: none;
  }
}

@media (max-width: 576px) {
  .whatsapp-fixed-btn {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    font-size: 26px;
  }
  
  .back-to-top-btn {
    bottom: 20px;
    left: 20px;
    width: 54px;
    height: 80px;
    border-radius: 27px;
  }

  .tripod-wrapper {
    width: 42px;
    height: 62px;
    top: 5px;
  }
}
/* --- SCROLL-DRIVEN MOTION ANIMATIONS --- */
@media (prefers-reduced-motion: no-preference) {
  @supports ((animation-timeline: view()) and (animation-range: entry)) {
    @keyframes reveal-up {
      from {
        opacity: 0;
        transform: translateY(60px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    
    .scroll-reveal {
      animation: reveal-up auto linear forwards;
      animation-timeline: view();
      animation-range: entry 10% entry 40%;
    }
  }
}

/* Fallback class for browsers without scroll-driven animation support */
.scroll-reveal-fallback {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.8, 0.25, 1), transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.scroll-reveal-fallback.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* --- PRIVACY & TERMS MODALS STYLING --- */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}

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

.modal-content {
  background: var(--bg-card);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 40px;
  width: 90%;
  max-width: 600px;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
  box-shadow: var(--shadow-gold-glow);
  transform: scale(0.9);
  transition: transform 0.5s ease;
}

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

.modal-close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 32px;
  background: none;
  border: none;
  color: var(--color-gold);
  cursor: pointer;
  line-height: 1;
  transition: transform 0.3s ease;
}

.modal-close:hover {
  transform: scale(1.1) rotate(90deg);
}

.modal-title {
  color: var(--color-gold);
  font-size: 24px;
  margin-bottom: 24px;
  text-transform: uppercase;
  font-family: var(--font-heading);
  border-bottom: 2px solid var(--border-glass);
  padding-bottom: 12px;
}

.modal-body {
  color: var(--text-primary);
  font-size: 14px;
  line-height: 1.7;
}

.modal-body h4 {
  color: var(--color-gold);
  margin: 20px 0 8px 0;
  text-transform: uppercase;
  font-size: 14px;
}

.modal-body p {
  margin-bottom: 12px;
  color: var(--text-secondary);
}

.modal-body strong {
  color: var(--text-primary);
}

/* Custom Scrollbar for Modal and Page */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
  background: rgba(212, 175, 55, 0.3);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(212, 175, 55, 0.6);
}

/* --- URGENCY CTA BANNER & SPOTLIGHTS --- */
.urgency-banner-section {
  position: relative;
  background: radial-gradient(circle at center, #141414 0%, #060606 100%);
  border-top: 1px solid var(--border-glass);
  border-bottom: 1px solid var(--border-glass);
  padding: 100px 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

[data-theme="light"] .urgency-banner-section {
  background: radial-gradient(circle at center, #EFEBE4 0%, #FAF8F5 100%);
}

.urgency-banner-content {
  position: relative;
  z-index: 10;
  text-align: center;
}

.urgency-banner-content::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0) 70%);
  pointer-events: none;
  z-index: -1;
  animation: center-glow 4s infinite alternate ease-in-out;
}

@keyframes center-glow {
  0% {
    transform: translate(-50%, -50%) scale(0.9);
    opacity: 0.5;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 1;
  }
}

.urgency-title {
  font-family: var(--font-heading);
  font-size: 46px;
  font-weight: 900;
  letter-spacing: 0.05em;
  color: var(--text-primary);
  margin-bottom: 16px;
  text-transform: uppercase;
  animation: glow-pulse-title 3s infinite alternate;
}

@keyframes glow-pulse-title {
  0% { text-shadow: 0 0 15px rgba(212, 175, 55, 0.2); }
  100% { text-shadow: 0 0 35px rgba(212, 175, 55, 0.75), 0 0 10px rgba(255, 215, 0, 0.4); }
}

.urgency-subtitle {
  font-size: 19px;
  color: var(--text-secondary);
  margin-bottom: 38px;
  line-height: 1.6;
}

.urgency-subtitle strong {
  color: var(--color-gold);
  font-weight: 700;
}

.btn-glow-pulse {
  animation: btn-glow-pulse-key 2s infinite alternate;
  font-size: 15px;
  padding: 18px 44px;
}

@keyframes btn-glow-pulse-key {
  0% {
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.25);
    transform: scale(1);
  }
  100% {
    box-shadow: var(--shadow-gold-glow);
    transform: scale(1.04);
  }
}

/* Studio Spotlight Image & Stand Wrappers */
.spotlight-wrapper {
  position: absolute;
  bottom: 0;
  width: 380px;
  height: 380px;
  pointer-events: none;
  z-index: 2;
}

.spotlight-left-wrapper {
  left: 6%;
}

.spotlight-left-wrapper .spotlight-img {
  transform: scaleX(-1);
}

.spotlight-right-wrapper {
  right: 6%;
}

.spotlight-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.5));
}

[data-theme="light"] .spotlight-img {
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.15));
}

.spotlight-left-wrapper .spotlight-beam {
  position: absolute;
  top: 100px;
  left: 250px;
  width: 80vw;
  max-width: 800px;
  height: 450px;
  background: linear-gradient(to right, rgba(255, 215, 0, 0.45) 0%, rgba(212, 175, 55, 0.15) 50%, transparent 100%);
  clip-path: polygon(0 40%, 100% 0, 100% 100%, 0 60%);
  pointer-events: none;
  transform-origin: left center;
  transform: translateY(-50%) rotate(-10deg);
  z-index: 1;
  mix-blend-mode: screen;
  animation: light-sweep-left 4s infinite alternate ease-in-out;
}

[data-theme="light"] .spotlight-left-wrapper .spotlight-beam,
[data-theme="light"] .spotlight-right-wrapper .spotlight-beam {
  mix-blend-mode: normal;
}

[data-theme="light"] .spotlight-left-wrapper .spotlight-beam {
  background: linear-gradient(to right, rgba(255, 215, 0, 0.7) 0%, rgba(212, 175, 55, 0.25) 50%, transparent 100%);
}

[data-theme="light"] .spotlight-right-wrapper .spotlight-beam {
  background: linear-gradient(to left, rgba(255, 215, 0, 0.7) 0%, rgba(212, 175, 55, 0.25) 50%, transparent 100%);
}

.spotlight-right-wrapper .spotlight-beam {
  position: absolute;
  top: 100px;
  right: 250px;
  width: 80vw;
  max-width: 800px;
  height: 450px;
  background: linear-gradient(to left, rgba(255, 215, 0, 0.45) 0%, rgba(212, 175, 55, 0.15) 50%, transparent 100%);
  clip-path: polygon(100% 40%, 0 0, 0 100%, 100% 60%);
  pointer-events: none;
  transform-origin: right center;
  transform: translateY(-50%) rotate(10deg);
  z-index: 1;
  mix-blend-mode: screen;
  animation: light-sweep-right 4s infinite alternate ease-in-out;
}

@keyframes light-sweep-left {
  0% {
    transform: translateY(-50%) rotate(-15deg) scale(0.9);
    opacity: 0.6;
  }
  100% {
    transform: translateY(-50%) rotate(5deg) scale(1.1);
    opacity: 1;
  }
}

@keyframes light-sweep-right {
  0% {
    transform: translateY(-50%) rotate(15deg) scale(0.9);
    opacity: 0.6;
  }
  100% {
    transform: translateY(-50%) rotate(-5deg) scale(1.1);
    opacity: 1;
  }
}

.spotlight-mobile-wrapper {
  display: none;
}

[data-theme="light"] .spotlight-mobile-wrapper .spotlight-beam-ring {
  mix-blend-mode: normal;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.7) 0%, rgba(212, 175, 55, 0.25) 50%, transparent 70%);
}

@keyframes ring-pulse {
  0% { transform: translate(-50%, -50%) scale(0.9); opacity: 0.6; }
  100% { transform: translate(-50%, -50%) scale(1.1); opacity: 1; }
}

@media (max-width: 992px) {
  .spotlight-wrapper {
    width: 250px;
    height: 250px;
  }
  .spotlight-left-wrapper { left: 2%; }
  .spotlight-right-wrapper { right: 2%; }
  .spotlight-left-wrapper .spotlight-beam,
  .spotlight-right-wrapper .spotlight-beam {
    width: 450px;
    height: 400px;
  }
}

@media (max-width: 768px) {
  .urgency-banner-section {
    overflow: visible;
  }
  .spotlight-left-wrapper,
  .spotlight-right-wrapper {
    display: none !important;
  }
  .spotlight-mobile-wrapper {
    display: block;
    position: absolute;
    bottom: -95px;
    left: 50%;
    transform: translateX(-50%);
    width: 380px;
    height: 550px;
    z-index: 2;
    pointer-events: none;
  }
  .spotlight-mobile-wrapper .spotlight-beam-ring {
    position: absolute;
    top: 150px;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.3) 0%, rgba(212, 175, 55, 0.1) 50%, transparent 70%);
    mix-blend-mode: screen;
    animation: ring-pulse 3s infinite alternate ease-in-out;
    z-index: -1;
  }
  .urgency-banner-content {
    background: rgba(6, 6, 6, 0.35);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 20px;
    padding: 36px 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  }
  [data-theme="light"] .urgency-banner-content {
    background: rgba(250, 248, 245, 0.4);
    border-color: rgba(212, 175, 55, 0.12);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  }
  .urgency-title {
    font-size: 32px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  }
  [data-theme="light"] .urgency-title {
    text-shadow: 0 2px 8px rgba(255, 255, 255, 0.6);
  }
  .urgency-subtitle {
    font-size: 16px;
  }
}

/* --- MOBILE HEADER UI FIXES --- */
@media (max-width: 768px) {
  .logo {
    margin-left: 12px;
  }
  .logo img#header-logo {
    width: 140px !important;
    height: auto !important;
    max-height: 44px !important;
    object-fit: contain;
  }
  .nav-actions {
    gap: 6px;
    margin-right: 12px;
  }
  .nav-actions .btn {
    padding: 8px 12px !important;
    font-size: 11px !important;
    white-space: nowrap;
  }
  .theme-switch-btn {
    width: 34px;
    height: 34px;
  }
  .theme-switch-btn i {
    font-size: 14px;
  }
}

@media (max-width: 400px) {
  .logo img#header-logo {
    width: 150px;
  }
  .nav-actions .btn {
    display: none !important;
  }
}
