:root {
  --background: hsl(0 0% 100%);
  --foreground: hsl(220 39% 17%);
  --primary: hsl(217 94% 22%);
  --primary-foreground: hsl(0 0% 100%);
  --secondary: hsl(186 85% 39%);
  --accent: hsl(343 100% 67%);
  --muted: hsl(210 20% 96%);
  --muted-foreground: hsl(220 15% 45%);
  --border: hsl(220 20% 88%);
  --radius: 1rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  background: var(--background);
  color: var(--foreground);
  overflow-x: hidden;
}

button,
input,
textarea {
  font: inherit;
}

button {
  border: 0;
  cursor: pointer;
  background: transparent;
  color: inherit;
}

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

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

svg {
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

h1,
h2,
h3,
h4,
p {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  text-wrap: balance;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

.section {
  padding: 6rem 0;
}

.page-start {
  padding-top: 6.25rem;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 40;
  width: 100%;
  background: #fff;
  padding: 1.25rem 0;
  transition: all .3s ease;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, .95);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, .1), 0 2px 4px -2px rgba(0, 0, 0, .1);
  padding: .65rem 0;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.brand-icon,
.footer-brand-icon {
  width: 5rem;
  height: 5rem;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: inherit;
  transition: transform .3s ease;
  overflow: visible;
}

.brand:hover .brand-icon {
  background: transparent;
  transform: scale(1.03);
}

.brand-icon svg,
.footer-brand-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.brand-logo,
.footer-logo {
  background: transparent;
  border: 0;
  box-shadow: none;
}

.brand-logo img,
.footer-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.footer-logo {
  width: 5.5rem;
  height: 5.5rem;
  background: transparent;
}

.brand-text {
  font-size: 1.125rem;
  line-height: 1.75rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -.025em;
}

.brand-text span {
  color: var(--secondary);
  font-weight: 500;
}

.desktop-nav {
  display: none;
  align-items: center;
  gap: 1.25rem;
}

.desktop-nav>button:not(.btn):not(.theme-toggle) {
  position: relative;
  padding-bottom: .25rem;
  color: rgba(31, 41, 55, .8);
  font-size: .875rem;
  font-weight: 500;
  transition: color .2s ease;
}

.desktop-nav>button:not(.btn):not(.theme-toggle)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--secondary);
  transition: width .2s ease;
}

.desktop-nav>button:not(.btn):not(.theme-toggle):hover {
  color: var(--primary);
}

.desktop-nav>button:not(.btn):not(.theme-toggle):hover::after {
  width: 100%;
}

.mobile-menu-trigger {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: .5rem;
  color: var(--primary);
}

.mobile-menu-trigger svg {
  width: 1.5rem;
  height: 1.5rem;
}

.mobile-overlay {
  position: fixed;
  inset: 0;
  z-index: 50;
  background: rgba(0, 0, 0, .5);
  opacity: 0;
  visibility: hidden;
  transition: all .3s ease;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 60;
  width: 18rem;
  height: 100dvh;
  background: white;
  padding: 1.5rem;
  transform: translateX(100%);
  transition: transform .3s ease;
  box-shadow: -10px 0 30px rgba(0, 0, 0, .16);
}

.mobile-overlay.open {
  opacity: 1;
  visibility: visible;
}

.mobile-drawer.open {
  transform: translateX(0);
}

.drawer-title {
  color: var(--primary);
  font-size: 1.125rem;
  font-weight: 700;
  text-align: left;
  padding-bottom: 1rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.mobile-nav>button:not(.btn) {
  text-align: left;
  padding: .75rem 1rem;
  border-radius: .5rem;
  font-size: 1rem;
  font-weight: 500;
  color: rgba(31, 41, 55, .8);
  transition: all .2s ease;
}

.mobile-nav>button:not(.btn):hover {
  background: rgba(244, 246, 248, .5);
  color: var(--primary);
}

.mobile-contact {
  width: 100%;
  margin-top: 1.5rem;
  justify-content: center;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  border-radius: 9999px;
  font-weight: 500;
  transition: all .3s ease;
  white-space: nowrap;
}

.btn svg {
  width: 1rem;
  height: 1rem;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, .1), 0 2px 4px -2px rgba(0, 0, 0, .1);
  padding: .625rem 1.5rem;
}

.btn-primary:hover {
  background: hsl(217 94% 20%);
  border: 0;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, .1), 0 4px 6px -4px rgba(0, 0, 0, .1);
}

.btn-small {
  height: 2.5rem;
}

