html {
  --safe-area-inset-bottom: env(safe-area-inset-bottom, 0px);
  scrollbar-gutter: auto;
}

html.mobile-nav-open,
body.mobile-nav-open {
  overflow: hidden;
  overscroll-behavior: none;
}

body.mobile-nav-open {
  position: fixed;
  left: 0;
  right: 0;
  width: 100%;
}

.page,
.page * {
  box-sizing: border-box;
}

/* ========== LAYOUT ISOLATION PATTERN ==========
   Contenedor que se blinda contra nodos inyectados por extensiones del browser
   (correctores, traductores, password managers, etc.). Solo hijos marcados con
   [data-slot] participan del layout; cualquier otro nodo queda fuera de flujo.

   Uso:
     <section class="section layout-isolated">
       <div class="contact-us-content" data-slot>...</div>
     </section>

   No depende de nombres de extensión — contrato explícito: "en este contenedor,
   solo los slots declarados cuentan". */
.layout-isolated {
  contain: layout;
  isolation: isolate;
}

.layout-isolated > :not([data-slot]) {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.page {
  display: flex;
  flex-direction: column;
  gap: 0px;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  overflow: hidden;
  min-height: auto;
}

.home .page{
  min-height: 500px;
  background: var(--radial-gradientDark);
  background-repeat: no-repeat;
  background-size: cover;
}
.about-us .page {
  min-height: 500px;
  background: var(--linear-gradientDark);
  background-repeat: no-repeat;
  background-size: cover;
}

.home .page,
.about-us .page {
  min-height: 100vh;
}

.contact-us .page {
  min-height: 100vh;
}

a,
button,
input,
select,
h1,
h2,
h3,
h4,
h5,
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: none;
  text-decoration: none;
  background: none;
  -webkit-font-smoothing: antialiased;
}

menu,
ol,
ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}


/* ========== APP BANNER SECTION ========== */

.app-banner-wrapper {
  position: fixed;
  bottom: calc(16px + var(--safe-area-inset-bottom));
  left: 50%;
  transform: translateX(-50%);
  width: min(852px, calc(100% - 32px));
  padding: 0;
  z-index: 97;
}

.app-desktop-banner-section {
  display: none;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  overscroll-behavior: none;
  width: 100%;
  margin: 0 auto;
  padding: 16px 24px;
  gap: 16px;
  border-radius: 24px;
  /* The glass layer is applied via ::before to allow a single blur pass */
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

/* Shared glass layer for desktop banner */
.app-desktop-banner-section::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 24px;
  background: rgba(41, 57, 89, 0.60);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  z-index: 0;
  pointer-events: none;
}

.app-desktop-banner-section > * {
  position: relative;
  z-index: 1;
}

.app-mobile-banner-section {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overscroll-behavior: none;
  width: 100%;
  margin: 0 auto;
  padding: 16px 24px;
  gap: 16px;
  border-radius: 24px;
  /* The glass layer is applied via ::before to allow a single blur pass */
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

/* Shared glass layer for mobile banner */
.app-mobile-banner-section::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 24px;
  background: rgba(41, 57, 89, 0.60);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  z-index: 0;
  pointer-events: none;
}

.app-mobile-banner-section > * {
  position: relative;
  z-index: 1;
}

.app-mobile-banner-section .banner-main {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-align: center;
}

.app-mobile-banner-section .banner-content {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
}

.app-mobile-banner-section .app-mobile-banner-store-links {
  justify-content: center;
}

.app-mobile-banner-section .btn--app-banner {
  align-self: center;
}

.app-logo {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  object-fit: cover;
  flex-shrink: 0;
}

.banner-main {
  display: flex;
  align-items: center;
  flex: 1 1 auto;
  min-width: 0;
}

.banner-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex: 1 1 auto;
  min-width: 0;
}

.banner-content h5 {
  margin: 0;
  color: var(--light-onSecondary);
  font-family: var(--title-title-small-font-family);
  font-size: var(--title-title-small-font-size);
  line-height: var(--title-title-small-line-height);
  font-weight: var(--title-title-small-font-weight);
}

