/* ==========================================================================
   VL EYELASHES DESIGN - LUXURY MODERN LIGHT THEME DESIGN SYSTEM
   ========================================================================== */

@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=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
  /* Light Theme Color Palette */
  --bg-main: #FFFFFF;
  --bg-surface: #FAF6F3;
  --bg-card: #FFFFFF;
  --bg-card-hover: #FCF8F5;
  --bg-border: #EFE4DC;
  --bg-border-strong: #E2CEC1;

  --accent-blush: #C48B7F;
  --accent-blush-hover: #B57B6F;
  --accent-rose-gold: #C9967A;
  --accent-rose-soft: #F4E8E1;

  --cream-card-bg: #F7EFE9;
  --cream-text-dark: #2A2123;
  --cream-muted: #6E5F62;

  --text-primary: #1F1A1B;
  --text-secondary: #574D50;
  --text-muted: #8F8286;

  --whatsapp-color: #25D366;
  --whatsapp-hover: #1EBE5B;

  /* Typography */
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-script: 'Alex Brush', cursive;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Shadows & Glassmorphism */
  --shadow-sm: 0 4px 15px rgba(196, 139, 127, 0.06);
  --shadow-md: 0 10px 30px rgba(196, 139, 127, 0.12);
  --shadow-hover: 0 18px 40px rgba(196, 139, 127, 0.18);
  --glass-bg: rgba(255, 255, 255, 0.88);
  --glass-border: rgba(196, 139, 127, 0.18);

  /* Radius & Transitions */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Preloader Splash Screen */
.preloader {
  position: fixed;
  inset: 0;
  background: #FFFFFF;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.preloader.fade-out {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-logo {
  width: 240px;
  max-width: 75vw;
  height: auto;
  animation: logoIntro 1.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes logoIntro {
  0% {
    opacity: 0;
    transform: scale(0.85);
    filter: blur(6px);
  }
  35% {
    opacity: 1;
    transform: scale(1.03);
    filter: blur(0);
  }
  70% {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
  }
  100% {
    opacity: 0;
    transform: scale(1.05);
    filter: blur(4px);
  }
}

/* Cascading Entrance Animation */
.cascade-item {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}

body.loaded .cascade-item {
  opacity: 1;
  transform: translateY(0);
}

/* Header specific transform fix to preserve horizontal centering (translateX(-50%)) */
.header.cascade-item {
  opacity: 0;
  transform: translate(-50%, -20px);
}

body.loaded .header.cascade-item {
  opacity: 1;
  transform: translate(-50%, 0);
}

/* Staggered Delay Hierarchy */
body.loaded .header.cascade-item { transition-delay: 0.05s; }
body.loaded .hero-badge.cascade-item { transition-delay: 0.2s; }
body.loaded .hero-title.cascade-item { transition-delay: 0.32s; }
body.loaded .hero-desc.cascade-item { transition-delay: 0.44s; }
body.loaded .hero-ctas.cascade-item { transition-delay: 0.56s; }
body.loaded .hero-image-wrapper.cascade-item { transition-delay: 0.68s; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-main);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

/* Typography Utilities */
h1, h2, h3, h4, .font-serif {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.2;
}

.script-text {
  font-family: var(--font-script);
  font-weight: 400;
  color: var(--accent-blush);
  font-size: 1.35em;
  line-height: 0.8;
  display: inline-block;
  vertical-align: baseline;
  transform: translateY(2px);
}

.section-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--accent-blush);
  font-weight: 700;
  margin-bottom: 0.6rem;
  display: block;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3.1rem);
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.section-desc {
  font-size: 0.975rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.9rem 1.8rem;
  border-radius: var(--radius-full);
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
  border: 1px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: var(--text-primary);
  color: #FFFFFF;
  box-shadow: 0 4px 18px rgba(31, 26, 27, 0.18);
}

.btn-primary:hover {
  background: var(--accent-blush);
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(196, 139, 127, 0.35);
}

.btn-secondary {
  background: var(--bg-surface);
  color: var(--text-primary);
  border-color: var(--bg-border-strong);
}

.btn-secondary:hover {
  background: #FFFFFF;
  border-color: var(--accent-blush);
  color: var(--accent-blush);
}

.btn-whatsapp {
  background: #25D366;
  color: #FFFFFF;
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.28);
}

.btn-whatsapp:hover {
  background: #1EBE5B;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
}

.btn-full {
  width: 100%;
}

/* Container */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
.header {
  position: fixed;
  top: 1rem;
  left: 50%;
  transform: translate(-50%, 0);
  width: calc(100% - 2rem);
  max-width: 1140px;
  z-index: 1000;
  transition: var(--transition);
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  padding: 0.65rem 1.25rem;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-sm);
}

.brand-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.brand-logo img {
  height: 40px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.06));
}