.btn-large {
  width: 100%;
  padding: 1.5rem 2rem;
  font-size: 1.125rem;
  line-height: 1.75rem;
}

.btn-accent {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, .1), 0 8px 10px -6px rgba(0, 0, 0, .1);
}

.btn-accent:hover {
  background: hsla(343, 100%, 67%, .9);
  box-shadow: 0 20px 40px rgba(255, 90, 138, .2);
}

.btn-outline-light {
  background: rgba(255, 255, 255, .1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .3);
  backdrop-filter: blur(4px);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, .2);
}

.btn-outline-primary {
  border: 1px solid var(--primary);
  color: var(--primary);
  padding: .625rem 2rem;
}

.btn-outline-primary:hover {
  background: var(--primary);
  color: #fff;
}

.btn-white {
  background: #fff;
  color: var(--primary);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, .1), 0 8px 10px -6px rgba(0, 0, 0, .1);
}

.btn-white:hover {
  background: rgba(255, 255, 255, .9);
  transform: scale(1.05);
}

.whatsapp-icon {
  color: #25D366;
  width: 1.25rem !important;
  height: 1.25rem !important;
}

.hero-section {
  position: relative;
  min-height: 90dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('assets/fondo.jpeg');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.hero-primary-overlay {
  position: absolute;
  inset: 0;
  background: rgba(3, 43, 107, .6);
  mix-blend-mode: multiply;
}

.hero-gradient-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, .4), transparent, rgba(0, 0, 0, .8));
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  color: #fff;
  margin-top: 3rem;
  max-width: 64rem;
}

.hero-stack {
  max-width: 64rem;
  margin: 0 auto;
}

.hero-pill {
  display: inline-block;
  padding: .25rem .75rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, .2);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, .3);
  font-size: .875rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  letter-spacing: .025em;
}

.hero-title {
  font-size: 2.25rem;
  line-height: 1.12;
  font-weight: 700;
  margin-bottom: 1.5rem;
  letter-spacing: -.02em;
}

.hero-text {
  font-size: 1.125rem;
  line-height: 1.625;
  margin: 0 auto 2.5rem;
  max-width: 48rem;
  color: rgba(255, 255, 255, .9);
  text-wrap: balance;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: center;
}

.trust-section {
  position: relative;
  z-index: 20;
  margin-top: -4rem;
}

.trust-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.trust-card,
.contact-card {
  border: 0;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, .05), 0 8px 10px -6px rgba(0, 0, 0, .05);
  border-radius: 1rem;
  overflow: hidden;
  background: rgba(255, 255, 255, .95);
  backdrop-filter: blur(4px);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.trust-card h3 {
  font-weight: 600;
  line-height: 1.25;
}

.round-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.round-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.secondary-soft {
  background: hsla(186, 85%, 39%, .1);
  color: var(--secondary);
}

.accent-soft {
  background: hsla(343, 100%, 67%, .1);
  color: var(--accent);
}

.primary-soft {
  background: hsla(217, 94%, 22%, .1);
  color: var(--primary);
}

.muted-soft {
  background: var(--muted);
  color: var(--foreground);
}

.about-section {
  background: var(--background);
  overflow: hidden;
}

.two-column {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}

.eyebrow {
  font-size: .875rem;
  font-weight: 700;
  color: var(--secondary);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: .75rem;
}

.section-title {
  font-size: 1.875rem;
  line-height: 1.18;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
}

.section-title.xl {
  margin-bottom: 1.5rem;
}

.accent-line {
  width: 5rem;
  height: .375rem;
  background: var(--accent);
  border-radius: 9999px;
  margin-bottom: 2rem;
}

.secondary-line {
  width: 5rem;
  height: .375rem;
  background: var(--secondary);
  border-radius: 9999px;
  margin: 0 auto;
}

.lead {
  color: var(--muted-foreground);
  font-size: 1.125rem;
  line-height: 1.625;
  margin-bottom: 2rem;
}

.about-image-wrap {
  position: relative;
}

.image-backdrop {
  position: absolute;
  inset: -1rem;
  background: linear-gradient(to top right, hsla(186, 85%, 39%, .2), hsla(343, 100%, 67%, .2));
  border-radius: 2.5rem;
  transform: rotate(3deg);
}

.about-image {
  position: relative;
  border-radius: 1.5rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, .25);
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.testimonial-card {
  position: absolute;
  left: -1.5rem;
  bottom: -1.5rem;
  background: #fff;
  padding: 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, .1), 0 8px 10px -6px rgba(0, 0, 0, .1);
  max-width: 200px;
}

