:root {
  --primary: 210 52% 16%;
  --primary-foreground: 0 0% 100%;
  --secondary: 195 75% 22%;
  --secondary-foreground: 0 0% 100%;
  --accent: 195 92% 35%;
  --accent-foreground: 0 0% 100%;
  --cyan: 186 100% 48%;
  --cyan-foreground: 210 52% 16%;
  --yellow: 45 100% 60%;
  --yellow-foreground: 210 52% 16%;
  --background: 0 0% 100%;
  --foreground: 210 52% 16%;
  --card: 0 0% 100%;
  --card-foreground: 210 52% 16%;
  --muted: 210 20% 96%;
  --muted-foreground: 210 10% 40%;
  --border: 210 20% 90%;
  --input: 210 20% 90%;
  --ring: 195 92% 35%;
  --radius: .5rem;
  --shadow: 0 1px 3px rgb(0 0 0 / .08);
  --shadow-lg: 0 15px 35px rgb(0 0 0 / .14)
}

html.dark {
  --background: 210 52% 8%;
  --foreground: 0 0% 95%;
  --card: 210 52% 12%;
  --card-foreground: 0 0% 95%;
  --muted: 210 30% 18%;
  --muted-foreground: 210 10% 65%;
  --border: 210 30% 20%;
  --input: 210 30% 20%
}

* {
  box-sizing: border-box;
  border-color: hsl(var(--border))
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  font-family: Poppins, sans-serif;
  background: hsl(var(--background));
  color: hsl(var(--foreground));
  overflow-x: clip;
  transition: background-color .3s ease, color .3s ease
}

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

a {
  color: inherit;
  text-decoration: none
}

button,
input,
textarea,
select {
  font: inherit
}

h1,
h2,
h3,
h4,
p {
  margin-top: 0
}

p {
  max-width: 65ch
}

.container {
  width: min(100% - 2rem, 1280px);
  margin-inline: auto
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: all .3s ease;
  background: transparent
}

.site-header.scrolled {
  background: hsl(var(--background)/.8);
  backdrop-filter: blur(16px);
  box-shadow: 0 4px 18px rgb(0 0 0 / .12)
}

.header-inner {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between
}

.brand {
  display: flex;
  gap: .5rem;
  align-items: center
}

.brand:hover .brand-icon {
  transform: scale(1.1)
}

.brand-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .5rem;
  border-radius: .75rem;
  background: linear-gradient(135deg, hsl(var(--accent)), hsl(var(--cyan)));
  color: #fff;
  transition: transform .3s
}

.brand-icon svg {
  width: 28px;
  height: 28px
}

.brand-icon.small svg {
  width: 24px;
  height: 24px
}

.brand-text {
  font-weight: 700;
  font-size: 1.5rem;
  background: linear-gradient(90deg, hsl(var(--accent)), hsl(var(--cyan)));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 2rem
}

.desktop-nav a {
  position: relative;
  font-weight: 500;
  color: hsl(var(--foreground));
  transition: color .2s
}

.desktop-nav a:hover {
  color: hsl(var(--accent))
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: hsl(var(--accent));
  transition: width .3s
}

.desktop-nav a:hover::after {
  width: 100%
}

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

.icon-button,
.carousel-btn {
  border: 0;
  background: transparent;
  color: hsl(var(--foreground));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  cursor: pointer;
  transition: all .2s
}

.icon-button:hover {
  background: hsl(var(--muted))
}

.icon-button:active,
.btn:active,
.carousel-btn:active,
.whatsapp:active {
  transform: scale(.98)
}

.icon-button svg {
  width: 22px;
  height: 22px
}

.mobile-toggle {
  display: none
}

.mobile-nav {
  display: none;
  overflow: hidden;
  background: hsl(var(--background)/.95);
  backdrop-filter: blur(16px);
  border-top: 1px solid hsl(var(--border));
  padding: 1.5rem 1rem;
  animation: slideDown .25s ease
}

.mobile-nav a {
  display: block;
  padding: .5rem 0;
  font-weight: 500
}

.section {
  padding: 5rem 0
}

.section-full {
  min-height: 100vh
}

.bg-base {
  background: hsl(var(--background))
}

.bg-muted {
  background: hsl(var(--muted))
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden
}

.hero-bg,
.hero-bg img,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%
}

.hero-bg img {
  object-fit: cover
}

.hero-overlay {
  background: linear-gradient(90deg, hsl(var(--primary)/.9), hsl(var(--primary)/.7), transparent)
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 8rem 0;
  width: 100%
}

.hero-content h1 {
  font-size: clamp(3rem, 6vw, 4.5rem);
  line-height: 1.08;
  letter-spacing: -.02em;
  font-weight: 700;
  margin-bottom: 1.5rem;
  max-width: 780px
}

.hero-content p {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  line-height: 1.625;
  margin-bottom: 2rem;
  color: rgb(255 255 255 / .9)
}

.button-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap
}

.btn {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  border-radius: calc(var(--radius) + 2px);
  border: 1px solid transparent;
  padding: .5rem 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all .2s
}

.btn svg {
  width: 20px;
  height: 20px
}

.btn-lg {
  font-size: 1.125rem;
  padding: .75rem 2rem
}

.btn-accent {
  background: hsl(var(--accent));
  color: hsl(var(--accent-foreground))
}

.btn-accent:hover {
  background: hsl(var(--accent)/.9)
}

.btn-outline-light {
  background: rgb(255 255 255 / .1);
  border-color: rgb(255 255 255 / .3);
  color: #fff;
  backdrop-filter: blur(6px)
}

.btn-outline-light:hover {
  background: rgb(255 255 255 / .2)
}

.btn-outline {
  background: hsl(var(--card));
  color: hsl(var(--foreground));
  border-color: hsl(var(--border))
}

.btn-outline:hover {
  background: hsl(var(--muted))
}

.btn-block {
  width: 100%
}

.section-title {
  text-align: center;
  margin-bottom: 3rem
}

.section-title h2 {
  font-weight: 700;
  font-size: clamp(1.875rem, 3vw, 2.25rem);
  margin-bottom: 1rem;
  color: hsl(var(--foreground))
}

.section-title p {
  font-size: 1.125rem;
  color: hsl(var(--muted-foreground));
  margin-inline: auto
}

.grid {
  display: grid
}

.two {
  grid-template-columns: repeat(2, minmax(0, 1fr))
}

.four {
  grid-template-columns: repeat(4, minmax(0, 1fr))
}

.gap {
  gap: 1.5rem
}

.mb-gap {
  margin-bottom: 1.5rem
}