.banner-content .app-desktop-banner-store-links,
.app-desktop-banner-store-links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  padding-left: 8px;
}

.app-mobile-banner-store-links {
  display: flex;
  align-items: center;
}

.app-mobile-platform-store-badge {
  display: block;
  height: 40px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.app-mobile-platform-store-badge[data-locale-badge='app-store'] {
  width: 120px;
}

.app-mobile-platform-store-badge[data-locale-badge='google-play'] {
  width: 135px;
}

.app-desktop-banner-store-links .app-store-badge {
  width: 120px;
  height: 40px;
}

.app-desktop-banner-store-links .google-play-badge {
  width: 135px;
  height: 40px;
}

/* ========== COOKIES SNACKBAR ========== */

.cookies-snackbar {
  position: fixed;
  bottom: calc(24px + var(--safe-area-inset-bottom));
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  display: none;
  overscroll-behavior: none;
  width: 852px;
  padding: 16px 24px;
  border-radius: 24px;
  align-items: center;
  gap: 32px;
  /* The glass layer is applied via ::before to allow a single blur pass */
  isolation: isolate;
  overflow: hidden;
}

/* Shared glass layer: same blur/color for snackbar and button */
.cookies-snackbar::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 24px;
  background: rgba(41, 57, 89, 0.60);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  z-index: 0;
  pointer-events: none;
}

/* All content lives above the glass layer */
.cookies-snackbar > * {
  position: relative;
  z-index: 1;
}

.cookies-snackbar .cookies-left-content {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 0 0 auto;
}

.cookies-snackbar img {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}

.cookies-snackbar .cookies-text {
  font-family: var(--body-body-large-font-family);
  font-size: var(--body-body-large-font-size);
  line-height: var(--body-body-large-line-height);
  letter-spacing: var(--body-body-large-letter-spacing);
  font-weight: var(--body-body-large-font-weight);
  color: rgba(255, 255, 255, 0.60);
}

.cookies-snackbar .cookies-text a.btn--learn-more {
  display: inline;
  background: transparent;
  border: 0;
  cursor: pointer;
  color: var(--fixed-onSecondaryFixed);
  font-family: inherit;
  font-size: inherit;
  font-weight: var(--label-label-large-font-weight);
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
  transition: text-decoration 0.2s ease;
}

.cookies-snackbar .cookies-text a.btn--learn-more:hover,
.cookies-snackbar .cookies-text a.btn--learn-more:focus-visible {
  text-decoration: underline;
}

.cookies-snackbar .cookies-text a.btn--learn-more:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 2px;
}

.cookies-snackbar .cookies-right-actions {
  display: flex;
  flex-shrink: 0;
  margin-left: auto;
}