.stars {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: .5rem;
  color: var(--accent);
}

.stars svg {
  width: 1rem;
  height: 1rem;
  fill: currentColor;
}

.testimonial-card p {
  font-size: .875rem;
  font-weight: 500;
  color: var(--foreground);
}

.services-section {
  background: rgba(244, 246, 248, .5);
}

.section-heading {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto 4rem;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.service-card {
  height: 100%;
  border: 0;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, .1), 0 2px 4px -2px rgba(0, 0, 0, .1);
  background: #fff;
  border-radius: 1rem;
  overflow: hidden;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  transition: all .3s ease;
}

.service-card:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, .1), 0 8px 10px -6px rgba(0, 0, 0, .1);
  transform: translateY(-.5rem);
}

.service-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: hsla(186, 85%, 39%, .1);
  color: var(--secondary);
  margin-bottom: 1.5rem;
  transition: all .3s ease;
}

.service-icon svg {
  width: 1.75rem;
  height: 1.75rem;
}

.service-card:hover .service-icon {
  background: var(--secondary);
  color: #fff;
}

.service-card h4 {
  color: var(--primary);
  font-size: 1.25rem;
  line-height: 1.75rem;
  font-weight: 600;
  margin-bottom: .75rem;
}

.service-card p,
.benefit-card p {
  color: var(--muted-foreground);
  line-height: 1.625;
}

.promise-section {
  position: relative;
  padding: 8rem 0;
  overflow: hidden;
  background: var(--primary);
}

.pattern-bg {
  position: absolute;
  inset: 0;
  opacity: .1;
  background-image: radial-gradient(circle at 2px 2px, white 1px, transparent 0);
  background-size: 32px 32px;
}

.blur-orb {
  position: absolute;
  width: 24rem;
  height: 24rem;
  border-radius: 9999px;
  mix-blend-mode: multiply;
  filter: blur(64px);
  opacity: .5;
}

.orb-secondary {
  top: -10rem;
  right: -10rem;
  background: var(--secondary);
}

.orb-accent {
  bottom: -10rem;
  left: -10rem;
  background: var(--accent);
}

.promise-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 56rem;
}

.promise-title {
  color: #fff;
  font-size: 1.875rem;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 2rem;
}

.promise-text {
  color: rgba(255, 255, 255, .8);
  font-size: 1.25rem;
  line-height: 1.625;
  max-width: 48rem;
  margin: 0 auto;
  text-wrap: balance;
}

.ideal-box {
  position: relative;
  overflow: hidden;
  background: rgba(244, 246, 248, .3);
  border-radius: 3rem;
  padding: 2rem;
  border: 1px solid rgba(221, 225, 232, .5);
}

.ideal-orb {
  position: absolute;
  top: 0;
  right: 0;
  width: 16rem;
  height: 16rem;
  background: hsla(186, 85%, 39%, .05);
  border-radius: 9999px;
  filter: blur(48px);
}

.ideal-content {
  position: relative;
  z-index: 1;
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
}

.ideal-content .section-title {
  margin-bottom: 2rem;
}

.ideal-text {
  color: var(--muted-foreground);
  font-size: 1.125rem;
  line-height: 1.625;
}

.benefits-section {
  background: #fff;
}

.benefits-section .section-heading {
  margin-bottom: 4rem;
}