.card,
.category-card,
.travel-form,
.promotion-card,
.testimonial-card,
.info-card {
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  box-shadow: var(--shadow)
}

.benefit-card {
  padding: 1.5rem;
  border-radius: .75rem;
  transition: all .3s
}

.benefit-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px)
}

.benefit-card.featured {
  max-width: 672px;
  margin: 0 auto;
  padding: 2rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, hsl(var(--accent)), hsl(var(--secondary)));
  color: #fff;
  box-shadow: var(--shadow-lg)
}

.benefit-card h3,
.category-card h3,
.promotion-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: .5rem
}

.benefit-card p,
.category-card p,
.promotion-card p,
.testimonial-card p {
  color: hsl(var(--muted-foreground));
  line-height: 1.625
}

.benefit-card.featured p {
  color: rgb(255 255 255 / .9)
}

.benefit-card.featured h3 {
  color: #fff
}

.icon-box {
  width: 64px;
  height: 64px;
  border-radius: .75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  background: hsl(var(--accent)/.1);
  color: hsl(var(--accent))
}

.featured .icon-box {
  background: rgb(255 255 255 / .2);
  color: #fff
}

.icon-box svg {
  width: 32px;
  height: 32px
}

.category-card {
  border-radius: 1rem;
  padding: 1.5rem;
  cursor: pointer;
  transition: all .3s
}

.category-card:hover {
  box-shadow: 0 10px 30px rgb(0 0 0 / .12);
  border-color: hsl(var(--accent))
}

.category-card:hover .icon-box {
  transform: scale(1.1)
}

.category-card .icon-box {
  width: 56px;
  height: 56px;
  transition: transform .3s
}

.category-card .icon-box svg {
  width: 28px;
  height: 28px
}

.gradient {
  background: linear-gradient(135deg, hsl(var(--accent)/.1), hsl(var(--cyan)/.1))
}

.category-card p {
  font-size: .875rem
}

.travel-form {
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: var(--shadow-lg)
}

.travel-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem
}

.field {
  display: grid;
  gap: .5rem;
  font-size: .875rem;
  font-weight: 500
}

.field input,
.field textarea,
.field select {
  width: 100%;
  min-height: 40px;
  border: 1px solid hsl(var(--input));
  border-radius: calc(var(--radius) - 2px);
  background: hsl(var(--background));
  color: hsl(var(--foreground));
  padding: .5rem .75rem
}

.field textarea {
  min-height: 8rem;
  resize: vertical
}

.input-icon {
  position: relative
}

.input-icon>span {
  position: absolute;
  left: .75rem;
  top: 50%;
  transform: translateY(-50%);
  color: hsl(var(--muted-foreground));
  pointer-events: none
}

.input-icon svg {
  width: 16px;
  height: 16px
}

.input-icon input,
.input-icon select {
  padding-left: 2.5rem
}

.travel-form .btn {
  margin-top: 1.5rem
}

.carousel {
  position: relative
}

.carousel-viewport {
  overflow: hidden
}

.carousel-track {
  display: flex;
  gap: 1rem;
  transition: transform .45s cubic-bezier(.22, .61, .36, 1)
}

.carousel-slide {
  flex: 0 0 100%;
  min-width: 0
}

.promotion-card {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-lg)
}

.promo-img {
  position: relative;
  height: 16rem;
  overflow: hidden
}

.promo-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s
}

.promotion-card:hover img,
.destination-card:hover img {
  transform: scale(1.1)
}

.discount {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: hsl(var(--yellow));
  color: hsl(var(--yellow-foreground));
  font-weight: 700;
  font-size: 1.125rem;
  padding: .5rem 1rem;
  border-radius: .75rem;
  box-shadow: 0 8px 20px rgb(0 0 0 / .2)
}

.promo-content {
  padding: 1.5rem
}

.promo-content .destination {
  font-size: .875rem;
  margin-bottom: .25rem
}

.promo-content .btn {
  margin-top: 1rem
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgb(255 255 255 / .9);
  color: #0f172a;
  border: 0;
  box-shadow: 0 8px 20px rgb(0 0 0 / .15);
  z-index: 2
}

.carousel-btn:hover {
  background: #fff
}

.carousel-btn.prev {
  left: 1rem
}

.carousel-btn.next {
  right: 1rem
}

.carousel-btn svg {
  width: 20px;
  height: 20px
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: .5rem;
  margin-top: 1.5rem
}

.carousel-dots button {
  width: .5rem;
  height: .5rem;
  border-radius: 999px;
  border: 0;
  background: hsl(var(--muted-foreground)/.3);
  transition: all .3s;
  cursor: pointer
}

.carousel-dots button.active {
  width: 2rem;
  background: hsl(var(--accent))
}

.testimonial-card {
  border-radius: 1rem;
  padding: 1.5rem
}

.person {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem
}

.avatar {
  width: 56px;
  height: 56px;
  border-radius: .75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: hsl(var(--accent));
  color: hsl(var(--accent-foreground));
  font-weight: 600
}

.person h4 {
  margin: 0;
  font-weight: 600
}

.person p {
  margin: 0;
  font-size: .875rem
}

.stars {
  letter-spacing: .08em;
  color: hsl(var(--yellow));
  margin-bottom: .75rem
}

.quote {
  font-style: italic
}

.destination-card {
  position: relative;
  height: 20rem;
  border-radius: 1rem;
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-lg)
}

.destination-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s
}

.destination-card>div {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgb(0 0 0 / .7), rgb(0 0 0 / .2), transparent);
  opacity: .8;
  transition: opacity .3s
}

.destination-card:hover>div {
  opacity: .9
}

.destination-card section {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.5rem;
  color: #fff;
  transform: translateY(.5rem);
  transition: transform .3s
}

.destination-card:hover section {
  transform: translateY(0)
}

.destination-card h3 {
  font-size: 1.5rem;
  margin-bottom: .25rem
}

.destination-card p {
  color: rgb(255 255 255 / .9);
  margin: 0
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem
}

.contact-form {
  display: grid;
  gap: 1.5rem
}

.info-card {
  border-radius: 1rem;
  padding: 1.5rem
}

.info-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem
}

.info-list {
  display: grid;
  gap: 1rem
}

.info-list p {
  font-size: .875rem;
  font-weight: 500;
  color: hsl(var(--muted-foreground));
  margin-bottom: .25rem
}

.info-list strong {
  display: block;
  font-weight: 400;
  color: hsl(var(--foreground));
  line-height: 1.5
}

.contact-side {
  display: grid;
  gap: 2rem
}

.map-card {
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: 1rem;
  overflow: hidden
}

.map-card iframe {
  display: block
}

