/** Shopify CDN: Minification failed

Line 300:7 Expected ":"

**/
/** Shopify CDN: Minification failed

Line 295:7 Expected ":"

**/
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

/* =====================
   CSS VARIABLES
   ===================== */
:root {
  --font-inter: 'Inter', sans-serif;
  --background: #ffffff;
  --foreground: #3c3c3c;
  --secondary: #eef1f9;
  --muted-foreground: #737373;
  --border: #d1d1d1;
  --accent: #b8c5ff;
  --radius: 0rem;
}

/* =====================
   RESET & BASE
   ===================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-inter);
  background: var(--background);
  color: var(--foreground);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* =====================
   UTILITY
   ===================== */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (min-width: 1024px) {
  .container {
    padding: 0 3rem;
  }
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

/* =====================
   ANIMATIONS
   ===================== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-right.visible {
  opacity: 1;
  transform: translateX(0);
}

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

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

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

.stagger-4 {
  transition-delay: 0.28s;
}

.stagger-5 {
  transition-delay: 0.35s;
}

.stagger-6 {
  transition-delay: 0.42s;
}

/* =====================
   NAVBAR
   ===================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: background 0.5s ease, border-color 0.5s ease;
  border-bottom: 1px solid transparent;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-color: var(--border);
}

.navbar a {
  color: white;
}

.navbar.scrolled a {
  color: #737373 !important;
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.navbar__icons {
  display: flex;
  align-items: center;
  gap: 15px;
  /* Puedes ajustar este espaciado segÃºn tu diseÃ±o */
  margin: 0 0px;
  /* Espaciado extra si es necesario para separar links y botones */
}

.navbar__icons .navbar__icon-link svg {
  width: 26px;
  /* ReducciÃ³n de los iconos de bloque en mobile */
  height: auto;
}

/* LÃ³gica para minificar los idiomas de Liquid a CSS */
.lang-iso {
  display: none;
}

@media (max-width: 768px) {
  .navbar__icons .navbar__icon-link svg {
    width: 20px;
    /* ReducciÃ³n de los iconos de bloque en mobile */
    height: auto;
  }

  /* Si el switch minificador estÃ¡ activo en Shopify, oculta el texto completo y muestra el ISO */
  .btn-lang-switch.lang-minify-mobile .lang-full {
    display: none;
  }

  .btn-lang-switch.lang-minify-mobile .lang-iso {
    display: inline;
  }
}

@media (min-width: 1024px) {
  .navbar__inner {
    height: 80px;
  }
}

.navbar__logo img {
  height: 38px;
  width: auto;
  margin-top: 8px;
}

@media (min-width: 1024px) {
  .navbar__logo img {
    height: 48px;
  }
}

.navbar__links {
  display: none;
  align-items: center;
  gap: 1rem;
  list-style: none;
}

@media (min-width: 1024px) {
  .navbar__links {
    display: flex;
  }
}

.navbar__links a {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #ffffff;
  transition: color 0.3s ease;
}

.navbar__links a:hover {
  color: var(--foreground);
}

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

.navbar .btn-book-nav {
  display: none;
  align-items: center;
  padding: 0.4rem 1.2rem;
  background: #ffffff;
  color: #000000;
  font-size: 0.75rem;
  border-radius: 100px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
  transition: background 0.3s ease;
}

.navbar .btn-book-nav:hover {
  background: rgba(60, 60, 60, 0.9);
}

@media (min-width: 640px) {
  .navbar .btn-book-nav {
    display: inline-flex;
  }
}

.navbar__hamburger {
  display: flex;
  align-items: center;
  justify-content: center;
  color #ffffff;
}

@media (min-width: 1024px) {
  .navbar__hamburger {
    display: none;
  }
}

.navbar__hamburger svg {
  width: 24px;
  height: 24px;
  stroke: #ffffff;
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  background: var(--background);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease, opacity 0.4s ease;
  opacity: 0;
}

.mobile-menu.open {
  display: block;
  max-height: 500px;
  opacity: 1;
}

.mobile-menu__inner {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-menu__inner a {
  font-size: 0.875rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted-foreground);
  transition: color 0.3s ease;
}

.mobile-menu__inner a:hover {
  color: var(--foreground);
}

.mobile-menu__inner .btn-book-mobile {
  margin-top: 0.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  background: var(--foreground);
  color: var(--background);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
}