.nav-menu {
  display: none;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: var(--transition);
}

.nav-link:hover {
  color: var(--accent-blush);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

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

.mobile-menu-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: var(--bg-surface);
  border: 1px solid var(--bg-border);
  width: 40px;
  height: 40px;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-full);
}

.mobile-menu-btn span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition);
}

/* Mobile Nav Drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 82%;
  max-width: 320px;
  height: 100vh;
  background: #FFFFFF;
  border-left: 1px solid var(--bg-border);
  z-index: 1001;
  padding: 2.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: -10px 0 30px rgba(0,0,0,0.1);
}

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

.drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(31, 26, 27, 0.4);
  backdrop-filter: blur(4px);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.drawer-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.drawer-close {
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.75rem;
  cursor: pointer;
}

.drawer-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.drawer-link {
  color: var(--text-primary);
  font-size: 1.125rem;
  font-family: var(--font-serif);
  text-decoration: none;
  transition: var(--transition);
  display: block;
}

.drawer-link:hover {
  color: var(--accent-blush);
  padding-left: 5px;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
  position: relative;
  padding-top: 7.5rem;
  padding-bottom: 3.5rem;
  background: linear-gradient(180deg, var(--bg-surface) 0%, #FFFFFF 100%);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.25rem;
  align-items: center;
}

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

.hero-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-blush);
  background: var(--accent-rose-soft);
  padding: 0.4rem 1.1rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(196, 139, 127, 0.2);
  margin-bottom: 1.25rem;
}

.hero-title {
  font-size: clamp(2.35rem, 7.5vw, 4rem);
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1rem;
  line-height: 1.15;
}

.hero-title .script-text {
  font-size: 1.4em;
  margin-left: 0.15rem;
}

.hero-desc {
  font-size: 1.025rem;
  color: var(--text-secondary);
  margin-bottom: 1.85rem;
  line-height: 1.65;
}

.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
}

.hero-image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--bg-border);
}

.hero-image-wrapper img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  display: block;
  transition: transform 0.8s ease;
}

.hero-image-wrapper:hover img {
  transform: scale(1.03);
}

/* ==========================================================================
   BENEFITS BLOCK
   ========================================================================== */
.benefits-section {
  padding: 1rem 0 3.5rem;
}

.benefits-card {
  background: var(--bg-surface);
  border: 1px solid var(--bg-border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow-sm);
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 1.15rem;
}

.benefit-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 1px solid var(--bg-border-strong);
  color: var(--accent-blush);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(196, 139, 127, 0.08);
}

.benefit-content h3 {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.2rem;
  color: var(--text-primary);
}