/* Mobile: full width with padding, centered */
@media (max-width: 1080px) {
  .cookies-snackbar {
    width: calc(100% - 32px);
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    bottom: calc(16px + var(--safe-area-inset-bottom));
    padding: 28px 16px;
    gap: 16px;
    flex-direction: column;
  }

  .cookies-snackbar .cookies-left-content {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }

  .cookies-snackbar .cookies-text {
    text-align: center;
  }

  /* Mobile: centered button with intrinsic width */
  .cookies-snackbar .cookies-right-actions {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  /* Desktop app banner stacked vertically on narrow viewports */
  .app-desktop-banner-section {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .app-desktop-banner-section .banner-content {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
  }

  .app-desktop-banner-section .banner-content h5 {
    margin-bottom: 12px;
  }

  /* Badges always stay in a row regardless of banner layout */
  .app-desktop-banner-store-links {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 16px;
  }

  .app-desktop-banner-section .btn--app-banner {
    align-self: center;
    margin-top: 12px;
  }
}


/* ========== HERO SECTION ========== */

.navigation {
  background: none;
  width: 100%;
  position: relative;
  z-index: 2;
}

.navigation .constrained-box {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
  gap: 24px;
}

.hero-wrapper {
  width: 100%;
  min-height: auto;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  background: transparent;
  overflow: hidden;
}

.home-hero-section > :not(.brand-bg) {
  position: relative;
  z-index: 1;
}

.home .hero-wrapper {
  flex: 1;
  background: transparent;
}

.about-us .hero-wrapper,
.contact-us .hero-wrapper {
  flex: 1;
  background: transparent;
}

.home .navigation,
.about-us .navigation{
  background: transparent;
}

.navigation-mobile {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  position: fixed;
  background: var(--linear-gradientDark);
  gap: 16px;
  left: auto;
  right: 0;
  width: clamp(
    var(--navigation-mobile-min-width),
    80vw,
    var(--navigation-mobile-max-width)
  );
  top: 0;
  bottom: 0;
  padding: 24px;
  z-index: 99;
  opacity: 0;
  pointer-events: none;  
  transform: translateX(100%);
  transition: opacity 0.3s ease, transform 0.3s ease;
  box-shadow: var(--floating-box-shadow);
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  color-scheme: light dark;
}

.navigation-mobile > * {
  flex-shrink: 0;
}

.navigation-mobile-main {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(42, 43, 51, 0.32);
  backdrop-filter: blur(5.95px);
  -webkit-backdrop-filter: blur(5.95px);
  z-index: 98;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.menu-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

#close-mobile-menu {
  -webkit-appearance: none;
  appearance: none;
  outline: none;
  -webkit-tap-highlight-color: transparent;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border-radius: 50%;
  border: none;
  background: transparent;
  cursor: pointer;
  overflow: hidden;
  --md-ripple-hover-color: white;
  --md-ripple-pressed-color: white;
  --md-ripple-hover-opacity: 0.08;
  --md-ripple-pressed-opacity: 0.12;
}

#close-mobile-menu img {
  width: 24px;
  height: 24px;
  pointer-events: none;
}

.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: visible;
  cursor: pointer;
}

.navigation-links {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.navigation-links.has-overflow {
  justify-content: flex-start;
}

.navigation .navigation-links {
  display: none;
}

.navigation-link {
  cursor: pointer;
  text-align: center;
  padding: 16px;
  color: var(--light-onSurfaceVariant);
  font-family: var(--label-label-large-font-family);
  font-size: var(--label-label-large-font-size);
  font-weight: var(--label-label-large-font-weight);
  line-height: var(--label-label-large-line-height);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color var(--transition-fast), background var(--transition-fast);
}

.navigation-link svg {
  width: 24px;
  height: 24px;
}

.navigation-link img {
  width: 24px;
  height: 24px;
}

.navigation .navigation-link svg,
.navigation .navigation-link img {
  display: none;
}

.navigation .navigation-link.language-toggle {
  display: none;
}

.navigation-mobile .navigation-link.language-toggle {
  display: flex;
}

.navigation .navigation-link.language-toggle img,
.navigation-mobile .navigation-link.language-toggle img {
  display: inline-block;
  width: 20px;
  height: 20px;
}

.navigation-mobile-links {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-sizing: border-box;
}

.navigation-mobile .btn--mobile-nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  width: 100%;
  height: 48px;
  padding: 16px;
  border-radius: 24px;
  border: none;
  cursor: pointer;
  user-select: none;
  white-space: nowrap;
  box-shadow: none;

    /* TYPOGRAPHY */
  font-family: var(--label-label-large-font-family);
  font-size: var(--label-label-large-font-size);
  font-weight: var(--label-label-large-font-weight);
  line-height: var(--label-label-large-line-height);

   /* ELEVATION */
  --md-filled-tonal-button-container-elevation: 0;
  --md-filled-tonal-button-hover-container-elevation: 0;
  --md-filled-tonal-button-focus-container-elevation: 0;
  --md-filled-tonal-button-pressed-container-elevation: 0;
  --md-filled-tonal-button-disabled-container-elevation: 0;

   /* TEXT COLORS */
  --md-filled-tonal-button-label-text-color: var(--fixed-onSecondaryFixedVariant);
  --md-filled-tonal-button-hover-label-text-color: var(--fixed-onSecondaryFixedVariant);
  --md-filled-tonal-button-focus-label-text-color: var(--fixed-onSecondaryFixedVariant);
  --md-filled-tonal-button-pressed-label-text-color: var(--fixed-onSecondaryFixedVariant);

  /* ICON COLORS */
  --md-filled-tonal-button-icon-color: var(--fixed-onSecondaryFixedVariant);
  --md-filled-tonal-button-hover-icon-color: var(--fixed-onSecondaryFixedVariant);
  --md-filled-tonal-button-focus-icon-color: var(--fixed-onSecondaryFixedVariant);
  --md-filled-tonal-button-pressed-icon-color: var(--fixed-onSecondaryFixedVariant);

  /* STATE LAYER COLORS */
  --md-filled-tonal-button-state-layer-color: white;
  --md-filled-tonal-button-hover-state-layer-color: white;
  --md-filled-tonal-button-focus-state-layer-color: white;
  --md-filled-tonal-button-pressed-state-layer-color: white;
  --md-filled-tonal-button-container-color: transparent;
  --md-filled-tonal-button-hover-state-layer-opacity: 0.08;
  --md-filled-tonal-button-pressed-state-layer-opacity: 0.12;
}