/* =====================
   HERO
   ===================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--secondary);
}

@media (min-width: 1024px) {
  .hero {
    align-items: center;
  }
}

.hero__bg {
  position: absolute;
  inset: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% 19% !important;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.2) 60%, transparent 100%);
}

.hero__overlay-mobile {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.4) 0%, transparent 60%);
}

@media (min-width: 1024px) {
  .hero__overlay-mobile {
    display: none;
  }
}

.hero__content {
  position: relative;
  z-index: 10;
  width: 100%;
  padding-bottom: 5rem;
  padding-top: 12rem;
}

@media (min-width: 1024px) {
  .hero__content {
    padding-bottom: 0;
  }
}

.hero__text {
  max-width: 36rem;
}

.hero__title {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: #ffffff;
}

.hero__title strong {
  font-weight: 600;
}

.hero__subtitle {
  margin-top: 3rem;
  font-size: 1.05rem;
  color: #ffffff;
  line-height: 1.7;
  max-width: 20rem;
}

.hero-optimized-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Ajuste de enfoque (object-position) para Desktop */
@media (min-width: 769px) {
  .hero-optimized-img {
    object-position: 70% 50%;
  }
}

/* Ajuste de enfoque (object-position) para Mobile */
@media (max-width: 768px) {
  .hero-optimized-img {
    object-position: 30% 20%;
  }
}

@media (min-width: 1024px) {
  .hero__subtitle {
    font-size: 1.125rem;
  }
}

.hero__cta {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 640px) {
  .hero__cta {
    flex-direction: row;
  }
}

/* =====================
   BUTTONS
   ===================== */
.btn-primary,
.form-primary button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  background: var(--foreground);
  color: var(--background);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  transition: background 0.3s ease;
}

.btn-primary:hover {
  background: rgba(60, 60, 60, 0.9);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  border: 1px solid var(--foreground);
  color: var(--foreground);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  transition: background 0.3s ease, color 0.3s ease;
}

.btn-outline:hover {
  background: var(--foreground);
  color: var(--background);
}

.btn-outline-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.5rem;
  border: 1px solid rgba(255, 255, 255, 1);
  color: #ffffff;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  transition: background 0.3s ease, color 0.3s ease;
}

.btn-outline-light:hover {
  background: #ffffff;
  color: var(--foreground);
}

/* =====================
   SECTION COMMON
   ===================== */
.section {
  padding: 3.5rem 0;
}

@media (min-width: 1024px) {
  .section {
    padding: 5rem 0;
  }
}

.section--bg-secondary {
  background: var(--secondary);
}

.section--bg-foreground {
  background: var(--foreground);
  color: #ffffff;
}

.section__heading {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--foreground);
}

.section__heading strong {
  font-weight: 600;
}

.section__heading--light {
  color: #ffffff;
}

.section__subtext {
  margin-top: 1.5rem;
  color: var(--muted-foreground);
  line-height: 1.7;
  max-width: 36rem;
}

/* =====================
   ABOUT
   ===================== */
.about {
  background: var(--background);
}

.about__grid {
  display: grid;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .about__grid {
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
  }
}

.about__title {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--foreground);
}

.about__title strong {
  font-weight: 600;
}

.about__body {
  margin-top: 2rem;
  color: var(--muted-foreground);
  line-height: 1.7;
}

.about__img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.about__list {
  margin-top: 2rem;
}

.about__list-item {
  border-bottom: 1px solid var(--border);
  padding: 0.875rem 0;
}

.about__list-item p {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--foreground);
}

/* =====================
   SERVICES
   ===================== */
.services {
  background: var(--secondary);
}

.services__grid {
  display: grid;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 1024px) {
  .services__grid {
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
  }
}

.services__title {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--foreground);
}

.services__title strong {
  font-weight: 600;
}

.services__body {
  margin-top: 2rem;
  color: var(--muted-foreground);
  line-height: 1.7;
}

.services__body--small {
  margin-top: 1.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.services__list {
  max-width: 36rem;
}

.services__list-item {
  border-bottom: 1px solid var(--border);
  padding: 1.25rem 0;
}

.services__list-item p {
  font-size: 0.875rem;
  color: var(--foreground);
  line-height: 1.6;
}

/* =====================
   PROCESS
   ===================== */
.process {
  background: var(--foreground);
  color: #ffffff;
}

.process__grid {
  display: grid;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .process__grid {
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
  }
}

.process__img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
}

.process__title {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 300;
  line-height: 1.15;
  color: #ffffff;
}

.process__title strong {
  font-weight: 600;
}

.process__intro {
  margin-top: 1.5rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  margin-bottom: 3rem;
}

