/* Corazón de Bombón — Catálogo consulta */
:root {
  --blush: #fff0f5;
  --blush-deep: #fce4ec;
  --rose: #e91e63;
  --rose-dark: #ad1457;
  --rose-soft: #f48fb1;
  --cream: #fffbfc;
  --ink: #4a1942;
  --ink-muted: #7d4f6d;
  --white: #ffffff;
  --shadow: 0 12px 40px rgba(173, 20, 87, 0.12);
  --shadow-soft: 0 4px 20px rgba(173, 20, 87, 0.08);
  --radius: 1.25rem;
  --radius-sm: 0.75rem;
  --font-display: "Cormorant Garamond", "Georgia", serif;
  --font-body: "DM Sans", system-ui, sans-serif;
  --font-script: "Pacifico", cursive;
  --header-h: 4.5rem;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--blush);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Heart border pattern */
.heart-border {
  display: flex;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.5rem 0;
  overflow: hidden;
}

.heart-border span {
  font-size: 0.65rem;
  color: var(--rose);
  opacity: 0.85;
  animation: heartPulse 2.4s ease-in-out infinite;
}

.heart-border span:nth-child(odd) {
  color: var(--rose-dark);
  animation-delay: 0.3s;
}

@keyframes heartPulse {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.15); opacity: 1; }
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(255, 251, 252, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(233, 30, 99, 0.1);
  transition: box-shadow 0.3s var(--ease-out);
}

.site-header.scrolled {
  box-shadow: var(--shadow-soft);
}

.header-inner {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1.25rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.brand img {
  width: 2.75rem;
  height: 2.75rem;
  object-fit: contain;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-name {
  font-family: var(--font-script);
  font-size: 1.05rem;
  color: var(--rose-dark);
}

.brand-tag {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2.5rem;
  height: 2.5rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--rose-dark);
  border-radius: 2px;
  transition: transform 0.3s var(--ease-out), opacity 0.3s;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.main-nav {
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  background: var(--cream);
  padding: 1.5rem;
  transform: translateY(-120%);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.4s var(--ease-out), opacity 0.3s, visibility 0.3s;
  box-shadow: var(--shadow-soft);
}

.main-nav.open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.main-nav ul {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.main-nav a {
  display: block;
  padding: 0.85rem 1rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: background 0.2s, color 0.2s;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  background: var(--blush-deep);
  color: var(--rose-dark);
}

/* Hero */
.hero {
  position: relative;
  min-height: 92vh;
  min-height: 92dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: calc(var(--header-h) + 1.5rem) 1.25rem 3rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transform: scale(1.08);
  animation: heroKenBurns 18s ease-out forwards;
}

@keyframes heroKenBurns {
  from { transform: scale(1.14); }
  to { transform: scale(1.02); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      115deg,
      rgba(58, 12, 48, 0.94) 0%,
      rgba(74, 25, 66, 0.88) 38%,
      rgba(173, 20, 87, 0.55) 62%,
      rgba(255, 240, 245, 0.25) 100%
    );
}

.hero-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 15% 70%, rgba(233, 30, 99, 0.35) 0%, transparent 65%),
    radial-gradient(ellipse 50% 40% at 85% 20%, rgba(244, 143, 177, 0.2) 0%, transparent 60%);
  pointer-events: none;
}

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 72rem;
  margin: 0 auto;
  color: var(--white);
}

.hero-content-panel {
  max-width: 34rem;
  padding: 1.75rem 1.5rem;
  background: rgba(42, 10, 36, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.hero-animate {
  opacity: 0;
  transform: translateY(28px);
  animation: heroEnter 0.85s var(--ease-out) forwards;
  animation-delay: var(--d, 0s);
}

@keyframes heroEnter {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
  padding: 0.4rem 0.85rem;
  background: rgba(233, 30, 99, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  backdrop-filter: blur(4px);
  color: #ffe4ef;
  font-weight: 600;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.35rem, 8vw, 3.75rem);
  font-weight: 700;
  line-height: 1.08;
  margin-bottom: 0.65rem;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.45);
}

.hero h1 em {
  font-style: italic;
  color: #ffb3d0;
  text-shadow: 0 0 32px rgba(233, 30, 99, 0.6);
}

.slogan {
  font-family: var(--font-script);
  font-size: clamp(1.15rem, 3.5vw, 1.55rem);
  color: var(--rose-soft);
  line-height: 1.3;
}

.hero-slogan {
  margin-bottom: 0.85rem;
  color: #ffcce0;
  text-shadow: 0 2px 16px rgba(233, 30, 99, 0.5);
}

.footer-slogan {
  margin-bottom: 1rem;
  color: var(--rose-soft);
}

.hero-desc {
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 1.5rem;
  max-width: 28rem;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn-glow {
  animation: btnPulse 2.8s ease-in-out infinite;
}

@keyframes btnPulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(233, 30, 99, 0.45); }
  50% { box-shadow: 0 6px 36px rgba(233, 30, 99, 0.75), 0 0 20px rgba(255, 105, 180, 0.4); }
}