.benefits-section .section-title {
  margin-bottom: 1rem;
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.benefit-card {
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem;
  border-radius: 1rem;
  transition: background-color .3s ease;
}

.benefit-card:hover {
  background: rgba(244, 246, 248, .5);
}

.benefit-icon {
  width: 3.5rem;
  height: 3.5rem;
  flex-shrink: 0;
  background: hsla(217, 94%, 22%, .05);
  border: 1px solid hsla(217, 94%, 22%, .1);
  color: var(--primary);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefit-icon svg {
  width: 1.75rem;
  height: 1.75rem;
}

.benefit-card h4 {
  font-size: 1.25rem;
  line-height: 1.75rem;
  font-weight: 600;
  margin-bottom: .5rem;
}


.travel-offers-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #fff 0%, rgba(244, 246, 248, .72) 100%);
}

.offers-bg-orb {
  position: absolute;
  border-radius: 9999px;
  filter: blur(70px);
  opacity: .16;
  pointer-events: none;
}

.offers-orb-primary {
  width: 18rem;
  height: 18rem;
  background: var(--primary);
  left: -7rem;
  top: 5rem;
}

.offers-orb-secondary {
  width: 16rem;
  height: 16rem;
  background: var(--secondary);
  right: -6rem;
  bottom: 4rem;
}

.offers-intro {
  color: var(--muted-foreground);
  max-width: 46rem;
  margin: 1rem auto 0;
  line-height: 1.7;
  font-size: 1rem;
}

.offers-shell {
  position: relative;
  z-index: 1;
  margin-top: 2.5rem;
  background: rgba(255, 255, 255, .78);
  border: 1px solid rgba(221, 225, 232, .75);
  border-radius: 1.5rem;
  box-shadow: 0 24px 60px rgba(3, 43, 107, .10);
  overflow: hidden;
  backdrop-filter: blur(14px);
}

.offers-tabs {
  display: grid;
  grid-template-columns: 1fr;
  gap: .75rem;
  padding: 1rem;
  background: rgba(244, 246, 248, .72);
  border-bottom: 1px solid rgba(221, 225, 232, .85);
}

.offer-tab {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  padding: .9rem 1rem;
  border-radius: 9999px;
  color: var(--foreground);
  font-weight: 600;
  transition: all .25s ease;
  background: #fff;
  box-shadow: 0 6px 18px rgba(3, 43, 107, .06);
}

.offer-tab span {
  width: 2rem;
  height: 2rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 166, 184, .1);
  color: var(--secondary);
  transition: all .25s ease;
}

.offer-tab svg {
  width: 1rem;
  height: 1rem;
}

.offer-tab:hover {
  transform: translateY(-2px);
  color: var(--primary);
  box-shadow: 0 12px 24px rgba(3, 43, 107, .10);
}

.offer-tab.active {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  box-shadow: 0 16px 30px rgba(3, 43, 107, .18);
}

.offer-tab.active span {
  background: rgba(255, 255, 255, .18);
  color: #fff;
}

.offers-panels {
  padding: 1rem;
}

.offer-panel {
  animation: panelFade .35s ease both;
}

.iframe-card {
  background: #fff;
  border: 1px solid rgba(221, 225, 232, .85);
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 20px 35px rgba(3, 43, 107, .08);
}

.iframe-card-header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
  justify-content: space-between;
  padding: 1.25rem;
  border-bottom: 1px solid rgba(221, 225, 232, .85);
  background: linear-gradient(135deg, rgba(3, 43, 107, .04), rgba(15, 166, 184, .08));
}