.process__steps {
  display: grid;
  gap: 2rem;
}

.process__step-num {
  font-size: 3rem;
  font-weight: 200;
  color: rgba(255, 255, 255, 0.2);
  line-height: 1;
}

.process__step-title {
  margin-top: 0.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #ffffff;
}

.process__step-desc {
  margin-top: 0.5rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
}

/* =====================
   PRICING
   ===================== */
.pricing {
  background: var(--background);
}

.pricing__header {
  text-align: center;
  margin-bottom: 4rem;
}

.pricing__title {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--foreground);
}

.pricing__title strong {
  font-weight: 600;
}

.pricing__subtitle {
  margin-top: 1.5rem;
  color: var(--muted-foreground);
  max-width: 28rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.pricing__grid {
  display: grid;
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .pricing__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pricing__card {
  padding: 2rem 2.5rem;
  border: 1px solid var(--border);
  background: var(--background);
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s ease;
}

.pricing__card:hover {
  border-color: rgba(60, 60, 60, 0.3);
}

.pricing__card--featured {
  border-color: var(--foreground);
  background: var(--foreground);
  color: #ffffff;
}

.pricing__card-label {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted-foreground);
}

.pricing__card--featured .pricing__card-label {
  color: rgba(255, 255, 255, 0.5);
}

.pricing__card-price {
  margin-top: 1rem;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--foreground);
}

.pricing__card--featured .pricing__card-price {
  color: #ffffff;
}

.pricing__card-desc {
  margin-top: 1.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.7;
  flex-grow: 1;
}

.pricing__card--featured .pricing__card-desc {
  color: rgba(255, 255, 255, 0.7);
}

.pricing__card-note {
  margin-top: 1rem;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--muted-foreground);
}

.pricing__card--featured .pricing__card-note {
  color: rgba(255, 255, 255, 0.5);
}

.pricing__card-btn {
  margin-top: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  transition: background 0.3s ease, color 0.3s ease;
  background: var(--foreground);
  color: var(--background);
}

.pricing__card-btn:hover {
  background: rgba(60, 60, 60, 0.9);
}

.pricing__card--featured .pricing__card-btn {
  background: var(--background);
  color: var(--foreground);
}

.pricing__card--featured .pricing__card-btn:hover {
  background: rgba(255, 255, 255, 0.9);
}

/* =====================
   RESULTS
   ===================== */
.results {
  background: var(--secondary);
}

.results__grid {
  display: grid;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .results__grid {
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
  }
}

.results__img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  height: auto !important;
}

.results__title {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--foreground);
}

.results__title strong {
  font-weight: 600;
}

.results__body {
  margin-top: 1.5rem;
  color: var(--muted-foreground);
  line-height: 1.7;
}

.results__testimonial {
  margin-top: 2.5rem;
  padding-left: 1.5rem;
  border-left: 2px solid rgba(60, 60, 60, 0.2);
}

.results__stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 0.75rem;
}

.results__stars svg {
  width: 16px;
  height: 16px;
  fill: var(--foreground);
  color: var(--foreground);
}

.results__quote {
  font-style: italic;
  color: rgba(60, 60, 60, 0.8);
  line-height: 1.7;
}

.results__name {
  margin-top: 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--foreground);
}

/* =====================
   TESTIMONIALS
   ===================== */
.testimonials {
  background: var(--foreground);
  color: #ffffff;
  padding: 4rem 0;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .testimonials {
    padding: 6rem 0;
  }
}

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

.testimonials__title {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 300;
  line-height: 1.15;
  color: #ffffff;
}

.testimonials__title strong {
  font-weight: 600;
}

.testimonials__carousel {
  position: relative;
  max-width: 48rem;
  margin: 0 auto;
}

.testimonials__slide {
  text-align: center;
  display: none;
}

.testimonials__slide.active {
  display: block;
}

.testimonials__stars {
  display: flex;
  justify-content: center;
  gap: 0.25rem;
  margin-bottom: 2rem;
}

.testimonials__stars svg {
  width: 16px;
  height: 16px;
  fill: #ffffff;
  color: #ffffff;
}

.testimonials__quote {
  font-size: 1rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.75;
  margin-bottom: 2.5rem;
}

@media (min-width: 1024px) {
  .testimonials__quote {
    font-size: 1.25rem;
  }
}

.testimonials__name {
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 1.5rem;
}

.testimonials__tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.testimonials__tag {
  font-size: 0.625rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.375rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.5);
}

.testimonials__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 3rem;
}

