/* Google Fonts - Now loaded via <link> in HTML for better performance */

/* Custom Properties - Gold & Cream Color Scheme */
:root {
  /* Colors using oklch format from Tailwind */
  --background: oklch(0.98 0.01 85);
  --foreground: oklch(0.25 0.02 50);
  --card: oklch(1 0 0);
  --card-foreground: oklch(0.25 0.02 50);
  --primary: oklch(0.65 0.12 80);
  --primary-foreground: oklch(0.98 0.01 85);
  --secondary: #F7F3EA;
  --secondary-foreground: oklch(0.25 0.02 50);
  --muted: oklch(0.93 0.01 85);
  --muted-foreground: oklch(0.45 0.02 50);
  --accent: oklch(0.95 0.015 85);
  --accent-foreground: oklch(0.25 0.02 50);
  --destructive: oklch(0.577 0.245 27.325);
  --destructive-foreground: oklch(0.577 0.245 27.325);
  --border: oklch(0.88 0.02 85);
  --input: oklch(0.88 0.02 85);
  --ring: oklch(0.65 0.12 80);
  
  /* Custom gold colors */
  --gold: oklch(0.65 0.12 80);
  --gold-light: oklch(0.72 0.1 80);
  --cream: oklch(0.98 0.01 85);
  
  /* Fallback colors for browsers without oklch support */
  --gold-rgb: 212, 175, 55;
  --gold-light-rgb: 230, 200, 90;
  --cream-rgb: 250, 247, 240;
  --secondary-rgb: 247, 243, 234;
  --background-rgb: 250, 248, 245;
  --foreground-rgb: 40, 38, 35;
  
  /* Typography */
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-serif: "Playfair Display", Georgia, serif;
  
  /* Spacing */
  --radius: 0.625rem;
  
  /* Theme color for mobile browsers */
  --theme-color: #D4AF37;
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  overflow-x: hidden;
  max-width: 100vw;
  scroll-behavior: smooth;
  font-family: var(--font-sans);
  background-color: var(--background);
  color: var(--foreground);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Smooth page transitions - removed opacity animation to prevent FCP issues */
/* Body is now visible immediately for better Lighthouse scores */
body {
  opacity: 1;
}

/* Safe area inset support (mobile notch) */
@supports (padding: max(0px)) {
  html,
  body {
    padding-left: max(0px, env(safe-area-inset-left));
    padding-right: max(0px, env(safe-area-inset-right));
  }
}

body {
  font-family: var(--font-sans);
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.2;
  color: var(--foreground);
}

h1 { font-size: clamp(2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.75rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h4 { font-size: clamp(1.25rem, 2.5vw, 1.875rem); }

p {
  color: var(--muted-foreground);
  line-height: 1.7;
}

/* Links */
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

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

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

/* Utility Classes */
.container {
  width: 100%;
  max-width: 1152px; /* max-w-6xl */
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .container { padding: 0 1.5rem; }
}

@media (min-width: 1024px) {
  .container { padding: 0 2rem; }
}

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

.font-serif { font-family: var(--font-serif); }
.font-sans { font-family: var(--font-sans); }
.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }
.font-medium { font-weight: 500; }

/* Colors */
.text-gold { color: var(--gold); }
.text-cream { color: var(--cream); }
.text-foreground { color: var(--foreground); }
.text-muted-foreground { color: var(--muted-foreground); }

.bg-gold { background-color: var(--gold); }
.bg-gold-light { background-color: var(--gold-light); }
.bg-cream { background-color: var(--cream); }
.bg-background { background-color: var(--background); }
.bg-secondary { background-color: var(--secondary); }
.bg-card { background-color: var(--card); }

/* Spacing */
.min-h-screen { min-height: 100vh; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  min-height: 44px;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  white-space: nowrap;
  touch-action: manipulation;
}

.btn:disabled {
  pointer-events: none;
  opacity: 0.5;
}

.btn-primary {
  background-color: var(--gold);
  color: var(--cream);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
  z-index: -1;
}

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

.btn-primary:hover {
  background-color: var(--gold-light);
  color: var(--cream);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(var(--gold-rgb), 0.35);
}

.btn-outline {
  background-color: white;
  border: 1px solid var(--border);
  color: var(--foreground);
  position: relative;
  overflow: hidden;
}

.btn-outline:hover {
  background-color: white;
  color: var(--gold);
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(var(--gold-rgb), 0.15);
}

/* Facebook button variant */
.btn-facebook {
  background-color: #1877F2;
  color: white;
  border: 1px solid #1877F2;
  transition: all 0.2s ease;
}

.btn-facebook:hover {
  background-color: #1877F2;
  color: white;
  opacity: 0.9;
  box-shadow: 0 8px 20px rgba(24, 119, 242, 0.25);
}

.btn-facebook-outline {
  background-color: transparent;
  border: 1px solid rgba(24, 119, 242, 0.5);
  color: #1877F2;
}

.btn-facebook-outline:hover {
  background-color: transparent;
  color: #1877F2;
  opacity: 0.9;
  border-color: #1877F2;
  box-shadow: 0 4px 12px rgba(24, 119, 242, 0.15);
}

.btn-lg {
  padding: 0.75rem 2rem;
  font-size: 1rem;
}

/* Hero buttons special styling */
.hero-btn-primary {
  background-color: white !important;
  color: var(--gold) !important;
  font-weight: 600;
  box-shadow: 0 20px 25px rgba(0,0,0,0.15);
  border: 1px solid rgba(var(--gold-rgb), 0.1) !important;
}

.hero-btn-primary:hover {
  background-color: var(--gold) !important;
  color: white !important;
  transform: translateY(-2px);
  box-shadow: 0 25px 30px rgba(0,0,0,0.2);
}

.hero-btn-outline {
  background-color: rgba(255,255,255,0.95) !important;
  color: var(--gold) !important;
  border: 2px solid rgba(var(--gold-rgb), 0.3) !important;
  font-weight: 600;
  box-shadow: 0 20px 25px rgba(0,0,0,0.15);
}

.hero-btn-outline:hover {
  background-color: white !important;
  border-color: var(--gold) !important;
  transform: translateY(-2px);
  box-shadow: 0 25px 30px rgba(0,0,0,0.2);
}

/* Cards */
.card {
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card:hover {
  border-color: rgba(var(--gold-rgb), 0.6);
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(var(--gold-rgb), 0.12), 0 8px 16px rgba(0, 0, 0, 0.06);
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background-color: rgba(var(--cream-rgb), 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding-top: clamp(0px, env(safe-area-inset-top), 20px);
}

@media (min-width: 640px) {
  .navbar {
    padding-top: 0;
  }
}

.navbar-inner {
  max-width: 1152px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5rem;
}

@media (min-width: 640px) {
  .navbar-inner { padding: 0 1.5rem; }
}

@media (min-width: 1024px) {
  .navbar-inner { padding: 0 2rem; }
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--foreground);
}

.navbar-brand svg {
  width: 2rem;
  height: 2rem;
  color: var(--gold);
}

.navbar-links {
  display: none;
  align-items: center;
  gap: 1.5rem;
}

@media (min-width: 1024px) {
  .navbar-links {
    display: flex;
  }
}

.navbar-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-foreground);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0.5rem 0;
  position: relative;
}

.navbar-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar-link:hover {
  color: var(--gold);
}

.navbar-link:hover::after {
  width: 100%;
}

.navbar-link.active::after {
  width: 100%;
}

.navbar-link.active {
  color: var(--gold);
  font-weight: 600;
}

.navbar-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  min-height: 48px;
  padding: 0.75rem;
  background: none;
  border: none;
  color: var(--foreground);
  cursor: pointer;
  position: relative;
  z-index: 100;
  /* iOS/Mobile optimizations */
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
}

