@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700;800;900&family=Montserrat:wght@300;400;500;600;700;800&family=Lato:wght@300;400;700&display=swap');

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; min-height: 100%; }
body {
  font-family: "Lato", sans-serif;
  overflow-x: clip;
  background: hsl(var(--background));
  color: hsl(var(--foreground));
}
::selection { background: rgba(246,178,26,.3); }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
img { display: block; max-width: 100%; }
svg { display: inline-block; vertical-align: middle; }

:root, .dark {
  --background: 0 0% 0%;
  --foreground: 0 0% 95%;
  --card: 0 0% 6%;
  --card-foreground: 0 0% 95%;
  --popover: 0 0% 4%;
  --popover-foreground: 0 0% 95%;
  --primary: 219 90% 42%;
  --primary-foreground: 0 0% 98%;
  --secondary: 0 0% 12%;
  --secondary-foreground: 0 0% 95%;
  --muted: 0 0% 14%;
  --muted-foreground: 0 0% 65%;
  --accent: 41 92% 53%;
  --accent-foreground: 0 0% 5%;
  --border: 0 0% 18%;
  --input: 0 0% 16%;
  --ring: 41 92% 53%;
  --radius: .75rem;
}
.light {
  --background: 0 0% 98%;
  --foreground: 0 0% 8%;
  --card: 0 0% 100%;
  --card-foreground: 0 0% 8%;
  --popover: 0 0% 100%;
  --popover-foreground: 0 0% 8%;
  --primary: 219 90% 42%;
  --primary-foreground: 0 0% 98%;
  --secondary: 0 0% 92%;
  --secondary-foreground: 0 0% 10%;
  --muted: 0 0% 90%;
  --muted-foreground: 0 0% 38%;
  --accent: 41 92% 48%;
  --accent-foreground: 0 0% 5%;
  --border: 0 0% 85%;
  --input: 0 0% 88%;
  --ring: 219 90% 42%;
}