.navigation-mobile .btn--mobile-nav.active {
  --md-filled-tonal-button-label-text-color: var(--light-onPrimary);
  --md-filled-tonal-button-icon-color: var(--light-onPrimary);
  --md-filled-tonal-button-hover-label-text-color: var(--light-onPrimary);
  --md-filled-tonal-button-focus-label-text-color: var(--light-onPrimary);
  --md-filled-tonal-button-pressed-label-text-color: var(--light-onPrimary);
}

.navigation-mobile .btn--mobile-nav.active img {
  filter: brightness(0) invert(1);
}

.navigation-link:not(.active):hover {
  color: var(--light-onSurface);
}

.home .navigation-link:not(.active):hover,
.about-us .navigation-link:not(.active):hover {
  color: var(--light-onPrimary);
}

.home .navigation-link,
.about-us .navigation-link {
  color: var(--fixed-onSecondaryFixedVariant);
}

.navigation-link.active {
  color: var(--light-primary);
}

.button {
  cursor: pointer;
  border-radius: 32px;
  padding: 16px;
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}



.chevron-right {
  width: 24px;
  height: 24px;
  vertical-align: middle;
}

.mobile-menu-button {
  -webkit-appearance: none;
  appearance: none;
  outline: none;
  -webkit-tap-highlight-color: transparent;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: transparent;
  cursor: pointer;
  overflow: hidden;
  padding: 0;
  flex-shrink: 0;
  --md-ripple-hover-color: var(--light-onSurface);
  --md-ripple-pressed-color: var(--light-onSurface);
  --md-ripple-hover-opacity: 0.08;
  --md-ripple-pressed-opacity: 0.12;
}

.mobile-menu-button img {
  width: 24px;
  height: 24px;
  pointer-events: none;
}

/* White ripple on dark backgrounds (home & about-us) */
.home .mobile-menu-button,
.about-us .mobile-menu-button {
  --md-ripple-hover-color: white;
  --md-ripple-pressed-color: white;
}

@media (max-width: 1080px) {
  .navigation md-filled-tonal-button {
    display: none;
  }

  .navigation-link.active {
    color: var(--light-primary);
  }
}

.start {
  display: flex;
  flex-direction: column;
  gap: 64px;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: stretch;
  justify-content: flex-start;
  align-self: stretch;
  position: relative;
}

.feature-item {
  background: rgba(96, 99, 122, 0.2);
  border-radius: 32px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  justify-content: flex-start;
  flex: 1;
  position: relative;
  backdrop-filter: blur(14px);
}