.testimonials__nav-btn {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: background 0.3s ease;
  cursor: pointer;
}

.testimonials__nav-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}

.testimonials__nav-btn svg {
  width: 16px;
  height: 16px;
}

.testimonials__dots {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.testimonials__dot {
  width: 6px;
  height: 6px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: width 0.3s ease, background 0.3s ease;
  border: none;
}

.testimonials__dot.active {
  background: #ffffff;
  width: 24px;
}

/* =====================
   FOOTER
   ===================== */
.footer {
  background: var(--foreground);
  color: #ffffff;
}

.footer__cta {
  padding: 5rem 0 7rem;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__cta-title {
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 300;
  color: #ffffff;
  line-height: 1.15;
}

.footer__cta-title strong {
  font-weight: 600;
}

.footer__cta-btn {
  margin-top: 2.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.5rem;
  border: 1px solid #ffffff;
  color: #ffffff;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  transition: background 0.3s ease, color 0.3s ease;
  border-radius: 999px;
}

.footer__cta-btn:hover {
  background: #ffffff;
  color: var(--foreground);
}

.footer__grid {
  display: grid;
  gap: 3rem;
  padding: 4rem 0;
}

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

@media (min-width: 1024px) {
  .footer__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.sesami-info {
  color: black;
}

.footer__logo img {
  height: 40px;
  width: auto;
  filter: invert(1);
}

.footer__tagline {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer__col-title {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 1rem;
}

.footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer__links a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.3s ease;
}

.footer__links a:hover {
  color: #ffffff;
}

.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer__contact a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.3s ease;
}

.footer__contact a:hover {
  color: #ffffff;
}

.footer__contact svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.footer__address {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

.footer__address svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer__appt {
  margin-top: 0.75rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

@media (min-width: 640px) {
  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer__bottom p {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.3);
}

.numbered-grid {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 4rem;
  align-items: start;
}

@media (max-width: 768px) {
  .hero__bg img {
    object-position: 30% 20% !important;
  }

  .numbered-grid {
    grid-template-columns: 1fr !important;
    gap: 0.5rem !important;
  }

  .numbered-grid>span:first-child {
    font-size: 4rem !important;
    margin-bottom: 0 !important;
  }
}

html,
body {
  overflow-x: hidden !important;
}

.hero-img-mobile {
  display: none;
}

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

  .hero-img-mobile {
    display: block;
    object-position: 30% 10% !important;
  }
}

.hero .btn-primary {
  background: #ffffff !important;
  color: #000000 !important;
}

.hero .btn-outline {
  border-color: #ffffff !important;
  color: #ffffff !important;
}

.hero .btn-outline:hover {
  background: #ffffff !important;
  color: #000000 !important;
}

@media (min-width: 1024px) {
  .navbar__logo img {
    margin-top: 8px;
  }
}

.btn-primary {
  border-radius: 999px;
}

.btn-outline {
  border-radius: 999px;
}

.btn-outline-light {
  border-radius: 999px;
}

.pricing__card-btn {
  border-radius: 999px;
}

.btn-primary,
.btn-outline,
.btn-outline-light,
.pricing__card-btn {
  border-radius: 999px;
}

a.btn-primary,
a.btn-outline,
a.btn-outline-light {
  border-radius: 999px;
}

section a[href],
section button {
  border-radius: 999px;
}


.blvd-booking-widget {
  left: -1px !important;

}

.navbar .btn-book-nav:hover {
  color: white;
}

.navbar.scrolled .btn-book-nav:hover {
  color: white !important;
}

.page-hero-full {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .page-hero-full {
    align-items: center;
  }
}

.page-hero-full__bg {
  position: absolute;
  inset: 0;
}

.page-hero-full__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.page-hero-full__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.25) 60%, transparent 100%);
}

.page-hero-full__content {
  position: relative;
  z-index: 10;
  width: 100%;
  padding: 10rem 0 5rem;
}

.page-hero-full__title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 300;
  line-height: 1.1;
  color: #ffffff;
}

.page-hero-full__subtitle {
  margin-top: 1.5rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  max-width: 480px;
  font-size: 1.05rem;
}

.white-logo {
  display: block !important;
}

.dark-logo {
  display: none !important;
}

.navbar.scrolled .white-logo {
  display: none !important;
}

.navbar.scrolled .dark-logo {
  display: block !important;
}

.navbar.scrolled .navbar__links a {
  color: var(--muted-foreground) !important;
}

.navbar.scrolled .btn-book-nav {
  background: var(--foreground) !important;
  color: #ffffff !important;
}