.navbar-toggle:active {
  opacity: 0.7;
}

@media (min-width: 1024px) {
  .navbar-toggle {
    display: none;
  }
}

.navbar-toggle svg {
  width: 1.75rem;
  height: 1.75rem;
  pointer-events: none; /* Prevents click on SVG instead of button */
}

.navbar-mobile {
  display: none;
  padding: 1.5rem 1rem 2rem;
  border-top: 1px solid var(--border);
  background-color: var(--background);
  max-height: calc(100vh - 5rem);
  overflow-y: auto;
}

@media (min-width: 1024px) {
  .navbar-mobile {
    display: none !important;
  }
}

.navbar-mobile.active {
  display: block;
}

.navbar-mobile-link {
  display: block;
  padding: 1rem 0.5rem;
  min-height: 52px;
  display: flex;
  align-items: center;
  font-size: 1rem;
  font-weight: 500;
  color: var(--muted-foreground);
  transition: all 0.2s ease;
  touch-action: manipulation;
  border-radius: 0.5rem;
  margin-bottom: 0.25rem;
}

.navbar-mobile-link:hover,
.navbar-mobile-link.active {
  color: var(--gold);
  font-weight: 600;
  background-color: rgba(var(--gold-rgb), 0.05);
  padding-left: 0.75rem;
}