.iframe-label {
  display: inline-flex;
  margin-bottom: .35rem;
  color: var(--secondary);
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.iframe-card h4 {
  color: var(--primary);
  font-size: 1.35rem;
  line-height: 1.25;
  font-weight: 700;
}

.iframe-wrap {
  width: 100%;
  height: 760px;
  overflow: hidden;
  background: rgba(244, 246, 248, .72);
}

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

@keyframes panelFade {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

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

.final-cta-section {
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
}

.cta-image-overlay {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1436491865332-7a61a109cc05?q=80&w=2074&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
  opacity: .1;
  mix-blend-mode: overlay;
}

.final-cta-content {
  position: relative;
  z-index: 10;
  max-width: 56rem;
  text-align: center;
  color: #fff;
}

.final-title {
  font-size: 1.875rem;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.final-text {
  font-size: 1.25rem;
  line-height: 1.75rem;
  color: rgba(255, 255, 255, .9);
  max-width: 42rem;
  margin: 0 auto 2.5rem;
}

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

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-intro {
  color: var(--muted-foreground);
  font-size: 1.125rem;
  line-height: 1.625;
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-card {
  background: #fff;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, .1), 0 2px 4px -2px rgba(0, 0, 0, .1);
}

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

.contact-card strong {
  color: var(--foreground);
  font-size: 1.125rem;
  font-weight: 600;
  overflow-wrap: anywhere;
}

.contact-cta-card {
  background: linear-gradient(135deg, rgba(3, 43, 107, .98), rgba(15, 166, 184, .95));
  color: #fff;
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 20px 35px rgba(3, 43, 107, .18);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 1.25rem;
  min-height: 100%;
  overflow: hidden;
  position: relative;
}

.contact-cta-card::before {
  content: "";
  position: absolute;
  right: -4rem;
  top: -4rem;
  width: 12rem;
  height: 12rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, .12);
  filter: blur(2px);
}

.contact-cta-card h3 {
  position: relative;
  z-index: 1;
  font-size: 1.75rem;
  line-height: 1.2;
  font-weight: 700;
}

.contact-cta-card p {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, .86);
  line-height: 1.625;
  font-size: 1rem;
}

.contact-cta-card .btn {
  position: relative;
  z-index: 1;
}

.contact-cta-card .btn-primary {
  background: #fff;
  color: var(--primary);
}

.contact-cta-card .btn-primary:hover {
  background: rgba(255, 255, 255, .92);
}

.form-card {
  background: #fff;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, .1), 0 8px 10px -6px rgba(0, 0, 0, .1);
  padding: 2rem;
}

.form-card h3 {
  color: var(--primary);
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

label {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  color: var(--foreground);
  font-size: .875rem;
  font-weight: 500;
}

input,
textarea {
  width: 100%;
  border: 1px solid transparent;
  background: rgba(244, 246, 248, .5);
  border-radius: .75rem;
  padding: .75rem 1rem;
  color: var(--foreground);
  outline: none;
  transition: all .2s ease;
}

input {
  height: 3rem;
}

textarea {
  min-height: 112px;
  resize: none;
}

input:focus,
textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 2px hsla(217, 94%, 22%, .18);
}

.form-submit {
  width: 100%;
  height: 3.5rem;
  border-radius: .75rem;
  font-size: 1.125rem;
}

.form-submit:disabled {
  opacity: .7;
  cursor: not-allowed;
}

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

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand-block {
  max-width: 100%;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: 700;
  letter-spacing: -.025em;
}

.footer-brand-icon {
  background: rgba(255, 255, 255, .1);
  color: #fff;
}

.footer-brand em {
  color: var(--secondary);
  font-style: normal;
  font-weight: 500;
}

.footer p {
  color: rgba(255, 255, 255, .8);
  line-height: 1.625;
  max-width: 28rem;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, .1);
  color: #fff;
  transition: all .3s ease;
}

.social-links a:hover {
  transform: translateY(-.25rem);
  background: var(--secondary);
}

.social-links a:nth-child(2):hover {
  background: var(--accent);
}

.social-links svg {
  width: 1.25rem;
  height: 1.25rem;
}

.footer h3 {
  color: #fff;
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.footer-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: rgba(255, 255, 255, .8);
  font-size: .875rem;
}

.footer-list a,
.footer-list button,
.footer-list p {
  display: flex;
  align-items: center;
  gap: .75rem;
  color: rgba(255, 255, 255, .8);
  font-size: .875rem;
  text-align: left;
  max-width: none;
  transition: color .2s ease;
}

.footer-list a:hover,
.footer-list button:hover {
  color: var(--secondary);
}

.footer-list span {
  width: 2rem;
  height: 2rem;
  flex-shrink: 0;
  border-radius: 9999px;
  background: rgba(255, 255, 255, .05);
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-list svg {
  width: 1rem;
  height: 1rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: rgba(255, 255, 255, .6);
  font-size: .875rem;
}

.footer-bottom p {
  color: rgba(255, 255, 255, .6);
  text-align: center;
}

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

.footer-bottom a {
  transition: color .2s ease;
}

.footer-bottom a:hover {
  color: #fff;
}

.floating-whatsapp {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 120;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border-radius: 9999px;
  background: #25D366;
  color: #fff;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, .1), 0 4px 6px -4px rgba(0, 0, 0, .1);
  transition: all .3s ease;
  transform: scale(0);
  opacity: 0;
  animation: whatsappIn .4s cubic-bezier(.34, 1.56, .64, 1) 1s forwards;
}

.floating-whatsapp:hover {
  transform: scale(1.1) translateY(-.25rem);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, .25);
}

.floating-whatsapp:active {
  transform: scale(.95);
}

.floating-whatsapp span {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: #25D366;
  opacity: .2;
  animation: ping 1.6s cubic-bezier(0, 0, .2, 1) infinite;
}

.floating-whatsapp:hover span {
  opacity: .4;
}

.floating-whatsapp svg {
  position: relative;
  z-index: 1;
  width: 2rem;
  height: 2rem;
}


.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 90;
  transform: translateY(calc(100% + 2rem));
  opacity: 0;
  pointer-events: none;
  transition: transform .35s ease, opacity .35s ease;
}

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

.cookie-content {
  max-width: 1120px;
  margin: 0 auto;
  background: rgba(255, 255, 255, .96);
  color: var(--foreground);
  border: 1px solid rgba(221, 225, 232, .85);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .18);
  border-radius: 1.25rem;
  padding: 1rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  backdrop-filter: blur(12px);
}