.hero .btn-outline {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.55);
  font-weight: 600;
}

.hero .btn-outline:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: var(--white);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s, background 0.2s;
}

.btn:active {
  transform: scale(0.97);
}

.btn-primary {
  background: var(--rose);
  color: var(--white);
  box-shadow: 0 6px 24px rgba(233, 30, 99, 0.35);
}

.btn-primary:hover {
  background: var(--rose-dark);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(4px);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.22);
}

.btn-ghost {
  background: var(--blush-deep);
  color: var(--rose-dark);
}

.btn-ghost:hover {
  background: var(--rose-soft);
  color: var(--white);
}

/* Sections */
section {
  padding: 4rem 1.25rem;
}

.section-inner {
  max-width: 72rem;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 700;
  color: var(--rose-dark);
  margin-bottom: 0.5rem;
}

.section-header p {
  color: var(--ink-muted);
  max-width: 32rem;
  margin: 0 auto;
}

/* Intro strip */
.intro-strip {
  background: var(--cream);
  padding: 2.5rem 1.25rem;
}

.intro-grid {
  max-width: 72rem;
  margin: 0 auto;
  display: grid;
  gap: 1.5rem;
}

.intro-card {
  text-align: center;
  padding: 1.5rem 1rem;
}

.intro-icon {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.intro-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--rose-dark);
  margin-bottom: 0.35rem;
}

.intro-card p {
  font-size: 0.9rem;
  color: var(--ink-muted);
}

/* Package cards */
.catalog {
  background: linear-gradient(180deg, var(--blush) 0%, var(--blush-deep) 100%);
}

.package-grid {
  display: grid;
  gap: 1.75rem;
}

.package-card {
  background: var(--cream);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s;
  opacity: 0;
  transform: translateY(24px);
}

.package-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.package-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.package-card:nth-child(1) { transition-delay: 0.05s; }
.package-card:nth-child(2) { transition-delay: 0.08s; }
.package-card:nth-child(3) { transition-delay: 0.11s; }
.package-card:nth-child(4) { transition-delay: 0.14s; }
.package-card:nth-child(5) { transition-delay: 0.17s; }
.package-card:nth-child(6) { transition-delay: 0.2s; }
.package-card:nth-child(7) { transition-delay: 0.23s; }
.package-card:nth-child(8) { transition-delay: 0.26s; }
.package-card:nth-child(9) { transition-delay: 0.29s; }
.package-card:nth-child(10) { transition-delay: 0.32s; }

.package-image {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.package-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.package-card:hover .package-image img {
  transform: scale(1.04);
}

.package-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.35rem 0.75rem;
  background: var(--rose);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 999px;
}

.package-body {
  padding: 1.5rem;
}

.package-body h3 {
  font-family: var(--font-display);
  font-size: 1.65rem;
  color: var(--rose-dark);
  margin-bottom: 0.35rem;
}

.package-subtitle {
  font-size: 0.88rem;
  color: var(--ink-muted);
  margin-bottom: 1rem;
  line-height: 1.5;
}

.package-includes {
  margin-bottom: 1.25rem;
}

.package-includes li {
  position: relative;
  padding-left: 1.25rem;
  font-size: 0.9rem;
  color: var(--ink);
  margin-bottom: 0.35rem;
}

.package-includes li::before {
  content: "♥";
  position: absolute;
  left: 0;
  color: var(--rose-soft);
  font-size: 0.75rem;
}

.price-tiers {
  display: grid;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
  padding: 1rem;
  background: var(--blush);
  border-radius: var(--radius-sm);
}

.price-tier {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
}

.price-tier span:first-child {
  color: var(--ink-muted);
}

.price-tier strong {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--rose-dark);
}

.package-footer {
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.package-footer .btn {
  flex: 1;
  min-width: 8rem;
  padding: 0.75rem 1rem;
  font-size: 0.85rem;
}

/* Detail page */
.detail-hero {
  padding-top: calc(var(--header-h) + 1.5rem);
  background: var(--cream);
}

.detail-hero-inner {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1.25rem 2rem;
}

.breadcrumb {
  font-size: 0.8rem;
  color: var(--ink-muted);
  margin-bottom: 1.5rem;
}

.breadcrumb a {
  color: var(--rose);
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.detail-layout {
  display: grid;
  gap: 2rem;
}

.detail-image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.detail-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.detail-info h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 3rem);
  color: var(--rose-dark);
  margin-bottom: 0.5rem;
}

.detail-tagline {
  font-size: 1.05rem;
  color: var(--ink-muted);
  margin-bottom: 1.5rem;
}

.detail-block {
  margin-bottom: 1.75rem;
}

.detail-block h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--rose-dark);
  margin-bottom: 0.75rem;
}