.benefit-content p {
  font-size: 0.885rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ==========================================================================
   PRICES & SERVICES DETAIL SECTION
   ========================================================================== */
.pricing-section {
  padding: 3.5rem 0;
  background: #FFFFFF;
}

.pricing-group {
  margin-bottom: 2.75rem;
  background: var(--bg-surface);
  border: 1px solid var(--bg-border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
}

.pricing-group-header {
  margin-bottom: 1.5rem;
  padding-bottom: 0.875rem;
  border-bottom: 1px solid var(--bg-border);
}

.pricing-group-title {
  font-size: 1.7rem;
  color: var(--text-primary);
  margin-bottom: 0.3rem;
}

.pricing-group-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.price-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}

.price-item {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 0.65rem 0.5rem;
  border-bottom: 1px dashed var(--bg-border-strong);
  transition: var(--transition);
}

.price-item:hover {
  background: #FFFFFF;
  padding-left: 0.75rem;
}

.price-name {
  font-size: 0.975rem;
  font-weight: 500;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.price-item.highlight .price-name::after {
  content: 'POPULAR';
  font-size: 0.625rem;
  font-family: var(--font-sans);
  background: var(--accent-rose-soft);
  color: var(--accent-blush);
  padding: 0.15rem 0.45rem;
  border-radius: 4px;
  font-weight: 700;
}

.price-dots {
  flex-grow: 1;
  border-bottom: 1px dotted var(--bg-border-strong);
  margin: 0 0.75rem;
}

.price-val {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--accent-blush);
  white-space: nowrap;
}

/* ==========================================================================
   POST-PRICES CTA CARD
   ========================================================================== */
.post-pricing-cta {
  background: var(--cream-card-bg);
  border: 1px solid var(--bg-border-strong);
  color: var(--cream-text-dark);
  border-radius: var(--radius-lg);
  padding: 2.25rem 1.5rem;
  text-align: center;
  margin-top: 2rem;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.post-pricing-cta h3 {
  font-size: 2.1rem;
  color: var(--cream-text-dark);
  margin-bottom: 0.2rem;
}

.post-pricing-cta .script-phrase {
  font-family: var(--font-script);
  font-size: 1.75rem;
  color: var(--accent-blush);
  margin-bottom: 0.875rem;
  display: block;
}

.post-pricing-cta p {
  font-size: 0.925rem;
  color: var(--cream-muted);
  max-width: 500px;
  margin: 0 auto 1.5rem;
}

/* ==========================================================================
   GALLERY SECTION
   ========================================================================== */
.gallery-section {
  padding: 3.5rem 0;
  background: var(--bg-surface);
  border-top: 1px solid var(--bg-border);
  border-bottom: 1px solid var(--bg-border);
}

.gallery-filters {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding-bottom: 0.875rem;
  margin-bottom: 1.25rem;
  scrollbar-width: none;
}

.gallery-filters::-webkit-scrollbar {
  display: none;
}

.filter-btn {
  background: #FFFFFF;
  border: 1px solid var(--bg-border-strong);
  color: var(--text-secondary);
  padding: 0.45rem 1.15rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 500;
  white-space: nowrap;
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn.active, .filter-btn:hover {
  background: var(--text-primary);
  color: #FFFFFF;
  border-color: var(--text-primary);
}

.gallery-slider-wrapper {
  position: relative;
}

.gallery-track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 1rem;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.gallery-track::-webkit-scrollbar {
  display: none;
}

.gallery-item {
  flex: 0 0 270px;
  scroll-snap-align: start;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #FFFFFF;
  border: 1px solid var(--bg-border);
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  box-shadow: var(--shadow-sm);
}

.gallery-item img {
  width: 100%;
  height: 270px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.875rem;
  background: linear-gradient(to top, rgba(31,26,27,0.85), transparent);
  color: #FFFFFF;
}

.gallery-caption h4 {
  font-size: 0.95rem;
  margin-bottom: 0.15rem;
}

.gallery-caption p {
  font-size: 0.75rem;
  color: var(--accent-rose-soft);
}

/* Lightbox Modal */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(31, 26, 27, 0.88);
  backdrop-filter: blur(10px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

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

.lightbox-content {
  max-width: 90%;
  max-height: 80vh;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.lightbox-content img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: none;
  border: none;
  color: #FFFFFF;
  font-size: 2.5rem;
  cursor: pointer;
}

/* ==========================================================================
   FINAL CONTACT SECTION
   ========================================================================== */
.contact-section {
  padding: 4rem 0;
  text-align: center;
  background: #FFFFFF;
}

.contact-box {
  background: var(--bg-surface);
  border: 1px solid var(--bg-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 1.5rem;
  box-shadow: var(--shadow-md);
}

.contact-info {
  margin-bottom: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 1.05rem;
  color: var(--text-primary);
}

.contact-info a {
  color: var(--text-primary);
  text-decoration: none;
  transition: var(--transition);
}

.contact-info a:hover {
  color: var(--accent-blush);
}

.footer {
  padding: 2.5rem 0 1.75rem;
  border-top: 1px solid var(--bg-border);
  background: var(--bg-surface);
  text-align: center;
}

.footer-logo {
  height: 46px;
  margin-bottom: 0.875rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  list-style: none;
  margin: 1.25rem 0;
}

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

.footer-links a:hover {
  color: var(--accent-blush);
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-tagline {
  font-family: var(--font-script);
  font-size: 1.4rem;
  color: var(--accent-blush);
  margin-top: 0.4rem;
}

/* Floating WhatsApp Button */
.floating-whatsapp {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 54px;
  height: 54px;
  background: #25D366;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 22px rgba(37, 211, 102, 0.4);
  z-index: 999;
  text-decoration: none;
  transition: transform 0.3s ease;
  animation: pulse-wa 2.5s infinite;
}

.floating-whatsapp:hover {
  transform: scale(1.08);
}

.floating-whatsapp svg {
  width: 30px;
  height: 30px;
  fill: #FFFFFF;
  display: block;
}

@keyframes pulse-wa {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
  70% { box-shadow: 0 0 0 14px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Scroll Reveal Animations */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   DESKTOP MEDIA QUERIES (768px+)
   ========================================================================== */
@media (min-width: 768px) {
  .btn-header-wa {
    display: inline-flex;
  }

  .nav-menu {
    display: flex;
  }

  .mobile-menu-btn {
    display: none;
  }

  .hero-grid {
    grid-template-columns: 1.1fr 0.9fr;
    text-align: left;
  }

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

  .hero-ctas {
    flex-direction: row;
    width: auto;
  }

  .hero-image-wrapper img {
    height: 440px;
  }

  .benefits-card {
    grid-template-columns: repeat(3, 1fr);
    padding: 2.25rem 2rem;
  }

  .pricing-group {
    padding: 2.25rem;
  }

  .gallery-item {
    flex: 0 0 calc(33.333% - 0.75rem);
  }

  .contact-box {
    max-width: 760px;
    margin: 0 auto;
  }
}