.navbar.scrolled .navbar__hamburger {
  color: var(--foreground) !important;
}

.navbar.scrolled .navbar__hamburger svg {
  stroke: var(--foreground) !important;
}

.page-hero-full__title,
.page-hero-full__subtitle {
  opacity: 1 !important;
  transform: none !important;
}

@media (max-width: 768px) {
  .page-hero-full {
    min-height: 92vh !important;
  }

  .page-hero-full__content {
    padding-bottom: 8rem !important;
  }
}

@media (max-width: 768px) {
  .process-hero-img {
    object-position: 30% center !important;
  }
}

@media(max-width: 420px) {

  .white-logo,
  .dark-logo {
    width: 100px;
  }

}

.navbar__icons .header-actions__action {
  background-color: transparent;
  color: white;
  position: relative;
  padding-right: 4px;
}

.scrolled .navbar__icons .header-actions__action {
  background-color: transparent;
  color: var(--foreground);
}

/* Language switcher */
.btn-lang-switch {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  background: transparent;
  color: #ffffff;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
  border: 1px solid #ffffff;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
  margin-right: 0;
}

.btn-lang-switch:hover {
  background: #ffffff;
  color: #000000;
}

.navbar.scrolled .btn-lang-switch {
  color: var(--foreground);
  border-color: var(--foreground);
}

.navbar.scrolled .btn-lang-switch:hover {
  background: var(--foreground);
  color: #ffffff;
}

@media (min-width: 640px) {
  .btn-lang-switch {
    display: inline-flex;
  }
}


/*  cart-drawer style */


.header {
  --account-offset-top: calc(var(--header-group-height) + (var(--header-height) * var(--transparent-header-offset-boolean)));

  &[data-sticky-state='active'] {
    --account-offset-top: calc(var(--header-height) - 1px);
  }
}

.account-button {
  /* Remove the background color from the color scheme, we want to inherit the color of the header */
  background: transparent;
}

.account-button__icon,
.account-button__text {
  color: var(--color-account-icon);
  transition: color var(--header-content-transition-timing);
  -webkit-font-smoothing: antialiased;
}

shopify-account {
  --shopify-account-font-heading: var(--font-heading--family);
  --shopify-account-font-heading-weight: var(--font-heading--weight);
  --shopify-account-font-body: var(--font-body--family);
  --shopify-account-font-body-weight: var(--font-body--weight);
  --shopify-account-radius-base: var(--style-border-radius-popover);
  --shopify-account-radius-button: var(--style-border-radius-buttons-primary);
  --shopify-account-radius-button-small: var(--style-border-radius-buttons-primary);
  --shopify-account-radius-input: var(--style-border-radius-buttons-primary);
  --shopify-account-color-background: var(--color-background);
  --shopify-account-color-text: var(--color-foreground);
  --shopify-account-color-accent: var(--color-primary-button-background);
  --shopify-account-color-accent-text: var(--color-primary-button-text);
  --shopify-account-dialog-position-top: var(--account-offset-top);

  &:not(:defined) {
    min-width: 44px;
    height: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
    /* Match the line height of the other buttons */
    line-height: normal;
  }
}