.feature-item img {
  width: auto;
  height: 48px;
  position: relative;
  overflow: visible;
  filter: drop-shadow(0px 0px 32px var(--fixed-tertiaryFixed));
}

.feature-item-title {
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 16px;
  color: var(--fixed-onSecondaryFixed);
  font-family: var(--headline-headline-medium-font-family);
  font-size: var(--headline-headline-medium-font-size);
  line-height: var(--headline-headline-medium-line-height);
  font-weight: var(--headline-headline-medium-font-weight);
  position: relative;
}

.feature-item-subtitle {
  color: var(--fixed-onSecondaryFixed);
  font-family: var(--body-body-large-font-family);
  font-size: var(--body-body-large-font-size);
  line-height: var(--body-body-large-line-height);
  letter-spacing: var(--body-body-large-letter-spacing);
  font-weight: var(--body-body-large-font-weight);
  position: relative;
}

.footer {
  padding: 48px 24px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 48px;
  align-items: center;
  justify-content: flex-start;
  align-self: stretch;
  position: relative;
  overflow: hidden;
}

.footer-shell {
  width: 100%;
  background: var(--linear-gradientDark);
}

.home .footer-shell,
.about-us .footer-shell,
.contact-us .footer-shell {
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
}

.footer-first-part {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  position: relative;
}

.footer-ahcaribe {
  display: flex;
  gap: 8px;
  flex-direction: column;
  align-items: center;
}

