/* Custom Styles & Luxury Light Premium Design System - Núcleo Saúde e Dermocosméticos */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,500;0,600;1,400&display=swap');

:root {
  --color-gold-light: #F0D375;
  --color-gold: #C9A84C;
  --color-gold-dark: #A48130;
  --color-walnut: #2C1E17;
  --color-walnut-light: #4A3528;
  --color-cream-bg: #FAF8F5;
  --color-cream-card: #FFFFFF;
  --color-text-main: #1A1A1A;
  --color-text-muted: #52525B;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background-color: var(--color-cream-bg);
  color: var(--color-text-main);
  overflow-x: hidden;
}

/* Typography Utility Classes */
.font-serif-luxury {
  font-family: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
}

.font-garamond {
  font-family: 'Cormorant Garamond', Georgia, serif;
}

/* Gold Gradient Effects for Light Theme */
.text-gold-gradient {
  background: linear-gradient(135deg, #B88E28 0%, #C9A84C 40%, #8A6615 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.bg-gold-gradient {
  background: linear-gradient(135deg, #D4AF37 0%, #C9A84C 50%, #B38E2E 100%);
}

.bg-gold-gradient-hover:hover {
  background: linear-gradient(135deg, #E5C158 0%, #D4AF37 50%, #C9A84C 100%);
}

.border-gold-glow {
  border-color: rgba(201, 168, 76, 0.35);
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.12);
}

.border-gold-glow:hover {
  border-color: rgba(201, 168, 76, 0.7);
  box-shadow: 0 10px 30px rgba(201, 168, 76, 0.25);
}

/* LED Glow Simulation in Light Theme */
.led-glow-top {
  position: relative;
}
.led-glow-top::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.7), transparent);
  filter: drop-shadow(0 0 6px rgba(201, 168, 76, 0.6));
}

/* Light Glassmorphism Components */
.glass-nav-light {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(201, 168, 76, 0.25);
}

.glass-card-light {
  background: #FFFFFF;
  border: 1px solid rgba(201, 168, 76, 0.2);
  box-shadow: 0 10px 30px -10px rgba(44, 30, 23, 0.06);
}

.glass-card-hover {
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.glass-card-hover:hover {
  transform: translateY(-6px);
  background: #FFFFFF;
  border-color: rgba(201, 168, 76, 0.6);
  box-shadow: 0 20px 40px -15px rgba(44, 30, 23, 0.12), 0 0 20px rgba(201, 168, 76, 0.2);
}

/* Carousel 1 Card Per Slide Styles */
.team-carousel-container {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.team-carousel-container::-webkit-scrollbar {
  display: none;
}

.team-card-slide {
  flex: 0 0 100%;
  width: 100%;
  scroll-snap-align: start;
}

/* Dots Indicator */
.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #CBD5E1;
  transition: all 0.3s ease;
  cursor: pointer;
}
.carousel-dot.active {
  width: 32px;
  border-radius: 6px;
  background: linear-gradient(135deg, #D4AF37 0%, #C9A84C 100%);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #FAF8F5;
}
::-webkit-scrollbar-thumb {
  background: #C9A84C;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #A48130;
}

/* Light Texture Background Overlay */
.bg-noise-light {
  background-image: radial-gradient(rgba(201, 168, 76, 0.08) 1px, transparent 0);
  background-size: 28px 28px;
}

/* Magnetic Button Lift Effect */
.btn-magnetic {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.btn-magnetic:hover {
  transform: scale(1.03) translateY(-2px);
}

/* Orbit SVG Animation for 3D Logo */
@keyframes orbitRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.orbit-ring-1 {
  animation: orbitRotate 20s linear infinite;
  transform-origin: center;
}
.orbit-ring-2 {
  animation: orbitRotate 30s linear infinite reverse;
  transform-origin: center;
}