/* Breadcrumbs */
.breadcrumbs {
  display: none;
  padding: 1rem;
  background-color: rgba(var(--secondary-rgb, 247, 243, 234), 0.3);
  margin-top: 5rem;
}

@media (min-width: 640px) {
  .breadcrumbs {
    margin-top: 5rem;
  }
}

@media (min-width: 768px) {
  .breadcrumbs {
    display: block;
    padding: 1rem 1.5rem;
    margin-top: 5rem;
  }
}

@media (min-width: 1024px) {
  .breadcrumbs {
    padding: 1rem 2rem;
  }
}

.breadcrumbs-inner {
  max-width: 1152px;
  margin: 0 auto;
}

.breadcrumbs-list {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  font-size: 0.875rem;
}

.breadcrumbs-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.breadcrumbs-link {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: var(--muted-foreground);
  transition: color 0.2s ease;
}

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

.breadcrumbs-separator {
  width: 1rem;
  height: 1rem;
  color: rgba(var(--muted-foreground-rgb, 115, 115, 115), 0.5);
}

.breadcrumbs-current {
  color: var(--foreground);
  font-weight: 500;
}

/* Footer */
.footer {
  background-color: var(--secondary);
  border-top: 1px solid var(--border);
  padding: 3rem 0;
}

.footer-inner {
  max-width: 1152px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .footer-inner { padding: 0 1.5rem; }
}