.footer {
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  padding: 3rem 0 0
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2rem;
  margin-bottom: 2rem
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem
}

.footer p,
.footer a,
.footer li,
.contact-links strong {
  color: hsl(var(--primary-foreground)/.8);
  line-height: 1.6
}

.footer a:hover {
  color: hsl(var(--accent))
}

.socials {
  display: flex;
  gap: .75rem
}

.socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: .5rem;
  background: hsl(var(--primary-foreground)/.1);
  transition: all .2s
}

.socials a:hover {
  background: hsl(var(--accent));
  color: #fff
}

.footer ul {
  padding: 0;
  list-style: none;
  margin: 0;
  display: grid;
  gap: .5rem
}

.footer h3 {
  font-size: 1.125rem;
  margin-bottom: 1rem
}

.contact-links li {
  display: flex;
  gap: .5rem;
  align-items: flex-start
}

.contact-links svg {
  flex-shrink: 0;
  margin-top: .125rem;
  color: hsl(var(--accent))
}

.contact-links a {
  display: block
}

.footer-bottom {
  border-top: 1px solid hsl(var(--primary-foreground)/.2);
  padding: 2rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem
}

.footer-bottom p {
  margin: 0;
  font-size: .875rem
}

.footer-bottom div {
  display: flex;
  gap: 1.5rem;
  font-size: .875rem
}

.whatsapp {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 50;
  width: 60px;
  height: 60px;
  border-radius: 999px;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgb(0 0 0 / .22);
  transition: all .3s;
  animation: popIn .35s ease
}

.whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 15px 35px rgb(0 0 0 / .28)
}

.whatsapp svg {
  width: 28px;
  height: 28px
}

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  background: hsl(var(--card));
  border-top: 1px solid hsl(var(--border));
  box-shadow: 0 -8px 25px rgb(0 0 0 / .14);
  transform: translateY(110%);
  opacity: 0;
  transition: all .35s
}

.cookie-banner.show {
  transform: translateY(0);
  opacity: 1
}

.cookie-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem
}

.cookie-text {
  display: flex;
  gap: .75rem;
  align-items: flex-start
}

.cookie-text svg {
  width: 24px;
  height: 24px;
  color: hsl(var(--accent));
  margin-top: .25rem
}

.cookie-text p {
  margin: 0 0 .25rem;
  font-weight: 500
}

.cookie-text small {
  color: hsl(var(--muted-foreground))
}

.cookie-actions {
  display: flex;
  gap: .75rem
}

.toast {
  position: fixed;
  right: 1rem;
  top: 1rem;
  z-index: 70;
  max-width: 360px;
  padding: 1rem 1.25rem;
  border-radius: .75rem;
  background: hsl(var(--card));
  color: hsl(var(--foreground));
  border: 1px solid hsl(var(--border));
  box-shadow: var(--shadow-lg);
  transform: translateY(-140%);
  opacity: 0;
  transition: .3s
}

.toast.show {
  transform: translateY(0);
  opacity: 1
}

.toast.success {
  border-color: hsl(var(--accent))
}

.toast.error {
  border-color: hsl(var(--destructive, 0 84% 60%))
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s ease, transform .6s ease
}

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

.hero-animate {
  animation: fadeUp .8s ease .1s both
}

.icon svg {
  width: 1em;
  height: 1em
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    max-height: 0
  }

  to {
    opacity: 1;
    max-height: 360px
  }
}

@keyframes popIn {
  from {
    transform: scale(0)
  }

  to {
    transform: scale(1)
  }
}

@media (max-width:1024px) {
  .four {
    grid-template-columns: repeat(2, minmax(0, 1fr))
  }

  .travel-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr))
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr))
  }
}

@media (max-width:768px) {
  .desktop-nav {
    display: none
  }

  .mobile-toggle {
    display: inline-flex
  }

  .mobile-nav.open {
    display: block
  }

  .section {
    padding: 4rem 0
  }

  .two,
  .four,
  .travel-grid,
  .footer-grid {
    grid-template-columns: 1fr
  }

  .hero-content {
    padding: 7rem 0
  }

  .hero-content h1 {
    font-size: 3rem
  }

  .button-row {
    flex-direction: column
  }

  .button-row .btn {
    width: 100%
  }

  .carousel-btn {
    display: none
  }

  .footer-bottom {
    flex-direction: column
  }

  .footer-bottom div {
    flex-wrap: wrap;
    justify-content: center
  }

  .cookie-inner {
    align-items: flex-start;
    flex-direction: column
  }

  .cookie-actions {
    width: 100%
  }

  .cookie-actions .btn {
    flex: 1
  }

  .whatsapp {
    width: 56px;
    height: 56px;
    right: 1rem;
    bottom: 1rem
  }
}

@media (max-width:480px) {
  .container {
    width: min(100% - 1.5rem, 1280px)
  }

  .brand-text {
    font-size: 1.25rem
  }

  .hero-content h1 {
    font-size: 2.55rem
  }

  .section-title h2 {
    font-size: 1.85rem
  }

  .btn-lg {
    font-size: 1rem
  }

  .promo-img {
    height: 14rem
  }
}

/* Ajustes visuales solicitados */
:root {
  --primary: 222 46% 9%;
  --primary-foreground: 0 0% 100%;
  --secondary: 267 72% 42%;
  --secondary-foreground: 0 0% 100%;
  --accent: 190 100% 48%;
  --accent-foreground: 222 46% 9%;
  --cyan: 185 100% 55%;
  --yellow: 43 100% 62%;
  --background: 222 28% 10%;
  --foreground: 0 0% 97%;
  --card: 222 18% 17%;
  --card-foreground: 0 0% 98%;
  --muted: 222 22% 13%;
  --muted-foreground: 214 18% 78%;
  --border: 220 16% 27%;
  --input: 220 16% 28%;
  --ring: 190 100% 48%;
  --shadow: 0 8px 22px rgb(0 0 0 / .22);
  --shadow-lg: 0 18px 48px rgb(0 0 0 / .34);
}

html.dark {
  --background: 222 28% 10%;
  --foreground: 0 0% 97%;
  --card: 222 18% 17%;
  --card-foreground: 0 0% 98%;
  --muted: 222 22% 13%;
  --muted-foreground: 214 18% 78%;
  --border: 220 16% 27%;
  --input: 220 16% 28%;
}

body {
  background: radial-gradient(circle at top left, hsl(var(--secondary)/.25), transparent 34rem), hsl(var(--background));
}

.site-header.scrolled {
  background: hsl(var(--primary)/.82);
  border-bottom: 1px solid hsl(var(--border));
}

.hero-bg video,
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.12) contrast(1.04)
}