.cookie-content h3 {
  color: var(--primary);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: .35rem;
}

.cookie-content p {
  color: var(--muted-foreground);
  font-size: .9rem;
  line-height: 1.55;
}

.cookie-actions {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  align-items: stretch;
}

.cookie-actions .btn {
  padding: .75rem 1.25rem;
}

.btn-outline-cookie {
  border: 1px solid var(--border);
  color: var(--foreground);
  background: #fff;
}

.btn-outline-cookie:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.toast {
  position: fixed;
  top: 1rem;
  left: 50%;
  z-index: 80;
  transform: translate(-50%, -150%);
  background: #111827;
  color: #fff;
  border-radius: .75rem;
  padding: .85rem 1rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, .18);
  font-size: .9rem;
  transition: transform .25s ease, opacity .25s ease;
  opacity: 0;
  max-width: calc(100% - 2rem);
}

.toast.show {
  transform: translate(-50%, 0);
  opacity: 1;
}

.toast.error {
  background: #dc2626;
}

.toast.success {
  background: #16a34a;
}

.reveal-up,
.reveal-left,
.reveal-scale {
  opacity: 0;
  transition-property: opacity, transform;
  transition-duration: .6s;
  transition-timing-function: cubic-bezier(.16, 1, .3, 1);
}

.reveal-up {
  transform: translateY(30px);
}

.reveal-left {
  transform: translateX(-30px);
  transition-duration: .7s;
}

.reveal-scale {
  transform: scale(.95);
  transition-duration: .7s;
}

.reveal-up.is-visible,
.reveal-left.is-visible,
.reveal-scale.is-visible {
  opacity: 1;
  transform: none;
}

.delay-0 {
  transition-delay: 0s;
}

.delay-1 {
  transition-delay: .1s;
}

.delay-2 {
  transition-delay: .2s;
}

.delay-3 {
  transition-delay: .3s;
}

@keyframes ping {

  75%,
  100% {
    transform: scale(1.65);
    opacity: 0;
  }
}

@keyframes whatsappIn {
  to {
    transform: scale(1);
    opacity: 1;
  }
}

@media (min-width: 640px) {
  .brand-text {
    font-size: 1.25rem;
  }

  .offers-tabs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .iframe-card-header {
    flex-direction: row;
    align-items: center;
    padding: 1.5rem;
  }

  .offers-panels {
    padding: 1.5rem;
  }

  .btn-large {
    width: auto;
  }

  .hero-actions {
    flex-direction: row;
  }

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

  .cookie-content {
    grid-template-columns: 1fr auto;
    align-items: center;
    padding: 1.1rem 1.25rem;
  }

  .cookie-actions {
    flex-direction: row;
  }
}

@media (min-width: 768px) {
  .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .offers-intro {
    font-size: 1.125rem;
  }

  .iframe-wrap {
    height: 900px;
  }

  .desktop-nav {
    display: flex;
  }

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

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

  .hero-text {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }

  .trust-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .section-title {
    font-size: 2.25rem;
  }

  .promise-title {
    font-size: 3rem;
  }

  .ideal-box {
    padding: 4rem;
  }

  .ideal-text {
    font-size: 1.25rem;
  }

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

  .final-title {
    font-size: 3rem;
  }

  .form-card {
    padding: 2.5rem;
  }

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

  .footer-bottom {
    flex-direction: row;
  }

  .footer-bottom p {
    text-align: left;
  }
}