.account-button__fallback {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: var(--shopify-account-color-accent, #0a142f);
}

.account-button--text shopify-account {
  color: inherit;
}


.shopify-section.cart-drawer-section {
  height: 0 !important;
}

.cart-drawer {
  --cart-drawer-padding: var(--padding-xl) var(--padding-xl);
  --cart-drawer-padding-desktop: var(--padding-xl) var(--padding-2xl);

  @media screen and (min-width: 750px) {
    margin-inline-end: calc(var(--gap-xs) * -1);
  }
}

@media screen and (min-width: 750px) {
  .cart-drawer--text {
    display: flex;
    align-items: center;
  }
}

.cart-drawer__dialog {
  position: fixed;
  overflow: hidden;
  border-radius: 0;
  width: 100%;
  height: 100%;
  margin: 0 0 0 auto;
  padding: 0;
  border-left: var(--style-border-drawer);
  box-shadow: var(--shadow-drawer);
  background-color: var(--color-background);

  @media screen and (min-width: 750px) {
    width: var(--sidebar-width);
    max-width: 95vw;
  }
}

/* Needed to ensure the drawer is full height */
.cart-drawer__dialog:modal {
  max-height: 100dvh;
  overflow-y: hidden;
}

.cart-drawer__inner {
  height: 100%;
  overflow: hidden;
}

.cart-drawer__content {
  height: calc(100% - var(--header-height));
  display: flex;
  flex-direction: column;
  padding: 0;
  background-color: var(--color-background);
  flex-grow: 1;
  overflow-y: auto;
}

.cart-drawer__heading {
  display: flex;
  align-items: center;
  gap: var(--gap-xs);
  margin-bottom: 0;
}

.cart-drawer__close-button {
  margin-right: calc(var(--padding-sm) * -1);
  top: var(--margin-sm);

  @media screen and (max-width: 749px) {
    top: var(--margin-2xs);
  }
}

.cart-drawer--empty .cart-drawer__content {
  text-align: center;
  min-height: auto;
}

.cart-drawer--empty .cart-drawer__heading {
  margin-bottom: var(--margin-md);
}

.cart-drawer__items .cart-items__table-row {
  padding-bottom: var(--gap-xl);
  border-bottom: var(--style-border-width) solid var(--color-border);
  margin-bottom: var(--gap-xl);
}

.cart-drawer__items .cart-items__table-row:has(+ .cart-items__nested-line) {
  border-bottom: none;
  margin-bottom: 0;
}

.cart-drawer__items .cart-items__table-row:last-child {
  border-bottom: none;
}

.cart-drawer__summary {
  --cart-drawer-summary-padding: var(--padding-lg);

  position: sticky;
  bottom: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--gap-xl);
  padding: var(--cart-drawer-summary-padding);
  margin-top: auto;
  background-color: var(--color-background);
  /* stylelint-disable-next-line color-named */
  mask-image: linear-gradient(to bottom, transparent, black var(--cart-drawer-summary-padding));

  @media screen and (min-width: 750px) {
    --cart-drawer-summary-padding: var(--padding-2xl);
  }
}

.cart-drawer__dialog[cart-summary-sticky='false'] .cart-drawer__summary {
  position: static;
  mask-image: none;
}

.cart-drawer__dialog[cart-summary-sticky='false'] .cart-drawer__items {
  overflow: unset;
}

.cart-actions summary {
  padding-inline: 0;
  padding-block: var(--padding-sm);
  line-height: 1.2;
  min-height: var(--minimum-touch-target);
}

.cart-drawer__summary .cart__summary-totals:not(:has(.cart__subtotal-container:empty)) {
  border-block-start: var(--style-border-width) solid var(--color-border);
  padding-block-start: var(--padding-2xl);
}

.cart-drawer__summary .cart-note {
  @media screen and (min-width: 750px) {
    margin-block-start: var(--margin-3xs);
  }
}

.cart-drawer__heading--empty {
  display: flex;
  justify-content: center;
}

.cart-drawer__items {
  display: flex;
  flex-direction: column;
  padding-inline: var(--cart-drawer-padding);
  overflow-y: auto;

  @media screen and (min-width: 750px) {
    padding-inline: var(--cart-drawer-padding-desktop);
  }
}

.cart-drawer__items .cart-items__table-row {
  padding-bottom: var(--gap-xl);
  border-bottom: var(--style-border-width) solid var(--color-border);
  margin-bottom: var(--gap-xl);
}

.cart-drawer__items .cart-items__table-row:last-child {
  border-bottom: none;
  padding-block-end: 0;
  margin-block-end: 0;
}

.cart-drawer--empty .cart-drawer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100dvh;
  margin-top: 0;
}

.cart-drawer:not(:has(.cart-form)) .cart-drawer__content {
  justify-content: center;
}

.cart-drawer__header {
  background-color: var(--color-background);
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: var(--cart-drawer-padding);
  border-bottom: var(--style-border-width) solid none;
  position: sticky;
  top: 0;
  z-index: 1;

  @media screen and (min-width: 750px) {
    padding-inline: var(--cart-drawer-padding-desktop);
  }
}

.cart-drawer--empty .cart-drawer__header {
  justify-content: right;
  border-bottom: none;
  padding-bottom: 0;
}

.cart-drawer--empty .cart-drawer__heading {
  text-align: center;
}

header-actions {
  display: flex;

  @media screen and (max-width: 749px) {
    justify-self: flex-end;
  }
}

@media screen and (min-width: 750px) {
  .header-actions--text {
    gap: var(--gap-xl);
  }

  .header-actions__text-style {
    font-size: var(--header-actions-font-size);
    font-family: var(--header-actions-font-family);
    font-weight: var(--header-actions-font-weight);
    text-transform: var(--header-actions-text-case);
  }
}