.hero-bg img {
  display: none
}

.hero-overlay {
  background: linear-gradient(90deg, rgb(8 12 25 / .92), rgb(22 23 42 / .68), rgb(0 0 0 / .28))
}

.hero-kicker,
.section-kicker {
  display: inline-flex;
  align-items: center;
  width: max-content;
  margin-bottom: 1rem;
  padding: .45rem .85rem;
  border: 1px solid hsl(var(--accent)/.35);
  border-radius: 999px;
  background: linear-gradient(135deg, hsl(var(--accent)/.16), hsl(var(--secondary)/.22));
  color: hsl(var(--cyan));
  font-weight: 700;
  letter-spacing: .03em;
  text-transform: uppercase;
  font-size: .78rem;
  box-shadow: 0 10px 25px rgb(0 0 0 / .16)
}

.hero-content h1 {
  max-width: 880px;
  text-shadow: 0 10px 35px rgb(0 0 0 / .35)
}

.btn-accent {
  background: linear-gradient(135deg, hsl(var(--accent)), hsl(var(--cyan)));
  color: hsl(var(--accent-foreground));
  box-shadow: 0 12px 28px hsl(var(--accent)/.18);
  border-color: hsl(var(--cyan)/.25)
}

.btn-accent:hover {
  filter: brightness(1.08);
  transform: translateY(-1px)
}

.card,
.category-card,
.travel-form,
.promotion-card,
.testimonial-card,
.info-card,
.story-card,
.iframe-card,
.appointment-card {
  background: linear-gradient(180deg, hsl(var(--card)), hsl(222 18% 15%));
  border-color: hsl(var(--border));
  box-shadow: var(--shadow)
}

.bg-muted {
  background: linear-gradient(180deg, hsl(var(--muted)), hsl(222 24% 11%))
}

.bg-base {
  background: transparent
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: 2rem;
  align-items: center
}

.story-title {
  text-align: left;
  margin: 0
}

.story-title p {
  margin-inline: 0
}

.story-card {
  border-radius: 1.25rem;
  padding: 2rem;
  display: grid;
  gap: 1rem
}

.story-card p {
  margin: 0;
  color: hsl(var(--muted-foreground));
  line-height: 1.75
}

.story-card .btn {
  width: max-content;
  margin-top: .5rem
}

.destination-card {
  border: 1px solid hsl(var(--cyan)/.2)
}

.destination-card>div {
  background: linear-gradient(0deg, rgb(0 0 0 / .82), rgb(34 18 72 / .26), transparent)
}

.destination-card h3 {
  color: #fff;
  text-shadow: 0 4px 18px rgb(0 0 0 / .45)
}

.destination-card p {
  color: hsl(var(--cyan));
  font-weight: 600
}

.promo-content .destination {
  color: hsl(var(--cyan));
  font-weight: 700
}

.discount {
  background: linear-gradient(135deg, hsl(var(--yellow)), hsl(30 100% 58%));
  color: #1f1300
}

.iframe-section {
  position: relative
}

.iframe-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem
}

.iframe-card {
  border-radius: 1.25rem;
  padding: 1.25rem;
  overflow: hidden
}

.iframe-card h3 {
  font-size: 1.35rem;
  margin-bottom: .35rem
}

.iframe-card p {
  color: hsl(var(--muted-foreground));
  margin-bottom: 1rem
}

.iframe-box {
  background: hsl(220 16% 88%);
  border: 1px solid hsl(220 16% 78%);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgb(255 255 255 / .3)
}

.iframe-box iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: #f3f4f6
}

.iframe-box.tall {
  height: 680px
}

.iframe-box.compact {
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center
}

.compact-search {
  grid-column: 1/-1
}

.compact-search .iframe-box {
  max-width: 520px;
  margin: auto
}

.compact-search iframe {
  max-width: 100%
}

.info-list small {
  display: block;
  color: hsl(var(--muted-foreground));
  line-height: 1.45;
  margin-top: .25rem
}

.appointment-card {
  border-radius: 1rem;
  padding: 2rem;
  display: grid;
  gap: 1rem;
  align-content: center;
  min-height: 300px
}

.appointment-card>span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 1rem;
  background: hsl(var(--accent)/.12);
  color: hsl(var(--cyan))
}

.appointment-card svg {
  width: 30px;
  height: 30px
}

.appointment-card h3 {
  margin: 0
}

.appointment-card p {
  margin: 0;
  color: hsl(var(--muted-foreground));
  line-height: 1.7
}

.footer {
  background: hsl(222 44% 7%)
}

.footer a:hover {
  color: hsl(var(--cyan))
}

.field input,
.field textarea,
.field select {
  background: hsl(222 20% 13%);
  border-color: hsl(var(--input))
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: 2px solid hsl(var(--accent)/.32);
  border-color: hsl(var(--accent))
}

@media (max-width:1024px) {
  .desktop-nav {
    gap: 1.15rem
  }

  .iframe-box.tall {
    height: 620px
  }

  .story-grid {
    grid-template-columns: 1fr
  }

  .story-title {
    text-align: center
  }

  .story-title p {
    margin-inline: auto
  }

  .story-title .section-kicker {
    margin-inline: auto
  }
}

@media (max-width:768px) {
  .iframe-grid {
    grid-template-columns: 1fr
  }

  .iframe-box.tall {
    height: 560px
  }

  .hero-kicker {
    font-size: .7rem
  }

  .story-card .btn {
    width: 100%
  }

  .compact-search {
    grid-column: auto
  }

  .appointment-card {
    min-height: auto
  }

  .footer-grid {
    gap: 2.5rem
  }
}

@media (max-width:480px) {
  .iframe-box.tall {
    height: 520px
  }

  .iframe-box.compact {
    height: 360px
  }

  .iframe-card {
    padding: 1rem
  }

  .hero-content h1 {
    font-size: 2.35rem
  }
}

/* Centrar texto inicial del hero */
.hero-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-content h1,
.hero-content p {
  margin-left: auto;
  margin-right: auto;
}

.hero-content .button-row {
  justify-content: center;
}

.hero-content .hero-kicker {
  margin-left: auto;
  margin-right: auto;
}