@media (min-width: 1024px) {
  .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .desktop-nav {
    gap: 1.5rem;
  }

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

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

  .section-title.xl {
    font-size: 3rem;
  }

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

  .promise-title {
    font-size: 3.75rem;
  }

  .benefits-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

@media (min-width: 640px) and (max-width: 1023px) {
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 540px) {
  .brand-icon {
    width: 4rem;
    height: 4rem;
  }

  .brand {
    gap: .65rem;
  }

  .site-header {
    padding: .85rem 0;
  }

  .page-start {
    padding-top: 5.7rem;
  }

  .brand-text {
    max-width: 250px;
    font-size: .98rem;
    line-height: 1.25rem;
    text-align: left;
  }

  .offers-shell {
    border-radius: 1.1rem;
  }

  .offers-tabs,
  .offers-panels {
    padding: .75rem;
  }

  .offer-tab {
    justify-content: flex-start;
  }

  .iframe-card-header {
    padding: 1rem;
  }

  .iframe-card-header .btn {
    width: 100%;
  }

  .iframe-wrap {
    height: 680px;
  }

  .section {
    padding: 4.5rem 0;
  }

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

  .testimonial-card {
    left: .75rem;
    bottom: -2rem;
  }

  .about-image {
    height: 420px;
  }

  .contact-card strong {
    font-size: 1rem;
  }

  .cookie-banner {
    left: .75rem;
    right: .75rem;
    bottom: 5.75rem;
  }
}
/* Light / Dark mode */
:root,
:root[data-theme="light"] {
  color-scheme: light;
}

:root[data-theme="dark"] {
  color-scheme: dark;
  --background: hsl(222 47% 8%);
  --foreground: hsl(210 40% 96%);
  --primary: hsl(199 89% 48%);
  --primary-foreground: hsl(222 47% 8%);
  --secondary: hsl(186 85% 48%);
  --accent: hsl(343 100% 70%);
  --muted: hsl(222 39% 13%);
  --muted-foreground: hsl(215 20% 75%);
  --border: hsl(222 30% 24%);
}

body,
.site-header,
.mobile-drawer,
.trust-card,
.service-card,
.iframe-card,
.offer-tab,
.cookie-content,
.btn-outline-cookie,
.contact-card,
.info-card,
.form-card,
.benefit-card,
.ideal-box,
.testimonial-card {
  transition: background-color .3s ease, color .3s ease, border-color .3s ease, box-shadow .3s ease;
}

.theme-toggle {
  --toggle-track: linear-gradient(135deg, rgba(255, 210, 90, .95), rgba(15, 166, 184, .95));
  --toggle-thumb: #fff;
  --toggle-glow: rgba(15, 166, 184, .24);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  min-height: 2.65rem;
  padding: .32rem .85rem .32rem .38rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, .78);
  color: var(--primary);
  border: 1px solid rgba(15, 166, 184, .22);
  font-size: .84rem;
  font-weight: 800;
  letter-spacing: .01em;
  box-shadow: 0 10px 26px rgba(3, 43, 107, .10), inset 0 1px 0 rgba(255, 255, 255, .85);
  backdrop-filter: blur(12px);
}

.theme-toggle:hover {
  transform: translateY(-2px);
  border-color: rgba(15, 166, 184, .38);
  box-shadow: 0 16px 34px rgba(3, 43, 107, .16), 0 0 0 4px rgba(15, 166, 184, .08);
}

.theme-toggle-track {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  flex: 0 0 auto;
  width: 3.8rem;
  height: 1.9rem;
  padding: .22rem .35rem;
  border-radius: 9999px;
  background: var(--toggle-track);
  box-shadow: inset 0 2px 7px rgba(0, 0, 0, .18), 0 8px 18px var(--toggle-glow);
  overflow: hidden;
}

.theme-toggle-track::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 26% 28%, rgba(255, 255, 255, .65), transparent 34%);
  opacity: .72;
}

.theme-toggle-icon {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.1rem;
  height: 1.1rem;
  border-radius: 9999px;
  font-size: .82rem;
  line-height: 1;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, .18));
  pointer-events: none;
}

.theme-toggle-thumb {
  position: absolute;
  z-index: 1;
  left: .2rem;
  top: .2rem;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 9999px;
  background: var(--toggle-thumb);
  box-shadow: 0 4px 12px rgba(0, 0, 0, .22), inset 0 -2px 5px rgba(3, 43, 107, .08);
  transition: transform .32s cubic-bezier(.34, 1.56, .64, 1), background-color .3s ease;
}

:root[data-theme="dark"] .theme-toggle {
  --toggle-track: linear-gradient(135deg, hsl(222 47% 12%), hsl(199 89% 38%));
  --toggle-thumb: hsl(222 47% 8%);
  --toggle-glow: rgba(14, 165, 233, .28);
  background: rgba(15, 23, 42, .76);
  color: hsl(210 40% 96%);
  border-color: rgba(148, 163, 184, .24);
  box-shadow: 0 14px 32px rgba(0, 0, 0, .24), inset 0 1px 0 rgba(255, 255, 255, .08);
}

:root[data-theme="dark"] .theme-toggle-thumb {
  transform: translateX(1.9rem);
  box-shadow: 0 4px 14px rgba(0, 0, 0, .34), inset 0 0 0 1px rgba(255, 255, 255, .16);
}