#header-component[data-menu-style='drawer'] header-actions {
  justify-self: flex-end;
}

.header__column--right header-actions {
  margin-inline-start: calc(var(--gap-md) * -1);
}

.header-actions__cart-icon {
  --cart-bubble-size: 12px;
  --cart-bubble-top: 0.5px;
  --cart-bubble-right: 0.5px;
  position: static;
}

.header-actions__cart-icon .cart-bubble {
  position: absolute;
  width: var(--cart-bubble-size, 20px);
  top: var(--cart-bubble-top);
  right: var(--cart-bubble-right);
}

@media screen and (min-width: 750px) {
  .header-actions__cart-icon--text.header-actions__cart-icon .cart-bubble {
    position: relative;
    top: 0;
  }
}

.cart-drawer__heading .cart-bubble {
  width: fit-content;
  border-radius: var(--style-border-radius-buttons-primary);
  aspect-ratio: auto;
  padding: var(--cart-padding);
}

.cart-drawer__heading .cart-bubble[data-maintain-ratio] {
  width: min(1lh, 22px);
  height: min(1lh, 22px);
}

.header-actions__cart-icon .cart-bubble__text,
.cart-drawer__heading .cart-bubble__text {
  font-family: var(--font-paragraph--family);
  font-weight: var(--font-paragraph--weight);
}

