* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Montserrat', sans-serif;
  overflow-x: hidden;
  background: #F5F1E8;
  color: #2D3620;
}

/* ========= INTRO PLAYING ========= */
body.intro-playing {
  overflow: hidden;
}

/* ========= VIDEO INTRO ========= */
.video-intro-screen {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #000;
  overflow: hidden;
}
#introVideo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.skip-intro-btn {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(166, 138, 86, 0.6);
  color: #A68A56;
  padding: 0.6rem 1.4rem;
  font-family: 'Cinzel', serif;
  font-size: 0.68rem;
  letter-spacing: 0.35em;
  cursor: pointer;
  backdrop-filter: blur(6px);
  transition: all 0.3s;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  z-index: 10;
}
.skip-intro-btn:hover {
  background: rgba(166, 138, 86, 0.25);
  border-color: #A68A56;
  color: #C4A870;
}
@media (max-width: 640px) {
  .skip-intro-btn {
    bottom: 1.25rem;
    right: 1.25rem;
    font-size: 0.6rem;
    padding: 0.5rem 1rem;
  }
}

/* ========= LOGOS ========= */
.loader-logo-img { width: 90px; height: 90px; border-radius: 50%; object-fit: cover; border: 2px solid #A68A56; }
.nav-logo-img { width: 32px; height: 32px; border-radius: 50%; object-fit: cover; border: 1px solid #A68A56; }
.hero-logo-img { width: 80px; height: 80px; border-radius: 50%; object-fit: cover; margin: 0 auto 1.5rem; display: block; border: 2px solid #A68A56; box-shadow: 0 0 40px rgba(166,138,86,0.5); }
.mobile-menu-logo { width: 60px; height: 60px; border-radius: 50%; object-fit: cover; margin-bottom: 1rem; border: 2px solid #A68A56; }
.cover-logo-img { width: 55px; height: 55px; border-radius: 50%; object-fit: cover; margin: 0 auto 1rem; display: block; border: 1.5px solid #A68A56; }
.cover-logo-mobile { width: 80px; height: 80px; border-radius: 50%; object-fit: cover; margin: 0 auto 1.5rem; display: block; border: 2px solid #A68A56; box-shadow: 0 0 30px rgba(166,138,86,0.4); }
.cta-logo-img { width: 70px; height: 70px; border-radius: 50%; object-fit: cover; margin: 1rem auto; display: block; border: 1.5px solid #A68A56; }
.footer-logo-img { width: 28px; height: 28px; border-radius: 50%; object-fit: cover; border: 1px solid #A68A56; }

@media (min-width: 768px) {
  .hero-logo-img { width: 100px; height: 100px; }
  .cover-logo-img { width: 70px; height: 70px; }
}

/* ========= CURSOR ========= */
@media (hover: hover) and (pointer: fine) {
  body, a, button, input, textarea { cursor: none !important; }
  .cursor-dot {
    position: fixed; top: 0; left: 0;
    width: 10px; height: 10px;
    background: #A68A56; border-radius: 50%;
    pointer-events: none; z-index: 99999;
    transform: translate(-50%, -50%);
    transition: width 0.25s, height 0.25s, background 0.25s;
    box-shadow: 0 0 15px rgba(166,138,86,0.8);
  }
  .cursor-ring {
    position: fixed; top: 0; left: 0;
    width: 40px; height: 40px;
    border: 1.5px solid #A68A56; border-radius: 50%;
    pointer-events: none; z-index: 99998;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, background 0.3s;
  }
  .cursor-dot.active { width: 16px; height: 16px; background: #2D3620; }
  .cursor-ring.active { width: 65px; height: 65px; background: rgba(166,138,86,0.15); }
}
@media (hover: none), (max-width: 900px) {
  .cursor-dot, .cursor-ring { display: none !important; }
}

/* ========= PARTICLES ========= */
.floating-particles {
  position: fixed; inset: 0;
  pointer-events: none; z-index: 1; overflow: hidden;
}
.particle {
  position: absolute;
  background: #A68A56; border-radius: 50%;
  opacity: 0.25;
  animation: particleFloat linear infinite;
}
@keyframes particleFloat {
  0% { transform: translateY(100vh) translateX(0); opacity: 0; }
  10%, 90% { opacity: 0.25; }
  100% { transform: translateY(-20vh) translateX(30px); opacity: 0; }
}

/* ========= NAV ========= */
.nav-brand { color: #A68A56; }
nav#nav .nav-links a { color: #2D3620; }
nav#nav .nav-cta { border: 1px solid #A68A56; color: #A68A56; transition: all 0.3s; }
nav#nav .nav-cta:hover { background: #A68A56; color: #F5F1E8; }
nav#nav .nav-burger { color: #2D3620; background: transparent; border: none; padding: 0.3rem; }

nav#nav.scrolled {
  background: rgba(245,241,232,0.96);
  backdrop-filter: blur(12px);
  padding-top: 0.7rem;
  padding-bottom: 0.7rem;
  box-shadow: 0 2px 30px rgba(0,0,0,0.1);
}
nav#nav:not(.scrolled) .nav-brand { color: #A68A56; text-shadow: 0 2px 10px rgba(0,0,0,0.3); }
nav#nav:not(.scrolled) .nav-links a { color: #F5F1E8; text-shadow: 0 2px 10px rgba(0,0,0,0.3); }
nav#nav:not(.scrolled) .nav-burger { color: #F5F1E8; }

.nav-link { position: relative; transition: color 0.3s; }
.nav-link:hover { color: #A68A56 !important; }
.nav-link::after {
  content: ''; position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: #A68A56;
  transition: width 0.3s;
}
.nav-link:hover::after { width: 100%; }

/* ========= MOBILE MENU ========= */
.mobile-menu {
  position: fixed; inset: 0;
  background: #1F2818;
  background-image:
    radial-gradient(ellipse at top, rgba(166,138,86,0.15), transparent 60%),
    radial-gradient(ellipse at bottom, rgba(45,54,32,0.8), transparent 50%);
  z-index: 60;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  transition: opacity 0.4s;
}
.mobile-menu.open { display: flex; opacity: 1; }
.mobile-menu-inner {
  display: flex; flex-direction: column;
  align-items: center; gap: 1.5rem;
  text-align: center;
}
.mobile-menu-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  background: transparent;
  border: 1px solid #A68A56;
  color: #A68A56;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
}
.mobile-link {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  color: #F5F1E8;
  text-decoration: none;
  transition: color 0.3s;
}
.mobile-link:hover { color: #A68A56; }
.mobile-cta {
  margin-top: 1rem;
  background: #A68A56;
  color: #1F2818;
  padding: 1rem 2.5rem;
  font-family: 'Cinzel', serif;
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  text-decoration: none;
  transition: all 0.3s;
}
.mobile-cta:hover { background: #F5F1E8; transform: translateY(-2px); }

/* ========= HERO ========= */
.hero { background: #1F2818; }
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('assets/backg-home.png');
  background-size: cover;
  background-position: center;
  filter: brightness(0.72) saturate(0.92);
  will-change: transform;
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(31,40,24,0.35) 0%, rgba(45,54,32,0.2) 50%, rgba(31,40,24,0.82) 100%),
    radial-gradient(ellipse at center, transparent 30%, rgba(31,40,24,0.38) 100%);
}
.hero-floating-icons {
  position: absolute; inset: 0;
  pointer-events: none; z-index: 2;
}
.float-icon {
  position: absolute;
  color: rgba(166, 138, 86, 0.18);
  animation: floatAnim 8s ease-in-out infinite;
}
.float-icon-1 { top: 15%; left: 8%; font-size: 3rem; }
.float-icon-2 { top: 20%; right: 10%; font-size: 4rem; animation-delay: 2s; }
.float-icon-3 { bottom: 25%; left: 12%; font-size: 3.5rem; animation-delay: 1s; }
.float-icon-4 { top: 50%; right: 15%; font-size: 2.5rem; animation-delay: 3s; }
.float-icon-5 { bottom: 30%; right: 8%; font-size: 3rem; animation-delay: 1.5s; }
@keyframes floatAnim {
  0%, 100% { transform: translateY(0) rotate(0); }
  50% { transform: translateY(-30px) rotate(5deg); }
}
@media (max-width: 768px) {
  .float-icon { font-size: 1.8rem !important; }
}
.scroll-line {
  width: 1px; height: 30px;
  background: linear-gradient(180deg, #A68A56, transparent);
  animation: scrollLineKF 2s ease infinite;
}
@keyframes scrollLineKF {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ========= FILOSOFÍA ========= */
.filosofia-bg {
  background: #F4EFE2;
  position: relative;
}
.filosofia-bg::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at top right, rgba(166,138,86,0.06), transparent 60%),
    radial-gradient(ellipse at bottom left, rgba(63,74,44,0.05), transparent 60%);
  pointer-events: none;
}
.filosofia-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  padding: 12px;
}
.filosofia-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
  position: relative;
  z-index: 2;
}
.filosofia-image-frame {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(166, 138, 86, 0.5);
  z-index: 1;
  pointer-events: none;
}
.filosofia-image-frame::before {
  content: '';
  position: absolute;
  inset: -12px;
  border: 1px solid rgba(166, 138, 86, 0.25);
}
.filosofia-image-wrapper.no-img {
  min-height: 400px;
  background: rgba(63,74,44,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ========= STATS ========= */
.stats-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(31,40,24,0.88), rgba(31,40,24,0.93)),
    url('https://images.unsplash.com/photo-1556910103-1c02745aae4d?q=80&w=1920&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
@media (max-width: 768px) {
  .stats-bg { background-attachment: scroll; }
}
.stat-item {
  transform: translateY(30px); opacity: 0;
  transition: all 0.8s ease;
}
.stat-item.visible { transform: translateY(0); opacity: 1; }

/* ========= GALLERY ========= */
.gallery-item { transition: all 0.5s; }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(31,40,24,0.9), rgba(31,40,24,0.5), transparent);
  opacity: 0.75;
  transition: opacity 0.3s;
}
.gallery-item:hover .gallery-overlay { opacity: 0.95; }

/* ========= TESTIMONIAL ========= */
.testimonial-card {
  background: linear-gradient(145deg, rgba(63,74,44,0.6), rgba(45,54,32,0.9));
  border: 1px solid rgba(166,138,86,0.3);
  padding: 1.5rem;
  position: relative;
  transition: all 0.5s ease;
  backdrop-filter: blur(8px);
}
@media (min-width: 768px) {
  .testimonial-card { padding: 2.5rem; }
}
.testimonial-card:hover {
  transform: translateY(-8px);
  border-color: #A68A56;
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

.parallax-float { will-change: transform; }

/* ========= DESKTOP BOOK ========= */
.desktop-book { display: block; }
.mobile-book-section { display: none; }

@media (max-width: 900px) {
  .desktop-book { display: none !important; }
  .mobile-book-section { display: block !important; }
}

.scene {
  perspective: 2500px;
  height: 100vh;
  min-height: 680px;
  max-height: 900px;
}
#book-scaler { transform-origin: center center; }
.book {
  position: relative;
  width: 900px;
  height: 600px;
  transform-style: preserve-3d;
}
.book-spine {
  position: absolute;
  top: -10px; left: 50%;
  transform: translateX(-50%);
  width: 20px; height: 620px;
  background: linear-gradient(90deg, #1F2818, #3F4A2C, #1F2818);
  border-top: 2px solid #A68A56;
  border-bottom: 2px solid #A68A56;
  z-index: 1;
  box-shadow: 0 0 20px rgba(0,0,0,0.8);
}
.leaf {
  position: absolute;
  top: 0; left: 50%;
  width: 50%; height: 100%;
  transform-origin: left center;
  transform-style: preserve-3d;
}
.page-front, .page-back {
  position: absolute; inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  overflow: hidden;
  background: #F5F1E8;
}
.page-front {
  background:
    linear-gradient(to right, rgba(0,0,0,0.08) 0%, rgba(0,0,0,0) 5%),
    #FAF7EE;
  box-shadow: inset 10px 0 20px -10px rgba(0,0,0,0.15);
}
.page-back {
  background:
    linear-gradient(to left, rgba(0,0,0,0.08) 0%, rgba(0,0,0,0) 5%),
    #F5F1E8;
  transform: rotateY(-180deg);
  box-shadow: inset -10px 0 20px -10px rgba(0,0,0,0.15);
}
.page-content-scroll {
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 2rem 2.2rem;
  scrollbar-width: thin;
  scrollbar-color: #A68A56 transparent;
}
.page-content-scroll::-webkit-scrollbar { width: 4px; }
.page-content-scroll::-webkit-scrollbar-thumb { background: #A68A56; }

.menu-card {
  background: linear-gradient(135deg, #FFFFFF 0%, #F5F1E8 100%);
  border: 1px solid rgba(166,138,86,0.25);
  padding: 0.85rem 1rem;
  margin-bottom: 0.7rem;
  transition: all 0.3s;
  border-left: 3px solid #A68A56;
}
.menu-card:hover {
  background: linear-gradient(135deg, #FAF7EE 0%, #F0EADC 100%);
  transform: translateX(3px);
  box-shadow: 2px 2px 10px rgba(166,138,86,0.15);
}
.menu-card.highlight {
  background: linear-gradient(135deg, rgba(166,138,86,0.15) 0%, rgba(166,138,86,0.05) 100%);
  border-color: #A68A56;
  border-left-width: 4px;
}
.menu-card-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.3rem;
}
.menu-card-header i { font-size: 1rem; flex-shrink: 0; }
.menu-card-header h4 {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: #2D3620;
  flex: 1;
  line-height: 1.2;
}
.menu-card p {
  font-size: 0.78rem;
  color: #3F4A2C;
  line-height: 1.4;
  opacity: 0.85;
}
.menu-price {
  font-family: 'Cinzel', serif;
  font-size: 0.82rem;
  color: #A68A56;
  font-weight: 600;
  margin-left: auto;
  white-space: nowrap;
  background: rgba(166,138,86,0.12);
  padding: 3px 8px;
  border-radius: 2px;
}

.service-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.6rem;
  padding: 0.55rem 0;
  border-bottom: 1px dotted rgba(166,138,86,0.3);
}
.service-row:last-child { border-bottom: none; }
.service-info { flex: 1; min-width: 0; }
.service-info h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: #2D3620;
  margin-bottom: 0.15rem;
}
.service-info p { font-size: 0.72rem; color: #3F4A2C; opacity: 0.7; }
.service-price { text-align: right; white-space: nowrap; flex-shrink: 0; }
.service-price .credits { display: block; font-family: 'Cinzel', serif; font-size: 0.7rem; color: #A68A56; }
.service-price .money { display: block; font-family: 'Courier Prime', monospace; font-size: 0.82rem; color: #2D3620; font-weight: 700; }

.package-card {
  margin-top: 0.8rem;
  padding: 0.9rem 1rem;
  background: linear-gradient(135deg, rgba(166,138,86,0.15), rgba(166,138,86,0.05));
  border: 1px solid rgba(166,138,86,0.5);
  position: relative;
}
.package-card.featured {
  background: linear-gradient(135deg, rgba(166,138,86,0.25), rgba(166,138,86,0.1));
  border-color: #A68A56;
}
.package-label { display: flex; align-items: center; gap: 0.4rem; margin-bottom: 0.3rem; }
.package-label span {
  font-family: 'Cinzel', serif;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  color: #2D3620;
  font-weight: 600;
}
.package-price { display: flex; align-items: baseline; justify-content: space-between; gap: 0.5rem; }
.price-big { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 700; color: #2D3620; }
.price-note { font-size: 0.7rem; color: #3F4A2C; opacity: 0.75; font-style: italic; text-align: right; }
.package-discount {
  position: absolute;
  top: -8px; right: 8px;
  background: #A68A56;
  color: #1F2818;
  font-family: 'Cinzel', serif;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  padding: 0.25rem 0.7rem;
}

.package-mini {
  background: rgba(166,138,86,0.08);
  border: 1px solid rgba(166,138,86,0.3);
  padding: 0.5rem 0.3rem;
  text-align: center;
}
.package-mini.featured {
  background: rgba(166,138,86,0.22);
  border-color: #A68A56;
  transform: scale(1.05);
}
.pkg-name { font-family: 'Cinzel', serif; font-size: 0.7rem; color: #A68A56; letter-spacing: 0.1em; font-weight: 600; margin-bottom: 0.2rem; }
.pkg-price { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: #2D3620; font-weight: 700; margin-bottom: 0.15rem; }
.pkg-credits { font-size: 0.68rem; color: #3F4A2C; opacity: 0.7; }

.page-number-mini {
  position: sticky;
  bottom: 0;
  padding: 0.6rem 0 0.2rem;
  margin-top: 0.8rem;
  font-family: 'Cinzel', serif;
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  color: #A68A56;
  opacity: 0.6;
  white-space: nowrap;
  text-align: center;
  background: linear-gradient(transparent, #FAF7EE 40%);
}

.cover-leaf .cover-front-page {
  background: radial-gradient(ellipse at center, #3F4A2C 0%, #1F2818 100%);
  position: relative;
}
.cover-border {
  position: relative;
  padding: 2rem;
  border: 1px solid rgba(166,138,86,0.4);
  margin: 1.5rem;
  width: calc(100% - 3rem);
  height: calc(100% - 3rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.cover-border::before, .cover-border::after {
  content: '';
  position: absolute;
  width: 18px; height: 18px;
  border-color: #A68A56;
}
.cover-border::before { top: -2px; left: -2px; border-top: 2px solid; border-left: 2px solid; }
.cover-border::after { bottom: -2px; right: -2px; border-bottom: 2px solid; border-right: 2px solid; }

/* ========= MOBILE BOOK ========= */
.mobile-book-section {
  position: relative;
  min-height: 100vh;
  scroll-margin-top: 0;
}
.mobile-book-container {
  max-width: 500px;
  margin: 0 auto;
  position: relative;
}
.mobile-book-nav {
  position: sticky;
  top: 60px;
  z-index: 10;
  background: #1F2818;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  margin-bottom: 0.75rem;
  border-bottom: 1px solid rgba(166,138,86,0.2);
}
.mobile-nav-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid #A68A56;
  background: rgba(166,138,86,0.1);
  color: #A68A56;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s;
}
.mobile-nav-btn:hover { background: #A68A56; color: #1F2818; }
.mobile-nav-btn:disabled { opacity: 0.3; cursor: not-allowed; }
.mobile-page-indicator {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #F5F1E8;
  font-family: 'Cinzel', serif;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
}
.mobile-progress-bar {
  width: 100%;
  height: 3px;
  background: rgba(166,138,86,0.2);
  margin-bottom: 1.5rem;
  overflow: hidden;
  border-radius: 2px;
}
.mobile-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #A68A56, #C4A870);
  width: 14.28%;
  transition: width 0.4s ease;
}
.mobile-pages-wrapper {
  position: relative;
  min-height: 500px;
}
.mobile-page { display: none; animation: pageSlideIn 0.5s ease; }
.mobile-page.active { display: block; }
@keyframes pageSlideIn {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: translateX(0); }
}
.mobile-page-paper {
  background: #FAF7EE;
  border: 1px solid rgba(166,138,86,0.3);
  border-radius: 4px;
  padding: 1.75rem 1.5rem;
  box-shadow: 0 20px 50px rgba(0,0,0,0.4), 0 0 0 10px rgba(166,138,86,0.05);
  position: relative;
  min-height: 500px;
}
.mobile-page-paper::before {
  content: '';
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(166,138,86,0.3);
  pointer-events: none;
}
.mobile-page-paper.cover-page {
  background: radial-gradient(ellipse at center, #3F4A2C 0%, #1F2818 100%);
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cover-border-mobile {
  text-align: center;
  padding: 2.5rem 1.5rem;
  border: 1px solid rgba(166,138,86,0.5);
  width: 100%; max-width: 320px;
  position: relative;
}
.cover-border-mobile::before, .cover-border-mobile::after {
  content: '';
  position: absolute;
  width: 22px; height: 22px;
  border-color: #A68A56;
}
.cover-border-mobile::before { top: -2px; left: -2px; border-top: 2px solid; border-left: 2px solid; }
.cover-border-mobile::after { bottom: -2px; right: -2px; border-bottom: 2px solid; border-right: 2px solid; }

.mobile-page-header { text-align: center; margin-bottom: 1.25rem; padding-bottom: 0.5rem; }
.mobile-page-label {
  font-family: 'Cinzel', serif;
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  color: #A68A56;
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
}
.mobile-page-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: #2D3620;
  line-height: 1.15;
  font-weight: 500;
}
.mobile-page-divider { width: 50px; height: 1px; background: #A68A56; margin: 0.8rem auto 0; }

.mobile-page-intro {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1rem;
  color: #3F4A2C;
  line-height: 1.5;
  margin-bottom: 1.25rem;
  text-align: center;
}
.mobile-subtitle {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: #2D3620;
  font-weight: 600;
  margin: 1.5rem 0 0.75rem;
  padding-bottom: 0.35rem;
  border-bottom: 1px solid rgba(166,138,86,0.3);
}
.mobile-feature-list { display: flex; flex-direction: column; gap: 1rem; margin-top: 1rem; }
.mobile-feature { display: flex; gap: 0.9rem; align-items: flex-start; }
.mobile-feature-icon {
  width: 48px; height: 48px; border-radius: 50%;
  background: #3F4A2C; color: #A68A56;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 1rem;
}
.mobile-feature h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem; font-weight: 700; color: #2D3620; margin-bottom: 0.15rem;
}
.mobile-feature p { font-size: 0.85rem; color: #3F4A2C; line-height: 1.4; }

.mobile-info-box {
  background: rgba(166,138,86,0.08);
  border: 1px solid rgba(166,138,86,0.3);
  padding: 0.9rem; margin-bottom: 1rem;
}
.mobile-info-row {
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 0.9rem; color: #2D3620; margin-bottom: 0.35rem;
}
.mobile-info-row:last-child { margin-bottom: 0; }
.mobile-info-row strong { color: #A68A56; }

.mobile-packages { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 0.5rem; margin-bottom: 1.5rem; }
.mobile-pkg {
  background: #F5F1E8;
  border: 1px solid rgba(166,138,86,0.35);
  padding: 0.7rem 0.4rem;
  text-align: center; border-radius: 2px;
}
.mobile-pkg.featured {
  background: rgba(166,138,86,0.2);
  border: 2px solid #A68A56;
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(166,138,86,0.3);
}
.mobile-pkg .pkg-n { font-family: 'Cinzel', serif; font-size: 0.72rem; color: #A68A56; letter-spacing: 0.12em; font-weight: 700; margin-bottom: 0.3rem; }
.mobile-pkg .pkg-p { font-family: 'Playfair Display', serif; font-size: 1.15rem; color: #2D3620; font-weight: 700; margin-bottom: 0.15rem; }
.mobile-pkg .pkg-c { font-size: 0.7rem; color: #3F4A2C; opacity: 0.75; }

.mobile-service-row {
  display: flex; justify-content: space-between; gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px dashed rgba(166,138,86,0.3);
}
.mobile-service-row:last-child { border-bottom: none; }
.msr-info { flex: 1; min-width: 0; }
.msr-info h5 { font-family: 'Playfair Display', serif; font-size: 0.95rem; font-weight: 700; color: #2D3620; margin-bottom: 0.2rem; line-height: 1.2; }
.msr-info p { font-size: 0.78rem; color: #3F4A2C; opacity: 0.75; }
.msr-price { text-align: right; white-space: nowrap; flex-shrink: 0; }
.msr-price span { display: block; font-family: 'Cinzel', serif; font-size: 0.72rem; color: #A68A56; font-weight: 600; margin-bottom: 0.15rem; }
.msr-price strong { display: block; font-family: 'Courier Prime', monospace; font-size: 0.9rem; color: #2D3620; font-weight: 700; }

.mobile-menu-card {
  background: linear-gradient(135deg, #FFFFFF 0%, #F5F1E8 100%);
  border: 1px solid rgba(166,138,86,0.3);
  border-left: 4px solid #A68A56;
  padding: 0.9rem 1rem; margin-bottom: 0.7rem;
  border-radius: 2px; transition: all 0.3s;
}
.mobile-menu-card.highlight {
  background: linear-gradient(135deg, rgba(166,138,86,0.18), rgba(166,138,86,0.06));
  border-color: #A68A56;
}
.mmc-header { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.35rem; }
.mmc-header i { font-size: 1rem; flex-shrink: 0; }
.mmc-header h4 { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700; color: #2D3620; line-height: 1.2; flex: 1; }
.mmc-price {
  font-family: 'Cinzel', serif;
  font-size: 0.85rem; color: #A68A56; font-weight: 700;
  background: rgba(166,138,86,0.15);
  padding: 3px 9px; border-radius: 2px; white-space: nowrap;
}
.mobile-menu-card p { font-size: 0.83rem; color: #3F4A2C; line-height: 1.45; opacity: 0.9; }

.mobile-package {
  background: linear-gradient(135deg, rgba(166,138,86,0.18), rgba(166,138,86,0.06));
  border: 1px solid #A68A56;
  padding: 1rem 1.1rem; margin-top: 1rem;
  position: relative; border-radius: 2px;
}
.mobile-package.featured {
  background: linear-gradient(135deg, rgba(166,138,86,0.28), rgba(166,138,86,0.12));
  border-width: 2px;
  box-shadow: 0 4px 15px rgba(166,138,86,0.25);
}
.mp-discount {
  position: absolute; top: -10px; right: 10px;
  background: #A68A56; color: #1F2818;
  font-family: 'Cinzel', serif; font-size: 0.7rem;
  letter-spacing: 0.15em; padding: 0.3rem 0.7rem; font-weight: 700;
}
.mp-label { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.5rem; }
.mp-label span { font-family: 'Cinzel', serif; font-size: 0.82rem; color: #2D3620; letter-spacing: 0.2em; font-weight: 700; }
.mp-big { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; color: #2D3620; margin-bottom: 0.2rem; }
.mp-note { font-size: 0.78rem; font-style: italic; color: #3F4A2C; opacity: 0.8; }

.mobile-cta-box {
  margin-top: 1.5rem; padding: 1.75rem 1.25rem;
  background: linear-gradient(135deg, #3F4A2C, #2D3620);
  border: 1px solid #A68A56;
  text-align: center; border-radius: 2px;
}
.mobile-cta-title { font-family: 'Playfair Display', serif; font-size: 1.4rem; color: #F5F1E8; margin: 0.5rem 0 1rem; line-height: 1.2; }
.mobile-cta-title em { color: #A68A56; }
.mobile-cta-btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: #A68A56; color: #1F2818;
  padding: 0.8rem 1.5rem;
  font-family: 'Cinzel', serif; font-size: 0.75rem; letter-spacing: 0.25em;
  text-decoration: none; transition: all 0.3s;
}
.mobile-cta-btn:hover { background: #F5F1E8; transform: translateY(-2px); }

/* ========= RECEIPT ========= */
.receipt {
  background: #fff; color: #333;
  width: 100%; max-width: 320px;
  margin: 0 auto; padding: 1.25rem 1.5rem;
  position: relative;
  box-shadow: 0 15px 40px rgba(0,0,0,0.4);
  font-family: 'Courier Prime', 'Courier New', monospace;
}
@media (min-width: 768px) { .receipt { padding: 1.5rem 1.75rem; } }
.receipt::before, .receipt::after {
  content: ""; position: absolute;
  left: 0; width: 100%; height: 10px;
  background: radial-gradient(circle at 10px 0, transparent 10px, #fff 10px) 0 0 / 20px 10px repeat-x;
}
.receipt::before { top: -10px; transform: scaleY(-1); }
.receipt::after { bottom: -10px; }
.receipt-line { border-bottom: 1px dashed #bbb; margin: 8px 0; }

/* ========= CONTACT BUTTONS ========= */
.contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1rem 2rem;
  font-family: 'Cinzel', serif;
  font-size: 0.78rem;
  letter-spacing: 0.25em;
  text-decoration: none;
  transition: all 0.3s;
  min-width: 200px;
}
.contact-btn-whatsapp {
  background: #25D366;
  color: #fff;
}
.contact-btn-whatsapp:hover {
  background: #1ebe57;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(37,211,102,0.4);
}
.contact-btn-email {
  background: transparent;
  border: 1.5px solid #A68A56;
  color: #A68A56;
}
.contact-btn-email:hover {
  background: #A68A56;
  color: #1F2818;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(166,138,86,0.3);
}
@media (max-width: 480px) {
  .contact-btn { width: 100%; min-width: unset; }
}

/* ========= WA FLOAT ========= */
.wa-float {
  position: fixed;
  bottom: 1.5rem; right: 1.5rem;
  width: 60px; height: 60px;
  background: #25D366; color: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(37,211,102,0.5);
  z-index: 999;
  transition: transform 0.3s;
  font-size: 1.8rem;
}
.wa-float:hover { transform: scale(1.1) rotate(10deg); }
.wa-pulse {
  position: absolute; inset: 0;
  border-radius: 50%;
  background: #25D366;
  animation: waPulseKF 2s ease infinite;
  z-index: -1;
}
@keyframes waPulseKF {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.7); opacity: 0; }
}
@media (max-width: 768px) {
  .wa-float { width: 52px; height: 52px; bottom: 1rem; right: 1rem; font-size: 1.5rem; }
}

/* ========= REVEAL ========= */
.reveal-block {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s, transform 1s;
}
.reveal-block.visible {
  opacity: 1;
  transform: translateY(0);
}