.theme-toggle-mobile {
  width: 100%;
  justify-content: space-between;
  padding: .65rem .8rem;
  margin: .45rem 0;
  border-radius: 1rem;
}

:root[data-theme="dark"] body {
  background:
    radial-gradient(circle at top left, rgba(15, 166, 184, .18), transparent 34rem),
    var(--background);
  color: var(--foreground);
}

:root[data-theme="dark"] .site-header {
  background: rgba(7, 13, 27, .94);
  border-bottom: 1px solid rgba(148, 163, 184, .14);
}

:root[data-theme="dark"] .site-header.scrolled {
  background: rgba(7, 13, 27, .86);
  box-shadow: 0 14px 36px rgba(0, 0, 0, .35);
}

:root[data-theme="dark"] .mobile-drawer {
  background: hsl(222 39% 11%);
  color: var(--foreground);
}

:root[data-theme="dark"] .mobile-overlay {
  background: rgba(0, 0, 0, .68);
}

:root[data-theme="dark"] .brand-logo,
:root[data-theme="dark"] .footer-logo {
  background: transparent;
  border-color: transparent;
  box-shadow: none;
}

:root[data-theme="dark"] .brand-text,
:root[data-theme="dark"] .section-title,
:root[data-theme="dark"] .trust-card h3,
:root[data-theme="dark"] .service-card h4,
:root[data-theme="dark"] .benefit-card h4,
:root[data-theme="dark"] .iframe-card h4,
:root[data-theme="dark"] .contact-card h4 {
  color: var(--foreground);
}

:root[data-theme="dark"] .desktop-nav > button:not(.btn):not(.theme-toggle),
:root[data-theme="dark"] .mobile-nav button:not(.btn),
:root[data-theme="dark"] .lead,
:root[data-theme="dark"] .service-card p,
:root[data-theme="dark"] .benefit-card p,
:root[data-theme="dark"] .offers-intro {
  color: var(--muted-foreground);
}

:root[data-theme="dark"] .trust-card,
:root[data-theme="dark"] .service-card,
:root[data-theme="dark"] .iframe-card,
:root[data-theme="dark"] .contact-card,
:root[data-theme="dark"] .info-card,
:root[data-theme="dark"] .form-card,
:root[data-theme="dark"] .testimonial-card,
:root[data-theme="dark"] .ideal-box {
  background: rgba(15, 23, 42, .78);
  border-color: rgba(148, 163, 184, .18);
  box-shadow: 0 22px 50px rgba(0, 0, 0, .28);
}

:root[data-theme="dark"] .services-section,
:root[data-theme="dark"] .benefits-section,
:root[data-theme="dark"] .about-section,
:root[data-theme="dark"] .contact-section {
  background: transparent;
}

:root[data-theme="dark"] .travel-offers-section {
  background: linear-gradient(180deg, hsl(222 47% 8%) 0%, hsl(222 39% 11%) 100%);
}

:root[data-theme="dark"] .offers-shell {
  background: rgba(15, 23, 42, .72);
  border-color: rgba(148, 163, 184, .2);
  box-shadow: 0 26px 70px rgba(0, 0, 0, .36);
}

:root[data-theme="dark"] .offers-tabs,
:root[data-theme="dark"] .iframe-card-header,
:root[data-theme="dark"] .iframe-wrap {
  background: rgba(7, 13, 27, .72);
  border-color: rgba(148, 163, 184, .18);
}

:root[data-theme="dark"] .offer-tab {
  background: rgba(15, 23, 42, .9);
  color: var(--foreground);
  border: 1px solid rgba(148, 163, 184, .16);
  box-shadow: none;
}

:root[data-theme="dark"] .offer-tab.active {
  background: linear-gradient(135deg, hsl(217 94% 28%), var(--secondary));
  color: #fff;
}

:root[data-theme="dark"] .cookie-content {
  background: rgba(15, 23, 42, .96);
  border-color: rgba(148, 163, 184, .22);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .45);
}

:root[data-theme="dark"] .btn-outline-cookie {
  background: rgba(15, 23, 42, .8);
  color: var(--foreground);
  border-color: rgba(148, 163, 184, .26);
}

:root[data-theme="dark"] input,
:root[data-theme="dark"] textarea {
  background: rgba(15, 23, 42, .9);
  color: var(--foreground);
  border-color: rgba(148, 163, 184, .24);
}

:root[data-theme="dark"] .footer {
  background: hsl(222 47% 6%);
}

@media (max-width: 540px) {
  .theme-toggle-mobile {
    min-height: 3rem;
  }
}