.header-actions__cart-icon.header-actions__cart-icon--has-cart svg {
  /* Create donut mask where the cart bubble sits */
  mask: radial-gradient(calc(var(--cart-bubble-size) + 2px) at calc(100% - var(--cart-bubble-right)) var(--cart-bubble-top),
      transparent 45.45%,
      #fff 45.45%,
      #fff 100%);
}

.cart-drawer__heading .cart-bubble .cart-bubble__background {
  background-color: rgb(var(--color-foreground-rgb) / var(--opacity-10-25));
}

.cart-drawer__heading .cart-bubble__text {
  color: var(--color-foreground);
  font-size: clamp(var(--font-size--3xs), 0.75em, var(--font-size--xs));
}

.cart-bubble.cart-bubble--animating .cart-bubble__background {
  animation: grow var(--animation-speed) var(--animation-easing);
}

.cart-bubble--animating .cart-bubble__text {
  --start-y: -1em;
  --start-opacity: 1;
  /* Set initial transform state before animation starts */
  transform: translate(0, var(--start-y, -1em));
  opacity: var(--start-opacity, 1);
  animation: move-and-fade var(--animation-speed) var(--animation-easing);
}

cart-icon:has(.cart-bubble__text-count:empty) {
  --cart-bubble-size: 10px;
  --cart-bubble-top: 9px;
  --cart-bubble-right: 9px;

  .svg-wrapper {
    --cart-bubble-top: 4px;
    --cart-bubble-right: 4px;
  }
}

@media screen and (min-width: 750px) {
  cart-icon.header-actions__cart-icon--text:has(.cart-bubble__text-count:empty) {
    --cart-bubble-right: 2.5px;
  }
}

@media screen and (prefers-reduced-motion: no-preference) {
  html:active-view-transition-type(empty-cart-drawer) {
    .cart-drawer__close-button {
      view-transition-name: cart-drawer-close-button;
    }
  }
}

:active-view-transition {

  .cart-drawer__header,
  .cart-drawer__content {
    background: transparent;
  }
}

::view-transition-old(cart-drawer-content) {
  transform-origin: 50% 33%;
  animation: cart-contents-old var(--spring-d280-b0-duration) var(--spring-d280-b0-easing) forwards;
}

::view-transition-new(cart-drawer-content) {
  transform-origin: top center;
  animation: cart-contents-new var(--spring-d280-b0-duration) var(--spring-d280-b0-easing) forwards;
}

@keyframes cart-contents-old {
  to {
    scale: 0.92;
    opacity: 0;
  }
}

@keyframes cart-contents-new {
  from {
    scale: 1.05;
    translate: 0 128px;
    filter: blur(1px);
    opacity: 0;
  }
}

.header-actions__text {
  display: flex;
  align-items: center;
}

@media screen and (min-width: 750px) {
  .header-actions__cart-icon--text {
    display: flex;
    align-items: center;
    gap: var(--gap-xs);
  }

  .header__column--right .header-actions--text {
    margin-inline-start: 0;
  }
}



/* --- ESTILOS BASE DEL MODAL --- */
.m1-dialog {
  border: none;
  padding: 0;
  background: transparent;
  max-width: 600px;
  width: 95%;
  margin: auto;
}

.m1-dialog::backdrop {
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
}

.m1-dialog-inner {
  background-color: #ffffff;
  padding: 35px 25px;
  position: relative;
  border: 1px solid var(--foreground, #232323);
  border-radius: 16px;
}

.m1-dialog-close {
  position: absolute;
  top: 12px;
  right: 15px;
  background: none;
  border: none;
  font-size: 28px;
  font-weight: 300;
  color: var(--foreground, #232323);
  cursor: pointer;
  transition: opacity 0.2s;
  line-height: 1;
}

.m1-dialog-close:hover {
  opacity: 0.6;
}

/* --- SISTEMA DE GRID --- */
.m1-dialog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.m1-width-full {
  grid-column: span 2;
}

.m1-width-half {
  grid-column: span 1;
}

/* --- TARJETAS BASE --- */
.m1-card {
  border: 1px solid var(--foreground, #232323);
  background-color: #ffffff;
  border-radius: 12px;
  transition: all 0.3s ease;
  overflow: hidden;
}

.m1-card-title,
.m1-card-subtitle {
  margin: 0;
  text-transform: uppercase;
  font-weight: 300;
  color: var(--foreground, #232323);
  transition: color 0.3s ease;
}

.m1-card-title {
  font-size: 1rem;
  letter-spacing: 0.5px;
}

.m1-card-subtitle {
  font-size: 0.75rem;
  opacity: 0.7;
}

/* --- BOTONES BASE --- */
.m1-card-btn {
  display: inline-block;
  text-align: center;
  background-color: var(--foreground, #232323);
  color: #ffffff;
  border: 1px solid var(--foreground, #232323);
  text-transform: uppercase;
  font-weight: 300;
  letter-spacing: 1px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* --- LAYOUT HORIZONTAL (FULL WIDTH) --- */
.m1-card-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  gap: 16px;
}

.m1-card-price-row {
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--foreground, #232323);
  transition: color 0.3s ease;
  white-space: nowrap;
}

.m1-card-text-row {
  flex-grow: 1;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.m1-btn-pill {
  border-radius: 50px !important;
  padding: 8px 20px;
  font-size: 0.8rem;
  white-space: nowrap;
}

/* --- LAYOUT VERTICAL (HALF WIDTH) --- */
.m1-card-col {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.m1-card-col .m1-card-content {
  padding: 20px;
}

.m1-card-col .m1-card-title {
  margin-bottom: 4px;
}

.m1-card-col .m1-card-subtitle {
  margin-bottom: 12px;
}

.m1-card-price {
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--foreground, #232323);
  transition: color 0.3s ease;
}

.m1-card-col .m1-card-btn {
  width: 100%;
  padding: 12px 16px;
  border-radius: 0 0 10px 10px;
  border-left: none;
  border-right: none;
  border-bottom: none;
}

/* --- DISCLAIMER --- */
.m1-card-disclaimer {
  font-size: 0.65rem;
  color: var(--foreground, #232323);
  opacity: 0.45;
  line-height: 1.5;
  letter-spacing: 0.02em;
  padding: 0px 16px 10px;
  margin: 0;
}

.m1-card:hover .m1-card-disclaimer {
  opacity: 0.35;
  color: #ffffff;
}

/* --- EFECTO HOVER (InversiÃ³n) --- */
.m1-card:hover {
  background-color: var(--foreground, #232323);
}

.m1-card:hover .m1-card-title,
.m1-card:hover .m1-card-price,
.m1-card:hover .m1-card-price-row {
  color: #f0f0f0;
}

.m1-card:hover .m1-card-subtitle {
  color: #b0b0b0;
}

.m1-card:hover .m1-card-btn {
  background-color: #ffffff;
  color: var(--foreground, #232323);
}

/* --- SEPARADORES --- */
.m1-separator {
  display: flex;
  align-items: center;
  text-align: center;
  color: var(--foreground, #232323);
  text-transform: uppercase;
  font-weight: 300;
  font-size: 0.85rem;
  letter-spacing: 1px;
  margin: 8px 0;
}

.m1-separator::before,
.m1-separator::after {
  content: '';
  flex: 1;
  border-bottom: 1px solid var(--foreground, #232323);
}

.m1-separator span:not(:empty) {
  padding: 0 16px;
}

/* --- RESPONSIVE MOBILE --- */
@media (max-width: 768px) {
  .m1-width-half {
    grid-column: span 2;
  }

  .m1-card-row {
    flex-wrap: wrap;
  }
}