/**
 * Penélope Clout - Modern Luxury Design System
 * Paleta Oficial: Rosé Blush, Dourado Champagne, Pétala Creme, Oliva Sage
 */

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

:root {
  /* Brand Core Colors (From Logo) */
  --color-primary: #D48278;          /* Blush Rose Rich */
  --color-primary-light: #E89D93;    /* Blush Rose Soft */
  --color-primary-dark: #B56056;     /* Deep Rose Terracotta */
  --color-primary-fade: rgba(232, 157, 147, 0.12);
  
  --color-gold: #D4AF37;             /* Champagne Gold */
  --color-gold-light: #E5C358;       /* Bright Metallic Gold */
  --color-gold-dark: #A6831C;        /* Antique Gold */
  --color-gold-fade: rgba(212, 175, 55, 0.15);

  --color-sage: #5A7862;             /* Sage Olive Leaf */
  --color-sage-light: #7E9482;       /* Soft Sage */
  --color-sage-fade: rgba(90, 120, 98, 0.12);

  /* Backgrounds & Neutrals */
  --bg-cream: #FDF9F7;               /* Delicate Porcelain White */
  --bg-petal: #FAF0EB;               /* Soft Blush Warmth */
  --bg-card: #FFFFFF;                /* Pure White */
  --bg-surface: #F6EDE8;             /* Subtle Neutral */
  --bg-glass: rgba(255, 255, 255, 0.92);

  /* Typography Colors */
  --text-main: #2D2423;              /* Rich Velvet Charcoal */
  --text-muted: #736362;             /* Soft Muted Cocoa */
  --text-light: #9C8C8B;             /* Gentle Gray */
  --text-on-dark: #FFFFFF;

  /* Borders & Dividers */
  --border-delicate: #F0DDD8;
  --border-gold: rgba(212, 175, 55, 0.4);
  --border-focus: #D48278;

  /* Typography Families */
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-editorial: 'Cormorant Garamond', Garamond, serif;
  --font-cursive: 'Alex Brush', cursive;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(45, 36, 35, 0.04);
  --shadow-md: 0 8px 24px rgba(45, 36, 35, 0.08);
  --shadow-lg: 0 16px 40px rgba(45, 36, 35, 0.12);
  --shadow-gold: 0 8px 25px rgba(212, 175, 55, 0.25);
  --shadow-rose: 0 8px 25px rgba(212, 130, 120, 0.25);

  /* Radii */
  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.5s cubic-bezier(0.25, 1, 0.5, 1);

  /* Layout */
  --container-max: 1280px;
  --header-height: 92px;
}

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

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

body {
  font-family: var(--font-sans);
  background-color: var(--bg-cream);
  color: var(--text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body.no-scroll {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
  background: none;
}

button {
  cursor: pointer;
}

ul, ol {
  list-style: none;
}

/* Typography Helpers */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.25;
  color: var(--text-main);
}

.cursive-accent {
  font-family: var(--font-cursive);
  font-size: 2.2rem;
  color: var(--color-gold-dark);
  font-weight: 400;
  display: inline-block;
  line-height: 1;
}

.gold-gradient-text {
  background: linear-gradient(135deg, #B58826 0%, #E5C358 50%, #A6831C 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.rose-gradient-text {
  background: linear-gradient(135deg, #B56056 0%, #E89D93 50%, #D48278 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-primary);
  background-color: var(--color-primary-fade);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
}

.section-title-wrap {
  text-align: center;
  margin-bottom: 40px;
}

.section-title-wrap h2 {
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.section-title-wrap p {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Layout Container */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.container-narrow {
  max-width: 960px;
}

/* Common Utilities */
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-muted { color: var(--text-muted); }
.text-success { color: #2E7D32 !important; }
.text-gold { color: var(--color-gold-dark); }
.text-rose { color: var(--color-primary); }

.flex { display: flex; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.gap-8 { gap: 8px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.gap-32 { gap: 32px; }

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

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

::-webkit-scrollbar-thumb {
  background: #E0C7C1;
  border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-primary);
}

/* Keyframe Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes zoomIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes pulseGlow {
  0% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4); }
  70% { box-shadow: 0 0 0 12px rgba(212, 175, 55, 0); }
  100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
}

@keyframes floatGentle {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.animate-fade-in { animation: fadeIn 0.4s ease forwards; }
.animate-slide-up { animation: slideUp 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
.animate-zoom-in { animation: zoomIn 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