@media (min-width: 1024px) {
  .footer-inner { padding: 0 2rem; }
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.footer-section h3 {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-section p {
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-link {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  display: inline-block;
}

.footer-link:hover {
  color: var(--gold);
  transform: translateX(4px);
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.footer-social-link {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-social-link:hover {
  transform: translateY(-3px) scale(1.05);
}

.footer-social-link svg {
  width: 1.25rem;
  height: 1.25rem;
  transition: transform 0.2s ease;
}

.footer-social-link:hover svg {
  transform: scale(1.1);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  text-align: center;
}

.footer-bottom p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  overflow: hidden;
  padding-top: 6rem;
}

@media (min-width: 640px) {
  .hero {
    padding-top: 8rem;
  }
}

.hero-background {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(var(--background-rgb, 250, 250, 250), 0.7),
    rgba(var(--background-rgb, 250, 250, 250), 0.5),
    var(--background)
  );
  z-index: 1;
}

.hero-overlay::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(var(--background-rgb, 250, 250, 250), 0.6),
    transparent,
    rgba(var(--background-rgb, 250, 250, 250), 0.6)
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 56rem;
  margin: 0 auto;
  text-align: center;
  padding: 2rem 1rem;
}

@media (min-width: 640px) {
  .hero-content {
    padding: 3rem 1.5rem;
  }
}

@media (min-width: 1024px) {
  .hero-content {
    padding: 3rem 2rem;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: rgba(var(--background-rgb, 250, 250, 250), 0.8);
  backdrop-filter: blur(4px);
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  border: 1px solid rgba(var(--gold-rgb), 0.2);
  margin-bottom: 1.5rem;
}

.hero-badge svg {
  width: 1rem;
  height: 1rem;
  color: var(--gold);
}

.hero-badge span {
  font-size: 0.875rem;
  color: rgba(var(--foreground-rgb, 64, 64, 64), 0.8);
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.25rem, 5vw, 4.5rem);
  font-weight: 700;
  color: var(--foreground);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  text-wrap: balance;
}

.hero-title .text-gold {
  color: var(--gold);
}

.hero-description {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  color: rgba(var(--foreground-rgb, 64, 64, 64), 0.9);
  line-height: 1.5;
  max-width: 42rem;
  margin: 0 auto 1rem;
}

.hero-subdescription {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: var(--foreground);
  opacity: 0.85;
  line-height: 1.7;
  max-width: 42rem;
  margin: 0 auto 2.5rem;
  text-wrap: pretty;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.hero-phone-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2.5rem;
  width: 100%;
  text-align: center;
}

@media (max-width: 639px) {
  .hero-phone-wrapper {
    margin-top: 2rem;
  }
}

.hero-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--foreground);
  font-weight: 500;
  margin: 0 auto;
  width: auto;
  max-width: 100%;
}

.hero-phone svg {
  flex-shrink: 0;
  width: 1em;
  height: 1em;
  display: block;
}

.hero-phone span {
  line-height: 1.2;
}

.hero-scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin: 1.5rem auto 0;
  width: 100%;
  color: var(--foreground);
  opacity: 0.7;
  text-align: center;
}

.hero-scroll-indicator span {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
  text-align: center;
}

.hero-scroll-line {
  width: 1px;
  height: 2rem;
  background: linear-gradient(to bottom, rgba(var(--gold-rgb), 0.7), transparent);
}

/* Sections */
.section {
  padding: 4rem 1rem;
}

@media (min-width: 640px) {
  .section {
    padding: 5rem 1.5rem;
  }
}

@media (min-width: 1024px) {
  .section {
    padding: 5rem 2rem;
  }
}

.section-inner {
  max-width: 1152px;
  margin: 0 auto;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: var(--muted-foreground);
  text-align: center;
  max-width: 672px;
  margin: 0 auto 3rem;
}

/* Grid */
.grid {
  display: grid;
  gap: 1rem;
}

.grid-1 { grid-template-columns: 1fr; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }

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

@media (min-width: 640px) {
  .grid { gap: 1.5rem; }
}

/* Fade In Animation */
.fade-in {
  opacity: 0;
  transform: translateY(1.5rem);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-1.5rem);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(1.5rem);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* WhatsApp Button */
.whatsapp-button {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 40;
  width: 3.5rem;
  height: 3.5rem;
  background-color: #25D366;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  animation: pulse-whatsapp 2.5s infinite;
}

@keyframes pulse-whatsapp {
  0%, 100% {
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.25);
  }
  50% {
    box-shadow: 0 10px 35px rgba(37, 211, 102, 0.4);
  }
}

@media (min-width: 640px) {
  .whatsapp-button {
    display: flex;
  }
}

.whatsapp-button:hover {
  background-color: #20BA5C;
  transform: scale(1.15);
  box-shadow: 0 12px 40px rgba(37, 211, 102, 0.5);
  animation: none;
}

.whatsapp-button svg {
  width: 1.75rem;
  height: 1.75rem;
  color: white;
}

.whatsapp-tooltip {
  position: absolute;
  right: calc(100% + 0.75rem);
  background-color: var(--card);
  color: var(--foreground);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--border);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.whatsapp-button:hover .whatsapp-tooltip {
  opacity: 1;
}