/* Reparación video hero + modo claro/oscuro */
:root {
  --primary: 222 46% 9%;
  --primary-foreground: 0 0% 100%;
  --secondary: 267 72% 42%;
  --secondary-foreground: 0 0% 100%;
  --accent: 190 100% 42%;
  --accent-foreground: 222 46% 9%;
  --cyan: 185 100% 44%;
  --yellow: 43 100% 56%;
  --yellow-foreground: 222 46% 9%;
  --background: 220 24% 96%;
  --foreground: 222 46% 10%;
  --card: 0 0% 100%;
  --card-foreground: 222 46% 10%;
  --muted: 220 20% 91%;
  --muted-foreground: 220 12% 36%;
  --border: 220 16% 82%;
  --input: 220 16% 82%;
  --ring: 190 100% 42%;
  --shadow: 0 8px 22px rgb(15 23 42 / .10);
  --shadow-lg: 0 18px 48px rgb(15 23 42 / .16);
}

html.dark {
  --primary: 222 46% 9%;
  --primary-foreground: 0 0% 100%;
  --secondary: 267 72% 42%;
  --secondary-foreground: 0 0% 100%;
  --accent: 190 100% 48%;
  --accent-foreground: 222 46% 9%;
  --cyan: 185 100% 55%;
  --yellow: 43 100% 62%;
  --yellow-foreground: 222 46% 9%;
  --background: 222 28% 10%;
  --foreground: 0 0% 97%;
  --card: 222 18% 17%;
  --card-foreground: 0 0% 98%;
  --muted: 222 22% 13%;
  --muted-foreground: 214 18% 78%;
  --border: 220 16% 27%;
  --input: 220 16% 28%;
  --ring: 190 100% 48%;
  --shadow: 0 8px 22px rgb(0 0 0 / .22);
  --shadow-lg: 0 18px 48px rgb(0 0 0 / .34);
}

body {
  background: radial-gradient(circle at top left, hsl(var(--secondary)/.12), transparent 34rem), hsl(var(--background));
}

html.dark body {
  background: radial-gradient(circle at top left, hsl(var(--secondary)/.25), transparent 34rem), hsl(var(--background));
}

.hero-bg,
.hero-bg video,
.hero-video,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-video {
  object-fit: cover;
  display: block;
  z-index: 0;
  filter: saturate(1.12) contrast(1.04);
}

.hero-overlay {
  z-index: 1;
}

.hero-bg img {
  display: none;
}

.card,
.category-card,
.travel-form,
.promotion-card,
.testimonial-card,
.info-card,
.story-card,
.iframe-card,
.appointment-card {
  background: linear-gradient(180deg, hsl(var(--card)), hsl(var(--card)));
  color: hsl(var(--card-foreground));
  border-color: hsl(var(--border));
  box-shadow: var(--shadow);
}

html.dark .card,
html.dark .category-card,
html.dark .travel-form,
html.dark .promotion-card,
html.dark .testimonial-card,
html.dark .info-card,
html.dark .story-card,
html.dark .iframe-card,
html.dark .appointment-card {
  background: linear-gradient(180deg, hsl(var(--card)), hsl(222 18% 15%));
}

.bg-muted {
  background: hsl(var(--muted));
}

html.dark .bg-muted {
  background: linear-gradient(180deg, hsl(var(--muted)), hsl(222 24% 11%));
}

.field input,
.field textarea,
.field select {
  background: hsl(var(--card));
  border-color: hsl(var(--input));
  color: hsl(var(--foreground));
}

html.dark .field input,
html.dark .field textarea,
html.dark .field select {
  background: hsl(222 20% 13%);
}

.site-header.scrolled {
  background: hsl(var(--background)/.86);
}

html.dark .site-header.scrolled {
  background: hsl(var(--primary)/.82);
}

/* Sección ¿Por qué reservar con nosotros? */
.why-section {
  background: hsl(220 9% 13%);
  padding: 3.75rem 0 6rem;
}

.why-container {
  max-width: 1220px;
}

.why-title {
  text-align: left;
  margin-bottom: 1.5rem;
}

.why-title h2 {
  color: hsl(0 0% 92%);
  font-size: clamp(1.45rem, 2.2vw, 1.75rem);
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.why-card {
  min-height: 196px;
  border: 1px solid hsl(220 9% 22%);
  border-radius: 14px;
  background: hsl(220 9% 15%);
  color: hsl(0 0% 94%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem 1.15rem;
  box-shadow: none;
  transition: transform .25s ease, border-color .25s ease, background-color .25s ease;
}

.why-card:hover {
  transform: translateY(-3px);
  border-color: hsl(220 9% 31%);
  background: hsl(220 9% 17%);
}

.why-card h3 {
  color: hsl(0 0% 91%);
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 1.35rem;
}

.why-card p {
  color: hsl(0 0% 91%);
  font-size: .95rem;
  line-height: 1.65;
  max-width: 230px;
  margin: 0 auto;
}



.booking-widget-card {
  margin: 2rem 0 0;
  width: 100%;
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0;
  display: block;
}

.booking-widget-text {
  display: none;
}

.booking-widget-frame {
  width: 100%;
  height: 160px;
  border: 1px solid hsl(220 9% 24%);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 16px 45px hsl(0 0% 0%/.22);
}

.booking-widget-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width:1024px) {
  .why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .booking-widget-frame {
    height: 190px;
  }
}

@media (max-width:640px) {
  .why-section {
    padding: 3rem 0 4rem;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .why-card {
    min-height: 170px;
  }

  .booking-widget-card {
    margin-top: 1.5rem;
  }

  .booking-widget-frame {
    height: 355px;
  }
}


.why-booking-widget {
  width: 100%;
  max-width: 1080px;
  height: 230px;
  margin: 2.6rem auto 0;
  background: #fff;
  border: 1px solid hsl(220 9% 24%);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 18px 45px hsl(0 0% 0%/.26);
}

.why-booking-widget iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: #fff;
}

@media (max-width:1024px) {
  .why-booking-widget {
    height: 300px;
  }
}

@media (max-width:640px) {
  .why-booking-widget {
    height: 520px;
    margin-top: 1.8rem;
  }
}


/* Buscador Destino 10 aislado estilo Viajes Regios */
.booking-search-section {
  background: #e5e5e5;
  padding: 3.25rem 0 4.25rem;
}

.booking-search-container {
  width: min(100% - 2rem, 1080px);
}

.destino-search-engine {
  width: 100%;
  background: #fff;
  border: 1px solid #d7d7d7;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgb(0 0 0 / .08);
  padding: 1.2rem 1rem 2.7rem;
  color: #1d1d1d;
  font-family: Arial, Helvetica, sans-serif;
}

.engine-tabs {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 1.75rem;
  min-height: 2.2rem;
  margin-bottom: 1.55rem;
}

.engine-tab {
  appearance: none;
  border: 0;
  background: transparent;
  color: #242424;
  font: 400 .87rem/1.2 Arial, Helvetica, sans-serif;
  padding: .25rem 0 .74rem;
  cursor: pointer;
  position: relative;
}

.engine-tab::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 2px;
  background: #002878;
  transform: translateX(-50%);
  transition: width .22s ease;
}