.detail-block ul li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.5rem;
}

.detail-block ul li::before {
  content: "♥";
  position: absolute;
  left: 0;
  color: var(--rose);
  font-size: 0.8rem;
}

.detail-note {
  padding: 1rem 1.25rem;
  background: var(--blush);
  border-left: 3px solid var(--rose);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 0.88rem;
  color: var(--ink-muted);
}

/* FAQ */
.faq {
  background: var(--cream);
  padding: 3.5rem 1.25rem;
}

.faq-list {
  max-width: 36rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.faq-item {
  background: var(--white);
  border: 1px solid rgba(233, 30, 99, 0.12);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.faq-item summary {
  padding: 1rem 1.15rem;
  font-weight: 600;
  color: var(--rose-dark);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-size: 1.25rem;
  color: var(--rose);
  flex-shrink: 0;
  transition: transform 0.2s;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  padding: 0 1.15rem 1rem;
  font-size: 0.92rem;
  color: var(--ink-muted);
  line-height: 1.6;
}

.faq-item p strong {
  color: var(--rose-dark);
}

/* Contact */
.contact {
  background: var(--rose-dark);
  color: var(--white);
  text-align: center;
}

.contact h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 0.75rem;
}

.contact p {
  opacity: 0.9;
  margin-bottom: 1.5rem;
  max-width: 28rem;
  margin-left: auto;
  margin-right: auto;
}

.contact-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
}

.contact .btn-primary {
  background: var(--white);
  color: var(--rose-dark);
  box-shadow: none;
}

.contact .btn-primary:hover {
  background: var(--blush);
}

.contact-phone {
  font-size: 0.85rem;
  opacity: 0.8;
}

.booking-terms {
  max-width: 24rem;
  margin: 0 auto 1.5rem;
  text-align: left;
}

.booking-terms li {
  position: relative;
  padding-left: 1.25rem;
  font-size: 0.9rem;
  opacity: 0.92;
  margin-bottom: 0.45rem;
}

.booking-terms li::before {
  content: "♥";
  position: absolute;
  left: 0;
  color: var(--rose-soft);
  font-size: 0.75rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.contact-zone {
  font-size: 0.85rem;
  opacity: 0.85;
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  align-items: center;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  transition: background 0.2s, transform 0.2s;
}

.social-link:hover {
  background: rgba(255, 255, 255, 0.22);
  transform: translateY(-1px);
}

.social-link svg {
  width: 1.15rem;
  height: 1.15rem;
  fill: currentColor;
  flex-shrink: 0;
}

.site-footer .social-link {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.9);
}

.site-footer .social-link:hover {
  background: rgba(255, 255, 255, 0.15);
}

.footer-contact {
  margin-bottom: 1.25rem;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
  margin-bottom: 1.5rem;
}

.contact-social {
  font-size: 0.9rem;
  opacity: 0.92;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity 0.2s;
}

.contact-social:hover {
  opacity: 1;
}

/* Footer */
.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.75);
  padding: 2.5rem 1.25rem 1.5rem;
  text-align: center;
}

.footer-brand {
  font-family: var(--font-script);
  font-size: 1.35rem;
  color: var(--rose-soft);
  margin-bottom: 0.5rem;
}

.footer-note {
  font-size: 0.8rem;
  margin-bottom: 1rem;
}

.footer-copy {
  font-size: 0.75rem;
  opacity: 0.6;
}

/* WhatsApp float */
.wa-float {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  z-index: 90;
  width: 3.5rem;
  height: 3.5rem;
  background: #25d366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  transition: transform 0.25s var(--ease-out);
}

.wa-float:hover {
  transform: scale(1.08);
}

.wa-float svg {
  width: 1.75rem;
  height: 1.75rem;
  fill: currentColor;
}

/* Reveal animation base */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Tablet+ */
@media (min-width: 640px) {
  .intro-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .package-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-actions {
    flex-direction: row;
    justify-content: center;
  }

  .social-links {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (min-width: 768px) {
  .nav-toggle {
    display: none;
  }

  .main-nav {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    background: transparent;
    padding: 0;
    box-shadow: none;
  }

  .main-nav ul {
    flex-direction: row;
    gap: 0.25rem;
  }

  .main-nav a {
    padding: 0.5rem 0.85rem;
    font-size: 0.9rem;
  }

  .detail-layout {
    grid-template-columns: 1.1fr 1fr;
    align-items: start;
  }
}

@media (min-width: 768px) {
  .hero-content-panel {
    padding: 2.25rem 2rem;
    max-width: 38rem;
  }
}

@media (min-width: 1024px) {
  .hero {
    min-height: 92vh;
    padding-bottom: 4rem;
  }

  section {
    padding: 5rem 2rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .hero-animate {
    opacity: 1;
    transform: none;
  }

  .hero-bg img {
    transform: none;
  }

  html {
    scroll-behavior: auto;
  }
}