/* Privacy Button */
.privacy-button {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 40;
  background-color: rgba(var(--secondary-rgb, 247, 243, 234), 0.9);
  backdrop-filter: blur(4px);
  border: 1px solid var(--border);
  border-radius: 9999px;
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
  color: var(--muted-foreground);
  display: none;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.2s ease;
  cursor: pointer;
}

@media (min-width: 640px) {
  .privacy-button {
    display: flex;
  }
}

.privacy-button:hover {
  color: var(--foreground);
  background-color: var(--secondary);
}

.privacy-button svg {
  width: 0.75rem;
  height: 0.75rem;
}

/* Privacy Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

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

.modal-content {
  background-color: var(--background);
  border: 1px solid var(--border);
  border-radius: 1rem;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
  max-width: 896px;
  width: 100%;
  max-height: 90vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 24px;
  border-bottom: 1px solid var(--border);
}

.modal-header h2 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
}

.modal-close {
  background: none;
  border: none;
  color: var(--muted-foreground);
  cursor: pointer;
  padding: 0.5rem;
  transition: color 0.2s ease;
  touch-action: manipulation;
}

.modal-close:hover {
  color: var(--foreground);
}

.modal-close svg {
  width: 1.5rem;
  height: 1.5rem;
}

.modal-body {
  overflow-y: auto;
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
}

.modal-body section {
  margin: 0 0 0.75rem 0 !important;
  padding: 0 !important;
}

.modal-body section:last-child {
  margin-bottom: 0 !important;
}

.modal-body h3 {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 0.25rem 0 !important;
  padding: 0 !important;
  color: var(--foreground);
}

.modal-body p {
  margin: 0 !important;
  padding: 0 !important;
  color: var(--muted-foreground);
}

.modal-body p + p {
  margin-top: 0.35rem !important;
}

.modal-body ul {
  margin: 0.25rem 0 0 1.25rem !important;
  padding: 0 !important;
  list-style-type: disc;
}

.modal-body li {
  margin: 0 0 0.2rem 0 !important;
  padding: 0 !important;
  color: var(--muted-foreground);
}

.modal-body strong {
  color: var(--foreground);
  font-weight: 600;
}

.modal-footer {
  padding: 11px 24px;
  border-top: 1px solid var(--border);
}

.modal-footer .btn {
  width: 100%;
  min-height: 48px;
}

/* FAQ */
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  padding: 1rem 0;
  background: none;
  border: none;
  font-weight: 500;
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: var(--foreground);
  cursor: pointer;
  transition: color 0.2s ease;
}

@media (min-width: 640px) {
  .faq-question {
    padding: 1.25rem 0;
  }
}

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

.faq-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
              padding 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.3s ease;
  padding-bottom: 0;
  opacity: 0;
  color: var(--muted-foreground);
  font-size: clamp(0.875rem, 1vw, 1rem);
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  max-height: 800px;
  padding-bottom: 1rem;
  opacity: 1;
}

@media (min-width: 640px) {
  .faq-item.active .faq-answer {
    padding-bottom: 1.25rem;
  }
}

/* Scroll to Top - Removed, WhatsApp button is enough */

/* Decorative Stars */
.decorative-stars {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}

.star {
  animation: twinkle 3s ease-in-out infinite;
}

@keyframes twinkle {
  0%, 100% {
    opacity: 0.3;
  }
  50% {
    opacity: 1;
  }
}

/* Responsive Utilities */
@media (max-width: 639px) {
  .hidden-sm { display: none !important; }
}

@media (min-width: 640px) {
  .hidden-md { display: none !important; }
}

@media (min-width: 1024px) {
  .hidden-lg { display: none !important; }
}

/* Print Styles */
@media print {
  .navbar,
  .footer,
  .whatsapp-button,
  .privacy-button,
  .scroll-to-top {
    display: none !important;
  }
  
  body {
    padding-top: 0 !important;
  }
}