.engine-tab.active {
  color: #000;
  font-weight: 700;
}

.engine-tab.active::after {
  width: 100%;
}

.engine-form {
  width: 100%;
}

.engine-trip-options {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  margin-bottom: 1.15rem;
  font-size: .78rem;
  color: #666;
}

.engine-trip-options label {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  cursor: pointer;
  white-space: nowrap;
}

.engine-trip-options input {
  width: 12px;
  height: 12px;
  accent-color: #1184ff;
}

.engine-row {
  display: grid;
  grid-template-columns: 1.12fr 1.12fr .8fr .8fr 1.24fr .65fr;
  gap: .55rem;
  align-items: stretch;
  position: relative;
}

.engine-field {
  height: 55px;
  border: 1px solid #d7d7d7;
  border-radius: 3px;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: .42rem .75rem .35rem;
  min-width: 0;
}

.engine-label {
  display: block;
  font-size: .7rem;
  color: #111;
  margin-bottom: .15rem;
  line-height: 1.1;
}

.engine-input-wrap {
  display: flex;
  align-items: center;
  gap: .45rem;
  min-width: 0;
}

.engine-input-wrap [data-icon] {
  width: 16px;
  height: 16px;
  display: inline-flex;
  flex: 0 0 16px;
  color: #414141;
}

.engine-input-wrap [data-icon] svg {
  width: 16px;
  height: 16px;
}

.engine-field input,
.engine-field select {
  border: 0;
  outline: 0;
  background: transparent;
  color: #161616;
  font: 400 .9rem/1.2 Arial, Helvetica, sans-serif;
  min-width: 0;
  width: 100%;
  padding: 0;
}

.engine-field input::placeholder {
  color: #8b8b8b;
}

.engine-field select {
  appearance: auto;
  cursor: pointer;
}

.engine-swap {
  position: absolute;
  left: calc((100% - .55rem * 5) / 6 * 1.12 + .1rem);
  top: 50%;
  transform: translate(-50%, -50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid #e3e3e3;
  background: #fff;
  color: #1785ff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  font-size: 1.05rem;
  font-weight: 700;
  box-shadow: 0 1px 4px rgb(0 0 0 / .08);
  cursor: pointer;
}

.engine-submit {
  height: 55px;
  border: 0;
  border-radius: 3px;
  background: #002878;
  color: #fff;
  font: 700 .93rem/1 Arial, Helvetica, sans-serif;
  cursor: pointer;
  transition: filter .2s ease, transform .2s ease;
}

.engine-submit:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
}

/* Estados por tipo de búsqueda */
.engine-form[data-active-tab="hoteles"] .engine-origin,
.engine-form[data-active-tab="hoteles"] .engine-swap,
.engine-form[data-active-tab="viajes"] .engine-origin,
.engine-form[data-active-tab="viajes"] .engine-swap {
  display: none;
}

.engine-form[data-active-tab="hoteles"] .engine-row,
.engine-form[data-active-tab="viajes"] .engine-row {
  grid-template-columns: 1.75fr .85fr .85fr 1.25fr .7fr;
}

.engine-form[data-active-tab="viajes"] .engine-occupancy {
  display: none;
}

.engine-form[data-active-tab="viajes"] .engine-row {
  grid-template-columns: 2fr .9fr .9fr .7fr;
}

html.dark .booking-search-section {
  background: #e5e5e5;
}

@media (max-width:1024px) {
  .destino-search-engine {
    padding: 1.1rem 1rem 1.25rem;
  }

  .engine-row,
  .engine-form[data-active-tab="hoteles"] .engine-row,
  .engine-form[data-active-tab="viajes"] .engine-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .engine-submit {
    grid-column: 1/-1;
  }

  .engine-swap {
    position: static;
    transform: none;
    align-self: center;
    justify-self: center;
    grid-column: 1/-1;
    order: 2;
  }

  .engine-origin {
    order: 1;
  }

  .engine-destination {
    order: 3;
  }

  .engine-date {
    order: 4;
  }

  .engine-occupancy {
    order: 5;
  }

  .engine-submit {
    order: 6;
  }
}

@media (max-width:640px) {
  .booking-search-section {
    padding: 2rem 0 3rem;
  }

  .booking-search-container {
    width: min(100% - 1rem, 1080px);
  }

  .destino-search-engine {
    padding: 1rem .75rem;
  }

  .engine-tabs {
    justify-content: flex-start;
    overflow-x: auto;
    gap: 1.25rem;
    padding-bottom: .2rem;
    margin-bottom: 1.2rem;
  }

  .engine-tab {
    white-space: nowrap;
  }

  .engine-trip-options {
    gap: 1rem;
    flex-wrap: wrap;
  }

  .engine-row,
  .engine-form[data-active-tab="hoteles"] .engine-row,
  .engine-form[data-active-tab="viajes"] .engine-row {
    grid-template-columns: 1fr;
  }

  .engine-field,
  .engine-submit {
    height: 54px;
  }
}

/* Sección Promociones especiales / Mega Travel */
.promo-specials-section {
  background: hsl(220 9% 13%);
  color: hsl(0 0% 92%);
  padding: 4rem 0 5rem;
}

.promo-specials-container {
  max-width: 1220px;
}

.promo-heading {
  text-align: left;
  margin-bottom: 1.5rem;
}

.promo-heading h2 {
  color: hsl(0 0% 92%);
  font-size: clamp(1.45rem, 2.2vw, 1.75rem);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 .45rem;
}

.promo-heading p {
  color: hsl(0 0% 72%);
  font-size: .98rem;
  line-height: 1.6;
  margin: 0;
}

.promo-tabs {
  display: flex;
  align-items: center;
  gap: .55rem;
  flex-wrap: wrap;
  margin-bottom: 2.1rem;
}

.promo-tab {
  border: 1px solid hsl(220 9% 24%);
  background: hsl(220 9% 18%);
  color: hsl(0 0% 90%);
  border-radius: 999px;
  padding: .55rem 1rem;
  font-size: .86rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  box-shadow: none;
  transition: transform .2s ease, background-color .2s ease, border-color .2s ease, color .2s ease;
}

.promo-tab:hover {
  transform: translateY(-1px);
  background: hsl(220 9% 21%);
  border-color: hsl(220 9% 30%);
}

.promo-tab.active {
  background: hsl(209 100% 64%);
  border-color: hsl(209 100% 64%);
  color: #fff;
}