.font-display { font-family: "Cinzel", serif; }
.font-heading { font-family: "Montserrat", sans-serif; }
.font-body { font-family: "Lato", sans-serif; }
.text-muted { color: hsl(var(--muted-foreground)); }
.text-foreground { color: hsl(var(--foreground)); }
.gold-text {
  background: linear-gradient(180deg, #FCD877 0%, #F6B21A 55%, #C9891A 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.gold-divider { height: 1px; background: linear-gradient(90deg, transparent, #F6B21A, transparent); }
.glass {
  background: rgba(192, 192, 192, .06);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(246, 178, 26, .18);
}
.light .glass {
  background: rgba(255, 255, 255, .6);
  border: 1px solid rgba(10, 77, 204, .15);
}

@keyframes float-slow { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes hero-up { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes hero-scale { from { opacity: 0; transform: scale(.85); } to { opacity: 1; transform: scale(1); } }

.icon { width: 1em; height: 1em; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }
.icon-filled { fill: currentColor; stroke: currentColor; }

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 1rem 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.52), transparent);
  transition: all .3s ease;
}
.navbar.scrolled { padding: .5rem 0; background: rgba(192, 192, 192, .06); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); border: 1px solid rgba(246, 178, 26, .18); box-shadow: 0 10px 15px -3px rgba(0,0,0,.1), 0 4px 6px -4px rgba(0,0,0,.1); }
.light .navbar.scrolled { background: rgba(255, 255, 255, .6); border: 1px solid rgba(10, 77, 204, .15); }
.navbar-inner {
  max-width: 90rem;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand { display: flex; align-items: center; gap: .75rem; min-width: 0; }
.brand-logo { height: 2.75rem; width: 2.75rem; border-radius: 9999px; object-fit: cover; box-shadow: 0 0 0 1px rgba(246,178,26,.4); }
.brand-text { display: none; font-size: .875rem; font-weight: 700; line-height: 1.25; color: #F2F2F2; white-space: nowrap; }
.brand-sub { display: block; font-size: 10px; letter-spacing: .1em; color: hsl(var(--muted-foreground)); }
.nav-links { display: none; align-items: center; gap: 1.75rem; }
.nav-links a { font-family: "Montserrat", sans-serif; font-size: .875rem; font-weight: 500; color: rgba(242,242,242,.9); transition: color .2s ease; }
.nav-links a:hover { color: #F6B21A; }
.nav-actions { display: flex; align-items: center; gap: .5rem; }
.icon-button, .menu-toggle {
  height: 2.5rem;
  width: 2.5rem;
  display: grid;
  place-items: center;
  border: 0;
  background: transparent;
  padding: 0;
}
.theme-toggle { border: 1px solid rgba(246,178,26,.4); border-radius: 9999px; color: #F6B21A; transition: background-color .2s ease; }
.theme-toggle:hover { background: rgba(246,178,26,.1); }
.menu-toggle { color: #F2F2F2; }
.nav-whatsapp { display: none; align-items: center; gap: .5rem; border-radius: 9999px; background: #0A4DCC; padding: .625rem 1rem; font-family: "Montserrat", sans-serif; font-size: .875rem; font-weight: 600; color: white; transition: background-color .2s ease; }
.nav-whatsapp:hover { background: #0a44b3; }
.mobile-menu { display: none; margin: .5rem 1rem 0; border-radius: .75rem; padding: 1rem; flex-direction: column; gap: .25rem; }
.mobile-menu.open { display: flex; }
.mobile-menu a { font-family: "Montserrat", sans-serif; font-size: .875rem; padding: .625rem .5rem; border-radius: .5rem; color: #F2F2F2; }
.mobile-menu a:hover { background: rgba(246,178,26,.1); }

.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg, .abs-cover { position: absolute; inset: 0; height: 100%; width: 100%; object-fit: cover; }
.hero-bg { filter: brightness(1.14) saturate(1.08) contrast(.98); }
.hero-overlay-1 { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(0,0,0,.48), rgba(0,0,0,.25), rgba(0,0,0,.64)); }
.hero-overlay-2 { position: absolute; inset: 0; background: linear-gradient(to right, rgba(10,77,204,.12), transparent 62%); }
.hero-content { position: relative; z-index: 10; max-width: 56rem; margin: 0 auto; text-align: center; padding: 6rem 1rem 4rem; text-shadow: 0 2px 18px rgba(0,0,0,.72); }
.hero-logo { height: 6rem; width: 6rem; margin: 0 auto 1.5rem; border-radius: 9999px; object-fit: cover; box-shadow: 0 0 0 2px rgba(246,178,26,.5), 0 25px 50px -12px rgba(0,0,0,.65); animation: hero-scale .8s ease both; }
.hero-eyebrow { margin: 0 0 1rem; font-family: "Montserrat", sans-serif; letter-spacing: .3em; text-transform: uppercase; color: #F6B21A; font-size: .75rem; animation: hero-up .65s ease .2s both; }
.hero-title { margin: 0; font-family: "Cinzel", serif; font-size: 1.875rem; line-height: 1.25; font-weight: 700; color: #F2F2F2; animation: hero-up .7s ease .3s both; }
.hero-sub { margin: 1.5rem auto 0; max-width: 42rem; font-size: 1rem; line-height: 1.65; color: rgba(242,242,242,.8); animation: hero-up .65s ease .5s both; }
.hero-actions { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1rem; margin-top: 2.25rem; animation: hero-up .65s ease .65s both; }
.hero-note { margin: 2rem 0 0; color: rgba(242,242,242,.6); font-size: .875rem; animation: hero-up .65s ease .85s both; }
.btn, .chip, .nav-chip, .submit-btn { display: inline-flex; align-items: center; justify-content: center; gap: .5rem; border-radius: 9999px; border: 0; transition: all .2s ease; }
.btn-primary { width: 100%; background: #F6B21A; padding: 1rem 2rem; font-family: "Montserrat", sans-serif; font-weight: 700; color: black; }
.btn-primary:hover { filter: brightness(1.05); }
.btn-primary:active { transform: scale(.98); }
.btn-ghost { width: 100%; border: 1px solid rgba(242,242,242,.4); background: rgba(255,255,255,.05); padding: 1rem 2rem; font-family: "Montserrat", sans-serif; font-weight: 600; color: #F2F2F2; }
.btn-ghost:hover { background: rgba(255,255,255,.1); }

.marquee-wrap { background: #0A4DCC; padding: .75rem 0; overflow: hidden; }
.marquee { display: flex; gap: 2.5rem; width: max-content; white-space: nowrap; animation: marquee 30s linear infinite; }
.marquee-group { display: flex; gap: 2.5rem; }
.marquee-item { display: flex; align-items: center; gap: 2.5rem; font-family: "Montserrat", sans-serif; font-size: .875rem; color: rgba(255,255,255,.9); letter-spacing: .1em; text-transform: uppercase; }
.marquee-item b { color: #F6B21A; font-weight: 400; }

.section { padding: 5rem 1rem; scroll-margin-top: 5rem; }
.section.alt { background: hsl(var(--secondary) / .4); }
.container { max-width: 80rem; margin: 0 auto; }
.container-narrow { max-width: 56rem; margin: 0 auto; }
.section-title { max-width: 42rem; margin: 0 auto 3rem; text-align: center; }
.section-title.left { margin-left: 0; text-align: left; }
.eyebrow { font-family: "Montserrat", sans-serif; font-size: .75rem; letter-spacing: .3em; text-transform: uppercase; color: #F6B21A; font-weight: 600; }
.section-title h2, .section-heading { margin: .75rem 0 0; font-family: "Cinzel", serif; font-size: 1.875rem; line-height: 1.18; font-weight: 700; }
.section-title p { margin: 1rem 0 0; color: hsl(var(--muted-foreground)); font-size: 1rem; line-height: 1.65; }
.section-title .gold-divider { width: 6rem; margin: 1.5rem auto 0; }
.section-title.left .gold-divider { margin-left: 0; }
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .6s cubic-bezier(.22,1,.36,1), transform .6s cubic-bezier(.22,1,.36,1); transition-delay: var(--delay, 0s); }
.reveal.visible { opacity: 1; transform: translateY(0); }

.grid { display: grid; }
.dest-grid, .season-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
.pack-grid { grid-template-columns: minmax(0, 1fr); gap: 1.5rem; }
.service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
.process-grid, .exp-grid, .blog-grid, .test-grid { gap: 1.25rem; }
.test-grid, .blog-grid, .exp-grid, .process-grid { grid-template-columns: minmax(0, 1fr); }
.contact-grid, .about-grid, .trust-grid, .why-grid, .map-grid { grid-template-columns: minmax(0, 1fr); gap: 2.5rem; }
.quote-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
.alliance-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }

.card-image { position: relative; overflow: hidden; border-radius: 1rem; }
.destination-card { aspect-ratio: 4/5; cursor: pointer; }
.exp-card { aspect-ratio: 3/4; }
.season-card { aspect-ratio: 16/9; }
.card-image img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.card-image:hover img { transform: scale(1.10); }
.dark-gradient { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.9), rgba(0,0,0,.3), transparent); }
.card-bottom { position: absolute; left: 0; right: 0; bottom: 0; padding: 1rem; }
.destination-card h3, .season-card h3 { margin: 0; font-family: "Cinzel", serif; font-size: 1.25rem; color: white; font-weight: 700; }
.destination-card p { margin: .25rem 0 0; font-size: .75rem; color: rgba(255,255,255,.75); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.destination-card .hover-link { opacity: 0; display: inline-flex; align-items: center; gap: .25rem; margin-top: .75rem; font-family: "Montserrat", sans-serif; font-size: .75rem; font-weight: 600; color: #F6B21A; transition: opacity .2s ease; }
.destination-card:hover .hover-link { opacity: 1; }

.package-card { overflow: hidden; border-radius: 1rem; display: flex; flex-direction: column; height: 100%; }
.package-img { position: relative; height: 12rem; }
.package-img img { width: 100%; height: 100%; object-fit: cover; }
.package-body { padding: 1.25rem; display: flex; flex-direction: column; flex: 1; }
.package-body h3 { margin: 0; font-family: "Cinzel", serif; font-size: 1.25rem; font-weight: 700; }
.package-meta { margin: .25rem 0 0; font-family: "Montserrat", sans-serif; font-size: .75rem; color: #F6B21A; text-transform: uppercase; letter-spacing: .025em; }
.check-list { list-style: none; padding: 0; margin: .75rem 0 0; display: flex; flex-direction: column; gap: .375rem; flex: 1; }
.check-list li { display: flex; align-items: center; gap: .5rem; font-size: .875rem; color: hsl(var(--muted-foreground)); }
.check-list .icon { color: #0A4DCC; }
.package-footer { display: flex; align-items: flex-end; justify-content: space-between; gap: 1rem; margin-top: 1rem; }
.package-footer span { font-size: .75rem; color: hsl(var(--muted-foreground)); }
.price { margin: 0; font-family: "Cinzel", serif; font-size: 1.5rem; font-weight: 700; }
.btn-blue { display: inline-flex; align-items: center; gap: .375rem; border-radius: 9999px; background: #0A4DCC; padding: .625rem 1rem; font-family: "Montserrat", sans-serif; font-size: .875rem; font-weight: 600; color: white; transition: background-color .2s ease; }
.btn-blue:hover { background: #0a44b3; }

.tags { display: flex; flex-wrap: wrap; justify-content: center; gap: .75rem; }
.tag { display: inline-flex; align-items: center; gap: .5rem; border-radius: 9999px; padding: .75rem 1.25rem; border: 1px solid hsl(var(--border)); font-family: "Montserrat", sans-serif; font-size: .875rem; font-weight: 500; }
.tag:hover { border-color: #F6B21A; color: #F6B21A; }
.tag .icon { color: #F6B21A; }
.service-card { border-radius: 1rem; padding: 1.25rem; height: 100%; transition: transform .2s ease; }
.service-card:hover { transform: translateY(-.25rem); }
.service-icon, .contact-icon { display: grid; place-items: center; border-radius: .75rem; background: rgba(10,77,204,.2); color: #F6B21A; }
.service-icon { width: 2.75rem; height: 2.75rem; margin-bottom: .75rem; }
.service-card h3 { margin: 0; font-family: "Montserrat", sans-serif; font-size: .875rem; font-weight: 600; }
.service-card p { margin: .25rem 0 0; font-size: .75rem; color: hsl(var(--muted-foreground)); line-height: 1.5; }

.why-copy .eyebrow, .about-intro .eyebrow { display: inline-block; margin-bottom: .75rem; }
.why-copy h2, .about-intro h2 { margin: 0; font-family: "Cinzel", serif; font-size: 1.875rem; line-height: 1.18; font-weight: 700; }
.why-copy p, .about-intro p { color: hsl(var(--muted-foreground)); line-height: 1.65; }
.benefits { display: grid; grid-template-columns: minmax(0, 1fr); gap: .75rem; margin-top: 1.75rem; }
.benefit { display: flex; align-items: flex-start; gap: .625rem; }
.benefit-mark { margin-top: .125rem; width: 1.25rem; height: 1.25rem; flex-shrink: 0; display: grid; place-items: center; border-radius: 9999px; background: #F6B21A; color: black; }
.benefit span { font-size: .875rem; }
.why-image { position: relative; }
.why-image img { border-radius: 1rem; width: 100%; aspect-ratio: 4/5; object-fit: cover; box-shadow: 0 25px 50px -12px rgba(0,0,0,.55); }
.floating-note { position: absolute; left: -.5rem; bottom: -1.25rem; border-radius: 1rem; padding: 1rem; max-width: 220px; }
.floating-note .icon { color: #F6B21A; margin-bottom: .25rem; }
.floating-note p { margin: 0; }
.floating-note .note-title { font-family: "Montserrat", sans-serif; font-size: .875rem; font-weight: 600; }
.floating-note .note-sub { margin-top: .25rem; color: hsl(var(--muted-foreground)); font-size: .75rem; }
.process-card { position: relative; border-radius: 1rem; padding: 1.5rem; height: 100%; }
.process-num-bg { position: absolute; top: .75rem; right: 1rem; font-family: "Cinzel", serif; font-size: 3rem; line-height: 1; font-weight: 700; color: rgba(10,77,204,.4); }
.process-num { width: 2.25rem; height: 2.25rem; display: grid; place-items: center; border-radius: 9999px; background: #F6B21A; color: black; font-family: "Montserrat", sans-serif; font-weight: 700; margin-bottom: .75rem; }
.process-card p { margin: 0; padding-right: 2rem; font-size: .875rem; color: hsl(var(--foreground) / .9); line-height: 1.6; }

.promo-box { position: relative; overflow: hidden; border-radius: 1.5rem; min-height: 32rem; }
.promo-box > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.promo-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(0,0,0,.9), rgba(0,0,0,.7), rgba(10,77,204,.5)); }
.promo-content { position: relative; z-index: 1; max-width: 36rem; padding: 2rem; }
.promo-content h2 { margin: .75rem 0 0; font-family: "Cinzel", serif; font-size: 1.875rem; line-height: 1.2; color: white; }
.promo-content p { color: rgba(255,255,255,.8); line-height: 1.65; }
.promo-tags { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.25rem; }
.promo-tags span { border: 1px solid rgba(255,255,255,.2); border-radius: 9999px; background: rgba(255,255,255,.1); padding: .25rem .75rem; font-family: "Montserrat", sans-serif; font-size: .75rem; color: white; }
.promo-content .btn-primary { width: auto; margin-top: 1.75rem; padding: .875rem 1.5rem; }
.exp-card p { margin: 0; font-family: "Cinzel", serif; font-size: 1.125rem; line-height: 1.38; color: white; font-weight: 600; }
.exp-card a { display: inline-flex; align-items: center; gap: .375rem; margin-top: .75rem; border-radius: 9999px; background: #F6B21A; padding: .5rem 1rem; font-family: "Montserrat", sans-serif; font-size: .75rem; font-weight: 700; color: black; }
.test-card, .about-card, .blog-card { border-radius: 1rem; height: 100%; }
.test-card { padding: 1.5rem; display: flex; flex-direction: column; }
.stars { display: flex; gap: .25rem; color: #F6B21A; margin-bottom: .75rem; }
.test-card blockquote { margin: 0; flex: 1; font-size: .875rem; color: hsl(var(--foreground) / .9); font-style: italic; line-height: 1.65; }
.test-person { margin-top: 1rem; padding-top: 1rem; border-top: 1px solid hsl(var(--border)); }
.test-person p { margin: 0; font-family: "Montserrat", sans-serif; font-size: .875rem; font-weight: 600; }
.test-person small { color: #F6B21A; font-size: .75rem; }

.gallery { columns: 2; column-gap: .75rem; }
.gallery button { display: block; width: 100%; overflow: hidden; border: 0; border-radius: .75rem; padding: 0; background: transparent; margin-bottom: .75rem; }
.gallery img { width: 100%; object-fit: cover; transition: transform .5s ease; }
.gallery button:hover img { transform: scale(1.05); }
.lightbox { position: fixed; inset: 0; z-index: 60; display: none; place-items: center; background: rgba(0,0,0,.9); padding: 1rem; }
.lightbox.open { display: grid; }
.lightbox button { position: absolute; top: 1.25rem; right: 1.25rem; color: rgba(255,255,255,.8); border: 0; background: transparent; }
.lightbox button:hover { color: white; }
.lightbox img { max-height: 85vh; max-width: 100%; border-radius: .75rem; object-fit: contain; }
.season-card .season-overlay { position: absolute; inset: 0; background: rgba(0,0,0,.5); transition: background-color .2s ease; }
.season-card:hover .season-overlay { background: rgba(0,0,0,.4); }
.season-content { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .75rem; padding: 1rem; text-align: center; }
.season-content a { border-radius: 9999px; background: #F6B21A; padding: .5rem 1rem; font-family: "Montserrat", sans-serif; font-size: .75rem; font-weight: 700; color: black; }
.map-grid { gap: 2.5rem; }
.map-tags { display: flex; flex-wrap: wrap; gap: .625rem; }
.map-tags a { border-radius: 9999px; border: 1px solid hsl(var(--border)); padding: .5rem 1rem; font-family: "Montserrat", sans-serif; font-size: .875rem; transition: all .2s ease; }
.map-tags.national a:hover { border-color: #F6B21A; color: #F6B21A; }
.map-tags.inter a:hover { border-color: #0A4DCC; color: #0A4DCC; }

.faq-wrap { max-width: 48rem; margin: 0 auto; display: flex; flex-direction: column; gap: .75rem; }
.faq-item { overflow: hidden; border-radius: .75rem; }
.faq-question { width: 100%; border: 0; background: transparent; color: hsl(var(--foreground)); display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1rem; text-align: left; }
.faq-question span { font-family: "Montserrat", sans-serif; font-size: .875rem; font-weight: 600; }
.faq-question .icon { color: #F6B21A; transition: transform .2s ease; }
.faq-item.open .faq-question .icon { transform: rotate(180deg); }
.faq-answer { display: none; padding: 0 1rem 1.25rem; margin-top: -.25rem; color: hsl(var(--muted-foreground)); font-size: .875rem; line-height: 1.65; }
.faq-item.open .faq-answer { display: block; }
.about-grid { align-items: flex-start; gap: 1.5rem; }
.about-card { padding: 1.5rem; }
.about-card .icon { color: #F6B21A; margin-bottom: .75rem; }
.about-card h3 { margin: 0; font-family: "Cinzel", serif; font-size: 1.25rem; font-weight: 700; }
.about-card p { margin: .5rem 0 0; color: hsl(var(--muted-foreground)); font-size: .875rem; line-height: 1.6; }
.alliance-card { min-height: 5rem; display: grid; place-items: center; border-radius: .75rem; padding: 0 .5rem; }
.alliance-card span { font-family: "Montserrat", sans-serif; color: hsl(var(--muted-foreground)); font-size: .75rem; font-weight: 600; letter-spacing: .025em; text-transform: uppercase; text-align: center; }
.blog-card { overflow: hidden; display: flex; flex-direction: column; }
.blog-img { overflow: hidden; }
.blog-img img { height: 11rem; width: 100%; object-fit: cover; transition: transform .5s ease; }
.blog-card:hover .blog-img img { transform: scale(1.05); }
.blog-body { padding: 1.25rem; display: flex; flex-direction: column; flex: 1; }
.blog-body h3 { margin: 0; font-family: "Cinzel", serif; font-size: 1.125rem; line-height: 1.375; font-weight: 700; }
.blog-body p { margin: .5rem 0 0; flex: 1; color: hsl(var(--muted-foreground)); font-size: .875rem; line-height: 1.6; }
.blog-body a { display: inline-flex; align-items: center; gap: .375rem; margin-top: 1rem; font-family: "Montserrat", sans-serif; font-size: .875rem; font-weight: 600; color: #F6B21A; }

.contact-list { display: flex; flex-direction: column; gap: 1rem; }
.contact-card { display: flex; align-items: flex-start; gap: 1rem; border-radius: .75rem; padding: 1rem; transition: border-color .2s ease; }
.contact-card[href]:hover { border-color: #F6B21A; }
.contact-icon { width: 2.5rem; height: 2.5rem; flex-shrink: 0; border-radius: .5rem; }
.contact-label { margin: 0; font-family: "Montserrat", sans-serif; font-size: .75rem; color: hsl(var(--muted-foreground)); text-transform: uppercase; letter-spacing: .025em; }
.contact-value { margin: .125rem 0 0; font-size: .875rem; color: hsl(var(--foreground)); line-height: 1.5; }
.contact-grid { align-items: start; }
.contact-grid > .contact-list, .contact-grid > .form-card { min-width: 0; }
.contact-grid > .form-card { align-self: start; }
.map-frame { overflow: hidden; border: 1px solid hsl(var(--border)); border-radius: .75rem; height: 18rem; }
.map-frame iframe { width: 100%; height: 100%; border: 0; filter: none; }
.form-card { border-radius: 1rem; padding: 1.5rem; display: flex; flex-direction: column; gap: 1rem; }
.quote-form { display: grid; grid-template-columns: minmax(0, 1fr); gap: 1rem; border-radius: 1rem; padding: 1.5rem; }
.field { display: flex; flex-direction: column; gap: .5rem; }
.field label { font-family: "Montserrat", sans-serif; font-size: .75rem; font-weight: 600; text-transform: uppercase; letter-spacing: .025em; color: hsl(var(--muted-foreground)); }
.input { width: 100%; border-radius: .5rem; background: hsl(var(--secondary) / .6); border: 1px solid hsl(var(--border)); padding: .75rem 1rem; color: hsl(var(--foreground)); font-size: .875rem; transition: border-color .2s ease, box-shadow .2s ease; }
.input::placeholder { color: hsl(var(--muted-foreground)); }
.input:focus { outline: none; border-color: #F6B21A; box-shadow: 0 0 0 1px #F6B21A; }
select.input option { color: #111; background: white; }
textarea.input { resize: none; min-height: 108px; }
.submit-btn { width: 100%; margin-top: .5rem; background: #F6B21A; padding: .875rem 1.5rem; font-family: "Montserrat", sans-serif; font-weight: 700; color: black; }
.submit-btn:hover { filter: brightness(1.05); }
.submit-btn:active { transform: scale(.98); }
.submit-btn:disabled { cursor: wait; opacity: .72; transform: none; }
.spin-icon { animation: quote-spin .8s linear infinite; }
@keyframes quote-spin { to { transform: rotate(360deg); } }
.quote-privacy { margin: 0; color: hsl(var(--muted-foreground)); font-size: .78rem; line-height: 1.55; }
.quote-honeypot { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.form-status { display: none; margin: 0; border-radius: .65rem; padding: .8rem 1rem; font-size: .875rem; line-height: 1.5; }
.form-status:not(:empty) { display: block; }
.form-status.loading { background: rgba(246,178,26,.12); border: 1px solid rgba(246,178,26,.35); color: hsl(var(--foreground)); }
.form-status.success { background: rgba(34,197,94,.12); border: 1px solid rgba(34,197,94,.35); color: hsl(var(--foreground)); }
.form-status.error { background: rgba(239,68,68,.12); border: 1px solid rgba(239,68,68,.35); color: hsl(var(--foreground)); }

.footer { background: black; color: #F2F2F2; border-top: 1px solid rgba(246,178,26,.2); padding: 3.5rem 1rem 2rem; }
.footer-grid { max-width: 80rem; margin: 0 auto; display: grid; grid-template-columns: minmax(0, 1fr); gap: 2rem; }
.footer-brand { display: flex; align-items: center; gap: .75rem; }
.footer-brand img { width: 3.5rem; height: 3.5rem; border-radius: 9999px; object-fit: cover; box-shadow: 0 0 0 1px rgba(246,178,26,.4); }
.footer-brand span { font-family: "Cinzel", serif; font-weight: 700; line-height: 1.25; }
.footer-brand small { display: block; font-family: "Montserrat", sans-serif; font-size: 10px; letter-spacing: .1em; color: rgba(255,255,255,.6); }
.footer p, .footer li { font-size: .875rem; color: rgba(255,255,255,.6); line-height: 1.6; }
.footer h4 { margin: 0 0 1rem; font-family: "Montserrat", sans-serif; font-size: .875rem; text-transform: uppercase; letter-spacing: .025em; color: #F6B21A; }
.footer ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: .5rem; }
.footer a:hover { color: #F6B21A; }
.footer-contact li { display: flex; align-items: center; gap: .5rem; }
.footer-contact li.address { align-items: flex-start; }
.socials { display: flex; gap: .75rem; }
.socials a { width: 2.5rem; height: 2.5rem; display: grid; place-items: center; border-radius: 9999px; transition: filter .2s ease; color: white; }
.socials .fb { background: #0A4DCC; }
.socials .ig { background: linear-gradient(135deg, #833AB4, #FD1D1D, #FCAF45); }
.socials .wa { background: #25D366; }
.socials a:hover { filter: brightness(1.1); }
.footer-bottom { max-width: 80rem; margin: 0 auto; display: flex; flex-direction: column; align-items: center; justify-content: space-between; gap: .75rem; font-size: .75rem; color: rgba(255,255,255,.5); }
.footer-bottom-links { display: flex; gap: 1.25rem; }
.footer .gold-divider { max-width: 80rem; margin: 2rem auto; }

.whatsapp-float { position: fixed; right: 1.25rem; bottom: 1.25rem; z-index: 60; display: flex; flex-direction: column; align-items: flex-end; gap: .75rem; }
.wa-panel { position: absolute; right: 0; bottom: calc(100% + 5rem); display: none; width: 15rem; border-radius: 1rem; padding: .75rem; box-shadow: 0 25px 50px -12px rgba(0,0,0,.55); animation: float-slow 6s ease-in-out infinite; }
.wa-panel.open { display: block; }
.wa-panel p { margin: 0; padding: 0 .5rem .5rem; font-family: "Montserrat", sans-serif; font-size: .75rem; text-transform: uppercase; letter-spacing: .1em; color: #F6B21A; }
.wa-panel a { display: block; border-radius: .5rem; padding: .5rem .75rem; font-size: .875rem; color: hsl(var(--foreground)); transition: background-color .2s ease; }
.wa-panel a:hover { background: rgba(37,211,102,.15); }
.wa-toggle { width: 3.5rem; height: 3.5rem; display: grid; place-items: center; border: 0; border-radius: 9999px; background: #25D366; color: white; box-shadow: 0 20px 25px -5px rgba(37,211,102,.3), 0 8px 10px -6px rgba(37,211,102,.3); transition: transform .2s ease; }
.wa-toggle:hover { transform: scale(1.05); }
.wa-toggle:active { transform: scale(.95); }

@media (max-width: 639px) {
  .whatsapp-float { right: 1rem; bottom: 1rem; }
  .wa-panel { bottom: calc(100% + 4.75rem); width: min(15rem, calc(100vw - 2rem)); }
}

@media (min-width: 640px) {
  .navbar-inner { padding: 0 1.5rem; }
  .brand-logo { width: 3.5rem; height: 3.5rem; }
  .brand-text { display: block; }
  .nav-actions { gap: .75rem; }
  .nav-whatsapp { display: inline-flex; }
  .hero-logo { height: 7rem; width: 7rem; }
  .hero-eyebrow { font-size: .875rem; }
  .hero-title { font-size: 3rem; }
  .hero-sub { font-size: 1.125rem; }
  .hero-actions { flex-direction: row; }
  .btn-primary, .btn-ghost { width: auto; }
  .section { padding: 7rem 1.5rem; }
  .section-title h2, .section-heading, .why-copy h2, .about-intro h2, .promo-content h2 { font-size: 2.25rem; }
  .section-title p { font-size: 1.125rem; }
  .eyebrow { font-size: .875rem; }
  .dest-grid, .season-grid { gap: 1.5rem; }
  .service-grid { gap: 1.25rem; }
  .service-card h3 { font-size: 1rem; }
  .service-card p { font-size: .875rem; }
  .benefits { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .package-card { flex-direction: row; }
  .package-img { width: 40%; height: auto; }
  .package-body { width: 60%; }
  .gallery { column-gap: 1rem; }
  .gallery button { margin-bottom: 1rem; }
  .faq-question { padding: 1.25rem; }
  .faq-answer { padding-left: 1.25rem; padding-right: 1.25rem; }
  .form-card, .quote-form { padding: 2rem; }
  .quote-form { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .span-2 { grid-column: span 2 / span 2; }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-bottom { flex-direction: row; }
}
@media (min-width: 768px) {
  .hero-title { font-size: 3.75rem; }
  .pack-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .test-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .gallery { columns: 4; }
  .alliance-grid { grid-template-columns: repeat(6, minmax(0, 1fr)); }
}
@media (min-width: 1024px) {
  .nav-links { display: flex; }
  .menu-toggle { display: none; }
  .mobile-menu.open { display: none; }
  .dest-grid, .season-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .service-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .why-grid, .map-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .contact-grid { grid-template-columns: minmax(0, 1.4fr) minmax(20rem, .8fr); gap: 2rem; }
  .map-frame { height: 24rem; }
  .process-grid, .exp-grid, .blog-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .about-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .about-intro { grid-column: span 1 / span 1; }
  .footer-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .promo-content { padding: 3.5rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .marquee, .wa-panel { animation: none; }
  .reveal, .hero-logo, .hero-eyebrow, .hero-title, .hero-sub, .hero-actions, .hero-note { animation: none; transition: none; opacity: 1; transform: none; }
}

/* Chatbot asistente */
.chatbot-root {
  position: fixed;
  right: 1.25rem;
  bottom: 5.5rem;
  z-index: 55;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: .75rem;
  font-family: "Inter", sans-serif;
}
.chatbot-window {
  display: none;
  width: min(22rem, calc(100vw - 2rem));
  height: min(34rem, calc(100dvh - 8rem));
  overflow: hidden;
  border-radius: 1.25rem;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,.6);
  transform-origin: bottom right;
  animation: chatbot-pop .22s ease both;
}
.chatbot-window.open { display: flex; flex-direction: column; }
.chatbot-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
  border-bottom: 1px solid hsl(var(--border));
  background: linear-gradient(135deg, rgba(246,178,26,.12), rgba(10,77,204,.10));
}
.chatbot-title {
  display: flex;
  align-items: center;
  gap: .75rem;
  min-width: 0;
}
.chatbot-avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  background: #F6B21A;
  color: #000;
  box-shadow: 0 0 0 1px rgba(246,178,26,.35), 0 10px 20px rgba(0,0,0,.18);
}
.chatbot-title strong {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: .875rem;
  color: hsl(var(--foreground));
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.chatbot-title span {
  display: block;
  margin-top: .125rem;
  font-size: .75rem;
  color: hsl(var(--muted-foreground));
}
.chatbot-close {
  width: 2.25rem;
  height: 2.25rem;
  border: 0;
  border-radius: 9999px;
  display: grid;
  place-items: center;
  color: hsl(var(--foreground));
  background: hsl(var(--secondary) / .55);
  transition: background-color .2s ease, transform .2s ease;
}
.chatbot-close:hover { background: hsl(var(--secondary)); transform: scale(1.03); }
.chatbot-messages {
  flex: 1;
  overflow-y: auto;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  scroll-behavior: smooth;
}
.chatbot-message {
  max-width: 88%;
  border-radius: 1rem;
  padding: .75rem .875rem;
  font-size: .875rem;
  line-height: 1.55;
  box-shadow: 0 10px 20px rgba(0,0,0,.08);
}
.chatbot-message.bot {
  align-self: flex-start;
  border-bottom-left-radius: .25rem;
  background: hsl(var(--secondary) / .72);
  color: hsl(var(--foreground));
  border: 1px solid hsl(var(--border));
}
.chatbot-message.user {
  align-self: flex-end;
  border-bottom-right-radius: .25rem;
  background: #0A4DCC;
  color: #fff;
}
.chatbot-message p { margin: 0; }
.chatbot-message a,
.chatbot-whatsapp-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .375rem;
  margin-top: .625rem;
  border-radius: 9999px;
  background: #25D366;
  padding: .5rem .75rem;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: .75rem;
  font-weight: 700;
  text-decoration: none;
}
.chatbot-quick-replies {
  display: flex;
  gap: .5rem;
  overflow-x: auto;
  padding: .75rem 1rem;
  border-top: 1px solid hsl(var(--border));
}
.chatbot-quick-replies button {
  flex: 0 0 auto;
  border: 1px solid rgba(246,178,26,.36);
  border-radius: 9999px;
  background: rgba(246,178,26,.08);
  color: hsl(var(--foreground));
  padding: .45rem .75rem;
  font-family: "Montserrat", sans-serif;
  font-size: .75rem;
  font-weight: 600;
  transition: background-color .2s ease, border-color .2s ease;
}
.chatbot-quick-replies button:hover {
  background: rgba(246,178,26,.16);
  border-color: rgba(246,178,26,.7);
}
.chatbot-form {
  display: flex;
  gap: .5rem;
  padding: .75rem;
  border-top: 1px solid hsl(var(--border));
  background: hsl(var(--background) / .55);
}
.chatbot-input {
  width: 100%;
  min-width: 0;
  border: 1px solid hsl(var(--border));
  border-radius: 9999px;
  background: hsl(var(--secondary) / .6);
  color: hsl(var(--foreground));
  padding: .75rem 1rem;
  font-size: .875rem;
}
.chatbot-input::placeholder { color: hsl(var(--muted-foreground)); }
.chatbot-input:focus {
  outline: none;
  border-color: #F6B21A;
  box-shadow: 0 0 0 1px #F6B21A;
}
.chatbot-send {
  width: 2.75rem;
  height: 2.75rem;
  flex-shrink: 0;
  border: 0;
  border-radius: 9999px;
  display: grid;
  place-items: center;
  background: #F6B21A;
  color: #000;
  transition: transform .2s ease, filter .2s ease;
}
.chatbot-send:hover { filter: brightness(1.05); transform: scale(1.03); }
.chatbot-toggle {
  width: 3.5rem;
  height: 3.5rem;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 9999px;
  background: #F6B21A;
  color: #000;
  box-shadow: 0 20px 25px -5px rgba(246,178,26,.28), 0 8px 10px -6px rgba(246,178,26,.28);
  transition: transform .2s ease, filter .2s ease;
}
.chatbot-toggle:hover { transform: scale(1.05); filter: brightness(1.05); }
.chatbot-toggle:active { transform: scale(.95); }
.chatbot-notice {
  position: absolute;
  right: 4.15rem;
  bottom: .4rem;
  width: max-content;
  max-width: 13rem;
  border-radius: 9999px;
  padding: .45rem .75rem;
  background: rgba(0,0,0,.75);
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: .75rem;
  box-shadow: 0 15px 30px rgba(0,0,0,.25);
  opacity: 0;
  visibility: hidden;
  transform: translateX(8px) scale(.96);
  transition: opacity .2s ease, visibility .2s ease, transform .2s ease;
  pointer-events: none;
}
.chatbot-toggle:hover + .chatbot-notice,
.chatbot-toggle:focus-visible + .chatbot-notice {
  opacity: 1;
  visibility: visible;
  transform: translateX(0) scale(1);
}
.light .chatbot-notice { background: rgba(255,255,255,.9); color: #111; }
@keyframes chatbot-pop {
  from { opacity: 0; transform: translateY(12px) scale(.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes chatbot-breathe {
  0%, 100% { transform: translateY(0); opacity: .88; }
  50% { transform: translateY(-2px); opacity: 1; }
}
@media (max-width: 639px) {
  .chatbot-root {
    left: auto;
    right: 1rem;
    bottom: 5.25rem;
    align-items: flex-end;
  }
  .chatbot-window {
    width: min(22rem, calc(100vw - 2rem));
    height: min(32rem, calc(100dvh - 7rem));
  }
  .chatbot-toggle { width: 3.25rem; height: 3.25rem; }
  .chatbot-notice { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .chatbot-window, .chatbot-notice { animation: none; }
}

/* Páginas separadas */
.nav-links a.active,
.mobile-menu a.active {
  color: #F6B21A;
}
.page-hero {
  position: relative;
  min-height: 62dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 8rem 1rem 5rem;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(1.16) saturate(1.1) contrast(.98);
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 35%, rgba(246,178,26,.10), transparent 28rem),
    linear-gradient(to bottom, rgba(0,0,0,.34), rgba(0,0,0,.38), hsl(var(--background) / .84) 98%);
}
.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 58rem;
  margin: 0 auto;
  text-align: center;
  text-shadow: 0 2px 18px rgba(0,0,0,.76);
}
.page-hero-content h1 {
  margin: .85rem 0 0;
  font-family: "Cinzel", serif;
  font-size: clamp(2.25rem, 7vw, 4.75rem);
  line-height: 1.05;
  color: #F2F2F2;
}
.page-hero-content p {
  max-width: 44rem;
  margin: 1.25rem auto 0;
  font-size: 1.075rem;
  line-height: 1.7;
  color: rgba(242,242,242,.78);
}
.section-menu-grid {
  grid-template-columns: minmax(0, 1fr);
  gap: 1.25rem;
}
.section-menu-card {
  display: flex;
  min-height: 14rem;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 1.25rem;
  padding: 1.5rem;
  transition: transform .25s ease, border-color .25s ease, background-color .25s ease;
}
.section-menu-card:hover {
  transform: translateY(-6px);
  border-color: rgba(246,178,26,.45);
  background: rgba(246,178,26,.08);
}
.section-menu-card > span {
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  border-radius: 9999px;
  background: rgba(246,178,26,.14);
  color: #F6B21A;
}
.section-menu-card h3 {
  margin: 1rem 0 .5rem;
  font-family: "Cinzel", serif;
  font-size: 1.2rem;
}
.section-menu-card p {
  margin: 0;
  color: hsl(var(--muted-foreground));
  line-height: 1.6;
}
.section-menu-card em {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  margin-top: 1rem;
  font-family: "Montserrat", sans-serif;
  font-size: .85rem;
  font-style: normal;
  font-weight: 700;
  color: #F6B21A;
}
@media (min-width: 768px) {
  .section-menu-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 1024px) {
  .section-menu-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

/* Pasarela de pagos */
.payment-banner {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start;
  justify-content: space-between;
  overflow: hidden;
  border-radius: 1.5rem;
  padding: clamp(1.4rem, 4vw, 2.25rem);
}
.payment-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 10%, rgba(246,178,26,.18), transparent 21rem),
    radial-gradient(circle at 92% 88%, rgba(99,91,255,.14), transparent 19rem);
  pointer-events: none;
}
.payment-banner > * { position: relative; z-index: 1; }
.payment-banner .icon { color: #F6B21A; margin-bottom: .7rem; }
.payment-banner h2 {
  margin: .4rem 0 0;
  font-family: "Cinzel", serif;
  font-size: clamp(1.75rem, 4vw, 2.65rem);
  line-height: 1.12;
}
.payment-banner p {
  max-width: 52rem;
  margin: .75rem 0 0;
  color: hsl(var(--muted-foreground));
  line-height: 1.7;
}

.payment-flow,
.payment-step-two {
  margin-bottom: 2rem;
}
.payment-flow {
  position: relative;
  padding: clamp(1rem, 3vw, 1.6rem);
  border: 1px solid hsl(var(--border));
  border-radius: 1.6rem;
  background:
    radial-gradient(circle at 8% 0%, rgba(99,91,255,.09), transparent 23rem),
    radial-gradient(circle at 100% 100%, rgba(0,174,239,.08), transparent 21rem),
    hsl(var(--card) / .72);
  box-shadow: 0 28px 70px rgba(0,0,0,.12);
}
.payment-flow-head {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  margin-bottom: 1.15rem;
}
.payment-flow-head > p {
  margin: 0;
  color: hsl(var(--muted-foreground));
  font-size: .9rem;
  line-height: 1.55;
}
.payment-step-label {
  display: flex;
  align-items: center;
  gap: .8rem;
}
.payment-step-label > span {
  width: 2.55rem;
  height: 2.55rem;
  display: grid;
  place-items: center;
  flex: 0 0 2.55rem;
  border-radius: 999px;
  background: #F6B21A;
  color: #0b0b0b;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(246,178,26,.2);
}
.payment-step-label div {
  display: flex;
  flex-direction: column;
  gap: .12rem;
}
.payment-step-label small {
  color: #F6B21A;
  font-family: "Montserrat", sans-serif;
  font-size: .7rem;
  font-weight: 750;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.payment-step-label strong {
  font-family: "Cinzel", serif;
  font-size: clamp(1.15rem, 2.5vw, 1.45rem);
}

.payment-provider-options {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1rem;
}
.payment-provider-option {
  position: relative;
  width: 100%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 1rem;
  min-height: 20rem;
  padding: 1rem;
  border: 1px solid hsl(var(--border));
  border-radius: 1.35rem;
  background: hsl(var(--background) / .62);
  color: hsl(var(--foreground));
  text-align: left;
  cursor: pointer;
  isolation: isolate;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease, background .22s ease;
}
.payment-provider-option::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  opacity: 0;
  transition: opacity .22s ease;
}
.provider-card-stripe::before {
  background: linear-gradient(155deg, rgba(99,91,255,.15), transparent 54%);
}
.provider-card-mercadopago::before {
  background: linear-gradient(155deg, rgba(0,174,239,.14), transparent 54%);
}
.payment-provider-option:hover {
  transform: translateY(-3px);
  border-color: rgba(246,178,26,.42);
  box-shadow: 0 20px 45px rgba(0,0,0,.12);
}
.payment-provider-option.is-active::before { opacity: 1; }
.provider-card-stripe.is-active {
  border-color: #635BFF;
  box-shadow: 0 0 0 2px rgba(99,91,255,.15), 0 24px 55px rgba(99,91,255,.16);
}
.provider-card-mercadopago.is-active {
  border-color: #00AEEF;
  box-shadow: 0 0 0 2px rgba(0,174,239,.14), 0 24px 55px rgba(0,174,239,.15);
}
.payment-provider-badge {
  position: absolute;
  top: .75rem;
  right: .75rem;
  z-index: 2;
  padding: .38rem .62rem;
  border-radius: 999px;
  background: #F6B21A;
  color: #0b0b0b;
  font-family: "Montserrat", sans-serif;
  font-size: .64rem;
  font-weight: 800;
  letter-spacing: .04em;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity .2s ease, transform .2s ease;
}
.payment-provider-option.is-active .payment-provider-badge {
  opacity: 1;
  transform: translateY(0);
}
.payment-provider-logo-stage {
  width: 100%;
  min-height: 7.4rem;
  display: grid;
  place-items: center;
  padding: 1.2rem 1.35rem;
  overflow: visible;
  border: 1px solid rgba(15,23,42,.08);
  border-radius: 1.05rem;
  background: #fff;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.8), 0 12px 28px rgba(15,23,42,.08);
}
.payment-provider-logo-stage img {
  display: block;
  width: auto;
  max-width: min(100%, 21rem);
  height: auto;
  max-height: 4.65rem;
  object-fit: contain;
  object-position: center;
}
.payment-provider-copy {
  display: flex;
  flex-direction: column;
  gap: .4rem;
}
.payment-provider-copy strong {
  font-family: "Montserrat", sans-serif;
  font-size: 1.02rem;
  line-height: 1.3;
}
.payment-provider-copy small {
  color: hsl(var(--muted-foreground));
  font-size: .84rem;
  line-height: 1.55;
}
.payment-provider-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  margin-top: auto;
}
.payment-provider-benefits > span {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .42rem .58rem;
  border-radius: .68rem;
  background: hsl(var(--muted) / .45);
  color: hsl(var(--muted-foreground));
  font-size: .7rem;
  font-weight: 650;
}
.payment-provider-benefits .icon { color: #F6B21A; }
.payment-provider-select {
  display: flex;
  align-items: center;
  gap: .65rem;
  min-height: 3rem;
  padding: .7rem .85rem;
  border: 1px solid hsl(var(--border));
  border-radius: .85rem;
  background: hsl(var(--card) / .72);
  font-family: "Montserrat", sans-serif;
  font-size: .8rem;
}
.payment-provider-radio {
  width: 1.15rem;
  height: 1.15rem;
  flex: 0 0 1.15rem;
  border: 2px solid hsl(var(--muted-foreground) / .55);
  border-radius: 999px;
  box-shadow: inset 0 0 0 3px hsl(var(--card));
  transition: background .2s ease, border-color .2s ease;
}
.provider-card-stripe.is-active .payment-provider-radio {
  border-color: #635BFF;
  background: #635BFF;
}
.provider-card-mercadopago.is-active .payment-provider-radio {
  border-color: #00AEEF;
  background: #00AEEF;
}
.payment-selected-summary {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: .75rem;
  align-items: center;
  margin-top: 1rem;
  padding: .85rem;
  border: 1px solid rgba(246,178,26,.2);
  border-radius: 1rem;
  background: rgba(246,178,26,.075);
}
.payment-selected-icon {
  width: 2.55rem;
  height: 2.55rem;
  display: grid;
  place-items: center;
  border-radius: .8rem;
  background: #F6B21A;
  color: #0b0b0b;
  font-family: "Montserrat", sans-serif;
  font-size: .76rem;
  font-weight: 900;
}
.payment-selected-summary > span:nth-child(2) {
  display: flex;
  flex-direction: column;
  gap: .14rem;
}
.payment-selected-summary small {
  color: hsl(var(--muted-foreground));
  font-size: .7rem;
}
.payment-selected-summary strong {
  font-family: "Montserrat", sans-serif;
  font-size: .9rem;
}
.payment-selected-ready {
  grid-column: 1 / -1;
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  color: #F6B21A;
  font-size: .74rem;
  font-weight: 700;
}

.payment-step-two {
  padding-top: 1.25rem;
}
.payment-grid {
  grid-template-columns: minmax(0, 1fr);
  gap: 1rem;
}
.payment-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 18rem;
  padding: 1.2rem;
  border-radius: 1.25rem;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.payment-card:hover {
  transform: translateY(-3px);
  border-color: rgba(246,178,26,.3);
  box-shadow: 0 18px 40px rgba(0,0,0,.1);
}
.payment-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.payment-card-number {
  font-family: "Cinzel", serif;
  font-size: .86rem;
  color: hsl(var(--muted-foreground));
}
.payment-card-icon {
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  border-radius: .95rem;
  background: rgba(246,178,26,.12);
  color: #F6B21A;
}
.payment-card h3,
.payment-package h3,
.payment-status h2 {
  margin: .9rem 0 .45rem;
  font-family: "Cinzel", serif;
  line-height: 1.2;
}
.payment-card p,
.payment-package p,
.payment-status p {
  margin: 0;
  color: hsl(var(--muted-foreground));
  font-size: .88rem;
  line-height: 1.65;
}
.payment-card p {
  flex: 1;
  margin-bottom: 1rem;
}
.payment-action {
  width: 100%;
  min-width: 0;
  min-height: 3.65rem;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: .7rem;
  align-items: center;
  padding: .62rem .75rem;
  border: 1px solid transparent;
  border-radius: .95rem;
  color: #fff;
  text-align: left;
  transition: transform .2s ease, filter .2s ease, box-shadow .2s ease;
}
.payment-action.provider-stripe {
  background: linear-gradient(135deg, #635BFF, #5147e9);
  border-color: rgba(255,255,255,.15);
  box-shadow: 0 12px 28px rgba(99,91,255,.2);
}
.payment-action.provider-mercadopago {
  background: linear-gradient(135deg, #00AEEF, #008fd0);
  border-color: rgba(255,255,255,.18);
  box-shadow: 0 12px 28px rgba(0,174,239,.18);
}
.payment-action:hover {
  color: #fff;
  filter: brightness(1.05);
  transform: translateY(-2px);
}
.payment-action-brand {
  width: 2.25rem;
  height: 2.25rem;
  display: grid;
  place-items: center;
  flex: 0 0 2.25rem;
  border-radius: .7rem;
  background: rgba(255,255,255,.96);
  color: #4f46e5;
  font-family: "Montserrat", sans-serif;
  font-size: .72rem;
  font-weight: 900;
}
.provider-mercadopago .payment-action-brand { color: #008fc7; }
.payment-action-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: .08rem;
}
.payment-action-copy small {
  color: rgba(255,255,255,.72);
  font-size: .61rem;
  line-height: 1.2;
}
.payment-action-copy strong {
  overflow-wrap: anywhere;
  font-family: "Montserrat", sans-serif;
  font-size: .76rem;
  line-height: 1.3;
}
.payment-action-arrow {
  display: grid;
  place-items: center;
  color: rgba(255,255,255,.85);
}

.payment-trust-strip {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: .75rem;
  padding: .9rem;
  border-radius: 1.25rem;
}
.payment-trust-strip > div {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: .7rem;
  align-items: start;
  padding: .85rem;
  border-radius: .95rem;
  background: rgba(246,178,26,.055);
  border: 1px solid rgba(246,178,26,.12);
}
.payment-trust-strip .icon {
  color: #F6B21A;
  margin-top: .08rem;
}
.payment-step-number {
  width: 2rem;
  height: 2rem;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 999px;
  color: #171717;
  background: linear-gradient(135deg, #f8c447, #d9a11d);
  box-shadow: 0 8px 20px rgba(246,178,26,.18);
  font-family: "Montserrat", sans-serif;
  font-size: .82rem;
  font-weight: 800;
  line-height: 1;
}
.payment-steps-strip > div {
  position: relative;
  overflow: hidden;
}
.payment-steps-strip > div::after {
  content: "";
  position: absolute;
  inset: auto .85rem 0 .85rem;
  height: 2px;
  background: linear-gradient(90deg, rgba(246,178,26,.7), transparent);
  opacity: .55;
}
.payment-trust-strip span {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: .22rem;
}
.payment-trust-strip strong {
  font-family: "Montserrat", sans-serif;
  font-size: .82rem;
}
.payment-trust-strip small {
  color: hsl(var(--muted-foreground));
  font-size: .75rem;
  line-height: 1.45;
}

.payment-packages { margin-top: 4rem; }
.payment-package-grid {
  grid-template-columns: minmax(0, 1fr);
  gap: 1.1rem;
}
.payment-package {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  min-width: 0;
  overflow: hidden;
  border-radius: 1.2rem;
}
.payment-package-image {
  min-height: 11rem;
  overflow: hidden;
  background: hsl(var(--muted));
}
.payment-package-image img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 11rem;
  max-height: 13rem;
  object-fit: cover;
  object-position: center;
  transition: transform .35s ease;
}
.payment-package:hover .payment-package-image img { transform: scale(1.035); }
.payment-package-content {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 1.1rem;
}
.payment-package-status {
  align-self: flex-start;
  padding: .35rem .55rem;
  border-radius: 999px;
  background: rgba(246,178,26,.1);
  color: #F6B21A;
  font-size: .66rem;
  font-weight: 750;
}
.payment-package h3 { margin-top: .75rem; font-size: 1.08rem; }
.payment-package strong {
  display: block;
  margin: .4rem 0 .85rem;
  font-family: "Cinzel", serif;
}
.payment-package .payment-action { margin-top: auto; }

.payment-status {
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
  border-radius: 1.5rem;
  padding: 2rem 1.25rem;
}
.payment-status-icon {
  width: 4rem;
  height: 4rem;
  display: grid;
  place-items: center;
  margin: 0 auto 1rem;
  border-radius: 9999px;
}
.payment-status.ok .payment-status-icon { background: rgba(37,211,102,.15); color: #25D366; }
.payment-status.cancel .payment-status-icon { background: rgba(246,178,26,.15); color: #F6B21A; }
.status-actions {
  display: flex;
  flex-direction: column;
  gap: .8rem;
  justify-content: center;
  margin-top: 1.5rem;
}

@media (min-width: 560px) {
  .payment-selected-summary {
    grid-template-columns: auto minmax(0, 1fr) auto;
  }
  .payment-selected-ready { grid-column: auto; }
}
@media (min-width: 640px) {
  .payment-banner { flex-direction: row; align-items: center; }
  .payment-banner .btn { flex-shrink: 0; }
  .payment-flow-head {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  .payment-flow-head > p { max-width: 28rem; text-align: right; }
  .status-actions { flex-direction: row; }
}
@media (min-width: 720px) {
  .payment-provider-options { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .payment-trust-strip { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .payment-package { grid-template-columns: 12rem minmax(0, 1fr); }
  .payment-package-image,
  .payment-package-image img { min-height: 100%; max-height: none; }
}
@media (min-width: 768px) {
  .payment-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .payment-package-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 1024px) {
  .payment-provider-option { padding: 1.2rem; }
  .payment-provider-logo-stage { min-height: 8.2rem; }
}
@media (max-width: 420px) {
  .payment-flow { padding: .8rem; border-radius: 1.25rem; }
  .payment-provider-option { min-height: 18.5rem; padding: .8rem; }
  .payment-provider-logo-stage { min-height: 6.5rem; padding: 1rem; }
  .payment-provider-logo-stage img { max-height: 3.8rem; }
  .payment-provider-badge { top: .55rem; right: .55rem; }
  .payment-action { gap: .55rem; padding: .58rem .62rem; }
  .payment-action-brand { width: 2rem; height: 2rem; flex-basis: 2rem; }
}

/* Blog: cards enlazadas a notas individuales */
a.blog-card { color: inherit; text-decoration: none; cursor: pointer; }
.blog-card article { height: 100%; display: flex; flex-direction: column; }
.blog-card:focus-visible { outline: 2px solid #F6B21A; outline-offset: 4px; }
.blog-category { display: inline-block; margin-bottom: .55rem; font-family: "Montserrat", sans-serif; color: #F6B21A; font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.blog-read-link { display: inline-flex; align-items: center; gap: .375rem; margin-top: 1rem; font-family: "Montserrat", sans-serif; font-size: .875rem; font-weight: 600; color: #F6B21A; }
.blog-card:hover .blog-read-link { gap: .6rem; }
.blog-read-link, .blog-read-link .icon { transition: gap .2s ease, transform .2s ease; }
.blog-card:hover .blog-read-link .icon { transform: translateX(3px); }

/* Nota individual */
.article-wrap { padding-top: 4rem; }
.article-layout { width: min(1120px, calc(100% - 2rem)); margin: 0 auto; display: grid; grid-template-columns: minmax(0, 1fr); gap: 1.5rem; align-items: start; }
.article-content { border-radius: 1.25rem; padding: clamp(1.35rem, 4vw, 3.5rem); }
.article-back { display: inline-flex; align-items: center; gap: .5rem; margin-bottom: 1.5rem; font-family: "Montserrat", sans-serif; font-size: .875rem; font-weight: 600; color: #F6B21A; }
.article-back .icon-back { transform: rotate(180deg); }
.article-meta { display: flex; flex-wrap: wrap; gap: .55rem; margin-bottom: 1.25rem; font-family: "Montserrat", sans-serif; color: hsl(var(--muted-foreground)); font-size: .78rem; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; }
.article-intro { margin: 0 0 2rem; font-size: clamp(1.08rem, 2vw, 1.25rem); line-height: 1.8; color: hsl(var(--foreground)); }
.article-section { padding: 1.8rem 0; border-top: 1px solid hsl(var(--border)); }
.article-section h2 { margin: 0 0 .9rem; font-family: "Cinzel", serif; font-size: clamp(1.35rem, 2.6vw, 1.85rem); line-height: 1.3; }
.article-section p { margin: .7rem 0 0; color: hsl(var(--muted-foreground)); line-height: 1.85; }
.article-section ul { margin: 1rem 0 0; padding: 0; display: grid; gap: .75rem; list-style: none; }
.article-section li { display: flex; align-items: flex-start; gap: .65rem; color: hsl(var(--muted-foreground)); line-height: 1.65; }
.article-section li .icon { flex: 0 0 auto; margin-top: .25rem; color: #F6B21A; }
.article-cta { margin-top: 2rem; padding: clamp(1.4rem, 4vw, 2.4rem); border: 1px solid rgba(246,178,26,.35); border-radius: 1rem; background: linear-gradient(135deg, rgba(246,178,26,.12), rgba(10,77,204,.08)); }
.article-cta h2 { margin: .6rem 0 .75rem; font-family: "Cinzel", serif; font-size: clamp(1.45rem, 3vw, 2rem); }
.article-cta p { margin: 0; color: hsl(var(--muted-foreground)); line-height: 1.7; }
.article-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.35rem; }
.article-sidebar { display: grid; gap: 1rem; }
.article-side-card { border-radius: 1rem; padding: 1.35rem; }
.article-side-card h3 { margin: .5rem 0 .65rem; font-family: "Cinzel", serif; font-size: 1.05rem; }
.article-side-card p { margin: 0 0 1rem; color: hsl(var(--muted-foreground)); font-size: .9rem; line-height: 1.65; }
.article-side-card > a { display: flex; align-items: center; justify-content: space-between; gap: .5rem; padding: .6rem 0; border-bottom: 1px solid hsl(var(--border)); font-family: "Montserrat", sans-serif; color: #F6B21A; font-size: .84rem; font-weight: 600; }
.article-side-card > a:last-child { border-bottom: 0; }

@media (min-width: 920px) {
  .article-layout { grid-template-columns: minmax(0, 1fr) 280px; gap: 2rem; }
  .article-sidebar { position: sticky; top: 6.5rem; }
}

.blog-grid > .reveal { height: 100%; }
.blog-grid > .reveal > .blog-card { height: 100%; }

/* Destinos: cards enlazadas y páginas individuales */
a.destination-card-link {
  display: block;
  color: inherit;
  text-decoration: none;
}
.destination-card-link:focus-visible {
  outline: 2px solid #F6B21A;
  outline-offset: 4px;
}
.destination-card-link .hover-link {
  pointer-events: none;
}
.destination-back {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  margin-bottom: 2rem;
  font-family: "Montserrat", sans-serif;
  font-size: .82rem;
  font-weight: 700;
  color: #F6B21A;
}
.destination-back .icon { transform: rotate(180deg); }
.destination-intro-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}
.destination-intro-copy h2,
.destination-places-copy h2,
.destination-cta h2 {
  margin: .55rem 0 1rem;
  font-family: "Cinzel", serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.1;
}
.destination-intro-copy > p,
.destination-places-copy > p,
.destination-cta > p {
  margin: 0;
  color: hsl(var(--muted-foreground));
  font-size: .95rem;
  line-height: 1.8;
}
.destination-ideal {
  display: flex;
  flex-direction: column;
  gap: .45rem;
  margin-top: 1.5rem;
  border-radius: 1rem;
  padding: 1rem 1.1rem;
}
.destination-ideal strong {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-family: "Montserrat", sans-serif;
  color: #F6B21A;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.destination-ideal span {
  font-size: .9rem;
  line-height: 1.55;
}
.destination-feature-image {
  position: relative;
  min-height: 26rem;
  overflow: hidden;
  border-radius: 1.35rem;
  box-shadow: 0 24px 60px rgba(0,0,0,.24);
}
.destination-feature-image > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.destination-feature-image::after {
  content: "";
  position: absolute;
  inset: 35% 0 0;
  background: linear-gradient(to bottom, transparent, rgba(0,0,0,.78));
}
.destination-feature-caption {
  position: absolute;
  z-index: 1;
  left: 1.25rem;
  right: 1.25rem;
  bottom: 1.25rem;
  color: white;
}
.destination-feature-caption span {
  display: block;
  margin-bottom: .35rem;
  font-family: "Montserrat", sans-serif;
  color: #F6B21A;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.destination-feature-caption strong {
  display: block;
  max-width: 30rem;
  font-family: "Cinzel", serif;
  font-size: 1.2rem;
  line-height: 1.35;
}
.destination-activity-grid {
  grid-template-columns: 1fr;
}
.destination-activity-card {
  overflow: hidden;
  border-radius: 1rem;
  height: 100%;
}
.destination-activity-img {
  height: 13.5rem;
  overflow: hidden;
}
.destination-activity-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .65s ease;
}
.destination-activity-card:hover .destination-activity-img img {
  transform: scale(1.06);
}
.destination-activity-body {
  position: relative;
  padding: 1.2rem;
}
.destination-activity-body > span {
  position: absolute;
  top: -1.15rem;
  right: 1rem;
  display: grid;
  place-items: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 999px;
  background: #F6B21A;
  font-family: "Montserrat", sans-serif;
  color: #0d0d0d;
  font-size: .72rem;
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(0,0,0,.25);
}
.destination-activity-body h3 {
  margin: 0 2.5rem .5rem 0;
  font-family: "Cinzel", serif;
  font-size: 1.08rem;
}
.destination-activity-body p {
  margin: 0;
  color: hsl(var(--muted-foreground));
  font-size: .84rem;
  line-height: 1.65;
}
.destination-places-grid {
  display: grid;
  gap: 2rem;
  align-items: stretch;
}
.destination-places-copy ul {
  display: grid;
  gap: .75rem;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}
.destination-places-copy li {
  display: flex;
  align-items: center;
  gap: .65rem;
  border-bottom: 1px solid hsl(var(--border));
  padding: 0 0 .75rem;
  font-size: .9rem;
}
.destination-places-copy li .icon {
  flex: 0 0 auto;
  color: #F6B21A;
}
.destination-cta {
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 1.25rem;
  padding: 1.5rem;
}
.destination-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 1.5rem;
}
.destination-cta-actions .btn { justify-content: center; }

@media (min-width: 640px) {
  .destination-activity-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 900px) {
  .destination-intro-grid { grid-template-columns: .9fr 1.1fr; gap: 4rem; }
  .destination-places-grid { grid-template-columns: .9fr 1.1fr; gap: 4rem; }
  .destination-cta { padding: 2.5rem; }
}
@media (min-width: 1100px) {
  .destination-activity-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
@media (hover: none) {
  .destination-card .hover-link { opacity: 1; }
}


/* Catálogos externos de paquetes */
.package-catalog-nav {
  position: sticky;
  top: 5.75rem;
  z-index: 10;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .65rem;
  max-width: 58rem;
  margin: 0 auto 3rem;
  border-radius: 9999px;
  padding: .65rem;
  backdrop-filter: blur(18px);
}
.package-catalog-nav a {
  border-radius: 9999px;
  padding: .7rem 1rem;
  font-family: "Montserrat", sans-serif;
  font-size: .8rem;
  font-weight: 700;
  color: hsl(var(--foreground));
  transition: background-color .2s ease, color .2s ease, transform .2s ease;
}
.package-catalog-nav a:hover {
  background: #F6B21A;
  color: #050505;
  transform: translateY(-1px);
}
.package-catalog-list {
  display: flex;
  flex-direction: column;
  gap: 4.5rem;
}
.package-catalog-block {
  scroll-margin-top: 9.5rem;
}
.package-catalog-heading {
  max-width: 48rem;
  margin: 0 auto 1.5rem;
  text-align: center;
}
.package-catalog-heading h3 {
  margin: .65rem 0 0;
  font-family: "Cinzel", serif;
  font-size: clamp(1.65rem, 4vw, 2.35rem);
  line-height: 1.15;
}
.package-catalog-heading p {
  margin: .8rem auto 0;
  color: hsl(var(--muted-foreground));
  line-height: 1.65;
}
.package-iframe-shell {
  width: 100%;
  height: 900px;
  overflow: hidden;
  border-radius: 1.25rem;
  border: 1px solid hsl(var(--border));
  background: #fff;
  box-shadow: 0 24px 60px rgba(0,0,0,.16);
}
.package-iframe-shell iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: #fff;
}
@media (max-width: 767px) {
  .package-catalog-nav {
    position: static;
    border-radius: 1.25rem;
  }
  .package-catalog-nav a {
    flex: 1 1 100%;
    text-align: center;
  }
  .package-catalog-list { gap: 3.5rem; }
  .package-iframe-shell {
    height: 900px;
    border-radius: .9rem;
  }
}


/* Página de vuelos y motor de reservaciones */
.flight-booking-card {
  padding: clamp(1rem, 2.5vw, 2rem);
  border-radius: 1.25rem;
  overflow: hidden;
}
.flight-booking-intro {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  max-width: 850px;
  margin: 0 auto 1.5rem;
}
.flight-booking-intro h3 {
  margin: .25rem 0 .45rem;
  font-size: clamp(1.35rem, 2.5vw, 2rem);
}
.flight-booking-intro p { margin: 0; }
.flight-booking-icon {
  width: 3.25rem;
  height: 3.25rem;
  flex: 0 0 3.25rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #F6B21A;
  background: rgba(246,178,26,.12);
  border: 1px solid rgba(246,178,26,.25);
}
.booking-search-wrapper {
  width: 100%;
  max-width: 1080px;
  height: 360px;
  margin: 1.5rem auto;
  background: #fff;
  border-radius: .85rem;
  overflow: hidden;
  box-shadow: 0 14px 40px rgba(0,0,0,.2);
}
.booking-search-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  background: #fff;
}
.flight-booking-actions {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.flight-booking-actions p {
  display: flex;
  align-items: flex-start;
  gap: .55rem;
  margin: 0;
  font-size: .84rem;
  opacity: .78;
}
.flight-booking-actions .btn { flex: 0 0 auto; }
@media (max-width: 767px) {
  .booking-search-wrapper { height: 620px; margin: 1.1rem auto; }
  .flight-booking-intro { align-items: center; }
  .flight-booking-actions { align-items: stretch; flex-direction: column; }
  .flight-booking-actions .btn { width: 100%; }
}
@media (min-width: 1024px) and (max-width: 1280px) {
  .nav-links { gap: .72rem; }
  .nav-links a { font-size: .76rem; }
}

/* Menú desplegable de Paquetes */
.nav-dropdown { position: relative; display: flex; align-items: center; }
.nav-dropdown-trigger { display: inline-flex; align-items: center; gap: .3rem; }
.nav-dropdown-trigger .icon { transition: transform .2s ease; }
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + .85rem);
  left: 50%;
  min-width: 15rem;
  padding: .55rem;
  border: 1px solid rgba(246,178,26,.22);
  border-radius: .9rem;
  background: rgba(10,16,28,.96);
  box-shadow: 0 18px 45px rgba(0,0,0,.32);
  backdrop-filter: blur(18px);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, .5rem);
  transition: opacity .2s ease, visibility .2s ease, transform .2s ease;
}
.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 100%;
  height: 1rem;
}
.nav-dropdown-menu a {
  display: block;
  padding: .72rem .8rem;
  border-radius: .6rem;
  color: rgba(255,255,255,.9);
  white-space: nowrap;
}
.nav-dropdown-menu a:hover { background: rgba(246,178,26,.13); color: #F6B21A; }
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.nav-dropdown:hover .nav-dropdown-trigger .icon,
.nav-dropdown:focus-within .nav-dropdown-trigger .icon { transform: rotate(180deg); }
.light .nav-dropdown-menu { background: rgba(255,255,255,.97); border-color: rgba(10,77,204,.18); }
.light .nav-dropdown-menu a { color: #111827; }
.light .nav-dropdown-menu a:hover { color: #0A4DCC; background: rgba(10,77,204,.08); }

.mobile-nav-group { display: flex; flex-direction: column; }
.mobile-nav-parent { font-weight: 700; }
.mobile-submenu { display: grid; gap: .15rem; padding: 0 0 .35rem 1rem; }
.mobile-submenu a { position: relative; padding: .5rem .5rem .5rem 1rem; font-size: .8rem; color: rgba(242,242,242,.78); }
.mobile-submenu a::before { content: ''; position: absolute; left: .25rem; top: 50%; width: .35rem; height: 1px; background: #F6B21A; }

/* Ofertas del mes y salidas grupales */
#promociones, #ofertas-del-mes, #salidas-grupales { scroll-margin-top: 7rem; }
.monthly-offer-grid,
.group-trip-grid { display: grid; gap: 1.25rem; }
.monthly-offer-card { overflow: hidden; border-radius: 1.15rem; }
.monthly-offer-image { position: relative; height: 13rem; overflow: hidden; }
.monthly-offer-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.monthly-offer-card:hover .monthly-offer-image img { transform: scale(1.05); }
.monthly-offer-image::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.55), transparent 62%); }
.monthly-offer-image span { position: absolute; z-index: 1; left: 1rem; bottom: 1rem; border-radius: 9999px; background: #F6B21A; padding: .35rem .7rem; font-family: "Montserrat", sans-serif; font-size: .7rem; font-weight: 800; color: #080808; text-transform: uppercase; letter-spacing: .06em; }
.monthly-offer-body { padding: 1.35rem; }
.monthly-offer-body h3,
.group-trip-card h3 { margin: 0; font-family: "Cinzel", serif; font-size: 1.2rem; }
.monthly-offer-body p,
.group-trip-card p { color: hsl(var(--muted-foreground)); line-height: 1.65; }
.monthly-offer-body a { display: inline-flex; align-items: center; gap: .35rem; color: #F6B21A; font-family: "Montserrat", sans-serif; font-size: .82rem; font-weight: 750; }
.availability-note { margin: 1.25rem auto 0; max-width: 48rem; text-align: center; color: hsl(var(--muted-foreground)); font-size: .78rem; line-height: 1.6; }
.group-trip-card { display: flex; flex-direction: column; align-items: flex-start; border-radius: 1.15rem; padding: 1.6rem; }
.group-trip-icon { display: grid; place-items: center; width: 3rem; height: 3rem; margin-bottom: 1.15rem; border-radius: .85rem; background: rgba(246,178,26,.12); color: #F6B21A; }
.group-trip-card .btn { width: 100%; justify-content: center; margin-top: auto; }

@media (min-width: 700px) {
  .monthly-offer-grid,
  .group-trip-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 1023px) {
  .mobile-menu.open {
    max-height: calc(100dvh - 5.5rem);
    overflow-y: auto;
    overscroll-behavior: contain;
  }
}

/* Carrusel de testimonios */
#testimonios {
  overflow: hidden;
}
.testimonials-carousel {
  position: relative;
  width: 100%;
}
.testimonial-viewport {
  overflow: hidden;
  border-radius: 1.25rem;
  padding: .25rem;
  touch-action: pan-y;
}
.testimonial-track {
  display: flex;
  align-items: stretch;
  gap: 1.25rem;
  will-change: transform;
}
.testimonial-slide {
  flex: 0 0 100%;
  min-width: 0;
}
.testimonial-slide .test-card {
  position: relative;
  min-height: 20rem;
  height: 100%;
  overflow: hidden;
  border: 1px solid hsl(var(--border));
  padding: 1.75rem;
  box-shadow: 0 20px 55px rgba(0,0,0,.13);
}
.testimonial-slide .test-card::before {
  content: "";
  position: absolute;
  width: 9rem;
  height: 9rem;
  top: -4.75rem;
  right: -3rem;
  border-radius: 9999px;
  background: rgba(246,178,26,.13);
  filter: blur(2px);
  pointer-events: none;
}
.testimonial-quote-mark {
  position: absolute;
  top: .65rem;
  right: 1.35rem;
  font-family: Georgia, serif;
  color: rgba(246,178,26,.25);
  font-size: 6rem;
  line-height: 1;
  pointer-events: none;
}
.testimonial-slide .stars {
  position: relative;
  z-index: 1;
  margin-bottom: 1.05rem;
}
.testimonial-slide blockquote {
  position: relative;
  z-index: 1;
  margin: 0;
  flex: 1;
  color: hsl(var(--foreground) / .9);
  font-size: .94rem;
  font-style: normal;
  line-height: 1.8;
}
.testimonial-slide .test-person {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: .9rem;
  margin-top: 1.5rem;
  border-top: 1px solid hsl(var(--border));
  padding-top: 1.2rem;
}
.test-person-photo {
  width: 3.75rem;
  height: 3.75rem;
  flex: 0 0 3.75rem;
  border: 2px solid rgba(246,178,26,.7);
  border-radius: 9999px;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(0,0,0,.18);
}
.testimonial-slide .test-person p {
  font-size: .92rem;
}
.testimonial-slide .test-person small {
  display: block;
  margin-top: .2rem;
  line-height: 1.35;
}
.testimonial-controls {
  display: grid;
  grid-template-columns: 2.75rem minmax(0, auto) 2.75rem;
  align-items: center;
  justify-content: center;
  gap: .9rem;
  margin-top: 1.6rem;
}
.testimonial-control {
  width: 2.75rem;
  height: 2.75rem;
  display: grid;
  place-items: center;
  border: 1px solid hsl(var(--border));
  border-radius: 9999px;
  background: hsl(var(--card) / .76);
  color: hsl(var(--foreground));
  cursor: pointer;
  transition: transform .2s ease, background-color .2s ease, color .2s ease, border-color .2s ease;
}
.testimonial-control:hover,
.testimonial-control:focus-visible {
  border-color: #F6B21A;
  background: #F6B21A;
  color: #070707;
  transform: translateY(-2px);
}
.testimonial-control:disabled {
  opacity: .4;
  cursor: default;
  transform: none;
}
.testimonial-arrow-left {
  transform: rotate(180deg);
}
.testimonial-dots {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  max-width: 15rem;
}
.testimonial-dot {
  width: .48rem;
  height: .48rem;
  border: 0;
  border-radius: 9999px;
  background: hsl(var(--muted-foreground) / .35);
  padding: 0;
  cursor: pointer;
  transition: width .25s ease, background-color .25s ease, transform .25s ease;
}
.testimonial-dot:hover,
.testimonial-dot:focus-visible {
  background: hsl(var(--muted-foreground) / .7);
  transform: scale(1.15);
}
.testimonial-dot.active {
  width: 1.55rem;
  background: #F6B21A;
}
@media (min-width: 700px) {
  .testimonial-slide {
    flex-basis: calc((100% - 1.25rem) / 2);
  }
}
@media (min-width: 1024px) {
  .testimonial-slide {
    flex-basis: calc((100% - 2.5rem) / 3);
  }
  .testimonial-slide .test-card {
    min-height: 21rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  .testimonial-track,
  .testimonial-control,
  .testimonial-dot {
    transition: none !important;
  }
}


/* Calendario de asesorías */
#agendar-asesoria { scroll-margin-top: 6rem; }
.appointment-layout { display: grid; grid-template-columns: minmax(0, 1fr); gap: 1.5rem; align-items: start; }
.appointment-calendar-card,
.appointment-form { min-width: 0; border-radius: 1.25rem; padding: 1.25rem; }
.appointment-calendar-header { display: grid; grid-template-columns: 2.75rem minmax(0, 1fr) 2.75rem; align-items: center; gap: .75rem; margin-bottom: 1.2rem; text-align: center; }
.appointment-calendar-label { display: block; margin-bottom: .2rem; font-family: "Montserrat", sans-serif; color: hsl(var(--muted-foreground)); font-size: .68rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.appointment-calendar-header h3 { margin: 0; font-family: "Cinzel", serif; font-size: 1.22rem; text-transform: capitalize; }
.appointment-month-button { display: grid; place-items: center; width: 2.75rem; height: 2.75rem; border: 1px solid hsl(var(--border)); border-radius: 9999px; background: hsl(var(--secondary) / .55); color: hsl(var(--foreground)); }
.appointment-month-button:hover:not(:disabled) { border-color: #F6B21A; color: #F6B21A; }
.appointment-month-button:disabled { cursor: not-allowed; opacity: .3; }
.appointment-arrow-left { transform: rotate(180deg); }
.appointment-weekdays,
.appointment-calendar-grid { display: grid; grid-template-columns: repeat(7, minmax(0, 1fr)); gap: .35rem; }
.appointment-weekdays { margin-bottom: .45rem; }
.appointment-weekdays span { padding: .35rem 0; text-align: center; font-family: "Montserrat", sans-serif; color: hsl(var(--muted-foreground)); font-size: .65rem; font-weight: 750; text-transform: uppercase; }
.appointment-day-empty,
.appointment-day { aspect-ratio: 1 / 1; min-width: 0; }
.appointment-day { position: relative; display: grid; place-items: center; border: 1px solid transparent; border-radius: .7rem; background: hsl(var(--secondary) / .48); color: hsl(var(--foreground)); font-family: "Montserrat", sans-serif; font-size: .82rem; font-weight: 700; transition: border-color .18s ease, background-color .18s ease, transform .18s ease; }
.appointment-day:hover:not(:disabled) { border-color: #F6B21A; transform: translateY(-1px); }
.appointment-day.today::after { content: ''; position: absolute; bottom: .28rem; width: .24rem; height: .24rem; border-radius: 9999px; background: #F6B21A; }
.appointment-day.selected { border-color: #F6B21A; background: #F6B21A; color: #080808; box-shadow: 0 10px 25px rgba(246,178,26,.18); }
.appointment-day.selected::after { background: #080808; }
.appointment-day.disabled { cursor: not-allowed; opacity: .28; text-decoration: line-through; }
.appointment-calendar-legend { display: flex; flex-wrap: wrap; gap: .85rem 1.1rem; margin-top: 1.15rem; color: hsl(var(--muted-foreground)); font-size: .72rem; }
.appointment-calendar-legend span { display: inline-flex; align-items: center; gap: .4rem; }
.appointment-calendar-legend i { width: .65rem; height: .65rem; border-radius: .2rem; background: hsl(var(--secondary)); border: 1px solid hsl(var(--border)); }
.appointment-calendar-legend i.selected { background: #F6B21A; border-color: #F6B21A; }
.appointment-calendar-legend i.unavailable { opacity: .3; }
.appointment-hours-note { display: flex; align-items: center; gap: .55rem; margin-top: 1.1rem; border-top: 1px solid hsl(var(--border)); padding-top: 1rem; color: hsl(var(--muted-foreground)); font-size: .78rem; line-height: 1.5; }
.appointment-hours-note .icon { color: #F6B21A; }
.appointment-form { display: flex; flex-direction: column; gap: 1rem; }
.appointment-form-heading { display: flex; align-items: center; gap: .8rem; padding-bottom: 1rem; border-bottom: 1px solid hsl(var(--border)); }
.appointment-form-heading > span { display: grid; place-items: center; width: 3rem; height: 3rem; border-radius: .85rem; background: rgba(246,178,26,.12); color: #F6B21A; }
.appointment-form-heading p { margin: 0 0 .15rem; font-family: "Montserrat", sans-serif; color: #F6B21A; font-size: .68rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.appointment-form-heading h3 { margin: 0; font-family: "Cinzel", serif; font-size: 1.2rem; }
.appointment-selection-summary { display: grid; grid-template-columns: minmax(0, 1fr); gap: .65rem; }
.appointment-selection-summary > div { min-width: 0; border-radius: .75rem; background: hsl(var(--secondary) / .5); padding: .8rem .9rem; }
.appointment-selection-summary span { display: block; margin-bottom: .2rem; color: hsl(var(--muted-foreground)); font-family: "Montserrat", sans-serif; font-size: .65rem; font-weight: 750; letter-spacing: .06em; text-transform: uppercase; }
.appointment-selection-summary strong { display: block; overflow: hidden; color: hsl(var(--foreground)); font-size: .85rem; line-height: 1.4; text-overflow: ellipsis; text-transform: capitalize; }
.appointment-slots-field { margin-top: .2rem; }
.appointment-slots { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .5rem; }
.appointment-slot { min-width: 0; border: 1px solid hsl(var(--border)); border-radius: .65rem; background: hsl(var(--secondary) / .45); padding: .7rem .45rem; color: hsl(var(--foreground)); font-family: "Montserrat", sans-serif; font-size: .72rem; font-weight: 700; }
.appointment-slot:hover:not(:disabled) { border-color: #F6B21A; color: #F6B21A; }
.appointment-slot.selected { border-color: #F6B21A; background: #F6B21A; color: #080808; }
.appointment-slot.unavailable { cursor: not-allowed; opacity: .35; text-decoration: line-through; }
.appointment-empty { grid-column: 1 / -1; margin: 0; border: 1px dashed hsl(var(--border)); border-radius: .7rem; padding: 1rem; color: hsl(var(--muted-foreground)); font-size: .8rem; line-height: 1.5; text-align: center; }

@media (min-width: 520px) {
  .appointment-selection-summary { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .appointment-slots { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (min-width: 900px) {
  .appointment-layout { grid-template-columns: minmax(0, .92fr) minmax(22rem, 1.08fr); gap: 2rem; }
  .appointment-calendar-card,
  .appointment-form { padding: 1.7rem; }
  .appointment-calendar-card { position: sticky; top: 6rem; }
  .appointment-day { font-size: .9rem; }
}
@media (max-width: 390px) {
  .appointment-calendar-card,
  .appointment-form { padding: 1rem; }
  .appointment-weekdays,
  .appointment-calendar-grid { gap: .2rem; }
  .appointment-day { border-radius: .55rem; font-size: .75rem; }
}

/* Ajustes responsivos generales */
body {
  overflow-x: hidden;
  overflow-x: clip;
}

main,
section,
.container,
.grid,
.grid > *,
.why-grid > *,
.contact-grid > *,
.map-grid > *,
.about-grid > *,
.article-layout > *,
.destination-intro-grid > *,
.destination-places-grid > *,
.appointment-layout > * {
  min-width: 0;
}

iframe,
video,
canvas {
  max-width: 100%;
}

.btn,
.btn-blue,
.btn-stripe,
.submit-btn,
.tag,
.package-catalog-nav a {
  max-width: 100%;
  white-space: normal;
  text-align: center;
  line-height: 1.35;
}

.input,
.chatbot-input {
  min-width: 0;
}

.footer-contact li,
.article-section p,
.article-section li,
.destination-intro-copy p,
.destination-places-copy p,
.contact-item p,
.contact-item a {
  overflow-wrap: anywhere;
}

@media (max-width: 639px) {
  .section {
    padding: 4.5rem 1rem;
  }

  .section-title {
    margin-bottom: 2.25rem;
  }

  .why-grid {
    gap: 2rem;
  }

  .why-image {
    display: flex;
    flex-direction: column;
  }

  .why-image img {
    object-position: center center;
  }

  .floating-note {
    position: relative;
    left: auto;
    bottom: auto;
    width: calc(100% - 1.5rem);
    max-width: none;
    margin: .9rem auto 0;
    padding: 1rem;
  }

  .floating-note .note-sub {
    line-height: 1.5;
  }

  .promo-content {
    padding: 1.5rem;
  }

  .promo-content .btn-primary {
    width: 100%;
  }

  .section-menu-card {
    min-height: auto;
  }

  .footer-bottom-links {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }

  .testimonial-slide .test-card {
    min-height: 0;
    padding: 1.35rem;
  }

  .testimonial-controls {
    grid-template-columns: 2.5rem minmax(0, 1fr) 2.5rem;
    gap: .55rem;
    width: 100%;
  }

  .testimonial-control {
    width: 2.5rem;
    height: 2.5rem;
  }

  .testimonial-dots {
    max-width: 100%;
  }

  .appointment-calendar-header {
    grid-template-columns: 2.5rem minmax(0, 1fr) 2.5rem;
    gap: .45rem;
  }

  .appointment-month-button {
    width: 2.5rem;
    height: 2.5rem;
  }

  .appointment-calendar-header h3 {
    font-size: 1.05rem;
  }
}

@media (max-width: 479px) {
  .navbar-inner {
    gap: .5rem;
  }

  .nav-actions {
    gap: .25rem;
  }

  .section-title h2,
  .section-heading,
  .why-copy h2,
  .about-intro h2,
  .promo-content h2 {
    font-size: clamp(1.65rem, 8.5vw, 1.9rem);
  }

  .page-hero {
    min-height: 56dvh;
    padding: 7rem 1rem 4rem;
  }

  .page-hero-content h1 {
    font-size: clamp(1.9rem, 10vw, 2.5rem);
    line-height: 1.08;
  }

  .page-hero-content p {
    font-size: .95rem;
    line-height: 1.6;
  }

  .hero-title {
    font-size: 1.75rem;
  }

  .dest-grid,
  .season-grid,
  .service-grid,
  .quote-grid,
  .alliance-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .service-card {
    padding: 1.1rem;
  }

  .destination-card {
    aspect-ratio: 4 / 4.6;
  }

  .promo-box {
    min-height: 34rem;
  }

  .promo-tags span {
    font-size: .7rem;
  }

  .article-actions,
  .destination-cta-actions {
    flex-direction: column;
  }

  .article-actions .btn,
  .destination-cta-actions .btn,
  .status-actions .btn {
    width: 100%;
  }

  .flight-booking-intro {
    flex-direction: column;
    align-items: flex-start;
  }

  .flight-booking-icon {
    width: 3rem;
    height: 3rem;
    flex-basis: 3rem;
  }

  .appointment-form-heading {
    align-items: flex-start;
  }

  .appointment-form-heading > span {
    width: 2.65rem;
    height: 2.65rem;
    flex: 0 0 2.65rem;
  }

  .appointment-form-heading h3 {
    font-size: 1.05rem;
  }

  .tag {
    justify-content: center;
  }

  .footer-bottom {
    text-align: center;
  }
}

@media (max-width: 359px) {
  .brand-logo {
    width: 2.5rem;
    height: 2.5rem;
  }

  .icon-button,
  .menu-toggle {
    width: 2.35rem;
    height: 2.35rem;
  }

  .hero-content {
    padding-left: .85rem;
    padding-right: .85rem;
  }

  .section {
    padding-left: .8rem;
    padding-right: .8rem;
  }

  .payment-package {
    grid-template-columns: minmax(0, 1fr);
  }

  .payment-package img {
    width: 100%;
    height: 10rem;
  }

  .appointment-calendar-card,
  .appointment-form {
    padding: .85rem;
  }

  .appointment-weekdays span {
    font-size: .58rem;
  }

  .appointment-day {
    font-size: .7rem;
  }
}


/* Logotipo del encabezado en versión móvil */
.page-hero-logo {
  display: none;
}

@media (max-width: 639px) {
  .navbar .brand {
    display: none;
  }

  .navbar .nav-actions {
    margin-left: auto;
  }

  .hero-logo,
  .page-hero-logo {
    display: block;
    width: 8.25rem;
    height: 8.25rem;
    margin: 0 auto 1.35rem;
    border-radius: 9999px;
    object-fit: cover;
    box-shadow: 0 0 0 2px rgba(246,178,26,.5), 0 25px 50px -12px rgba(0,0,0,.65);
  }
}

/* Checkout profesional integrado */
.checkout-experience {
  --checkout-gold: #f6b21a;
  --checkout-ink: #111827;
  --stripe: #635bff;
  --mp: #00a9e0;
  max-width: 1180px;
  margin: 0 auto;
}
.checkout-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 650px;
  margin: 0 auto 1.8rem;
  padding: .75rem 1rem;
}
.checkout-progress span {
  display: flex;
  align-items: center;
  gap: .5rem;
  color: hsl(var(--muted-foreground));
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}
.checkout-progress span b {
  width: 2rem;
  height: 2rem;
  display: grid;
  place-items: center;
  border: 1px solid hsl(var(--border));
  border-radius: 999px;
  background: hsl(var(--card));
  font-size: .76rem;
}
.checkout-progress span small { font-size: .72rem; }
.checkout-progress span.is-active { color: hsl(var(--foreground)); }
.checkout-progress span.is-active b {
  border-color: var(--checkout-gold);
  background: var(--checkout-gold);
  color: #111;
  box-shadow: 0 8px 22px rgba(246,178,26,.24);
}
.checkout-progress i {
  width: clamp(2rem, 7vw, 6rem);
  height: 1px;
  margin: 0 .65rem;
  background: linear-gradient(90deg, var(--checkout-gold), hsl(var(--border)));
}
.checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.62fr) minmax(290px, .78fr);
  gap: 1.25rem;
  align-items: start;
}
.checkout-main-column { display: grid; gap: 1rem; min-width: 0; }
.checkout-card,
.checkout-summary-card,
.checkout-help-card,
.payment-result-shell {
  border: 1px solid hsl(var(--border));
  background: hsl(var(--card) / .88);
  box-shadow: 0 22px 60px rgba(0,0,0,.1);
  backdrop-filter: blur(18px);
}
.checkout-card {
  padding: clamp(1rem, 2.5vw, 1.55rem);
  border-radius: 1.45rem;
}
.checkout-card-heading {
  display: flex;
  align-items: flex-start;
  gap: .95rem;
  padding-bottom: 1.2rem;
  margin-bottom: 1.2rem;
  border-bottom: 1px solid hsl(var(--border));
}
.checkout-card-heading.compact { margin-bottom: 1rem; }
.checkout-heading-icon {
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  flex: 0 0 3rem;
  border-radius: 1rem;
  background: rgba(246,178,26,.13);
  color: var(--checkout-gold);
}
.checkout-card-heading .eyebrow { font-size: .67rem; }
.checkout-card-heading h2 {
  margin: .18rem 0 .25rem;
  font-family: "Cinzel", serif;
  font-size: clamp(1.2rem, 2.5vw, 1.55rem);
  line-height: 1.2;
}
.checkout-card-heading p {
  margin: 0;
  color: hsl(var(--muted-foreground));
  font-size: .82rem;
  line-height: 1.55;
}
.checkout-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 1rem;
}
.checkout-field-wide { grid-column: 1 / -1; }
.checkout-form-grid .field { margin: 0; }
.checkout-form-grid label {
  display: inline-block;
  margin-bottom: .42rem;
  font-family: "Montserrat", sans-serif;
  font-size: .73rem;
  font-weight: 700;
}
.checkout-form-grid .input {
  min-height: 3.15rem;
  border-radius: .9rem;
  background: hsl(var(--background) / .72);
}
.checkout-form-grid textarea.input { min-height: 5.5rem; resize: vertical; }
.money-input { position: relative; }
.money-input > span,
.money-input > small {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
}
.money-input > span { left: 1rem; color: var(--checkout-gold); }
.money-input > small { right: .9rem; color: hsl(var(--muted-foreground)); font-size: .65rem; }
.money-input input { padding-left: 2rem; padding-right: 3.6rem; }
.checkout-consent {
  display: flex;
  gap: .7rem;
  align-items: flex-start;
  margin-top: 1.1rem;
  padding: .8rem .9rem;
  border: 1px solid rgba(246,178,26,.2);
  border-radius: .9rem;
  background: rgba(246,178,26,.06);
  cursor: pointer;
}
.checkout-consent input { width: 1.05rem; height: 1.05rem; margin-top: .15rem; accent-color: var(--checkout-gold); }
.checkout-consent span { color: hsl(var(--muted-foreground)); font-size: .75rem; line-height: 1.5; }
.checkout-provider-grid {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: .9rem;
}
.checkout-provider {
  position: relative;
  display: grid;
  grid-template-columns: 4.2rem minmax(0,1fr);
  gap: .75rem;
  align-items: center;
  min-height: 8.6rem;
  padding: .9rem;
  overflow: hidden;
  border: 1px solid hsl(var(--border));
  border-radius: 1.15rem;
  background: hsl(var(--background) / .68);
  color: hsl(var(--foreground));
  text-align: left;
  cursor: pointer;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.checkout-provider:hover { transform: translateY(-2px); }
.checkout-provider.provider-stripe.is-selected {
  border-color: var(--stripe);
  background: linear-gradient(145deg, rgba(99,91,255,.13), hsl(var(--background) / .82));
  box-shadow: 0 0 0 2px rgba(99,91,255,.12), 0 16px 34px rgba(99,91,255,.13);
}
.checkout-provider.provider-mercadopago.is-selected {
  border-color: var(--mp);
  background: linear-gradient(145deg, rgba(0,169,224,.12), hsl(var(--background) / .82));
  box-shadow: 0 0 0 2px rgba(0,169,224,.11), 0 16px 34px rgba(0,169,224,.12);
}
.checkout-provider.is-unavailable { opacity: .48; cursor: not-allowed; filter: grayscale(.25); }
.provider-check {
  position: absolute;
  top: .65rem;
  right: .65rem;
  width: 1.5rem;
  height: 1.5rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: hsl(var(--muted));
  color: transparent;
}
.checkout-provider.is-selected .provider-check { background: var(--checkout-gold); color: #111; }
.provider-logo {
  width: 4.2rem;
  height: 4.2rem;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 1rem;
  background: #fff;
  box-shadow: 0 8px 22px rgba(15,23,42,.1);
}
.provider-logo img { display: block; max-width: 88%; max-height: 88%; object-fit: contain; }
.provider-logo-stripe img { width: 100%; height: 100%; max-width: none; max-height: none; object-fit: cover; }
.provider-logo-mercadopago { grid-row: span 2; }
.provider-logo-mercadopago img { width: 94%; max-width: 94%; }
.provider-copy { min-width: 0; display: flex; flex-direction: column; gap: .18rem; padding-right: 1.4rem; }
.provider-copy strong { font-family: "Montserrat", sans-serif; font-size: .98rem; }
.provider-copy small { color: hsl(var(--muted-foreground)); font-size: .72rem; line-height: 1.4; }
.provider-security {
  grid-column: 2;
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  color: hsl(var(--muted-foreground));
  font-size: .66rem;
  font-weight: 650;
}
.checkout-provider-message {
  margin-top: .8rem;
  padding: .75rem .85rem;
  border-radius: .85rem;
  background: rgba(239,68,68,.09);
  color: #ef4444;
  font-size: .76rem;
  line-height: 1.45;
}
.checkout-start-button {
  width: 100%;
  min-height: 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .9rem 1.15rem;
  border: 0;
  border-radius: 1.05rem;
  background: linear-gradient(135deg, #f6b21a, #ffcb4d);
  color: #111;
  box-shadow: 0 16px 38px rgba(246,178,26,.22);
  font-family: "Montserrat", sans-serif;
  font-size: .88rem;
  font-weight: 850;
  cursor: pointer;
  transition: transform .2s ease, filter .2s ease;
}
.checkout-start-button span { display: flex; align-items: center; gap: .55rem; }
.checkout-start-button:hover { transform: translateY(-2px); filter: brightness(1.03); }
.checkout-start-button:disabled { cursor: wait; opacity: .7; transform: none; }
.checkout-form-status { min-height: 1.2rem; font-size: .78rem; line-height: 1.5; }
.checkout-form-status.is-error { color: #ef4444; }
.checkout-form-status.is-success { color: #22c55e; }
.checkout-payment-stage { padding: 0; overflow: hidden; }
.payment-stage-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.35rem 1.4rem 1rem;
  border-bottom: 1px solid hsl(var(--border));
}
.payment-stage-head h2 { margin: .15rem 0 .28rem; font-family: "Cinzel",serif; font-size: 1.35rem; }
.payment-stage-head p { margin: 0; color: hsl(var(--muted-foreground)); font-size: .78rem; line-height: 1.45; }
.payment-change-button {
  flex: 0 0 auto;
  padding: .55rem .72rem;
  border: 1px solid hsl(var(--border));
  border-radius: .75rem;
  background: hsl(var(--background));
  color: hsl(var(--foreground));
  font-size: .7rem;
  font-weight: 750;
  cursor: pointer;
}
.payment-folio-banner {
  display: grid;
  grid-template-columns: auto minmax(0,1fr) auto;
  gap: .75rem;
  align-items: center;
  margin: 1rem 1.15rem 0;
  padding: .82rem .9rem;
  border: 1px solid rgba(246,178,26,.22);
  border-radius: .9rem;
  background: rgba(246,178,26,.07);
}
.payment-folio-banner > span { display: flex; align-items: center; gap: .42rem; color: hsl(var(--muted-foreground)); font-size: .7rem; }
.payment-folio-banner strong { font-family: "Montserrat",sans-serif; font-size: .92rem; overflow-wrap: anywhere; }
.payment-folio-banner button { border: 0; background: transparent; color: var(--checkout-gold); font-size: .7rem; font-weight: 800; cursor: pointer; }
.payment-embed-shell { min-height: 390px; padding: 1rem; background: #fff; }
.payment-embed-shell.mp-shell { background: #f7f8fa; }
.payment-loading { min-height: 330px; display: grid; place-items: center; align-content: center; gap: .9rem; color: #6b7280; text-align: center; }
.payment-loading p { margin: 0; font-size: .8rem; }
.payment-spinner {
  width: 2.1rem;
  height: 2.1rem;
  border: 3px solid #e5e7eb;
  border-top-color: var(--checkout-gold);
  border-radius: 999px;
  animation: paymentSpin .8s linear infinite;
}
@keyframes paymentSpin { to { transform: rotate(360deg); } }
.checkout-sidebar { position: sticky; top: 6.2rem; display: grid; gap: .9rem; }
.checkout-summary-card { padding: 1.2rem; border-radius: 1.35rem; overflow: hidden; }
.checkout-summary-card::before {
  content: "";
  display: block;
  height: 3px;
  margin: -1.2rem -1.2rem 1.1rem;
  background: linear-gradient(90deg, var(--checkout-gold), #fff1a8, var(--checkout-gold));
}
.checkout-summary-head { display: flex; align-items: center; gap: .7rem; padding-bottom: 1rem; border-bottom: 1px solid hsl(var(--border)); }
.checkout-summary-lock { width: 2.45rem; height: 2.45rem; display: grid; place-items: center; border-radius: .85rem; background: rgba(246,178,26,.12); color: var(--checkout-gold); }
.checkout-summary-head div { display: flex; flex-direction: column; gap: .1rem; }
.checkout-summary-head small { color: hsl(var(--muted-foreground)); font-size: .65rem; }
.checkout-summary-head strong { font-family: "Montserrat",sans-serif; font-size: .88rem; }
.checkout-summary-list { display: grid; gap: .8rem; margin: 1rem 0; }
.checkout-summary-list > div { display: flex; justify-content: space-between; gap: 1rem; }
.checkout-summary-list dt { color: hsl(var(--muted-foreground)); font-size: .68rem; }
.checkout-summary-list dd { margin: 0; max-width: 62%; text-align: right; font-size: .72rem; font-weight: 700; overflow-wrap: anywhere; }
.checkout-summary-total { display: flex; justify-content: space-between; align-items: end; gap: 1rem; padding: 1rem 0; border-top: 1px solid hsl(var(--border)); }
.checkout-summary-total span { color: hsl(var(--muted-foreground)); font-size: .7rem; }
.checkout-summary-total strong { color: var(--checkout-gold); font-family: "Montserrat",sans-serif; font-size: 1.1rem; text-align: right; }
.checkout-summary-folio { display: flex; flex-direction: column; gap: .22rem; padding: .8rem; border-radius: .85rem; background: hsl(var(--muted) / .45); }
.checkout-summary-folio span { color: hsl(var(--muted-foreground)); font-size: .64rem; }
.checkout-summary-folio strong { font-family: "Montserrat",sans-serif; font-size: .82rem; overflow-wrap: anywhere; }
.checkout-confidence { display: grid; gap: .55rem; margin-top: 1rem; }
.checkout-confidence span { display: flex; align-items: center; gap: .5rem; color: hsl(var(--muted-foreground)); font-size: .66rem; line-height: 1.35; }
.checkout-confidence .icon { color: var(--checkout-gold); flex: 0 0 auto; }
.checkout-help-card { display: grid; grid-template-columns: auto minmax(0,1fr) auto; gap: .65rem; align-items: center; padding: .85rem; border-radius: 1rem; }
.checkout-help-card > div { width: 2.4rem; height: 2.4rem; display: grid; place-items: center; border-radius: .75rem; background: rgba(34,197,94,.1); color: #22c55e; }
.checkout-help-card > span { display: flex; flex-direction: column; gap: .12rem; }
.checkout-help-card strong { font-size: .72rem; }
.checkout-help-card small { color: hsl(var(--muted-foreground)); font-size: .62rem; line-height: 1.35; }
.checkout-help-card a { color: var(--checkout-gold); font-size: .68rem; font-weight: 800; }
.checkout-trust-strip { max-width: 1180px; margin: 1.2rem auto 0; }
.payment-result-shell {
  max-width: 850px;
  margin: 0 auto;
  padding: clamp(1.3rem,4vw,2.3rem);
  border-radius: 1.5rem;
  text-align: center;
}
.payment-result-icon {
  width: 4rem;
  height: 4rem;
  display: grid;
  place-items: center;
  margin: 0 auto 1rem;
  border-radius: 999px;
  background: rgba(246,178,26,.12);
  color: var(--checkout-gold);
}
.payment-result-icon.is-loading .icon { animation: paymentSpin 1s linear infinite; }
.payment-result-icon.is-approved { background: rgba(34,197,94,.12); color: #22c55e; }
.payment-result-icon.is-pending { background: rgba(246,178,26,.12); color: var(--checkout-gold); }
.payment-result-icon.is-error { background: rgba(239,68,68,.12); color: #ef4444; }
.payment-result-shell h2 { margin: .45rem 0 .55rem; font-family: "Cinzel",serif; font-size: clamp(1.5rem,4vw,2.2rem); }
.payment-result-shell > p { max-width: 620px; margin: 0 auto; color: hsl(var(--muted-foreground)); line-height: 1.65; }
.payment-result-details {
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: .75rem;
  margin: 1.5rem 0;
  text-align: left;
}
.payment-result-details > div { min-width: 0; padding: .85rem; border: 1px solid hsl(var(--border)); border-radius: .9rem; background: hsl(var(--background) / .6); }
.payment-result-details small { display: block; margin-bottom: .3rem; color: hsl(var(--muted-foreground)); font-size: .62rem; }
.payment-result-details strong { display: block; font-family: "Montserrat",sans-serif; font-size: .76rem; overflow-wrap: anywhere; }

@media (max-width: 900px) {
  .checkout-layout { grid-template-columns: 1fr; }
  .checkout-sidebar { position: static; grid-row: 1; }
  .checkout-summary-card { padding: 1rem; }
  .checkout-summary-card::before { margin: -1rem -1rem 1rem; }
  .checkout-help-card { display: none; }
}
@media (max-width: 640px) {
  .checkout-progress small { display: none; }
  .checkout-progress i { margin: 0 .35rem; }
  .checkout-form-grid,
  .checkout-provider-grid { grid-template-columns: 1fr; }
  .checkout-field-wide { grid-column: auto; }
  .checkout-provider { min-height: 7.8rem; }
  .payment-stage-head { flex-direction: column; }
  .payment-change-button { width: 100%; }
  .payment-folio-banner { grid-template-columns: minmax(0,1fr) auto; }
  .payment-folio-banner > span { grid-column: 1 / -1; }
  .payment-embed-shell { padding: .35rem; }
  .payment-result-details { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 420px) {
  .checkout-card { border-radius: 1.1rem; }
  .checkout-card-heading { gap: .7rem; }
  .checkout-heading-icon { width: 2.65rem; height: 2.65rem; flex-basis: 2.65rem; }
  .payment-result-details { grid-template-columns: 1fr; }
}

/* Pagos mediante enlaces oficiales de Stripe y Mercado Pago */
.hosted-payment-panel {
  width: min(100%, 680px);
  margin: 0 auto;
  padding: clamp(1rem, 3vw, 1.6rem);
  border: 1px solid #e5e7eb;
  border-radius: 1.2rem;
  background: #fff;
  color: #111827;
  box-shadow: 0 18px 45px rgba(15, 23, 42, .08);
}
.hosted-payment-brandline {
  display: flex;
  align-items: center;
  gap: .85rem;
  margin-bottom: 1rem;
}
.hosted-payment-brandline > div {
  display: flex;
  flex-direction: column;
  gap: .15rem;
}
.hosted-payment-brandline strong {
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
}
.hosted-payment-brandline small {
  color: #6b7280;
  font-size: .72rem;
}
.hosted-payment-brand-logo {
  width: 3.3rem;
  height: 3.3rem;
  display: grid;
  place-items: center;
  overflow: hidden;
  flex: 0 0 auto;
  border: 1px solid #e5e7eb;
  border-radius: .9rem;
  background: #fff;
}
.hosted-payment-brand-logo img {
  width: 88%;
  height: 88%;
  object-fit: contain;
}
.hosted-payment-stripe .hosted-payment-brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hosted-payment-notice {
  margin-bottom: 1rem;
  padding: .82rem .9rem;
  border: 1px solid #fde68a;
  border-radius: .85rem;
  background: #fffbeb;
  color: #92400e;
  font-size: .74rem;
  line-height: 1.55;
}
.stripe-buy-button-container {
  min-height: 4rem;
  display: grid;
  place-items: center;
  padding: .35rem 0;
}
.stripe-buy-button-container stripe-buy-button {
  width: 100%;
  max-width: 420px;
}
.hosted-payment-main-button {
  min-height: 3.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .7rem;
  width: 100%;
  padding: .9rem 1.1rem;
  border-radius: 1rem;
  font-family: "Montserrat", sans-serif;
  font-size: .86rem;
  font-weight: 850;
  text-align: center;
  transition: transform .2s ease, filter .2s ease;
}
.hosted-payment-main-button:hover {
  transform: translateY(-2px);
  filter: brightness(1.02);
}
.hosted-payment-main-button-mp {
  background: #009ee3;
  color: #fff;
  box-shadow: 0 14px 30px rgba(0, 158, 227, .22);
}
.hosted-payment-window-copy {
  margin: .7rem 0 0;
  color: #6b7280;
  font-size: .7rem;
  line-height: 1.5;
  text-align: center;
}
.hosted-payment-fallback {
  display: block;
  margin-top: .65rem;
  color: #635bff;
  font-size: .72rem;
  font-weight: 750;
  text-align: center;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.hosted-payment-confirmation {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: .8rem;
  align-items: center;
  margin-top: 1.25rem;
  padding: 1rem;
  border-radius: 1rem;
  background: #f8fafc;
}
.hosted-payment-confirmation-icon {
  width: 2.45rem;
  height: 2.45rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #dcfce7;
  color: #15803d;
  font-size: 1.05rem;
  font-weight: 900;
}
.hosted-payment-confirmation strong {
  display: block;
  margin-bottom: .18rem;
  font-family: "Montserrat", sans-serif;
  font-size: .78rem;
}
.hosted-payment-confirmation p {
  margin: 0;
  color: #64748b;
  font-size: .68rem;
  line-height: 1.5;
}
.hosted-payment-confirm-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.7rem;
  padding: .68rem .8rem;
  border-radius: .8rem;
  background: #16a34a;
  color: #fff;
  font-size: .7rem;
  font-weight: 850;
  white-space: nowrap;
}
@media (max-width: 640px) {
  .hosted-payment-panel { border-radius: 1rem; }
  .hosted-payment-confirmation {
    grid-template-columns: auto minmax(0, 1fr);
  }
  .hosted-payment-confirm-button {
    grid-column: 1 / -1;
    width: 100%;
  }
}