.footer-menu {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.footer-menu a {
  text-decoration: none;
  color: var(--fixed-onSecondaryFixedVariant);
  font-family: var(--title-title-medium-font-family);
  font-size: var(--title-title-medium-font-size);
  line-height: var(--title-title-medium-line-height);
  font-weight: var(--title-title-medium-font-weight);
  display: flex;
  flex-direction: row;
  gap: 8px;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: color var(--transition-fast);
}

.footer-menu a:hover {
  color: var(--light-inverseOnSurface);
}

.footer-menu a:first-child {
  color: var(--light-inverseOnSurface);
}

.footer-menu a:not(:first-child) {
  font-family: var(--body-body-medium-font-family);
  font-size: var(--body-body-medium-font-size);
  line-height: var(--body-body-medium-line-height);
  font-weight: var(--body-body-medium-font-weight);
}

.footer-copyright {
  white-space: nowrap;
  color: var(--fixed-onSecondaryFixedVariant);
  font-family: var(--label-label-large-font-family);
  font-size: var(--label-label-large-font-size);
  line-height: var(--label-label-large-line-height);
  font-weight: var(--label-label-large-font-weight);
}

.footer-developer {
  display: flex;
  flex-direction: row;
  gap: 8px;
  align-items: center;
  justify-content: center;
  position: relative;
  text-wrap: nowrap;
  font-family: var(--label-label-large-font-family);
  font-size: var(--label-label-large-font-size);
  line-height: var(--label-label-large-line-height);
  font-weight: var(--label-label-large-font-weight);
  font-style: var(--label-label-large-font-style);
  color: var(--fixed-onSecondaryFixedVariant);
}

.footer .line {
  border: none;
  height: 1px;
  background-color: var(--light-onSurfaceVariant);
}

.line {
  margin-top: -1px;
  border-style: solid;
  border-width: 1px;
  align-self: stretch;
  position: relative;
}

.footer-second-part {
  display: flex;
  flex-direction: column;
  gap: 48px;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  position: relative;
}

.footer-third-part {
  display: flex;
  gap: 24px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-self: stretch;
  position: relative;
}

.footer-apps {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  position: relative;
}

.app-store-badge {
  display: block;
  height: 40px;
  width: 120px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
  position: relative;
}

.google-play-badge {
  display: block;
  height: 40px;
  width: 135px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
  position: relative;
}

.footer-social {
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: center;
  justify-content: center;
  position: relative;
}

.social-link {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background-color: var(--fixed-onSecondaryFixedVariant);
  transition: background-color var(--transition-medium);
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
}

.social-link:hover {
  background-color: var(--light-inverseOnSurface);
}

.facebook-link {
  mask-image: url('../images/facebook-icon-default.svg');
  -webkit-mask-image: url('../images/facebook-icon-default.svg');
}

.instagram-link {
  mask-image: url('../images/instagram-icon-default.svg');
  -webkit-mask-image: url('../images/instagram-icon-default.svg');
}

.language-selector-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.language-selector {
  -webkit-appearance: none;
  appearance: none;
  outline: none;
  -webkit-tap-highlight-color: transparent;
  border-radius: 20px;
  border-style: solid;
  border-color: var(--fixed-secondaryFixed);
  border-width: 1px;
  padding: 8px;
  display: flex;
  flex-direction: row;
  gap: 4px;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  text-align: left;
  cursor: pointer;
  background: transparent;
  color: var(--light-inverseOnSurface);
  font-family: var(--label-label-medium-font-family);
  font-size: var(--label-label-medium-font-size);
  line-height: var(--label-label-medium-line-height);
  letter-spacing: var(--label-label-medium-letter-spacing);
  font-weight: var(--label-label-medium-font-weight);
  overflow: hidden;
  transition: border-color var(--transition-fast);
  --md-ripple-hover-color: var(--light-inverseOnSurface);
  --md-ripple-pressed-color: var(--light-inverseOnSurface);
  --md-ripple-hover-opacity: 0.08;
  --md-ripple-pressed-opacity: 0.12;
}

.language-selector:hover {
  border-color: var(--fixed-onSecondaryFixed);
}

.language-selector-chevron {
  transition: transform var(--transition-medium);
}


.language-flag {
  height: 24px;
}

.rotate-180 {
  transform: rotate(180deg);
}

.language-options {
  display: flex;
  width: 256px;
  color: var(--light-onSurfaceVariant);
  font-family: var(--label-label-medium-font-family);
  font-size: var(--label-label-medium-font-size);
  line-height: var(--label-label-medium-line-height);
  letter-spacing: var(--label-label-medium-letter-spacing);
  font-weight: var(--label-label-medium-font-weight);
  background: var(--light-surface);
  border-radius: 24px;
  padding: 8px;
  flex-direction: column;
  gap: 4px;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(16px);
  bottom: auto;
  position: absolute;
  z-index: 2;
  box-shadow: var(--floating-box-shadow);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease-in;
}

.language-options.show {
  transform: translateX(-50%) translateY(0) !important;
}

.show {
  opacity: 1 !important;
  pointer-events: auto !important;
  transform: translateX(0) !important;
}

.language-option {
  display: flex;
  width: 100%;
  justify-content: flex-start;
  flex-shrink: 0;
  list-style: none;
}

.language-option-button {
  -webkit-appearance: none;
  appearance: none;
  outline: none;
  -webkit-tap-highlight-color: transparent;
  position: relative;
  display: flex;
  width: 100%;
  min-width: 0;
  align-items: center;
  justify-content: flex-start;
  height: 40px;
  padding: 8px 16px;
  gap: 8px;
  border-radius: 16px;
  border: none;
  background: transparent;
  cursor: pointer;
  overflow: hidden;
  text-align: left;
  font-family: var(--label-label-large-font-family);
  font-size: var(--label-label-large-font-size);
  font-style: var(--label-label-large-font-style);
  line-height: var(--label-label-large-line-height);
  font-weight: var(--label-label-large-medium-font-weight);
  color: var(--light-onSurfaceVariant);
  --md-ripple-hover-color: var(--light-onSurface);
  --md-ripple-pressed-color: var(--light-onSurface);
  --md-ripple-hover-opacity: 0.08;
  --md-ripple-pressed-opacity: 0.12;
}

.language-option-button:active {
  background: transparent;
}

.language-option.language-option-selected .language-option-button {
  color: var(--light-primary);
}

/* ============ RESPONSIVE STYLES ============ */
/* This section contains styles that are applied when the viewport width is 1080px or more. */

@media (min-width: 1080px) {
  .app-mobile-banner-section {
    display: none;
  }

  .app-desktop-banner-section {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    gap: 16px;
    text-align: start;
  }

  .constrained-box {
    width: 100%;
    max-width: calc(var(--max-content-width) + 144px);
    min-width: 936px;
    margin: 0 auto;
    padding-left: 72px;
    padding-right: 72px;
  }

  .app-desktop-banner-section .banner-content {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    width: auto;
  }

  .app-desktop-banner-section .banner-content h5 {
    margin-bottom: 0;
  }

  .app-desktop-banner-store-links {
    flex-direction: row;
    flex-wrap: nowrap;
  }

.app-desktop-banner-section .btn--app-banner {
    align-self: auto;
    margin-top: 0;
  }

  .cookies-snackbar {
    justify-content: space-between;
    gap: 60px;
  }

  .cookies-snackbar .cookies-left-content {
    flex: 1;
  }

  .cookies-snackbar .cookies-text {
    max-width: 600px;
  }

  .cookies-text span {
    text-align: start;
  }

  .navigation .constrained-box {
    max-width: calc(var(--max-content-width) + 144px);
    padding: 24px 72px;
  }

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

  .navigation md-filled-tonal-button {
    flex: 0 0 auto;
  }

  .logo {
    flex: 0 0 auto;
    justify-content: flex-start;
  }

  .navigation-links {
    flex: 1;
    justify-content: center;
    flex-direction: row;
    gap: 32px;
    white-space: nowrap;
    overflow-x: auto;
    padding-inline: 16px;
    scrollbar-width: thin;
    scrollbar-color: var(--fixed-onSecondaryFixed) transparent;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 0;
  }

  .navigation-links > * {
    flex-shrink: 0;
    scroll-snap-align: start;
  }

  .navigation .navigation-links {
    display: flex;
  }

  .footer .navigation-links {
    transform: translateX(-16px);
    gap: 16px;
  }

  .navigation-links::-webkit-scrollbar {
    width: 8px;
    height: 8px; 
  }

  .navigation-links::-webkit-scrollbar-thumb {
    background-color: var(--fixed-onSecondaryFixed);
    border-radius: 4px;
  }

  .navigation-links::-webkit-scrollbar-track {
    background-color: transparent;
  }
  .start {
    display: flex;
    flex-direction: column;
    gap: 64px;
  }

  .feature-list {
    flex-direction: row;
    gap: 32px;
  }

  .feature-item {
    width: 33%;
    gap: 32px;
  }

  .feature-item img {
    width: auto;
    height: 64px;
  }

  .feature-item-title {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer {
    padding: 48px 0;
  }

  .footer.constrained-box {
    max-width: calc(var(--max-content-width) + 200px);
    padding-left: 100px;
    padding-right: 100px;
  }

  .footer-first-part {
    flex-direction: row;
    gap: 16px;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    overflow: visible;
  }

  .footer-first-part > * {
    flex-shrink: 0;
  }

  .footer-first-part::-webkit-scrollbar {
    width: 8px;
    height: 8px;
  }

  .footer-first-part::-webkit-scrollbar-thumb {
    background-color: var(--fixed-onSecondaryFixed);
    border-radius: 4px;
  }

  .footer-first-part::-webkit-scrollbar-track {
    background-color: var(--fixed-secondaryFixed);
  }

  .footer-ahcaribe {
    align-items: start;
  }

  .footer-apps {
    flex-direction: row;
    justify-content: center;
  }

  .footer-menu {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .footer-menu a {
    text-align: left;
  }

  .footer-second-part {
    flex-direction: row;
    gap: 48px;
    justify-content: flex-end;
    align-items: flex-start;
    min-width: 600px;
  }

  .footer-second-part > * {
    flex: 1;
    min-width: 0;
  }

  .footer-third-part {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .language-selector-wrapper {
    justify-content: flex-end;
  }  

  .language-options {
    left: auto;
    right: 0;
    transform: translateY(16px);
  }

  .language-options.show {
    transform: translateY(0) !important;
  }
}