.mega-iframe-card {
  overflow: hidden;
  border: 1px solid hsl(220 9% 22%);
  border-radius: 16px;
  background: hsl(220 9% 15%);
  box-shadow: 0 18px 42px rgb(0 0 0 / .22);
}

.mega-iframe-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid hsl(220 9% 22%);
  background: hsl(220 9% 16%);
}

.mega-label {
  display: inline-flex;
  align-items: center;
  width: max-content;
  margin-bottom: .35rem;
  border-radius: 999px;
  background: hsl(209 100% 64% / .16);
  color: hsl(209 100% 72%);
  padding: .25rem .7rem;
  font-size: .75rem;
  font-weight: 700;
}

.mega-iframe-topbar h3 {
  color: hsl(0 0% 93%);
  font-size: 1.12rem;
  line-height: 1.3;
  margin: 0;
}

.mega-open {
  flex: 0 0 auto;
  border: 1px solid hsl(220 9% 29%);
  border-radius: 999px;
  color: hsl(0 0% 92%);
  background: hsl(220 9% 19%);
  padding: .65rem .95rem;
  font-size: .85rem;
  font-weight: 700;
  transition: background-color .2s ease, border-color .2s ease, transform .2s ease;
}

.mega-open:hover {
  transform: translateY(-1px);
  background: hsl(209 100% 64%);
  border-color: hsl(209 100% 64%);
  color: #fff;
}

.mega-iframe-wrap {
  width: 100%;
  height: 900px;
  overflow: hidden;
  background: #d5d5d5;
}

.mega-iframe-wrap iframe {
  display: block;
  width: 100%;
  height: 100%;
}

html:not(.dark) .promo-specials-section {
  background: hsl(220 9% 13%);
}

@media (max-width:768px) {
  .promo-specials-section {
    padding: 3rem 0 4rem;
  }

  .promo-tabs {
    gap: .45rem;
    margin-bottom: 1.5rem;
  }

  .promo-tab {
    font-size: .78rem;
    padding: .5rem .75rem;
  }

  .mega-iframe-topbar {
    align-items: flex-start;
    flex-direction: column;
    padding: 1rem;
  }

  .mega-open {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .mega-iframe-wrap {
    height: 760px;
  }
}

/* Sección Nuestra historia y Servicios restauradas */
.story-section {
  scroll-margin-top: 88px;
}

.services-section,
#buscadores,
#destinos,
#testimonios,
#contacto {
  scroll-margin-top: 88px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
}

.service-card {
  min-height: 260px;
  border: 1px solid hsl(var(--border));
  border-radius: 1.25rem;
  background: linear-gradient(180deg, hsl(var(--card)), hsl(var(--card)));
  color: hsl(var(--card-foreground));
  padding: 1.6rem;
  box-shadow: var(--shadow);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

html.dark .service-card {
  background: linear-gradient(180deg, hsl(var(--card)), hsl(222 18% 15%));
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: hsl(var(--accent)/.55);
  box-shadow: var(--shadow-lg);
}

.service-card h3 {
  font-size: 1.12rem;
  margin: 0 0 .7rem;
}

.service-card p {
  color: hsl(var(--muted-foreground));
  line-height: 1.7;
  margin: 0;
}

.service-card .icon-box {
  margin-bottom: 1.2rem;
}

@media (max-width:1024px) {
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width:640px) {
  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
  }
}


/* Apartado Servicios estilo Explora por categoría */
.category-showcase-section {
  background: hsl(220 9% 13%);
  color: hsl(0 0% 92%);
  padding: 3.75rem 0 4.75rem;
}

.category-showcase-container {
  max-width: 1220px;
}

.category-showcase-heading {
  text-align: left;
  margin-bottom: 1.45rem;
}

.category-showcase-heading h2 {
  color: hsl(0 0% 92%);
  font-size: clamp(1.45rem, 2.2vw, 1.75rem);
  font-weight: 800;
  line-height: 1.2;
  margin: 0;
}

.category-pills {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  margin-bottom: 2.15rem;
}

.category-pill {
  border: 1px solid hsl(220 9% 24%);
  background: hsl(220 9% 18%);
  color: hsl(0 0% 90%);
  border-radius: 999px;
  padding: .58rem 1rem;
  font-size: .86rem;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  transition: transform .2s ease, background-color .2s ease, border-color .2s ease;
}

.category-pill:hover {
  transform: translateY(-1px);
  background: hsl(220 9% 21%);
  border-color: hsl(220 9% 30%);
}

.category-pill.active {
  background: hsl(209 100% 64%);
  border-color: hsl(209 100% 64%);
  color: #fff;
}

.category-destination-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
}

.category-destination-card {
  min-height: 310px;
  border: 1px solid hsl(220 9% 22%);
  border-radius: 14px;
  background: hsl(220 9% 15%);
  color: hsl(0 0% 94%);
  overflow: hidden;
  box-shadow: none;
  transition: transform .25s ease, border-color .25s ease, background-color .25s ease;
}

.category-destination-card:hover {
  transform: translateY(-4px);
  border-color: hsl(220 9% 31%);
  background: hsl(220 9% 17%);
}

.category-destination-card img {
  width: 100%;
  height: 118px;
  object-fit: cover;
}

.category-destination-content {
  padding: 1.65rem .9rem 1.75rem;
}

.category-destination-content h3 {
  color: hsl(0 0% 91%);
  font-size: 1.12rem;
  font-weight: 800;
  line-height: 1.55;
  margin: 0 0 1.15rem;
}

.category-destination-content p {
  color: hsl(0 0% 91%);
  font-size: .95rem;
  line-height: 1.65;
  margin: 0;
}

html:not(.dark) .category-showcase-section {
  background: hsl(220 9% 13%);
}

@media (max-width:1180px) {
  .category-destination-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width:768px) {
  .category-showcase-section {
    padding: 3rem 0 4rem;
  }

  .category-pills {
    gap: .5rem;
    margin-bottom: 1.6rem;
  }

  .category-pill {
    font-size: .8rem;
    padding: .52rem .78rem;
  }

  .category-destination-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width:520px) {
  .category-destination-grid {
    grid-template-columns: 1fr;
  }

  .category-destination-card {
    min-height: auto;
  }

  .category-destination-card img {
    height: 155px;
  }
}

/* Destinos populares con iframes nacionales / internacionales */
.popular-destinations-section {
  overflow: hidden;
}

.popular-destinations-container {
  max-width: 1220px;
}

.popular-iframe-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.popular-iframe-card {
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.popular-iframe-header {
  padding: 1.35rem 1.35rem 1.15rem;
  border-bottom: 1px solid hsl(var(--border));
}

.popular-iframe-header span {
  display: inline-flex;
  align-items: center;
  width: max-content;
  margin-bottom: .45rem;
  padding: .35rem .75rem;
  border-radius: 999px;
  background: hsl(var(--accent)/.12);
  color: hsl(var(--accent));
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .02em;
}

.popular-iframe-header h3 {
  margin: 0 0 .45rem;
  color: hsl(var(--foreground));
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  font-weight: 800;
}

.popular-iframe-header p {
  margin: 0;
  color: hsl(var(--muted-foreground));
  line-height: 1.6;
}

.popular-iframe-box {
  width: 100%;
  height: 900px;
  overflow: hidden;
  background: #fff;
}

.popular-iframe-box iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: #fff;
}

@media (max-width:1024px) {
  .popular-iframe-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width:640px) {
  .popular-iframe-box {
    height: 760px;
  }

  .popular-iframe-header {
    padding: 1.1rem;
  }
}


/* Google Maps dentro de Atención virtual y con cita */
.appointment-map {
  width: 100%;
  height: 280px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid hsl(var(--border));
  background: hsl(var(--muted));
  box-shadow: 0 10px 26px rgb(0 0 0 / .18);
}

.appointment-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Iconos Font Awesome para redes sociales */
.socials a i {
  font-size: 1.12rem;
  line-height: 1;
}

@media (max-width:768px) {
  .appointment-map {
    height: 230px;
  }
}

/* Corrección formulario de contacto en card */
.contact-grid {
  align-items: start;
}

.contact-form {
  width: 100%;
  max-width: 520px;
  justify-self: end;
  padding: 1.75rem;
  border: 1px solid hsl(var(--border));
  border-radius: 1.25rem;
  background: linear-gradient(180deg, hsl(var(--card)), hsl(var(--card)));
  box-shadow: var(--shadow-lg);
}

html.dark .contact-form {
  background: linear-gradient(180deg, hsl(var(--card)), hsl(222 18% 15%));
}

.contact-form .field {
  gap: .45rem;
}

.contact-form .field span {
  color: hsl(var(--foreground));
}

.contact-form .field input,
.contact-form .field textarea,
.contact-form .field select {
  min-height: 48px;
  border-radius: .8rem;
  padding: .75rem .9rem;
}

.contact-form .field textarea {
  min-height: 130px;
}

.contact-form .btn-block {
  width: fit-content;
  min-width: 220px;
  justify-self: start;
  margin-top: .25rem;
}

@media (max-width:1024px) {
  .contact-form {
    max-width: 100%;
    justify-self: stretch;
  }
}

@media (max-width:640px) {
  .contact-form {
    padding: 1.25rem;
    border-radius: 1rem;
  }

  .contact-form .btn-block {
    width: 100%;
    min-width: 0;
  }
}
/* Ajuste: texto del menú pegajoso más claro solo en modo claro */
html:not(.dark) .site-header .desktop-nav a,
html:not(.dark) .site-header .mobile-nav a {
  color: hsl(0 0% 96%);
}

html:not(.dark) .site-header .desktop-nav a:hover,
html:not(.dark) .site-header .mobile-nav a:hover {
  color: hsl(var(--cyan));
}

/* Banner en movimiento: bancos aceptados */
.bank-marquee-section {
  position: relative;
  overflow: hidden;
  padding: clamp(3rem, 7vw, 5.5rem) 0;
  background:
    radial-gradient(circle at top left, hsl(var(--cyan) / .16), transparent 34rem),
    linear-gradient(135deg, hsl(var(--primary)), hsl(var(--secondary)));
}

.bank-marquee-card {
  position: relative;
  overflow: hidden;
  border-radius: 1.6rem;
  border: 1px solid rgb(255 255 255 / .18);
  background: rgb(255 255 255 / .10);
  box-shadow: 0 24px 55px rgb(0 0 0 / .24);
  backdrop-filter: blur(14px);
}

.bank-marquee {
  position: relative;
  z-index: 1;
  width: 100%;
  overflow: hidden;
  padding: 1.4rem 0;
}

.bank-marquee-track {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: max-content;
  animation: bankMarquee 24s linear infinite;
  will-change: transform;
}

.bank-marquee:hover .bank-marquee-track {
  animation-play-state: paused;
}

.bank-logo {
  flex: 0 0 auto;
  width: clamp(150px, 18vw, 220px);
  height: 92px;
  display: grid;
  place-items: center;
  padding: .85rem;
  border-radius: 1.15rem;
  background: rgb(255 255 255 / .92);
  border: 1px solid rgb(255 255 255 / .38);
  box-shadow: 0 16px 35px rgb(0 0 0 / .18);
}

.bank-logo img {
  max-width: 100%;
  max-height: 66px;
  object-fit: contain;
}

@keyframes bankMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - .5rem)); }
}

@media (max-width: 640px) {
  .bank-logo {
    width: 145px;
    height: 78px;
  }

  .bank-logo img {
    max-height: 54px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .bank-marquee-track {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
    width: auto;
    padding-inline: 1rem;
  }

  .bank-logo[aria-hidden="true"] {
    display: none;
  }
}


/* Ajustes solicitados: logo nuevo sin fondo y texto del menú por tema */
.brand-logo {
  width: clamp(155px, 18vw, 230px);
  height: auto;
  object-fit: contain;
}

html.dark .site-header .desktop-nav a,
html.dark .site-header .mobile-nav a {
  color: #ffffff;
}

html:not(.dark) .site-header .desktop-nav a,
html:not(.dark) .site-header .mobile-nav a {
  color: #4b5563;
}

html.dark .site-header .desktop-nav a:hover,
html.dark .site-header .mobile-nav a:hover,
html:not(.dark) .site-header .desktop-nav a:hover,
html:not(.dark) .site-header .mobile-nav a:hover {
  color: hsl(var(--accent));
}

@media (max-width: 640px) {
  .brand-logo {
    width: 145px;
  }
}

/* Ajustes extra: gris más claro y sombra blanca en logo / icono de tema */
html:not(.dark) .site-header .desktop-nav a,
html:not(.dark) .site-header .mobile-nav a {
  color: #6b7280;
}

.brand-logo {
  filter: drop-shadow(0 0 6px rgba(255, 255, 255, .95)) drop-shadow(0 4px 14px rgba(255, 255, 255, .65));
}

#themeToggle svg,
html.dark #themeToggle svg {
  filter: drop-shadow(0 0 5px rgba(255, 255, 255, .95)) drop-shadow(0 0 12px rgba(255, 255, 255, .65));
}

html.dark #themeToggle {
  box-shadow: 0 0 16px rgba(255, 255, 255, .22);
}
