/* app.css — estilos de Talonaria */
/* IMPORTANTE: tokens.css debe cargarse ANTES en el HTML */

:root,
[data-bs-theme="light"] {
  /* Puentes Bootstrap — cargados DESPUÉS de bootstrap.min.css para ganar la cascada */
  --bs-primary: #ccff00;
  --bs-primary-rgb: 204, 255, 0;
  --bs-dark: #002b2a;
  --bs-dark-rgb: 0, 43, 42;
  --bs-light: #eef5ee;
  --bs-light-rgb: 238, 245, 238;
  --bs-font-sans-serif: 'Kode Mono', monospace;
  --bs-font-caprasimo: 'Montagu Slab';
  --bs-link-color: #002b2a;
  --bs-link-hover-color: #1a4a48;
  --bs-info: var(--color-brand-dark);
  --bs-info-rgb: 0, 43, 42;
}


/* .text-primary con lima sobre blanco no tiene contraste suficiente.
   Usamos brand-dark (#002b2a) para texto sobre fondos claros. */
.text-primary {
  color: var(--color-brand-dark) !important;
}

/* Excepción: sobre fondos oscuros (bg-dark, bg-primary, footer) */
.bg-primary .text-primary,
.bg-dark .text-primary,
.footer-dark .text-primary {
  color: var(--color-brand) !important;
}

.justify-content-center {
  padding-left: 0;
  padding-right: 0;
}

.container.max-width-1600 {
  max-width: 1200px !important;
}

.d-xl-block {
  padding-left: 0;
  padding-right: 0;
}

nav.custom-navbar {
  max-width: 1340px;
  position: fixed;
  left: 0;
  right: 0;
  margin: 0 auto;
}

a.btn.btn-primary {
  justify-content: center !important;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
}

.navbar .nav-link {
  border-bottom: 0 solid transparent !important;
}

.custom-navbar.navbar.navbar-fixed {
  top: 30px !important;
}

/* Compensación para navbar fixed: evita que el contenido quede bajo el menú */
body:has(.custom-navbar.navbar-fixed) {
  padding-top: 102px;
}

@media (max-width: 767px) {
  body:has(.custom-navbar.navbar-fixed) {
    padding-top: 58px;
  }
}

.map-content {
  max-width: 50%;
  top: 0 !important;
  height: calc(100% - 1px) !important;
  border-radius: 1rem;
}

.map-content .map-full {
  top: 0 !important;
  bottom: 0 !important;
  height: 100vh !important;
  border-radius: 1rem;
}

.container {
  max-width: 1200px !important;
}

.offer-single-page .container {
  max-width: 1200px !important;
}

.offer-hero-img-wrap {
  width: 100%;
  aspect-ratio: 16/7;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}

.offer-hero-badges {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 2;
}

@media (max-width: 767px) {
  .offer-hero-img-wrap {
    aspect-ratio: 16/7;
    max-height: 36vh;
  }

  .offer-hero-badges {
    top: 8px;
    left: 8px;
  }
}

.items-content {
  width: 50% !important;
}

.sidebar-filters.js-sidebar-filters-mobile {
  display: none;
}

.js-sidebar-filters-mobile.active,
.map-content.opened {
  top: 0 !important;
}

@media (max-width: 991px) {
  .items-content {
    width: 100% !important;
  }

  [dir="rtl"] .navbar {
    overflow: hidden;
  }
}

.d-inline-flex {
  align-items: center !important;
}

.custom-navbar .navbar-brand img,
.navbar-brand img {
  height: 52px !important;
}


@media (max-width: 767px) {
  .sticky-box {
    position: fixed;
    left: 0;
    right: 0;
    z-index: 1000;
    margin: 0;
    border-radius: 0 !important;
    padding: 1.3rem;
    background-color: #fff;
    margin-bottom: 0 !important;
  }

  .custom-navbar.navbar {
    margin: 0;
    padding: 0;
  }

  .custom-navbar .navbar-brand img,
  .navbar-brand img {
    height: 36px !important;
  }

  .navbar-brand {
    margin: auto !important;
  }

  .sticky-top {
    position: static;
  }

  .navbar {
    padding: .5rem 0 0 !important;
  }

  header {
    padding: 0 !important;
  }
}

.expiry-date {
  background-color: var(--color-brand);
  color: var(--color-brand-dark);
}

.profile-element .avatar img {
  height: 2.5rem;
  width: 2.5rem;
  -o-object-fit: cover;
  object-fit: cover;
  margin-right: 0.2rem;
}

.search {
  position: relative;
}

.navbar-custom-menu .search {
  width: 230px;
  margin-left: 20px;
  display: none;
}

.search-wrapper {
  box-shadow: none !important;
  margin-bottom: 3rem;
  padding: 24px 24px 24px 0 !important;
}

.back {
  margin: 0;
  height: 56px;
  width: 56px;
  border-radius: 50%;
  color: var(--bs-dark);
  background-color: var(--bs-white);
  border: 1px solid var(--bs-border-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

button.owl-prev {
  background: 0 0;
  border: none;
  padding: 0;
  margin: 0;
  color: inherit;
  font: inherit;
  cursor: default;
  outline: 0;
  box-shadow: none;
  appearance: none;
}




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

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--color-brand-dark);
}

[data-bs-theme="dark"] p {
  color: #91989e;
}

[data-bs-theme="dark"] .bg-primary p {
  color: var(--bs-white);
}

[data-bs-theme="dark"] .text-dark {
  color: rgba(var(--bs-white-rgb), var(--bs-text-opacity)) !important;
}

.fw500 {
  font-weight: 500 !important;
}

.shadow-sm {
  -webkit-box-shadow:
    0 1px 3px 0 rgba(0, 0, 0, 0.1),
    0 1px 2px -1px rgba(0, 0, 0, 0.1) !important;
  box-shadow:
    0 1px 3px 0 rgba(0, 0, 0, 0.1),
    0 1px 2px -1px rgba(0, 0, 0, 0.1) !important;
}

.shadow {
  -webkit-box-shadow: 2px 2px 20px 0 rgb(82 66 47 / 12%) !important;
  box-shadow: 2px 2px 20px 0 rgb(82 66 47 / 12%) !important;
}

.font-caveat {
  font-family: var(--bs-font-caprasimo) !important;
}

@media (max-width: 767px) {
  .offer-card h4.font-caveat {
    font-size: 1.1rem;
  }
}

.bg-blur {
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  background-color: rgba(255, 255, 255, 0.2);
}

.bg-bottom {
  background-position: bottom !important;
}

.bg-cover {
  background-size: cover !important;
}

.bg-size-contain {
  background-size: contain !important;
}

.fs-10 {
  font-size: 10px !important;
}

.fs-11 {
  font-size: 11px !important;
}

.fs-12 {
  font-size: 12px !important;
}

.fs-13 {
  font-size: 13px !important;
}

.fs-14 {
  font-size: 14px !important;
}

.fs-15 {
  font-size: 15px !important;
}

.fs-16 {
  font-size: 16px !important;
}

.fs-17 {
  font-size: 17px !important;
}

.fs-18 {
  font-size: 18px !important;
}

.fs-19 {
  font-size: 19px !important;
}

.fs-20 {
  font-size: 20px !important;
}

.fs-21 {
  font-size: 21px !important;
}

.fs-28 {
  font-size: 28px !important;
}

.fs-50 {
  font-size: 50px !important;
}

.btn-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  cursor: pointer;
  display: none;
  height: 36px;
  width: 36px;
  text-align: center;
  line-height: 36px;
  color: var(--bs-primary);
  border: 2px solid var(--bs-primary);
  border-radius: 0.5rem;
}

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

.form-check {
  padding-left: 2em;
}

.form-check-input {
  width: 1.3em;
  height: 1.3em;
  margin-top: 0.15em;
  border-color: #dee2e6;
}

.form-check .form-check-input {
  margin-left: -2em;
}

.form-check-input:checked {
  background-color: var(--bs-primary);
  border-color: var(--bs-primary);
}

.form-check-input:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.form-check-input[type="checkbox"] {
  border-radius: 0.4em;
}

.form-check-label {
  font-weight: 500;
  color: var(--bs-dark);
}

[data-bs-theme="dark"] .form-check-label {
  color: var(--bs-white);
}

.bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  -o-object-fit: cover;
  object-fit: cover;
}

.dark-overlay::after {
  position: absolute;
  opacity: 0.2;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: "";
  background: #000;
}

.dark-overlay .overlay-content {
  position: relative;
  z-index: 1;
}

.progress,
.progress-stacked {
  --bs-progress-bar-bg: var(--color-brand);
  --bs-progress-height: 0.4rem;
}

.progress-bar {
  border-radius: 10px;
}

.red span {
  background: -o-linear-gradient(#f70505 0, #e56565 100%);
  background: -webkit-gradient(linear,
      left top,
      left bottom,
      from(#f70505),
      to(#e56565));
  background: linear-gradient(#f70505 0, #e56565 100%);
}

.red span::before {
  border-left-color: #e56565;
  border-top-color: #e56565;
}

.red span::after {
  border-right-color: #e56565;
  border-top-color: #e56565;
}

.blue span {
  background: -o-linear-gradient(#2989d8 0, #1e5799 100%);
  background: -webkit-gradient(linear,
      left top,
      left bottom,
      from(#2989d8),
      to(#1e5799));
  background: linear-gradient(#2989d8 0, #1e5799 100%);
}

.blue span::before {
  border-left-color: #1e5799;
  border-top-color: #1e5799;
}

.blue span::after {
  border-right-color: #1e5799;
  border-top-color: #1e5799;
}

.pagination a {
  display: inline-block;
  margin: 0 5px;
  padding: 0 5px;
  min-width: 30px;
  height: 30px;
  line-height: 29px;
  vertical-align: middle;
  text-align: center;
  color: inherit;
  font-weight: 700;
  border-radius: 50%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5px;
}

.pagination span {
  display: inline-block;
  margin: 0 5px;
  padding: 0 5px;
  min-width: 34px;
  height: 34px;
  line-height: 35px;
  vertical-align: middle;
  text-align: center;
  background-color: var(--bs-primary);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  border-radius: 4px;
}

.pagination .next,
.pagination .prev {
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 3px;
}

.pagination .prev {
  margin-right: 40px;
}

.pagination .next {
  margin-left: 40px;
}

.accordion {
  --bs-accordion-btn-icon-width: 1rem;
  --bs-accordion-btn-hover-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
}

.accordion-item {
  border: var(--bs-accordion-border-width) solid var(--bs-accordion-border-color) !important;
}

.accordion-2 .accordion-item {
  border-radius: 0;
  background-color: transparent;
  border-width: 0 0 1px !important;
  border-color: rgba(31, 31, 30, 0.1) !important;
}

[data-bs-theme="dark"] .accordion-2 .accordion-item {
  border-color: rgba(255, 255, 255, 0.1) !important;
}

.accordion-item:first-of-type .accordion-button {
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
}

.accordion-2 .accordion-item:first-of-type .accordion-button {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.accordion-item:last-of-type .accordion-button.collapsed {
  border-bottom-right-radius: 1rem;
  border-bottom-left-radius: 1rem;
}

.accordion-2 .accordion-item:last-of-type .accordion-button.collapsed {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.accordion-button {
  border-radius: 1rem;
}

.accordion-2 .accordion-button {
  border-radius: 0;
  background-color: transparent;
}

.accordion-button:not(.collapsed) {
  background-color: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.accordion-button::after {
  height: 40px;
  width: 40px;
  border-radius: 30px;
  background-position: center;
  border: 1px solid var(--bs-border-color);
  -webkit-transition: 150ms linear;
  -o-transition: 150ms linear;
  transition: 150ms linear;
}

.accordion-2 .accordion-button::after,
.accordion-button:hover::after {
  background-color: var(--bs-primary);
  border-color: var(--bs-primary);
  background-image: var(--bs-accordion-btn-hover-icon);
}

.accordion-2.collapsed .accordion-button::after {
  background-color: var(--bs-white);
  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
}

.form-group {
  position: relative;
}

.form-group label {
  position: absolute;
  top: -11px;
  left: 10px;
  pointer-events: none;
  z-index: 4;
  background: var(--bs-white);
  padding: 0 10px;
  font-weight: 500;
  color: var(--bs-dark);
}

[data-bs-theme="dark"] .form-group label {
  color: var(--bs-white);
  background: var(--bs-body-bg);
}

.form-control,
.form-select {
  font-size: 15px;
  font-weight: 500;
  height: 52px;
  border-radius: 0.5rem;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  -webkit-box-shadow:
    0 0 #0000,
    0 0 #0000,
    0 0 #0000,
    0 0 #0000,
    0 1px 2px 0 rgb(0 0 0 / 0.05);
  box-shadow:
    0 0 #0000,
    0 0 #0000,
    0 0 #0000,
    0 0 #0000,
    0 1px 2px 0 rgb(0 0 0 / 0.05);
}

@media (max-width: 767px) {
  .items-content .form-select {
    height: 44px;
    font-size: 0.85rem;
    padding-left: 10px;
    padding-right: 28px;
  }

  .items-content form.d-flex {
    flex-direction: column !important;
    gap: 8px !important;
  }
}

.form-control:focus,
.form-select:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
  padding-left: 1rem;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  border-color: var(--bs-primary);
}

textarea.form-control {
  height: auto;
}

.form-group textarea.form-control {
  height: auto;
  padding: 15px 20px;
}

.irs--round .irs-line {
  height: 3px;
  background-color: rgba(0, 0, 0, 0.1);
}

[data-bs-theme="dark"] .irs--round .irs-line {
  background-color: rgba(255, 255, 255, 0.2);
}

.irs--round .irs-bar {
  top: 36px;
  height: 3px;
  background-color: var(--bs-primary);
  background-image: -o-linear-gradient(45deg,
      rgba(255, 255, 255, 0.15) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, 0.15) 50%,
      rgba(255, 255, 255, 0.15) 75%,
      transparent 75%,
      transparent);
  background-image: linear-gradient(45deg,
      rgba(255, 255, 255, 0.15) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, 0.15) 50%,
      rgba(255, 255, 255, 0.15) 75%,
      transparent 75%,
      transparent);
  background-size: 16px 16px;
}

.irs--round .irs-handle {
  width: 21px;
  height: 21px;
  border: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  background-color: var(--bs-primary);
}

.irs--round .irs-handle.state_hover,
.irs--round .irs-handle:hover {
  background-color: var(--bs-primary);
}

.irs--round .irs-from,
.irs--round .irs-single,
.irs--round .irs-to {
  background-color: var(--bs-dark);
  font-size: 12px;
  padding: 5px 10px;
}

.irs--round .irs-from:before,
.irs--round .irs-single:before,
.irs--round .irs-to:before {
  position: absolute;
  border-top-color: var(--bs-dark);
}

.irs--round .irs-bar {
  background-color: var(--bs-primary);
}

[data-bs-theme="dark"] .irs--round .irs-max,
[data-bs-theme="dark"] .irs--round .irs-min {
  color: var(--bs-white);
}

.btn {
  --bs-btn-padding-x: 1rem;
  --bs-btn-padding-y: 1rem;
  --bs-btn-border-radius: 4rem;
  font-size: 1rem !important;
}

.btn-group-lg>.btn,
.btn-lg {
  --bs-btn-padding-y: 0.739rem;
  --bs-btn-padding-x: 1.5rem;
  --bs-btn-font-size: 1.1rem;
  --bs-btn-border-radius: 0.6rem;
}

.btn-group-sm>.btn,
.btn-sm {
  --bs-btn-padding-y: 0.4rem;
  --bs-btn-padding-x: 0.5rem;
  --bs-btn-font-size: 0.875rem;
  --bs-btn-border-radius: 0.4rem;
}

.btn-primary {
  --bs-btn-bg: var(--color-danger);
  --bs-btn-border-color: var(--color-brand);
  --bs-btn-color: white;
  --bs-btn-hover-bg: #b8e600;
  --bs-btn-hover-border-color: #b8e600;
  --bs-btn-hover-color: var(--color-brand-dark);
  --bs-btn-focus-shadow-rgb: none;
  --bs-btn-active-bg: #b8e600;
  --bs-btn-active-border-color: #b8e600;
  --bs-btn-active-color: var(--color-brand-dark);
  --bs-btn-disabled-bg: var(--color-brand);
  --bs-btn-disabled-border-color: var(--color-brand);
  --bs-btn-disabled-color: var(--color-brand-dark);
}

.btn-outline-primary {
  --bs-btn-color: var(--color-brand-dark);
  --bs-btn-border-color: var(--color-brand-dark);
  --bs-btn-hover-bg: var(--color-brand-dark);
  --bs-btn-hover-border-color: var(--color-brand-dark);
  --bs-btn-hover-color: var(--color-brand);
  --bs-btn-active-bg: var(--color-brand-dark);
  --bs-btn-active-border-color: var(--color-brand-dark);
  --bs-btn-active-color: var(--color-brand);
  --bs-btn-focus-shadow-rgb: none;
}

.btn-link,
.btn-link:hover,
.btn-link:focus,
.btn-link:active {
  background-color: transparent !important;
  color: inherit !important;
  text-decoration: underline;
}

.btn-outline-secondary {
  --bs-btn-color: var(--color-brand-dark);
  --bs-btn-border-color: rgba(0, 43, 42, 0.35);
  --bs-btn-hover-bg: rgba(0, 43, 42, 0.07);
  --bs-btn-hover-border-color: var(--color-brand-dark);
  --bs-btn-hover-color: var(--color-brand-dark);
  --bs-btn-active-bg: rgba(0, 43, 42, 0.12);
  --bs-btn-active-border-color: var(--color-brand-dark);
  --bs-btn-active-color: var(--color-brand-dark);
  --bs-btn-focus-shadow-rgb: none;
}

.btn-light {
  --bs-btn-bg: #f8f4f3;
  --bs-btn-border-color: #f8f4f3;
  --bs-btn-hover-bg: #f7edeb;
  --bs-btn-hover-border-color: #f7edeb;
  --bs-btn-active-bg: #f7edeb;
  --bs-btn-active-border-color: #f7edeb;
  --bs-btn-disabled-bg: #f7edeb;
  --bs-btn-disabled-border-color: #f7edeb;
}

[data-bs-theme="dark"] .btn-light {
  --bs-btn-color: #fff;
  --bs-btn-bg: #12161c;
  --bs-btn-border-color: #12161c;
}

.tooltip {
  font-family: var(--font-body);
}

hr {
  opacity: 1;
  color: #dee2e6;
}

[data-bs-theme="dark"] hr {
  border-color: var(--bs-border-color);
}

.card {
  --bs-card-spacer-y: 1.5rem;
  --bs-card-spacer-x: 1.5rem;
  --bs-card-border-color: var(--bs-border-color);
  --bs-card-cap-bg: transform;
  --bs-card-border-radius: var(--bs-border-radius-xl);
  --bs-card-inner-border-radius: calc(var(--bs-border-radius-xl) - (var(--bs-border-width)));
}

.card-footer,
.card-header {
  width: calc(100% - var(--bs-card-spacer-x) * 2);
  padding-right: 0;
  padding-left: 0;
  margin: auto;
}

.card-hover {
  -webkit-transition: 0.3s ease-out;
  -o-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}

.card-hover:hover {
  /* -webkit-transform: translate(0, -6px); 
  -ms-transform: translate(0, -6px);
  transform: translate(0, -6px);*/
}

.small {
  font-size: .8em;
}

.list-separator {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.list-separator .list-inline-item {
  position: relative;
  margin-right: 0;
}

.list-separator .list-inline-item:not(:last-child) {
  padding-right: 2rem;
}

.list-separator .list-inline-item:not(:last-child)::after {
  position: absolute;
  top: 50%;
  right: 0.8rem;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  content: "/";
  opacity: 0.5;
}

.breadcrumb li.active {
  font-weight: 600;
}

.dropdown-menu {
  --bs-dropdown-min-width: 12rem;
  --bs-dropdown-item-padding-x: 1.25rem;
  --bs-dropdown-item-padding-y: 0.375rem;
  --bs-dropdown-link-color: #2f2e41;
  --bs-dropdown-link-hover-color: var(--bs-primary);
  --bs-dropdown-link-hover-bg: #f1f1f1;
  --bs-dropdown-link-active-color: var(--bs-primary);
  --bs-dropdown-link-active-bg: #f1f1f1;
  -webkit-box-shadow:
    0 5px 9px rgba(55, 125, 255, 0.075),
    0 5px 9px rgba(103, 119, 136, 0.075);
  box-shadow:
    0 5px 9px rgba(55, 125, 255, 0.075),
    0 5px 9px rgba(103, 119, 136, 0.075);
}

[data-bs-theme="dark"] .dropdown-menu {
  --bs-dropdown-link-color: var(--bs-white);
}

.dropdown-item {
  font-size: 0.875rem;
  font-weight: 500;
}

.select2-container--bootstrap-5 .select2-selection {
  border-radius: 0.5rem;
  border-color: var(--bs-border-color);
  min-height: calc(2em + 0.75rem + 2px);
  padding: 0.575rem 2.25rem 0.575rem 0.75rem;
  -webkit-box-shadow:
    0 0 #0000,
    0 0 #0000,
    0 0 #0000,
    0 0 #0000,
    0 1px 2px 0 rgb(0 0 0 / 0.05);
  box-shadow:
    0 0 #0000,
    0 0 #0000,
    0 0 #0000,
    0 0 #0000,
    0 1px 2px 0 rgb(0 0 0 / 0.05);
  background-color: var(--bs-body-bg);
}

.select2-container--bootstrap-5 .select2-selection--multiple .select2-selection__rendered .select2-selection__choice {
  font-size: 13px;
}

.select2-container--bootstrap-5 .select2-selection--multiple .select2-selection__rendered .select2-selection__choice .select2-selection__choice__remove {
  width: 0.5rem;
  height: 0.5rem;
}

.select2-container--bootstrap-5 .select2-dropdown .select2-results__options .select2-results__option {
  padding: 0.375rem 0.75rem;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
}

[data-bs-theme="dark"] .select2-container--bootstrap-5 .select2-dropdown .select2-results__options .select2-results__option.select2-results__option--highlighted {
  color: var(--bs-white);
  background-color: #12161c;
}

.select2-container--bootstrap-5 .select2-dropdown {
  border-color: var(--bs-primary);
}

[data-bs-theme="dark"] .select2-container--bootstrap-5 .select2-dropdown {
  color: var(--bs-white);
  background-color: var(--bs-body-bg);
}

.select2-container--bootstrap-5 .select2-dropdown .select2-results__options .select2-results__option.select2-results__option--selected,
.select2-container--bootstrap-5 .select2-dropdown .select2-results__options .select2-results__option[aria-selected="true"]:not(.select2-results__option--highlighted) {
  background-color: var(--bs-primary);
}

[data-bs-theme="dark"] .select2-container--bootstrap-5 .select2-dropdown .select2-search .select2-search__field {
  background-color: var(--bs-body-bg);
  border-color: var(--bs-border-color);
}

.select2-container--bootstrap-5 .select2-dropdown .select2-search .select2-search__field:focus,
.select2-container--bootstrap-5.select2-container--focus .select2-selection,
.select2-container--bootstrap-5.select2-container--open .select2-selection {
  border-color: var(--bs-primary);
  -webkit-box-shadow: none;
  box-shadow: none;
}

.rating-stars {
  gap: 0.02rem;
}

.fa-star-icon {
  width: 15px;
  height: 13px;
  position: relative;
  margin-right: 2px;
  font-size: 13px;
  font-weight: 900;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: var(--fa-display, inline-block);
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-rendering: auto;
}

.fa-star-icon::before {
  font-family: "Font Awesome 6 Free";
  content: "\f005";
  color: #ffb14f;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  opacity: 0.33;
}

.fa-star-icon:not(.none)::after {
  font-family: "Font Awesome 6 Free";
  content: "\f005";
  color: #ffb14f;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}

.fa-star-icon.half::after {
  content: "\f089";
}

.rating-point h3 {
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  left: 50%;
  letter-spacing: -0.5px;
}

.navbar {
  --bs-navbar-padding-y: 1rem;
  --bs-navbar-collapse-border-color: var(--bs-border-color);
  z-index: 9;
  --bs-navbar-color: #2f2e41;
  --bs-navbar-nav-link-padding-x: 0.7rem;
  --bs-navbar-active-color: var(--bs-primary);
  --bs-navbar-hover-color: var(--bs-primary);
  --bs-navbar-border-color: var(--bs-primary);
  background-color: var(--bs-white);
}

@media (max-width: 576px) {

  .navbar .container,
  .navbar .container-fluid,
  .navbar .container-lg,
  .navbar .container-md,
  .navbar .container-sm,
  .navbar .container-xl,
  .navbar .container-xxl {
    --bs-gutter-x: 2rem;
  }
}

.custom-navbar.navbar {
  border-radius: var(--bs-border-radius-lg);
}

[data-bs-theme="dark"] .navbar {
  background-color: var(--bs-body-bg);
}

.custom-navbar.navbar.navbar-fixed {
  left: 0;
  z-index: 1030;
  position: fixed;
  width: calc(100% - 32px);
  -webkit-transition:
    width 0.15s cubic-bezier(0.25, 1, 0.5, 1),
    padding 0.45s cubic-bezier(0.25, 1, 0.5, 1) 0.1s;
  -o-transition:
    width 0.15s cubic-bezier(0.25, 1, 0.5, 1),
    padding 0.45s cubic-bezier(0.25, 1, 0.5, 1) 0.1s;
  transition:
    width 0.15s cubic-bezier(0.25, 1, 0.5, 1),
    padding 0.45s cubic-bezier(0.25, 1, 0.5, 1) 0.1s;
  -webkit-transform: translate(16px, 0);
  -ms-transform: translate(16px, 0);
  transform: translate(16px, 0);
}

.custom-navbar.navbar.navbar-transfarent {
  background-color: transparent;
}

.custom-navbar.navbar.navbar-bg {
  -webkit-box-shadow: rgba(0, 0, 0, 0.08) 0 4px 12px;
  box-shadow: rgba(0, 0, 0, 0.08) 0 4px 12px;
}

@media (max-width: 991px) {
  .custom-navbar.navbar.navbar-transfarent {
    border-radius: 0.6rem;
  }

  .custom-navbar.navbar {
    --bs-navbar-padding-x: 0.5rem;
  }

  .navbar-nav {
    margin-top: 1rem;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .navbar {
    --bs-navbar-nav-link-padding-x: 0.5rem;
  }
}

@media (min-width: 992px) {
  .navbar-custom-menu .search {
    display: block;
  }

  .custom-navbar.navbar {
    border-radius: var(--bs-border-radius-xl);
  }

  .navbar {
    padding: 0;
    --bs-navbar-color: #2c3038;
  }

  [data-bs-theme="dark"] .navbar {
    --bs-navbar-color: var(--bs-white);
  }

  .custom-navbar.navbar.navbar-transfarent {
    --bs-navbar-color: var(--bs-white);
    --bs-navbar-active-color: var(--bs-white);
    --bs-navbar-border-color: var(--bs-white);
  }
}

.navbar .navbar-nav {
  --bs-nav-link-padding-y: 1.7rem;
}

.custom-navbar .navbar-brand img {
  height: 30px;
}

.navbar-brand img {
  height: 32px;
}

@media (min-width: 576px) {

  .custom-navbar .navbar-brand img,
  .navbar-brand img {
    height: 36px;
  }
}

.logo-white,
[data-bs-theme="dark"] .logo-dark {
  display: none;
}

[data-bs-theme="dark"] .logo-white {
  display: block;
}

.custom-navbar.navbar-transfarent .navbar-brand .logo-dark {
  display: none;
}

.custom-navbar.navbar-transfarent .navbar-brand .logo-white {
  display: block;
}

@media (min-width: 992px) {
  .navbar .nav-link {
    border-radius: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-bottom: 4px solid transparent;
  }

  .navbar-nav .nav-link.active,
  .navbar-nav .nav-link.show {
    border-color: var(--bs-navbar-border-color);
  }

  .navbar-nav:not(.sm-collapsible) .nav-link .sub-arrow {
    font-weight: 900;
    font-family: "Font Awesome 6 Free";
    border: 0;
    font-size: 13px;
    height: auto;
    width: auto;
    -webkit-transition: -webkit-transform 250ms linear;
    transition: transform 250ms linear;
    -o-transition: transform 250ms linear;
    transition:
      transform 250ms linear,
      -webkit-transform 250ms linear;
  }

  .navbar-nav:not(.sm-collapsible) .nav-link[aria-expanded="true"] .sub-arrow {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
  }

  .navbar-nav:not(.sm-collapsible) .nav-link .sub-arrow::before {
    content: "\f078";
  }
}

@media (max-width: 991px) {
  .navbar .navbar-nav {
    padding-top: 1rem;
  }

  .navbar .navbar-nav .dropdown-menu {
    --bs-dropdown-link-hover-bg: transform;
    --bs-dropdown-link-active-bg: transform;
  }

  .navbar-collapse .collapse-close {
    width: 20px;
    height: 20px;
    cursor: pointer;
  }

  .navbar-collapse .collapse-close span {
    position: absolute;
    display: block;
    width: 100%;
    height: 2px;
    opacity: 1;
    border-radius: 2px;
    background: #283448;
  }

  .navbar-collapse .collapse-close :first-child {
    -webkit-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    transform: rotate(135deg);
  }

  .navbar-collapse .collapse-close :nth-child(2) {
    -webkit-transform: rotate(-135deg);
    -ms-transform: rotate(-135deg);
    transform: rotate(-135deg);
  }

  .navbar-nav .nav-item {
    border-radius: 0.5rem;
    background-color: #f8f4f3;
  }

  [data-bs-theme="dark"] .navbar-nav .nav-item {
    background-color: #12161c;
  }

  .navbar-nav .nav-item+.nav-item {
    margin-top: 7px;
  }

  .navbar-nav .nav-link {
    padding: 0.7rem 1rem;
    font-weight: 700;
  }

  [data-bs-theme="dark"] .navbar-nav .nav-link {
    color: var(--bs-white);
  }

  .navbar-nav.sm-collapsible .sub-arrow {
    margin: -0.7em 0 0;
    border-radius: 0.375rem;
    width: 1.5em;
    height: 1.5em;
    border-color: #d3d3d3;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .navbar-nav .dropdown-menu {
    border-width: 0 0 0 1px;
    margin: 0 0 0.75rem 1rem;
    padding: 0;
    border-radius: 0;
    background-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-animation: 0.3s ease-in-out navDropdownslideUp;
    animation: 0.3s ease-in-out navDropdownslideUp;
  }

  [dir="rtl"] .navbar-nav .dropdown-menu {
    border-width: 0 1px 0 0;
    margin: 0 1rem 0.75rem 0;
  }

  @-webkit-keyframes navDropdownslideUp {
    from {
      opacity: 0;
      -webkit-transform: translateY(-10px);
      transform: translateY(-10px);
    }

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

  @keyframes navDropdownslideUp {
    from {
      opacity: 0;
      -webkit-transform: translateY(-10px);
      transform: translateY(-10px);
    }

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

  .dropdown-menu {
    --bs-dropdown-link-active-bg: transparent;
  }
}

.navbar-toggler {
  padding: 0;
  border: 0;
  background-color: transparent;
  margin-left: 6px;
}

[dir="rtl"] .navbar-toggler {
  margin-left: 0;
  margin-right: 6px;
}

.navbar-toggler:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
}

#nav-icon {
  width: 24px;
  height: 18px;
  position: relative;
  -webkit-transform: rotate(0);
  -ms-transform: rotate(0);
  transform: rotate(0);
  -webkit-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  cursor: pointer;
  display: block;
}

#nav-icon span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: #212529;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0);
  -ms-transform: rotate(0);
  transform: rotate(0);
  -webkit-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}

.navbar-transfarent #nav-icon span,
[data-bs-theme="dark"] #nav-icon span {
  background: var(--bs-white);
}

#nav-icon span:first-child {
  top: 0;
}

#nav-icon span:nth-child(2) {
  top: 8px;
}

#nav-icon span:nth-child(3) {
  top: 15px;
}

#nav-icon.open span:first-child {
  top: 6px;
  -webkit-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  transform: rotate(135deg);
}

#nav-icon.open span:nth-child(2) {
  opacity: 0;
  left: -60px;
}

#nav-icon.open span:nth-child(3) {
  top: 6px;
  -webkit-transform: rotate(-135deg);
  -ms-transform: rotate(-135deg);
  transform: rotate(-135deg);
}

.dropdown-toggle::after {
  border: none;
  content: "\f078";
  vertical-align: 0.055em;
  font-weight: 900;
  font-family: "Font Awesome 6 Free";
}

.navbar .dropdown-toggle::after {
  font-size: 12px;
}

@media (max-width: 480px) {
  .btn-primary {
    display: inline-flex !important;
  }
}

@media (min-width: 992px) {
  .dropdown-menu.mega-menu {
    max-width: 30em !important;
    min-width: 30em !important;
  }

  .navbar-nav .dropdown-item.active,
  .navbar-nav .dropdown-item:active,
  .navbar-nav .dropdown-item:focus,
  .navbar-nav .dropdown-item:hover {
    color: var(--bs-primary);
    background-color: transparent;
  }

  .navbar-nav .dropdown-menu li+li {
    margin-top: 3px;
  }

  .navbar {
    --bs-navbar-nav-link-padding-x: 1rem;
    margin-left: 1rem;
  }

  .navbar-expand-lg .navbar-nav .nav-link {
    font-weight: 600;
  }

  .navbar-expand-lg .navbar-nav .dropdown-menu {
    border: 0;
    margin: 0;
    -webkit-box-shadow:
      0 3px 12px rgba(27, 31, 35, 0.15),
      0 0 1px rgba(27, 31, 35, 0.2);
    box-shadow:
      0 3px 12px rgba(27, 31, 35, 0.15),
      0 0 1px rgba(27, 31, 35, 0.2);
    -webkit-animation: 0.25s cubic-bezier(0.68, -0.55, 0.265, 1.55) dropdown-show;
    animation: 0.25s cubic-bezier(0.68, -0.55, 0.265, 1.55) dropdown-show;
  }

  .navbar-expand-lg .navbar-nav .dropdown:hover>.dropdown-menu {
    display: block;
  }

  @-webkit-keyframes dropdown-show {
    from {
      -webkit-transform: scale(0.9);
      transform: scale(0.9);
      opacity: 0;
    }

    to {
      -webkit-transform: scale(1);
      transform: scale(1);
      opacity: 1;
    }
  }

  @keyframes dropdown-show {
    from {
      -webkit-transform: scale(0.9);
      transform: scale(0.9);
      opacity: 0;
    }

    to {
      -webkit-transform: scale(1);
      transform: scale(1);
      opacity: 1;
    }
  }

  .navbar-expand-lg .dropdown .dropdown .dropdown-toggle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .navbar-expand-lg .dropdown .dropdown .dropdown-toggle::after {
    margin-top: 0;
    margin-right: -0.3125rem;
    margin-left: auto;
    content: "\f054";
    font-size: 11px;
  }

  [dir="rtl"] .navbar-expand-lg .dropdown .dropdown .dropdown-toggle::after {
    margin-right: auto;
    margin-left: -0.3125rem;
    transform: rotate(180deg);
  }

  .navbar-expand-lg .navbar-nav .dropdown .dropdown .dropdown-menu {
    left: 100% !important;
    margin-left: -0.375rem;
    top: calc((var(--bs-dropdown-item-padding-y) + -5px) * -1) !important;
  }

  [dir="rtl"] .navbar-expand-lg .navbar-nav .dropdown .dropdown .dropdown-menu {
    left: auto !important;
    right: 100% !important;
    margin-left: auto;
    margin-right: -0.375rem;
  }
}

.custom-navbar.navbar.navbar-transfarent .btn-user {
  color: #fff;
}

.hero-header {
  padding: 7rem 0 5rem;
}

.hero-header.dark-overlay::after {
  opacity: 0.4;
}

@media (max-width: 767px) {
  .hero-header {
    height: auto !important;
  }
}

@media (min-width: 1200px) {
  .hero-header.vh-100 {
    height: calc(100vh - 32px) !important;
  }

  .hero-header-rounded .bg-image,
  .hero-header-rounded.dark-overlay::after {
    border-bottom-left-radius: 22%;
    border-bottom-right-radius: 60%;
  }
}

.header-carousel.owl-carousel .owl-stage,
.header-carousel.owl-carousel .owl-stage-outer,
.header-carousel.owl-carousel.owl-drag .owl-item {
  height: 100%;
}

.hero-header-waves.dark-overlay::after {
  z-index: 1;
}

.search-wrapper {
  grid-column-gap: 24px;
  -webkit-box-shadow: 0 3px 20px rgba(192, 192, 192, 0.21);
  box-shadow: 0 3px 20px rgba(192, 192, 192, 0.21);
  border-radius: 50px;
}

@media screen and (max-width: 767px) {
  .search-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    border-radius: 1rem;
  }
}

.svg-icon {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  color: var(--bs-dark);
}

[data-bs-theme="dark"] .svg-icon {
  color: var(--bs-white);
}

.header-cat-box:hover .badge {
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  background-color: var(--bs-primary) !important;
  color: var(--bs-white) !important;
}

.navbar-fixed~.hero-header-waves .inner-header {
  padding-top: 9.813rem;
}

@media (min-width: 768px) {
  .hero-header {
    padding: 12rem 0;
  }

  .navbar-fixed~.hero-header-waves .inner-header {
    padding-top: 16.813rem;
  }
}

@-webkit-keyframes move-forever {
  0% {
    -webkit-transform: translate3d(-90px, 0, 0);
    transform: translate3d(-90px, 0, 0);
  }

  100% {
    -webkit-transform: translate3d(85px, 0, 0);
    transform: translate3d(85px, 0, 0);
  }
}

@keyframes move-forever {
  0% {
    -webkit-transform: translate3d(-90px, 0, 0);
    transform: translate3d(-90px, 0, 0);
  }

  100% {
    -webkit-transform: translate3d(85px, 0, 0);
    transform: translate3d(85px, 0, 0);
  }
}

.about-video::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.25);
}

.about-img {
  width: 100%;
  height: 500px;
  -o-object-fit: cover;
  object-fit: cover;
}

@media screen and (min-width: 1280px) {
  .about-img {
    height: 550px;
  }
}

.video-icon {
  width: 100px;
  height: 100px;
  -webkit-transition: 150ms linear;
  -o-transition: 150ms linear;
  transition: 150ms linear;
}

.video-icon:hover {
  background-color: #fff;
  color: var(--bs-primary) !important;
}

.l-spacing-1 {
  letter-spacing: 0.1rem;
}

.testimonial-carousel.owl-theme .owl-nav {
  margin-top: 0;
}

.testimonial-carousel.owl-theme .owl-nav [class*="owl-"] {
  color: #fff;
  padding: 4px 7px;
  display: inline-block;
  cursor: pointer;
  position: absolute;
  top: 42%;
  left: 0;
  opacity: 1;
  -webkit-transition: border 0.3s;
  -o-transition: border 0.3s;
  transition: border 0.3s;
  -webkit-transform: translate(0, -58%);
  -ms-transform: translate(0, -58%);
  transform: translate(0, -58%);
  font-size: 14px;
  height: 60px;
  width: 60px;
  border-radius: 50%;
  line-height: 60px;
  margin: 0;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0);
}

.testimonial-carousel.owl-theme .owl-nav [class*="owl-"]:hover {
  border-color: var(--bs-white);
}

.testimonial-carousel.owl-theme .owl-nav [class*="owl-"]:focus {
  outline: 0;
}

.testimonial-carousel.owl-theme .owl-nav .owl-prev {
  left: -100px;
}

.testimonial-carousel.owl-theme .owl-nav .owl-next {
  left: auto;
  right: -100px;
}

.card-image-hover::before {
  position: absolute;
  top: 0;
  left: -75%;
  z-index: 2;
  display: block;
  content: "";
  width: 50%;
  height: 100%;
  background: -o-linear-gradient(left,
      rgba(255, 255, 255, 0) 0,
      rgba(255, 255, 255, 0.3) 100%);
  background: -webkit-gradient(linear,
      left top,
      right top,
      from(rgba(255, 255, 255, 0)),
      to(rgba(255, 255, 255, 0.3)));
  background: linear-gradient(to right,
      rgba(255, 255, 255, 0) 0,
      rgba(255, 255, 255, 0.3) 100%);
  -webkit-transform: skewX(-25deg);
  -ms-transform: skewX(-25deg);
  transform: skewX(-25deg);
}

.card-hover-bg:hover .card-image-hover::before {
  -webkit-animation: 0.75s shine;
  animation: 0.75s shine;
}

@-webkit-keyframes shine {
  100% {
    left: 125%;
  }
}

@keyframes shine {
  100% {
    left: 125%;
  }
}

.card-img-wrap {
  height: 0;
  padding-bottom: 65%;
  overflow: hidden;
  position: relative;
}

@media (min-width: 992px) {
  .p-lg-4 {
    padding: 2rem 1.5rem !important;
  }
}

.card-badge {
  top: 14px;
  left: 14px !important;
  padding: 5px 12px;
  border-radius: 999px;
  letter-spacing: 0.04em;
  font-size: 0.75rem !important;
  font-weight: 700;
  border: none;
  box-shadow: 0 2px 8px rgba(0, 43, 42, 0.18);
}

[dir="rtl"] .card-badge {
  left: auto !important;
  right: 14px !important;
}

.card-badge+.card-badge {
  top: 50px;
}

.card-badges-row {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 6px;
}

.card-badges-row .card-badge {
  position: static;
  top: auto;
  left: auto;
}

/* card-badge con bg-primary usa lima → texto oscuro obligatorio */
.card-badge.bg-primary {
  color: var(--color-brand-dark) !important;
}

/* bg-info (Próximamente) → verde oscuro con lima */
.card-badge.bg-info {
  background-color: var(--color-brand-dark) !important;
  color: var(--color-brand) !important;
}

.card-start {
  font-size: 14px;
}

.cat-icon {
  width: 52px;
  height: 52px;
  top: -25px;
  right: 24px;
  border: 2px solid #fff;
}

[dir="rtl"] .cat-icon {
  right: auto;
  left: 24px;
}

.btn-icon {
  height: 36px;
  width: 36px;
}

.card.dark-overlay::after {
  opacity: 1;
  background: -o-linear-gradient(bottom,
      rgba(0, 43, 42, 0.9) 0,
      rgba(0, 43, 42, 0.55) 35%,
      rgba(22, 22, 23, 0.1) 60%,
      rgba(0, 0, 0, 0) 100%);
  background: -webkit-gradient(linear,
      left bottom,
      left top,
      from(rgba(0, 43, 42, 0.9)),
      color-stop(35%, rgba(0, 43, 42, 0.55)),
      color-stop(60%, rgba(22, 22, 23, 0.1)),
      to(rgba(0, 0, 0, 0)));
  background: linear-gradient(to top,
      rgba(0, 43, 42, 0.9) 0,
      rgba(0, 43, 42, 0.55) 35%,
      rgba(22, 22, 23, 0.1) 60%,
      rgba(0, 0, 0, 0) 100%);
}

.link-hover:hover {
  color: var(--bs-primary);
}

.decoration {
  position: absolute;
}

.decoration.blur-2 {
  z-index: -1;
  width: 300px;
  height: 300px;
  -webkit-filter: blur(200px);
  filter: blur(200px);
  top: auto;
  bottom: 10%;
  left: 5%;
  right: auto;
  --bs-bg-opacity: 0.54;
  background-color: rgba(var(--color-brand-rgb),
      var(--bs-bg-opacity)) !important;
}

.decoration.blur-3 {
  z-index: -1;
  width: 300px;
  height: 300px;
  -webkit-filter: blur(200px);
  filter: blur(200px);
  top: 13%;
  bottom: auto;
  left: auto;
  right: 0;
  --bs-bg-opacity: 0.54;
  background-color: rgba(var(--color-brand-rgb),
      var(--bs-bg-opacity)) !important;
}

@media screen and (min-width: 1280px) {

  .decoration.blur-1,
  .decoration.blur-2,
  .decoration.blur-3 {
    width: 400px;
    height: 400px;
  }
}

.map-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  position: relative;
}

.items-content {
  min-height: 700px;
  padding-left: 12px;
  padding-right: 12px;
}

.items-content .card-img-wrap {
  padding-bottom: 56%;
}

.map-content {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.map-content .search-select-input .form-control {
  border: 0;
}

.map-close-icon {
  height: 52px;
  width: 52px;
  background-color: var(--bs-white);
}

[data-bs-theme="dark"] .map-close-icon {
  background-color: var(--bs-body-bg);
}

.sidebarCollapse {
  z-index: 9999;
}

@media (min-width: 1200px) {
  .sidebar-filters {
    width: 300px;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    margin-left: 0;
    position: relative;
  }

  .sidebar-filters.active {
    margin-left: -300px;
  }

  [dir="rtl"] .sidebar-filters.active {
    margin-left: 0;
    margin-right: -300px;
  }

  .items-content {
    width: 350px;
    min-height: calc(100vh - 9.648rem);
  }

  .map-full.shadow-left::before,
  .map-full.shadow-right::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: block;
    z-index: 1000;
    pointer-events: none;
  }

  .map-full.shadow-left::before {
    -webkit-box-shadow: inset 0.5rem 0 1rem -0.5rem rgba(0, 0, 0, 0.15);
    box-shadow: inset 0.5rem 0 1rem -0.5rem rgba(0, 0, 0, 0.15);
  }

  [dir="rtl"] .map-full.shadow-left::before {
    -webkit-box-shadow: inset -0.5rem 0 1rem -0.5rem rgba(0, 0, 0, 0.15);
    box-shadow: inset -0.5rem 0 1rem -0.5rem rgba(0, 0, 0, 0.15);
  }
}

@media (min-width: 1400px) {

  .g-xxl-6,
  .gx-xxl-6 {
    --bs-gutter-x: 6rem;
  }

  .sidebar-filters {
    width: 350px;
  }

  .items-content {
    width: 700px;
  }

  .sidebar-filters.active {
    margin-left: -350px;
  }

  [dir="rtl"] .sidebar-filters.active {
    margin-left: 0;
    margin-right: -350px;
  }
}

.map-content .map-full {
  min-height: 400px;
  z-index: 5;
}

@media (max-width: 1199px) {

  .js-sidebar-filters-mobile,
  .map-content {
    height: 100vh;
    position: fixed;
    right: 0;
    background: var(--bs-white);
    top: 0;
    z-index: 9991;
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition: 0.2s ease-in-out;
    -o-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
    max-width: 100%;
    width: 100%;
  }

  [data-bs-theme="dark"] .js-sidebar-filters-mobile,
  [data-bs-theme="dark"] .map-content {
    background: var(--bs-body-bg);
  }

  .js-sidebar-filters-mobile {
    overflow-y: scroll;
  }

  .js-sidebar-filters-mobile.active,
  .map-content.opened {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

@media (min-width: 1200px) {
  .map-content {
    position: fixed;
    right: 0;
    width: calc(100% - 650px);
    height: calc(100vh - 9.648rem);
  }

  [dir="rtl"] .map-content {
    left: 0;
    right: auto;
  }

  .map-content.active {
    width: calc(100% - 350px);
  }

  .map-content .map-full {
    height: calc(100vh - 9.648rem);
  }
}

@media (min-width: 1400px) {
  .map-content.active {
    width: calc(100% - 700px);
  }
}

.inner-wrap--top {
  z-index: 99;
}

.all-filters-wrap {
  z-index: 9;
}

.all-filters {
  background-color: var(--bs-white);
  -webkit-box-shadow: 0 8px 20px -3px rgba(0, 0, 0, 0.1);
  box-shadow: 0 8px 20px -3px rgba(0, 0, 0, 0.1);
}

[data-bs-theme="dark"] .all-filters {
  background-color: var(--bs-body-bg);
}

.search-select-input .form-control {
  height: 52px;
  font-size: 16px;
  padding: 6px 125px 6px 55px;
  border-radius: 30px;
}

[dir="rtl"] .search-select-input .form-control {
  padding: 6px 55px 6px 125px;
}

.search-select-input .form-control:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.search-bar .search-select .select2-container--bootstrap-5 .select2-selection {
  font-size: 15px;
  border-radius: 30px;
  min-height: calc(2.375em + 0.75rem + 2px);
  padding: 0.775rem 2.25rem 0.775rem 3rem;
}

.search-bar .select2-container--bootstrap-5.select2-container--open.select2-container--below .select2-selection {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.search-bar .search-select svg,
.search-bar .search-select-input svg {
  height: 20px;
  width: 20px;
}

.search-bar .search-select-input svg.form-icon-end {
  height: 18px;
  width: 18px;
}

[dir="rtl"] .select2-container--bootstrap-5 .select2-selection--single {
  background-position: left 0.75rem center;
}

[data-bs-theme="dark"] .select2-container--bootstrap-5 .select2-selection--single .select2-selection__rendered {
  color: var(--bs-white);
}

@media (min-width: 1200px) {
  .search-bar [class*="col-"] {
    border-right: 1px solid var(--bs-border-color);
  }

  [dir="rtl"] .search-bar [class*="col-"] {
    border-right: 0;
    border-left: 1px solid var(--bs-border-color);
  }

  .search-bar [class*="col-"]:nth-child(4) {
    border-right: 0;
  }

  .search-select-input .form-control {
    border: 0;
    height: 70px;
    border-radius: 0;
    padding: 6px 164px 6px 55px;
  }

  [dir="rtl"] .search-select-input .form-control {
    padding: 6px 55px 6px 164px;
  }

  .search-bar .search-select .select2-container--bootstrap-5 .select2-selection {
    border: 0;
    height: 70px;
    border-radius: 0;
    padding: 22px 44px 22px 55px;
  }

  [dir="rtl"] .search-bar .search-select .select2-container--bootstrap-5 .select2-selection {
    padding: 22px 55px 22px 44px;
  }

  .search-bar .search-select svg,
  .search-bar .search-select-input svg {
    height: 24px;
    width: 24px;
  }

  .search-bar .search-select-input svg.form-icon-end {
    height: 20px;
    width: 20px;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .filters-text {
    height: 52px;
    padding: 9px 20px;
    border: 1px solid var(--bs-border-color);
    border-radius: var(--bs-border-radius-pill);
  }

  .filters-text:first-child {
    width: 100%;
  }
}

.destinations-masonry .bg-blur,
.region-card .bg-blur {
  -webkit-transition: 150ms linear;
  -o-transition: 150ms linear;
  transition: 150ms linear;
}

.destinations-masonry:hover .bg-blur,
.region-card:hover .bg-blur {
  color: var(--bs-primary) !important;
  background-color: var(--bs-white);
}

.blog-list-card:hover .image-zoom-hover,
.card:hover .image-zoom-hover,
.news-list-item:hover .image-zoom-hover {
  -webkit-transform: scale(1.2) rotate(5deg);
  -ms-transform: scale(1.2) rotate(5deg);
  transform: scale(1.2) rotate(5deg);
}

.owl-carousel .owl-item .blog-avatar {
  height: 48px;
  width: 48px;
}

.reply-form.show {
  display: block;
}

.address-card {
  padding: 10px;
}

.address-card-info {
  padding: 20px;
  border-radius: 0.8rem;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  background-color: rgba(255, 255, 255, 0.3);
}

.authentication-wrap {
  max-width: 414px !important;
  margin: auto;
}

@media (max-width: 767px) {
  .authentication-wrap {
    padding-left: .2rem;
    padding-right: .2rem;
  }
}

.authentication-wrap h2 {
  text-align: left;
}

.google-signin-wrap {
  display: flex;
  justify-content: center;
  min-height: 40px;
  width: 100%;
}

.google-signin-wrap>div,
.google-signin-wrap iframe {
  margin-left: auto !important;
  margin-right: auto !important;
}

@media (min-width: 1400px) {
  .authentication-wrap {
    margin-left: 0;
  }
}

.auth-side-img {
  max-height: 100%;
  width: 100%;
  object-fit: contain;
  object-position: center top;
  margin-top: 4rem;
}

.required:after {
  content: "*";
  position: relative;
  font-size: inherit;
  color: rgba(var(--bs-danger-rgb)) !important;
  padding-left: 0.15rem;
  font-weight: 600;
}

.toggle-password {
  top: 50%;
  right: 10px;
  position: absolute;
  color: #666;
  cursor: pointer;
  pointer-events: all;
  -webkit-transform: translate(-5px, -50%);
  -ms-transform: translate(-5px, -50%);
  transform: translate(-5px, -50%);
  font-size: 14px;
}

[data-bs-theme="dark"] .toggle-password {
  color: var(--bs-white);
}

.listing-accordion .accordion-item {
  border-radius: 0.5rem;
}

.listing-accordion .accordion-button::after {
  background-color: transparent;
  background-size: 16px;
}

.listing-accordion .accordion-button {
  border-radius: 0.5rem;
}

.listing-accordion .accordion-item:first-of-type .accordion-button {
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
}

.ff_fileupload_wrap .ff_fileupload_dropzone {
  border-color: var(--bs-primary);
  border-radius: 0.5rem;
  background-color: var(--bs-white);
  background-size: 90px;
}

[data-bs-theme="dark"] .ff_fileupload_wrap .ff_fileupload_dropzone {
  background-color: var(--bs-body-bg);
}

.ff_fileupload_wrap .ff_fileupload_dropzone:active,
.ff_fileupload_wrap .ff_fileupload_dropzone:focus,
.ff_fileupload_wrap .ff_fileupload_dropzone:hover {
  opacity: 1;
  background-color: var(--bs-white);
  border-color: var(--bs-primary);
}

[data-bs-theme="dark"] .ff_fileupload_wrap .ff_fileupload_dropzone:active,
[data-bs-theme="dark"] .ff_fileupload_wrap .ff_fileupload_dropzone:focus,
[data-bs-theme="dark"] .ff_fileupload_wrap .ff_fileupload_dropzone:hover {
  background-color: var(--bs-body-bg);
}

.fileup-sm~.ff_fileupload_wrap .ff_fileupload_dropzone {
  height: 144px;
  background-size: 65px;
}

.ff_fileupload_wrap table.ff_fileupload_uploads td.ff_fileupload_summary {
  padding: 1.1em;
}

.ff_fileupload_wrap table.ff_fileupload_uploads td.ff_fileupload_summary .ff_fileupload_filename input {
  font-size: 14px;
  border-radius: 0.4rem;
  padding: 0.375rem 0.75rem;
  border-color: #dee2e6;
  height: 35px;
}

[data-bs-theme="dark"] .ff_fileupload_wrap table.ff_fileupload_uploads td.ff_fileupload_summary .ff_fileupload_filename input {
  border-color: #30353b;
  background-color: #12161c;
}

.ff_fileupload_wrap table.ff_fileupload_uploads td.ff_fileupload_actions button {
  width: 35px;
  height: 35px;
  border-radius: 0.4rem;
  border-color: #dee2e6;
}

.ff_fileupload_buttoninfo,
.ff_fileupload_fileinfo {
  margin-top: 0.15rem;
}

.ff_fileupload_wrap table.ff_fileupload_uploads td.ff_fileupload_summary .ff_fileupload_filename {
  color: var(--bs-dark);
}

.ff_fileupload_wrap table.ff_fileupload_uploads td.ff_fileupload_summary .ff_fileupload_errors {
  color: #dc3545;
  font-weight: 600;
}

.comment-datetime {
  letter-spacing: 0.5px;
}

.review-image [class*="col-"] a img {
  height: 75px;
  width: 115px;
}

.review-image [class*="col-"]:nth-child(2n + 3) a img {
  height: 75px;
  width: 75px;
}

.galary-overlay-hover::after {
  opacity: 0;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.galary-overlay-hover:hover::after {
  opacity: 0.5;
}

.galary-hover-element {
  visibility: hidden;
  opacity: 0;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  z-index: 9;
}

.galary-overlay-hover:hover .galary-hover-element {
  visibility: visible;
  opacity: 1;
}

.form-check.form-check-bookmark {
  padding-left: 0;
}

.form-check-bookmark .form-check-input {
  width: 0;
  height: 0;
  margin: 0;
  border: none;
}

.form-check-bookmark .form-check-bookmark-active {
  color: var(--bs-primary);
}

.form-check-bookmark .form-check-input~.form-check-label .form-check-bookmark-default {
  display: block;
}

.form-check-bookmark .form-check-input:checked~.form-check-label .form-check-bookmark-default,
.form-check-bookmark .form-check-input~.form-check-label .form-check-bookmark-active {
  display: none;
}

.form-check-bookmark .form-check-input:checked~.form-check-label .form-check-bookmark-active {
  display: block;
}

.form-check.form-check-bookmark .form-check-label {
  cursor: pointer;
}

@media (min-width: 992px) {
  .work-process [class*="col-"]:first-child {
    border-right: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
  }

  [dir="rtl"] .work-process [class*="col-"]:first-child {
    border-right: 0 !important;
    border-left: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
  }

  .work-process [class*="col-"]:nth-child(2) {
    border-right: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
  }

  [dir="rtl"] .work-process [class*="col-"]:nth-child(2) {
    border-right: 0 !important;
    border-left: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
  }

  .work-process.service [class*="col-"]:nth-child(3) {
    border-right: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
  }

  [dir="rtl"] .work-process.service [class*="col-"]:nth-child(3) {
    border-right: 0 !important;
    border-left: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
  }
}

.home-about {
  padding-bottom: 3rem !important;
  background-position: 50%;
}

.home-about-image {
  height: 336px;
}

.home-video .about-video {
  margin-top: -230px;
}

.home-video .about-video .about-img {
  height: 450px;
}

.blog-carousel .owl-stage-outer,
.place-carousel .owl-stage-outer {
  display: inline-block;
}

.listings-carousel .owl-stage-outer {
  display: block;
  overflow: hidden;
  position: relative;
  padding-bottom: 12px;
  margin-bottom: -12px;
}

@media (max-width: 767px) {
  .listings-carousel {
    margin-left: -30px;
    margin-right: -2px;
    width: calc(100% + 32px);
  }

  .listings-carousel .owl-stage-outer {
    overflow: visible !important;
  }

  .listings-carousel .owl-dots {
    display: none !important;
  }

  .listings-carousel .owl-nav {
    display: none !important;
  }
}

.no-js .owl-carousel,
.owl-carousel.owl-loaded {
  display: block;
  margin-bottom: 1rem;
}

/* Make listings carousel cards equal height */
.listings-carousel .owl-stage {
  display: flex;
  margin-left: 4px;
}

.listings-carousel .owl-item {
  display: flex;
  flex: 1 0 auto;
}

[dir="rtl"] .bx-wrapper,
[dir="rtl"] .owl-carousel {
  direction: ltr;
}

[dir="rtl"] .owl-carousel .owl-item {
  direction: rtl;
}

.owl-nav-bottom.owl-theme .owl-nav {
  display: none;
}

.owl-theme .owl-nav.disabled+.owl-dots {
  margin-top: 1rem !important;
}

.owl-nav-bottom.owl-theme .owl-nav [class*="owl-"] {
  margin: 0;
  height: 56px;
  width: 56px;
  border-radius: 50%;
  color: var(--bs-dark);
  background-color: var(--bs-white);
  border: 1px solid var(--bs-border-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: none;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: 150ms linear;
  -o-transition: 150ms linear;
  transition: 150ms linear;
}

[data-bs-theme="dark"] .owl-nav-bottom.owl-theme .owl-nav [class*="owl-"] {
  color: var(--bs-white);
  background-color: transparent;
}

.owl-carousel .owl-nav button.owl-next:hover i {
  -webkit-animation: 225ms linear forwards animate-icon-right;
  animation: 225ms linear forwards animate-icon-right;
}

.owl-carousel .owl-nav button.owl-prev:hover i {
  -webkit-animation: 225ms linear forwards animate-icon-left;
  animation: 225ms linear forwards animate-icon-left;
}

@-webkit-keyframes animate-icon-right {
  49% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }

  50% {
    opacity: 0;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }

  51% {
    opacity: 1;
  }
}

@keyframes animate-icon-right {
  49% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }

  50% {
    opacity: 0;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }

  51% {
    opacity: 1;
  }
}

@-webkit-keyframes animate-icon-left {
  49% {
    opacity: 0;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }

  50% {
    opacity: 0;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }

  51% {
    opacity: 1;
  }
}

@keyframes animate-icon-left {
  49% {
    opacity: 0;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }

  50% {
    opacity: 0;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }

  51% {
    opacity: 1;
  }
}

.owl-nav-bottom.owl-theme .owl-nav [class*="owl-"]:active,
.owl-nav-bottom.owl-theme .owl-nav [class*="owl-"]:focus,
.owl-nav-bottom.owl-theme .owl-nav [class*="owl-"]:hover {
  color: #fff;
  background-color: var(--bs-primary);
  border-color: var(--bs-primary);
}

.owl-nav-bottom.owl-theme .owl-dots {
  left: 0;
  margin: 0 auto;
  position: absolute;
  right: 0;
  width: 69px;

  display: none;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.owl-nav-bottom.owl-theme .owl-dots button.owl-dot span {
  height: 6px;
  width: 6px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.owl-nav-bottom.owl-theme .owl-dots button.owl-dot.active span {
  background-color: var(--bs-dark);
  border-radius: 50%;
  height: 8px;
  width: 8px;
}

[data-bs-theme="dark"] .owl-nav-bottom.owl-theme .owl-dots button.owl-dot.active span {
  background-color: var(--bs-primary);
}

.owl-nav-bottom.owl-theme .owl-dots button.owl-dot:nth-child(10),
.owl-nav-bottom.owl-theme .owl-dots button.owl-dot:nth-child(11),
.owl-nav-bottom.owl-theme .owl-dots button.owl-dot:nth-child(12),
.owl-nav-bottom.owl-theme .owl-dots button.owl-dot:nth-child(13),
.owl-nav-bottom.owl-theme .owl-dots button.owl-dot:nth-child(14),
.owl-nav-bottom.owl-theme .owl-dots button.owl-dot:nth-child(4),
.owl-nav-bottom.owl-theme .owl-dots button.owl-dot:nth-child(5),
.owl-nav-bottom.owl-theme .owl-dots button.owl-dot:nth-child(6),
.owl-nav-bottom.owl-theme .owl-dots button.owl-dot:nth-child(7),
.owl-nav-bottom.owl-theme .owl-dots button.owl-dot:nth-child(8),
.owl-nav-bottom.owl-theme .owl-dots button.owl-dot:nth-child(9) {
  display: none;
}

.owl-nav-center.owl-theme .owl-nav {
  margin-top: 0;
}

.owl-nav-center.owl-theme .owl-nav [class*="owl-"] {
  color: #fff;
  padding: 4px 7px;
  display: inline-block;
  cursor: pointer;
  position: absolute;
  top: 50%;
  left: 0;
  opacity: 1;
  -webkit-transition: 0.5s linear;
  -o-transition: 0.3s;
  transition: 0.3s;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  height: 60px;
  width: 36px;
  border-radius: 0;
  line-height: 60px;
  margin: 0;
  background-color: var(--bs-primary);
  font-size: 15px;
}

.owl-nav-center.owl-theme .owl-nav .owl-prev {
  border-top-right-radius: 0.375rem;
  border-bottom-right-radius: 0.375rem;
}

.owl-nav-center.owl-theme .owl-nav .owl-next {
  left: auto;
  right: 0;
  border-top-left-radius: 0.375rem;
  border-bottom-left-radius: 0.375rem;
}

.error-text {
  font-size: calc(7.625rem + 4.5vw);
}

@media (min-width: 1200px) {
  .error-text {
    font-size: 18rem;
  }
}

.color-box.content {
  background-color: #707070;
}

.pricing-table.table {
  --bs-table-bg: transparent;
  --bs-table-border-color: #efdfdc;
  --bs-table-hover-bg: #fff;
}

[data-bs-theme="dark"] .pricing-table.table {
  --bs-table-border-color: rgba(255, 255, 255, 0.1);
  --bs-table-hover-bg: var(--bs-body-bg);
}

.nav-tabs.nav-tabs_two {
  --bs-nav-link-color: var(--bs-dark);
  --bs-nav-tabs-link-active-bg: var(--bs-primary);
  --bs-nav-tabs-link-active-color: var(--bs-white);
}

.nav-tabs.nav-tabs_two .nav-item:not(:last-child) {
  margin-right: 0.5rem;
}

.nav-tabs.nav-tabs_two .nav-link {
  border: 0;
  border-radius: 0.375rem;
}

.cs-content>.table,
.cs-content>.table-responsive .table {
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
}

@media (max-width: 991.98px) {

  .cs-content>.table-responsive .table.table-bordered,
  .cs-content>.table.table-bordered {
    border: 0;
  }
}

.cs-content>.table thead,
.cs-content>.table-responsive .table thead {
  border-bottom: 2px solid currentcolor;
}

.cs-content>.table tbody:not(:first-child),
.cs-content>.table-responsive .table tbody:not(:first-child) {
  border-top: 2px solid currentcolor;
}

.cs-content>.table td:first-child,
.cs-content>.table th:first-child,
.cs-content>.table-responsive .table td:first-child,
.cs-content>.table-responsive .table th:first-child {
  padding-left: 0;
}

.cs-content>.table td:not(:last-child),
.cs-content>.table th:not(:last-child),
.cs-content>.table-responsive .table td:not(:last-child),
.cs-content>.table-responsive .table th:not(:last-child) {
  padding-right: 1.5rem;
}

.cs-content>.table td:first-child>code,
.cs-content>.table th,
.cs-content>.table-responsive .table td:first-child>code,
.cs-content>.table-responsive .table th {
  white-space: nowrap;
}

.main-footer {
  background-color: var(--bs-white);
  background-repeat: no-repeat;
}

.footer-logo {
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo img {
  height: 40px;
}

.footer-link .link,
.footer-nav li a {
  color: var(--bs-body-color);
  font-weight: 500;
  -webkit-transition: 0.45s;
  -o-transition: 0.45s;
  transition: 0.45s;
}

.footer-link .link:hover,
.footer-nav li a:hover,
.social-icon a:hover {
  color: var(--bs-white) !important;
}

.social-icon a {
  -webkit-transition: 0.45s;
  -o-transition: 0.45s;
  transition: 0.45s;
  color: var(--bs-body-color);
}

.social-icon .icon-wrap {
  width: 48px;
  height: 48px;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  background-color: rgba(255, 255, 255, 0.2);
}

.social-icon .icon-wrap.inst:hover {
  background-color: #e1306c !important;
}

.social-icon .icon-wrap.twi:hover {
  background-color: #00acee !important;
}

.social-icon .icon-wrap.dri:hover {
  background-color: #ea4c89 !important;
}

.social-icon .icon-wrap.fb:hover {
  background-color: #1877f2 !important;
}

.social-icon .icon-wrap.whatsapp:hover {
  background-color: #075e54 !important;
}

.whatsapp-number {
  letter-spacing: 3px;
}

.footer-dark {
  color: var(--bs-white);
  background-color: var(--footer-bg-color);
  --bs-border-color: rgba(255, 255, 255, 0.1);
}

.footer-dark .email-link,
.footer-dark .link-title {
  color: var(--bs-white);
}

.footer-dark .footer-link .link,
.footer-dark .footer-nav li a,
.footer-dark .social-icon a {
  color: #8d9193;
}

@media (min-width: 576px) and (max-width: 991px) {
  .footer-row .border-end:nth-child(2) {
    border-width: 0 !important;
  }
}

.newsletter .form-control {
  height: 62px;
  font-size: 16px;
  padding: 10px 63px 10px 20px;
  -webkit-box-shadow: 0 0 40px rgb(29 58 83 / 10%);
  box-shadow: 0 0 40px rgb(29 58 83 / 10%);
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 35px;
}

.newsletter .form-control:focus {
  border-color: var(--bs-primary);
}

.newsletter .form-control::-moz-placeholder {
  color: var(--bs-white);
}

.newsletter .form-control::-webkit-input-placeholder {
  color: var(--bs-white);
}

.newsletter .form-control:-ms-input-placeholder {
  color: var(--bs-white);
}

.newsletter .form-control::-ms-input-placeholder {
  color: var(--bs-white);
}

.newsletter .form-control::placeholder {
  color: var(--bs-white);
}

.newsletter .search-btn {
  right: 10px;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  height: 45px;
  width: 45px;
}

.footer-dark .border.app-btn {
  width: 178px;
  max-width: 178px;
  -webkit-transition: 150ms linear;
  -o-transition: 150ms linear;
  transition: 150ms linear;
  border: 1px solid rgba(255, 255, 255, 0.5) !important;
}

.footer-dark .border.app-btn:hover {
  background-color: var(--bs-dark);
  border-color: var(--bs-dark) !important;
}

.radio-list input[type="radio"] {
  display: none;
}

.radio-list input[type="radio"]:checked+label span {
  -webkit-transform: scale(1.3);
  -ms-transform: scale(1.3);
  transform: scale(1.3);
}

.radio-list label {
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-right: 5px;
  cursor: pointer;
  border-radius: 50%;
  margin-bottom: 5px;
}

.radio-list label span {
  display: block;
  width: 100%;
  height: 100%;
  -webkit-transition: -webkit-transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out;
  -o-transition: transform 0.2s ease-in-out;
  transition:
    transform 0.2s ease-in-out,
    -webkit-transform 0.2s ease-in-out;
  border-radius: 50%;
}

.radio-list label:hover span {
  -webkit-transform: scale(1.25);
  -ms-transform: scale(1.25);
  transform: scale(1.25);
}

.message-content.bg-text-red .message .text.me,
.radio-list label span.red {
  background: red;
}

.message-content.bg-text-green .message .text.me,
.radio-list label span.green {
  background: -o-linear-gradient(left, rgb(248 69 37), #f7b733);
  background: -webkit-gradient(linear,
      left top,
      right top,
      from(rgb(248 69 37)),
      to(#f7b733));
  background: linear-gradient(to right, rgb(248 69 37), #f7b733);
}

.message-content.bg-text-yellow .message .text.me,
.radio-list label span.yellow {
  background: #fbbd08;
}

.message-content.bg-text-olive .message .text.me,
.radio-list label span.olive {
  background: #b5cc18;
}

.message-content.bg-text-orange .message .text.me,
.radio-list label span.orange {
  background: #f2711c;
}

.message-content.bg-text-teal .message .text.me,
.radio-list label span.teal {
  background: #00b5ad;
}

.message-content.bg-text-blue .message .text.me,
.radio-list label span.blue {
  background: #2185d0;
}

.message-content.bg-text-violet .message .text.me,
.radio-list label span.violet {
  background: #6435c9;
}

.message-content.bg-text-purple .message .text.me,
.radio-list label span.purple {
  background: #a333c8;
}

.radio-list label span.pink {
  background: #e03997;
}

.banner.dark-overlay:after {
  background-color: transparent;
  background-image: -webkit-gradient(linear,
      right top,
      left top,
      from(#00000000),
      to(#000));
  background-image: -o-linear-gradient(right, #00000000 0, #000 100%);
  background-image: linear-gradient(270deg, #00000000 0, #000 100%);
  opacity: 0.7;
}

.banner.banne-restaurant.dark-overlay:after {
  background-image: linear-gradient(80deg, #00000000 0, #000 100%);
}

.inspection-accordion.accordion {
  --bs-accordion-border-width: 0;
  --bs-accordion-active-color: var(--bs-primary);
  --bs-accordion-btn-icon-transform: rotate(90deg);
}

[dir="rtl"] .inspection-accordion.accordion {
  --bs-accordion-btn-icon-transform: rotate(-90deg);
}

.inspection-accordion.accordion .accordion-item,
.inspection-accordion.accordion .accordion-item .accordion-button {
  background-color: var(--bs-white);
}

[data-bs-theme="dark"] .inspection-accordion.accordion .accordion-item,
[data-bs-theme="dark"] .inspection-accordion.accordion .accordion-item .accordion-button {
  background-color: var(--bs-body-bg);
}

.inspection-accordion.accordion .accordion-item .accordion-button::after {
  height: auto;
  width: auto;
  position: absolute;
  top: 1rem;
  right: 1rem;
  border: 0;
  background-image: none;
  content: "\f054";
  font-weight: 900;
  font-family: "Font Awesome 6 Free";
  color: #bebebe;
  font-size: 12px;
}

[dir="rtl"] .inspection-accordion.accordion .accordion-item .accordion-button::after {
  right: auto;
  left: 1rem;
  content: "\f053";
}

.inspection-accordion.accordion .accordion-item .accordion-button:hover::after {
  background-color: transparent;
}

.items-carousel.owl-nav-center.owl-theme .owl-nav [class*="owl-"] {
  color: var(--bs-primary);
  background-color: var(--bs-light);
}

#details {
  margin-top: 20px;
  font-family: Arial, sans-serif;
}

.flash-offer-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  border: 1px solid rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
}

.flash-offer-badge::after {
  content: "";
  position: absolute;
  top: -60%;
  left: -40%;
  width: 50%;
  height: 220%;
  transform: rotate(25deg);
  background: rgba(255, 255, 255, 0.45);
  filter: blur(1px);
  animation: 2.2s ease-in-out infinite flashShine;
  pointer-events: none;
}

@keyframes flashShine {
  0% {
    left: -60%;
    opacity: 0;
  }

  15% {
    opacity: 0.55;
  }

  100%,
  45% {
    left: 130%;
    opacity: 0;
  }
}

.flash-offer-badge i {
  animation: 1.4s ease-in-out infinite boltJitter;
}

@keyframes boltJitter {

  0%,
  100% {
    transform: translateY(0) rotate(0);
  }

  40% {
    transform: translateY(-1px) rotate(-6deg);
  }

  60% {
    transform: translateY(0) rotate(6deg);
  }
}

[data-bs-theme="dark"] .flash-offer-badge {
  color: var(--color-primary);
  border-color: rgba(255, 255, 255, 0.12);
}

.expiry-date {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
}

.expiry-date.active {
  background-color: #f6e84b;
  color: #000;
}

.expiry-date.future {
  background-color: #0d6efd;
  color: #fff;
}

.expiry-date.expired {
  background-color: #dc3545;
  color: #fff;
}

.expiry-date i,
.expiry-date svg {
  color: inherit;
}

.flash-offer-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.new-offer-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  box-shadow: 0 8px 18px rgba(236, 72, 153, 0.25);
  position: relative;
  overflow: hidden;
}

.new-offer-badge::after {
  content: "";
  position: absolute;
  top: -40%;
  left: -60%;
  width: 60%;
  height: 180%;
  transform: rotate(25deg);
  background: rgba(255, 255, 255, 0.25);
  filter: blur(2px);
  animation: 2.2s infinite badgeShine;
}

@keyframes badgeShine {
  0% {
    left: -60%;
  }

  100% {
    left: 130%;
  }
}

.offer-badges {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: auto;
  z-index: 1;
}

.coming-soon-badge,
.expiry-date,
.flash-offer-badge,
.new-offer-badge {
  display: inline-flex;
  align-items: center;
  height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 13px;
  line-height: 1;
  gap: 8px;
  white-space: nowrap;
  box-sizing: border-box;
}

.expiry-date.offer-status-expired {
  background: #424242 !important;
  color: #fff;
}

.expiry-date.offer-status-active {
  background: var(--color-brand);
  color: var(--color-brand-dark);
}

.expiry-date.offer-status-upcoming {
  background: var(--color-brand-dark);
  color: var(--color-brand);
}

.flash-offer-badge {
  background: var(--color-brand-dark);
  color: var(--color-brand);
  letter-spacing: 0.08em;
}

.new-offer-badge {
  background: var(--color-brand-dark);
  color: var(--color-brand);
  letter-spacing: 0.08em;
}

.coming-soon-badge {
  background: var(--color-brand-dark);
  color: var(--color-brand);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.remaining-badge {
  display: inline-flex;
  align-items: center;
  height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 13px;
  line-height: 1;
  gap: 7px;
  white-space: nowrap;
  box-sizing: border-box;
  border: 2px solid #ccff00;
  background: transparent;
  color: var(--color-brand-dark);
}

.redeemed-offer-indicator {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: white;
  color: var(--color-brand-dark);
}

.redeemed-offer-indicator i {
  font-size: 18px;
  line-height: 1;
}

.company-filter-bar {
  flex-wrap: wrap;
  padding: 12px 14px;
  border-radius: 8px;
  background: rgba(0, 43, 42, 0.06);
  border: 1px solid rgba(0, 43, 42, 0.12);
}

.company-filter-summary {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  min-width: 0;
}

.company-filter-label {
  color: var(--color-brand-dark);
  font-weight: 700;
  line-height: 1.2;
}

.company-filter-name {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  max-width: 100%;
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--color-brand-dark);
  color: var(--color-brand);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.15;
  overflow-wrap: anywhere;
}

.company-filter-clear {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 36px;
  padding: 8px 14px;
  border: 1px solid var(--color-brand-dark);
  border-radius: 999px;
  background: var(--color-brand);
  color: var(--color-brand-dark);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  transition: background-color 0.18s ease, color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.company-filter-clear:hover,
.company-filter-clear:focus {
  background: var(--color-brand-dark);
  color: var(--color-brand);
  box-shadow: 0 8px 18px rgba(0, 43, 42, 0.16);
  transform: translateY(-1px);
}

.company-filter-clear:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

@media (max-width: 575px) {
  .company-filter-bar {
    align-items: stretch !important;
  }

  .company-filter-summary,
  .company-filter-clear {
    width: 100%;
  }
}

.btn-crud {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 90px;
  height: 36px;
  padding: 0 14px;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: 0.2s ease-in-out;
}

.btn-edit {
  background-color: #3b82f6;
  color: #fff;
}

.btn-edit:hover {
  background-color: #2563eb;
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(59, 130, 246, 0.35);
}

.btn-delete {
  background-color: #ef4444;
  color: #fff;
}

.btn-delete:hover {
  background-color: #dc2626;
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(239, 68, 68, 0.35);
}

.crud-actions {
  display: flex;
  gap: 8px;
}

.btn-crud i {
  font-size: 1rem;
  margin-right: 6px;
  line-height: 1;
}

.table td {
  vertical-align: middle;
}

.col-date {
  width: 1%;
  white-space: nowrap;
  text-align: center;
  font-weight: 500;
}

.navbar .navbar-nav .nav-link {
  white-space: nowrap;
}

.search-field {
  grid-column-gap: 16px;
  position: relative;
}

#pac-input {
  margin: 0;
  min-width: 0;
  flex: 1 1 auto;
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 14px;
  padding: 12px 42px 12px 14px;
  font-size: 14px;
  outline: 0;
}

#pac-input:focus {
  border-color: rgba(0, 0, 0, 0.18);
  box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.06);
}

.clear-input {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: none;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.06);
  color: #333;
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
}

.clear-input:hover {
  background: rgba(0, 0, 0, 0.12);
}

.clear-input.is-visible {
  display: flex;
}

.address-details.is-hidden {
  display: none;
}

.suggestions-box {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  z-index: 9999;
  display: none;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  overflow: hidden;
  max-height: 320px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  touch-action: pan-y;
}

.suggestions-box.is-open {
  display: block;
}

.suggestion {
  padding: 12px 14px;
  cursor: pointer;
  display: flex;
  gap: 10px;
  align-items: center;
}

.suggestion+.suggestion {
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.suggestion.is-active,
.suggestion:hover {
  background: rgba(0, 0, 0, 0.04);
}

.suggestion-title {
  font-weight: 700;
  font-size: 14px;
  color: #111;
}

.suggestion-subtitle {
  font-size: 12px;
  color: #666;
  margin-top: 2px;
}

.suggestion-manual {
  justify-content: center;
  font-weight: 600;
  color: #1a73e8;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.suggestion-manual:hover {
  background: rgba(26, 115, 232, 0.08);
}

.suggestion-manual .manual-icon {
  font-size: 16px;
  line-height: 1;
}

.ui-switch {
  position: relative;
}

.view {
  overflow: hidden;
  max-height: 2000px;
  opacity: 1;
  transform: translateY(0);
  transition:
    max-height 220ms,
    opacity 220ms,
    transform 220ms;
}

.view.is-hidden {
  max-height: 0;
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
}

#map {
  width: 100%;
  height: 240px;
  border-radius: 12px;
  position: relative;
  z-index: 1;
}

@media (max-width: 600px) {
  #map {
    height: 200px;
  }
}

.btn-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  margin-bottom: 14px;
  background: rgba(26, 115, 232, 0.08);
  border: 1px solid rgba(26, 115, 232, 0.25);
  border-radius: 12px;
  font-size: 14px;
  font-weight: 500;
  color: #1a73e8;
  cursor: pointer;
  transition:
    background 150ms,
    box-shadow 150ms,
    transform 0.1s;
}

.btn-back:hover {
  background: rgba(26, 115, 232, 0.14);
  box-shadow: 0 6px 14px rgba(26, 115, 232, 0.18);
}

.btn-back:active {
  transform: translateY(1px);
}

.btn-back-icon {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
}

/* font-family global definida en tokens.css */
/* color y background heredados de tokens.css */


.nav-menu {
  display: flex;
  flex: 1;
  justify-content: space-between;
  align-items: center;
  margin-left: 40px;
}


.nav-right .btn {
  background: var(--dark) !important;
  color: var(--primary) !important;
  padding: 8px 18px !important;
}

.nav-right .btn:hover {
  background: var(--primary) !important;
  color: var(--dark) !important;
}

.nav-right {
  display: flex;
  gap: 8px;
  align-items: center;
}

.mobile-language-switch {
  display: none;
}

@media (max-width: 968px) {
  .hamburger-btn {
    display: none !important;
  }

  .mobile-language-switch {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
    color: var(--dark);
    font-size: 0.9rem;
    font-weight: 700;
    z-index: 100;
  }

  .mobile-language-switch a {
    color: var(--dark);
    text-decoration: none;
  }

  .mobile-language-switch a.is-active {
    color: var(--secondary);
  }

  .nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 24px;
    border-radius: var(--radius-md);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    margin-left: 0;
    gap: 20px;
    z-index: 99;
    border: 1px solid rgba(0, 0, 0, 0.05);
  }

  .nav-menu .nav-links,
  .nav-menu .nav-right {
    flex-direction: column;
    width: 100%;
    gap: 16px !important;
  }


  .mobile-menu-toggle:checked~.nav-menu {
    display: flex;
  }

  .feature-grid,
  .hero-grid,
  .info-block {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .hero {
    padding: 100px 0 100px;
    text-align: left;
  }

  .hero h1 {
    margin-inline: auto;
  }

  .hero .subtitle {
    margin-inline: auto;
    margin-bottom: 2rem;
  }

  .form-card {
    margin-inline: auto;
  }

  .hero-image-container {
    display: none;
  }

  .cta-section h2 {
    font-size: 2.2rem;
  }

  .info-block.reverse {
    direction: ltr;
  }

  .footer-bottom {
    flex-direction: center;
    border-top: none;
  }
}

@media (max-width: 480px) {
  .input-group {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .logo img {
    max-width: 160px !important;
  }

  .nav-wrapper {
    justify-content: start;
  }

  .form-card {
    padding: 32px 18px;
  }
}

.success-box {
  text-align: center;
  padding: 20px;
}

.success-icon {
  width: 48px;
  height: 48px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--dark);
  font-size: 1.5rem;
}

.mobile-bottom-nav {
  display: none;
}

@media (max-width: 1199px) {
  .items-content .form-select {
    font-size: 0.8rem;
    padding-right: 1.8rem;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
  }
}

@media (max-width: 768px) {
  body {
    padding-bottom: 70px !important;
  }

  .mobile-bottom-nav {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white, #fff);
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    justify-content: space-around;
    padding: 12px 0 8px;
    border-top: 1px solid #edf2f7;
    padding-bottom: calc(8px + env(safe-area-inset-bottom));
  }

  .mobile-bottom-nav a {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--text-light, #64748b);
    font-size: 0.75rem;
    font-family: inherit;
    font-weight: 500;
    gap: 4px;
    transition: color 0.2s;
  }

  .mobile-bottom-nav a.active,
  .mobile-bottom-nav a:active {
    color: var(--dark, #002b2a);
  }

  .mobile-bottom-nav svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
  }
}

/* ============================================
   HOME PAGE STYLES - Migrated from home.php
   ============================================ */

/* --- CSS Variables Extension --- */


/* Tipografía base: ver tokens.css */

h2 {
  margin-bottom: 32px;
  font-size: var(--text-4xl);
}

/* --- Header Styles --- */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0px 0;
  transition: all 0.3s ease;
}

header.scrolled {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  font-size: 0.9rem;
  position: relative;
}

.logo {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--dark);
  padding-top: 0.7rem;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.logo-dot {
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
}

/* --- Button Styles --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 28px;
  border-radius: 100px;
  font-weight: 600;
  font-size: var(--text-sm);
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  text-decoration: none;
}

.btn:hover {
  background: var(--dark);
  color: var(--primary);
}

/* .btn-primary {
  background: var(--dark);
  color: var(--primary);
  font-family: "Kode Mono", monospace;
} 

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  background: #b8e600 !important;
  color: var(--color-brand-dark) !important;
}*/

.btn-action {
  background: var(--secondary);
  color: white;
}

.btn-action:hover {
  transform: translateY(-2px);
  background: var(--primary);
  color: var(--dark);
}

/* --- Hero Section --- */
.hero {
  padding: 100px 0 100px;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  /* antes: 1.2fr 0.8fr */
  gap: 60px;
  align-items: center;
}

.badge {
  display: inline-flex;
  padding: 6px 16px;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 100px;
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
  box-shadow: var(--shadow);
}

.hero h1 {
  font-size: var(--text-6xl);
  margin-bottom: 24px;
}

.hero .subtitle {
  font-size: var(--text-md);
  margin-bottom: 40px;
  max-width: 540px;
}

/* --- Form Card --- */
.form-card {
  background: var(--white);
  padding: 32px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-hover);
  max-width: 500px;
}

.footer-card {
  width: 100% !important;
  max-width: 100% !important;
}

/* --- Hero Image --- */
.hero-image-container {
  position: relative;
}

.hero-img-main {
  width: 100%;
  height: auto;
  object-fit: contain;
  aspect-ratio: 1/1;
  background: transparent;
}


/* --- Sections --- */
section {
  padding: 100px 0;
}

.section-tag {
  color: var(--secondary);
  font-weight: 500;
  text-transform: uppercase;
  font-size: 1rem;
  display: block;
  margin-bottom: 12px;
}

.section-header {
  max-width: 700px;
  margin-bottom: 60px;
}

.section-header h2 {}

/* --- Feature Grid --- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
}

.feature-grid.grid-4 {
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
}

@media (max-width: 1200px) {
  .feature-grid.grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.feature-card {
  transition: all 0.3s ease;
  padding: 0 0 0 0;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.icon-box {
  width: 56px;
  height: 56px;
  background: var(--bg);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-xl);
  margin-bottom: 24px;
}

.feature-card h3 {
  font-size: var(--text-lg);
  margin: 18px 0;
  font-family: var(--font-display);
  font-weight: 500;
}

.feature-card p {
  color: var(--text-light);
  font-size: var(--text-sm);
}

.feature-img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 0 24px;
  border-radius: 12px;
  padding: 0 4rem 0 0;
}

@media (max-width: 768px) {
  .feature-img {
    padding: 0;
  }
}

/* --- Info Section --- */
.info-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.info-block.reverse {
  direction: rtl;
}

.info-block.reverse .info-content {
  direction: ltr;
}

.info-image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1/1;
  text-align: center;
  width: 100%;
}

.info-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.check-list {
  list-style: none;
  margin-top: 32px;
  margin-bottom: 32px;
  padding-left: 32px;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-weight: 500;
}

.check-list.problem li svg {
  color: var(--secondary);
}

.check-list.solution li svg {
  color: var(--primary-dark);
}

/* --- CTA Section --- */
.cta-section {
  background: var(--dark);
  border-radius: 40px;
  padding: 80px 40px;
  text-align: center;
  color: white;
  margin: 60px 0;
  position: relative;
  overflow: hidden;
}

.cta-section::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: var(--primary);
  filter: blur(120px);
  opacity: 0.1;
  pointer-events: none;
}

.cta-section h2 {
  color: white;
  margin-bottom: 16px;
}

.cta-section-inverted {
  background: #ffffff;
  color: var(--dark);
}

.cta-section-inverted::after {
  display: none;
}

.cta-section-inverted h2 {
  color: var(--dark);
}

.cta-section-inverted .cta-text {
  color: var(--dark);
}


.cta-content {
  max-width: 600px;
  margin: 0 auto;
}

.perks-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 32px 0 48px;
}

.pill {
  background: rgba(255, 255, 255, 0.1);
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* --- Footer --- */
footer {
  padding: 80px 0 40px;
  border-top: 1px solid #edf2f7;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-top: 32px;
  font-size: 0.85rem;
  color: var(--text-light);
}

/* --- Animations --- */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-reveal].active {
  opacity: 1;
  transform: translateY(0);
}

/* --- Responsive Overrides --- */
@media (max-width: 480px) {
  .btn-primary {
    padding: 6px 10px;
    margin-left: 0px;
    display: none;
  }
}

/* ============================================
   HOME PAGE - RESPONSIVE FIXES
   Append this to the END of app.css
   ============================================ */

/* Mobile Pricing Table - Horizontal Scroll */
@media (max-width: 768px) {
  #pricing .pricing-container {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 20px;
  }

  #pricing .pricing-table {
    min-width: 800px;
    /* Force horizontal scroll */
  }

  /* Visual scroll indicator */
  #pricing .pricing-container::after {
    content: '← Desliza para ver más →';
    display: block;
    text-align: center;
    font-size: 0.75rem;
    color: var(--text-light);
    margin-top: 10px;
    font-weight: 500;
  }
}

/* Hero Section - Mobile Override */
@media (max-width: 968px) {
  .hero {
    padding: 120px 0 60px;
  }

  .hero-grid {
    grid-template-columns: 1fr !important;
    gap: 0px;
  }

  .hero h1 {
    font-size: 2.8rem !important;
  }

  .hero .subtitle {
    font-size: 1rem;
    max-width: 100%;
  }

  .hero-image-container {
    display: block !important;
    /* Override display:none if present */
    max-width: 400px;
    margin: 0 auto;
  }

  .hero-img-floating {
    bottom: 10px;
    left: 10px;
    padding: 16px;
    font-size: 0.9rem;
  }
}

/* Feature Grid - Force Single Column */
@media (max-width: 968px) {
  .feature-grid {
    grid-template-columns: 1fr !important;
    gap: 4rem !important;
  }

  .feature-card {
    padding: 0;
  }

  .feature-card h3 {
    font-size: 1.2rem;
  }
}

/* Info Blocks - Stack Vertically */
@media (max-width: 968px) {
  .info-block {
    grid-template-columns: 1fr !important;
    gap: 40px;
  }

  .info-block.reverse {
    direction: ltr !important;
  }

  .info-image-wrapper {
    max-width: 400px;
    margin: 0 auto;
  }
}

/* Section Spacing - Reduced Padding */
@media (max-width: 768px) {
  section {
    padding: 60px 0 !important;
  }

  .section-header h2 {
    line-height: 1.2;

  }

  .container {
    padding-left: 12px;
    padding-right: 12px;
  }
}

/* FAQ Section - Compact Layout */
@media (max-width: 768px) {
  #faq details summary {
    font-size: 1rem;
    padding: 12px 16px;
  }

  #faq details p {
    padding: 0 16px 12px;
    padding-top: 12px;
    font-size: 0.9rem;
  }

  #faq .section-header {
    margin-bottom: 30px;
  }
}

/* CTA Section - Mobile Optimization */
@media (max-width: 768px) {
  .cta-section {
    padding: 60px 20px !important;
    border-radius: 20px;
    margin: 40px 0;
  }

  .cta-section h2 {
    font-size: 2rem !important;
    margin-bottom: 12px;
  }

  .cta-section p {
    font-size: 0.95rem;
  }

  .perks-pills {
    gap: 8px;
    margin: 24px 0 32px;
  }

  .pill {
    font-size: 0.85rem;
    padding: 6px 16px;
  }
}

/* Button Optimization - Better Touch Targets */
@media (max-width: 480px) {
  .btn {
    padding: 14px 24px;
    font-size: 0.95rem;
  }

  a.btn.btn-action {
    width: 100%;
    max-width: 100%;
    text-align: center;
  }

  .hero .btn.btn-action {
    padding: 16px 32px !important;
    font-size: 1.1rem !important;
  }
}

/* Pricing Card - Compact Mobile View */
@media (max-width: 768px) {
  #pricing .pricing-card {
    padding: 30px 10px;
    border-radius: 16px;
  }

  #pricing table th h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
  }

  #pricing table th div {
    font-size: 2.5rem;
  }

  #pricing table td,
  #pricing table th {
    font-size: 0.85rem;
    padding: 16px 12px;
  }

  #pricing table td:first-child,
  #pricing table th:first-child {
    padding-left: 0;
  }

  #pricing table .btn {
    font-size: 0.85rem;
    padding: 12px 16px;
  }
}

/* WhatsApp Float Button - Mobile Position */
@media (max-width: 768px) {
  a[href*="wa.me"] img {
    width: 56px !important;
    height: 56px !important;
    bottom: 80px !important;
    /* Above mobile nav */
    right: 20px !important;
  }
}

/* Very Small Devices - Typography Adjustments */
@media (max-width: 375px) {
  .hero h1 {
    font-size: 2.8rem !important;
  }

  .section-header h2 {
    font-size: 1.5rem;
  }

  .feature-card h3 {
    font-size: 1.1rem;
  }

  .cta-section h2 {
    font-size: 1.5rem !important;
  }

  #pricing table th h3 {
    font-size: 1.3rem;
  }

  #pricing table th div {
    font-size: 2rem;
  }
}

/* Landscape Mobile - Optimize Height */
@media (max-width: 968px) and (max-height: 500px) {
  .hero {
    padding: 80px 0 40px;
  }

  .hero .align-mobile div {
    text-align: center;
  }

  section {
    padding: 40px 0 !important;
  }
}

/* Badge Styling - Mobile */
@media (max-width: 768px) {
  .badge {
    font-size: 0.75rem;
    padding: 8px 16px;
  }

  .section-tag {
    font-size: 0.75rem;
  }
}

/* Check List - Mobile Spacing */
@media (max-width: 768px) {
  .check-list {
    margin-top: 24px;
    margin-bottom: 24px;
    padding-left: 0;
  }

  .check-list li {
    gap: 10px;
    margin-bottom: 14px;
    font-size: 0.95rem;
  }

  .check-list li svg {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
  }
}

/* Footer Grid - Mobile Stack */
@media (max-width: 768px) {
  .footer-grid {
    flex-direction: column;
    gap: 32px;
    margin-bottom: 2rem;
    display: none !important;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0px;
    text-align: center;
    padding-top: 24px;
    align-items: center;
  }

  footer {
    padding: 60px 0 32px;
  }

  .footer-top {
    display: none !important;
  }
}

/* Animation - Reduce Motion Preference */
@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    transition: none !important;
  }

  .feature-card,
  .btn,
  .hero-img-main {
    transition: none !important;
  }
}

.offer-cta-box .btn {
  padding: 18px !important;
  font-size: 0.9rem;
  background: var(--color-danger);
  color: white;
}

.offer-cta-box .btn:not(:disabled) {
  background: var(--color-danger) !important;
  color: white !important;
}

.offer-cta-box .btn i {
  display: none;
}

.offer-cta-box:has(.offer-cta-status--saved) .btn:not(:disabled) {
  background: var(--color-brand-dark) !important;
  color: var(--color-brand) !important;
}

/* ===== OFFER SINGLE PAGE — MOBILE CTA + BOTTOM NAV ===== */
@media (max-width: 767px) {

  /* Bottom nav más compacto */
  .mobile-bottom-nav {
    padding: 8px 0 6px;
    padding-bottom: calc(6px + env(safe-area-inset-bottom));
  }

  .mobile-bottom-nav a {
    font-size: 0.7rem;
    gap: 2px;
  }

  .mobile-bottom-nav svg {
    width: 20px;
    height: 20px;
  }

  /* CTA fijo más compacto */
  .offer-cta-box {
    bottom: 50px !important;
    /* altura reducida del bottom nav */
    padding: 0.75rem 1rem !important;
  }

  .offer-cta-box .btn {
    padding: 14px !important;
    font-size: 0.9rem;
    background: var(--color-danger) !important;
    color: white !important;
  }

  .offer-cta-hint {
    font-size: 12px;
    margin-bottom: 6px;
  }
}

.offer-hero {
  padding: 0;
}

.offer-hero-img-wrap {
  width: 100%;
  max-width: 1200px;
  margin: 3rem auto 0;
  aspect-ratio: 16/7;
  max-height: 44vh;
  overflow: hidden;
  position: relative;
  border-radius: 16px;
}

@media (max-width: 767px) {
  .offer-hero {
    padding: 0 12px;
    margin-top: 0;
  }

  .offer-hero-img-wrap {
    margin: 0 auto 0;
    aspect-ratio: 16/9;
    max-height: 36vh;
    border-radius: 12px;
  }
}

.offer-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.offer-hero-badges {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 6px;
  z-index: 2;
}

.offer-hero-badges .card-badge {
  position: relative;
  top: auto;
  left: auto !important;
}

.offer-hero-back-row .card-badge {
  position: relative;
  top: auto;
  left: auto !important;
}

@media (max-width: 767px) {
  .offer-hero-badges {
    top: 10px;
    left: 10px;
  }
}

/* Contenedor izquierdo del hero: botón Atrás + badge "Nueva" en fila */
.offer-hero-back-row {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 8px;
}

.offer-hero-back-row .offer-hero-btn--back {
  position: relative !important;
  top: auto !important;
  left: auto !important;
}

@media (max-width: 767px) {
  .offer-hero-back-row {
    top: 10px;
    left: 10px;
  }
}

/* Botones superpuestos en el hero (Volver + Compartir) */
.offer-hero-btn {
  position: absolute;
  top: 14px;
  z-index: 3;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: var(--color-brand-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  text-decoration: none;
  transition: background 0.18s, transform 0.15s;
}

.offer-hero-btn:hover {
  background: rgba(255, 255, 255, 1);
  transform: scale(1.07);
  color: var(--color-brand-dark);
}

.offer-hero-btn--back {
  left: 14px;
  width: auto;
  min-width: 40px;
  gap: 8px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 800;
}

.offer-hero-btn--share {
  right: 14px;
}

.offer-hero-btn--back span {
  line-height: 1;
}

/* El menú de share se abre hacia abajo-izquierda desde el botón derecho */
.offer-hero-btn--share .offer-share-menu {
  right: 0;
  left: auto;
}

/* Forzar position:absolute en los botones del hero
   (.offer-share añade position:relative que lo anularía) */
.offer-hero-img-wrap>.offer-hero-btn {
  position: absolute !important;
}

@media (max-width: 767px) {
  .offer-hero-btn {
    top: 10px;
    width: 36px;
    height: 36px;
    font-size: 0.9rem;
  }

  .offer-hero-btn--back {
    left: 10px;
    width: auto;
    min-width: 36px;
    padding: 0 12px;
  }

  .offer-hero-btn--share {
    right: 10px;
  }
}

@media (max-width: 767px) {
  body:has(.offer-single-page) {
    padding-top: 20px !important;
  }

  body:has(.offer-single-page) header {
    display: none;
  }
}

.page-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 9px 15px;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  background: var(--color-surface);
  color: var(--color-brand-dark);
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  transition: background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.page-back-link:hover,
.page-back-link:focus {
  border-color: var(--color-brand-dark);
  background: var(--color-brand);
  color: var(--color-brand-dark);
  box-shadow: 0 8px 18px rgba(0, 43, 42, 0.12);
  transform: translateY(-1px);
}

.page-back-link i {
  font-size: 0.82rem;
}


.offer-category-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-brand-dark);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-decoration: none;
}

.offer-category-link:hover {
  color: var(--color-brand-mid);
}

.offer-top-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.offer-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  padding: 8px 14px;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  background: var(--color-surface);
  color: var(--color-brand-dark);
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition: background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.offer-back-link:hover,
.offer-back-link:focus {
  border-color: var(--color-brand-dark);
  background: var(--color-brand);
  color: var(--color-brand-dark);
  box-shadow: 0 8px 18px rgba(0, 43, 42, 0.12);
  transform: translateY(-1px);
}

.offer-back-link i {
  font-size: 0.82rem;
}

.offer-share {
  position: relative;
  display: inline-flex;
}

.offer-share-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  padding: 8px 14px;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  background: var(--color-surface);
  color: var(--color-brand-dark);
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition: background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.offer-share-toggle:hover,
.offer-share-toggle:focus,
.offer-share.is-open .offer-share-toggle {
  border-color: var(--color-brand-dark);
  background: var(--color-brand);
  color: var(--color-brand-dark);
  box-shadow: 0 8px 18px rgba(0, 43, 42, 0.12);
  transform: translateY(-1px);
}

.offer-share-toggle i {
  font-size: 0.82rem;
}

.offer-share-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  z-index: 20;
  min-width: 185px;
  padding: 8px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-surface);
  box-shadow: 0 14px 32px rgba(0, 43, 42, 0.14);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity 0.16s ease, transform 0.16s ease, visibility 0.16s ease;
}

.offer-share.is-open .offer-share-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.offer-share-option {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  min-height: 38px;
  padding: 9px 10px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--color-brand-dark);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: left;
  text-decoration: none;
}

.offer-share-option:hover,
.offer-share-option:focus {
  background: var(--color-surface-alt);
  color: var(--color-brand-dark);
}

.offer-share-option i {
  width: 16px;
  text-align: center;
}

.offer-company-picture {
  width: 100%;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--color-surface-alt);
}

.offer-company-picture img {
  display: block;
  width: 100%;
  max-height: 320px;
  object-fit: cover;
}

.offer-title {
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--color-brand-dark);
  line-height: 1.1;
}

.offer-company-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.offer-company-row>div:last-child {
  min-width: 0;
  flex: 1;
}

.offer-company-logo {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid var(--color-border);
  background: var(--color-surface-alt);
}

.offer-company-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.offer-company-name {
  font-weight: 600;
  font-size: 15px;
  color: var(--color-text-primary);
}

.offer-company-address {
  font-size: 13px;
  color: var(--color-text-secondary);
  margin-top: 2px;
}

.offer-company-address a {
  padding-left: 0 !important;
  margin-left: 0 !important;
}

.offer-section-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-brand-dark);
  font-family: var(--font-display);
}

/* Carrusel "Más ofertas" dentro de offer page:
   anular los márgenes negativos del carrusel mobile para evitar scroll lateral.
   La home los necesita (tiene contenedor padre con overflow:hidden), la offer no. */
@media (max-width: 767px) {
  .offer-single-page .listings-carousel {
    margin-left: -30px;
    margin-right: -2px;
    width: calc(100% + 32px);
  }

  .offer-single-page .listings-carousel .owl-stage-outer {
    overflow: visible !important;
  }
}

.offer-description {
  font-size: 15px;
  line-height: 1.8;
  color: var(--color-text-primary);
}

.offer-map-embed {
  width: 100%;
  height: 260px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-surface-alt);
}

@media (max-width: 767px) {
  .offer-map-embed {
    height: 200px;
  }

  /* Reducir espacios en móvil */
  .offer-title {
    margin-bottom: 12px !important;
  }

  .offer-company-row {
    margin-bottom: 12px !important;
  }

  .offer-badges {
    gap: 8px !important;
  }

  .offer-description {
    margin-bottom: 12px !important;
  }

  /* Reducir espacios de los <hr> */
  .offer-single-page hr {
    margin: 12px 0 !important;
  }

}

.offer-cta-box {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
}

.offer-cta-hint {
  font-size: 13px;
  color: var(--color-text-secondary);
  line-height: 1.5;
  margin: 0;
}

.offer-cta-status {
  display: flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: var(--radius-md);
  font-size: 13px;
  font-weight: 600;
}

.offer-cta-status--done {
  background: var(--color-success-bg);
  color: var(--color-success);
}

.offer-cta-status--sold,
.offer-cta-status--expired {
  background: var(--color-danger-bg);
  color: var(--color-danger);
}

.offer-cta-status--upcoming {
  background: var(--color-brand-dark);
  color: var(--color-brand);
  display: none;
}

.offer-cta-status--saved {
  background: var(--color-brand);
  color: var(--color-brand-dark);
  text-align: center;
}

.offer-redeem-success-page {
  min-height: calc(100vh - 220px);
  padding: 48px 16px 72px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  background: var(--white);
}

.offer-redeem-success-card {
  width: 100%;
  max-width: 760px;
  padding: 42px 28px;
  text-align: center;
}

.offer-redeem-success-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #2f9e58;
  color: #fff;
  font-size: 28px;
}

.offer-redeem-success-title {
  margin: 0;
  color: var(--color-brand-dark);
  font-family: 'Bree Serif', serif;
  font-size: clamp(2.6rem, 7vw, 4.5rem);
  line-height: 0.98;
  font-weight: 800;
}

.offer-redeem-success-lead {
  margin: 14px 0 0;
  color: var(--text-light);
  font-size: 1.1rem;
}

.offer-redeem-success-summary {
  margin: 30px auto 0;
  max-width: 620px;
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.75;
}

.offer-redeem-success-summary p {
  margin: 0 0 10px;
}

.offer-redeem-success-summary strong {
  color: var(--color-brand-dark);
}

.offer-redeem-success-actions {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.offer-redeem-success-actions .btn {
  min-width: min(100%, 240px);
  border-radius: 999px;
  padding: 15px 26px;
  font-weight: 800;
  text-transform: uppercase;
}

.offer-redeem-success-actions .btn-primary {
  background: var(--color-brand);
  border-color: var(--color-brand);
  color: var(--color-brand-dark);
}

.offer-redeem-success-actions .btn-primary:hover {
  background: #c2f200;
  border-color: #c2f200;
  color: var(--color-brand-dark);
}

.offer-redeem-success-actions .btn-outline-primary {
  border-color: var(--color-brand-dark);
  color: var(--color-brand-dark);
}

.offer-redeem-success-actions .btn-outline-primary:hover {
  background: var(--color-brand-dark);
  border-color: var(--color-brand-dark);
  color: var(--color-brand);
}

@media (max-width: 575px) {
  .offer-redeem-success-page {
    min-height: auto;
    padding: 32px 16px 56px;
  }

  .offer-redeem-success-card {
    padding: 28px 0;
  }

  .offer-redeem-success-actions {
    flex-direction: column;
    align-items: stretch;
  }
}

/* Bottom bar en móvil */
@media (max-width: 767px) {
  .offer-cta-box {
    position: fixed;
    bottom: 70px;
    left: 0;
    right: 0;
    border-radius: 0;
    border-top: 1px solid var(--color-border);
    z-index: 999;
    padding: .5rem 1.25rem 1rem !important;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(8px);
  }

  .offer-cta-box .offer-cta-status {
    display: none;
  }

  .offers-footer .footer-bottom {
    align-items: center;
    gap: 0px;
  }
}

/* Desktop: sticky en su columna */
@media (min-width: 768px) {
  .offer-cta-box {
    position: sticky !important;
    top: 100px !important;
    bottom: auto !important;
    left: auto !important;
    right: auto !important;
    border-radius: var(--radius-lg) !important;
    border-top: 1px solid var(--color-border) !important;
    padding: 1.5rem !important;
    background: var(--color-surface) !important;
    backdrop-filter: none !important;
    z-index: 1 !important;
  }
}

/* Cambios footer pag-offers */
.offers-footer {
  position: relative;
  z-index: 6;
  width: 50%;
  background: var(--color-surface, #fff);
}

.offers-footer footer {
  width: 100%;
}

.offers-footer .footer-bottom {
  align-items: center;
  gap: 0px;
}

.offers-footer .footer-bottom>div {
  flex-wrap: wrap;
  justify-content: flex-start;
  row-gap: 10px;
}

@media (max-width: 1199px) {
  .offers-footer {
    width: 100%;
  }
}

@media (min-width: 768px) and (max-width: 1199px) and (hover: hover) and (pointer: fine) {
  .offers-footer {
    width: 50%;
  }
}

@media (min-width: 1200px) {
  .offers-footer {
    width: clamp(680px, 39vw, 760px);
  }
}

@media (max-width: 767px) {
  .pe-5 {
    padding-right: 1rem !important;
  }
}

/* Offers listing: responsive navigation and map panel */
.offers-page.map-wrapper {
  align-items: flex-start;
}

.offers-page .items-content {
  width: 100% !important;
  max-width: 100%;
}

.offers-page>.map-content {
  max-width: none;
}

.offers-mobile-toolbar {
  position: sticky;
  top: 74px;
  z-index: 40;
  display: flex;
  gap: 8px;
  margin: 0 0 14px;
  padding: 8px;
  border: 1px solid var(--color-border);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 28px rgba(0, 43, 42, 0.08);
  backdrop-filter: blur(10px);
}

.offers-map-toolbar {
  position: absolute;
  left: 16px;
  right: 16px;
  top: 16px;
  z-index: 90;
  margin: 0;
}

.offers-toolbar-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex: 1 1 0;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  background: var(--color-surface);
  color: var(--color-brand-dark);
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
}

.offers-toolbar-button.is-active {
  border-color: var(--color-brand-dark);
  background: var(--color-brand-dark);
  color: white;
}

.offers-toolbar-button--filters {
  flex: 0 0 54px;
  width: 54px;
  padding-left: 0;
  padding-right: 0;
}

.offers-toolbar-button i {
  font-size: 0.95rem;
}

.offers-filter-form {
  width: 100%;
}

.map-panel-title {
  display: flex;
  align-items: center;
  min-height: 52px;
  color: var(--color-brand-dark);
  font-weight: 800;
}

body.offers-map-open {
  overflow: hidden;
}

@media (max-width: 1199px) {
  :root {
    --mobile-bottom-nav-height: calc(64px + env(safe-area-inset-bottom));
  }

  body {
    padding-bottom: var(--mobile-bottom-nav-height) !important;
  }

  .mobile-bottom-nav {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10020;
    justify-content: space-around;
    padding: 10px 0 7px;
    padding-bottom: calc(7px + env(safe-area-inset-bottom));
    border-top: 1px solid #edf2f7;
    background: var(--white, #fff);
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.05);
  }

  .mobile-bottom-nav a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    color: var(--text-light, #64748b);
    font-family: inherit;
    font-size: 0.74rem;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s;
  }

  .mobile-bottom-nav a.active,
  .mobile-bottom-nav a:active {
    color: var(--dark, #002b2a);
  }

  .mobile-bottom-nav svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
  }
}

.offer-card--featured,
.offers-page .offer-card--featured {
  box-shadow: 0 0 0 2px #ccff00, 0 1px 3px rgba(0, 0, 0, 0.1) !important;
}

[data-bookmark-button] {
  width: 28px !important;
  height: 28px !important;
  color: var(--color-danger) !important;
}

[data-bookmark-button] svg {
  width: 14px !important;
  height: 14px !important;
}

@media (max-width: 575px) {
  body:has(.offers-page) header {
    position: static !important;
  }

  body:has(.offers-page) {
    padding-top: 0 !important;
  }

  .offers-page .items-content {
    padding: 12px 12px 84px !important;
  }

  .offers-mobile-toolbar {
    top: 0;
    margin: 0 -12px 0;
    padding: 8px 12px;
    border: none;
    border-radius: 0;
    box-shadow: none;
  }

  .offers-map-toolbar {
    top: 0px;
    left: 12px;
    right: 12px;
  }

  .offers-toolbar-button {
    min-height: 48px;
    border-radius: 40px;
    font-size: 0.95rem;
  }

  .offers-toolbar-button--filters {
    flex-basis: 52px;
    width: 52px;
  }

  .offers-filter-controls {
    display: none;
  }

  .offers-filter-controls.is-open {
    display: flex;
  }

  .offers-filter-form {
    flex-direction: column;
  }

  .offers-filter-form .form-select {
    width: 100%;
    min-height: 46px;
  }

  .offers-page .offer-card {
    border-radius: 18px !important;
    margin-bottom: 16px !important;
  }


  .offers-page .offer-card h4 {
    padding-right: 52px;
    font-size: 1.2rem;
    line-height: 1.05;
  }

  .offers-page .offer-card h4 {
    padding-right: 52px;
    font-size: 1.2rem;
    line-height: 1.05;
  }



  .offer-card .fw-medium.fs-6 {
    font-size: 0.8rem !important;
  }

  .offers-page .offer-badges {
    gap: 8px;
  }

  .offers-page .expiry-date,
  .offers-page .flash-offer-badge,
  .offers-page .new-offer-badge {
    max-width: 100%;
  }
}

@media (min-width: 576px) and (max-width: 1199px) {
  .offers-page .items-content {
    padding: 18px 20px 92px !important;
  }

  .offers-mobile-toolbar {
    top: 86px;
    max-width: 520px;
  }

  .offers-map-toolbar {
    top: 18px;
    left: 18px;
    right: 18px;
    max-width: none;
  }

  .offers-filter-controls {
    display: none;
  }

  .offers-filter-controls.is-open {
    display: flex;
  }

  .offers-filter-form .form-select {
    min-height: 46px;
  }

  .offers-page .offer-card .card-image-hover {
    min-height: 220px !important;
  }
}

@media (max-width: 1199px) {
  .offers-page>.map-content {
    transition: none !important;
  }

  width: 100% !important;
  max-width: 100% !important;
  height: calc(100dvh - var(--mobile-bottom-nav-height, 70px)) !important;
  border-radius: 0 !important;
  overflow: hidden;
}

.offers-page>.map-content .map-full {
  height: calc(100dvh - var(--mobile-bottom-nav-height, 70px)) !important;
  min-height: calc(100dvh - var(--mobile-bottom-nav-height, 70px));
  border-radius: 0 !important;
}

.offers-page>.map-content .inner-wrap--top {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.offers-page>.map-content .map-close-icon,
.offers-page>.map-content .map-panel-title {
  pointer-events: auto;
}

.offers-page>.map-content .all-filters-wrap {
  display: none !important;
}

body.offers-map-open .offers-filter-controls.is-open {
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  z-index: 10010;
  display: flex;
  max-height: calc(100dvh - var(--mobile-bottom-nav-height, 70px) - 80px);
  margin: 0 !important;
  padding: 8px 12px;
  overflow-y: auto;
  border: none;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: none;
  backdrop-filter: none;
}

body.offers-map-open .offers-filter-controls.is-open>.col-12 {
  padding: 0;
}

.offers-page>.map-content .map-canvas-wrap,
.offers-page>.map-content .map-full {
  padding-top: 0;
}
}

@media (min-width: 768px) and (max-width: 1199px) and (hover: hover) and (pointer: fine) {
  body:has(.offers-page) {
    padding-bottom: 0 !important;
  }

  body:has(.offers-page).offers-map-open {
    overflow: auto;
  }

  body:has(.offers-page) .mobile-bottom-nav {
    display: none;
  }

  .offers-page .items-content {
    width: 50% !important;
    max-width: 50%;
    min-height: calc(100dvh - 102px);
    padding: 18px 18px 24px !important;
  }

  .offers-mobile-toolbar,
  .offers-page>.map-content .inner-wrap--top {
    display: none !important;
  }

  .offers-page>.map-content {
    top: 0 !important;
    right: 0;
    width: 50% !important;
    max-width: 50% !important;
    height: 100dvh !important;
    border-radius: 0 !important;
    transform: translateX(0) !important;
    visibility: visible;
  }

  .offers-page>.map-content .map-full {
    height: 100dvh !important;
    min-height: 100dvh;
    border-radius: 0 !important;
  }

  .offers-page .offer-card {
    margin-bottom: 18px !important;
  }

  .offers-page .offer-card .card-image-hover {
    min-height: 170px !important;
  }
}

@media (min-width: 1200px) {
  .offers-page {
    --offers-desktop-list-width: clamp(680px, 39vw, 760px);
    /* Offset = navbar height + items-content padding-top (p-xl-4 = 24px).
       Tweak this single value if the navbar height changes. */
    --offers-map-offset: 98px;
  }

  .offers-mobile-toolbar {
    display: none;
  }

  .offers-page .items-content {
    width: var(--offers-desktop-list-width) !important;
    max-width: var(--offers-desktop-list-width);
  }

  .offers-page>.map-content {
    position: fixed !important;
    right: 0;
    width: calc(100% - var(--offers-desktop-list-width)) !important;
    max-width: none !important;
    top: var(--offers-map-offset) !important;
    height: calc(100vh - var(--offers-map-offset)) !important;
  }

  .offers-page>.map-content .map-full,
  .offers-page>.map-content .map-canvas-wrap {
    height: calc(100vh - var(--offers-map-offset)) !important;
    min-height: calc(100vh - var(--offers-map-offset)) !important;
  }
}

/* Cookie consent */
.cookie-consent {
  position: fixed !important;
  top: auto !important;
  right: 0 !important;
  bottom: 0 !important;
  left: 0 !important;
  width: 100vw !important;
  max-width: none !important;
  margin: 0 !important;
  transform: none !important;
  z-index: 2147483000 !important;
}

.cookie-consent[hidden],
.cookie-consent__preferences[hidden],
.cookie-consent__btn[hidden] {
  display: none !important;
}

.cookie-consent__body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  max-width: none;
  margin: 0 auto;
  padding: 12px 24px;
  border-top: 1px solid rgba(0, 43, 42, 0.14);
  border-right: 0;
  border-bottom: 0;
  border-left: 0;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 -10px 28px rgba(0, 43, 42, 0.12);
}

.cookie-consent__copy strong {
  display: block;
  margin-bottom: 4px;
  color: var(--color-brand-dark, #002b2a);
  font-weight: 700;
}

.cookie-consent__copy p {
  max-width: none;
  margin: 0;
  color: var(--color-text-secondary, #4a6b5a);
  font-size: 14px;
  line-height: 1.4;
}

.cookie-consent__copy a {
  display: inline-block;
  margin-top: 4px;
  color: var(--color-brand-dark, #002b2a);
  font-size: 13px;
  font-weight: 600;
}

.cookie-consent__preferences {
  display: flex;
  gap: 14px;
  margin-top: 12px;
}

.cookie-consent__check {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  margin: 0;
  color: var(--color-text-primary, #203a39);
  font-size: 14px;
  font-weight: 600;
}

.cookie-consent__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.cookie-consent__btn {
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid var(--color-brand-dark, #002b2a);
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}

.cookie-consent__btn--ghost {
  background: #ffffff;
  color: var(--color-brand-dark, #002b2a);
}

.cookie-consent__btn--primary {
  background: var(--color-brand-dark, #002b2a);
  color: #ffffff;
}

@media (max-width: 767px) {
  .cookie-consent {
    bottom: 0 !important;
  }

  .cookie-consent__body {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 12px;
  }

  .cookie-consent__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-content: stretch;
  }

  .cookie-consent__btn {
    width: 100%;
    padding: 0 10px;
  }
}

/* ============================================================
   MODERN NATIVE SLIDER (Scroll Snap)
   ============================================================ */
.modern-scroller {
  display: flex;
  overflow-x: auto;
  gap: 1.5rem;
  padding-bottom: 1.5rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  /* Firefox */
  align-items: stretch;
  /* Cards occupy same height */
  padding-left: 1rem;
  padding-right: 1rem;
}

.modern-scroller::-webkit-scrollbar {
  display: none;
  /* Safari & Chrome */
}

.modern-scroller .card {
  flex: 0 0 85%;
  /* 85% view width on mobile */
  scroll-snap-align: center;
  margin-bottom: 0 !important;
}

/* Tablet */
@media (min-width: 768px) {
  .modern-scroller {
    padding-left: 0;
    padding-right: 0;
  }

  .modern-scroller .card {
    flex: 0 0 calc(50% - 0.75rem);
    scroll-snap-align: start;
  }
}

/* Desktop */
@media (min-width: 1024px) {
  .modern-scroller .card {
    flex: 0 0 calc(33.333% - 1rem);
  }
}

/* FAQ Section Styles */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-shell {
  max-width: 1000px;
  margin: 0 auto;
}

#faq details.faq-shell {
  padding: 0;
  background: transparent;
  border: 0;
}

#faq .faq-shell>.faq-shell-summary {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: var(--radius-md);
  padding: 22px 28px;
  font-family: 'Bree Serif', serif;
  font-size: 2rem;
  font-weight: 700;
}

#faq .faq-shell[open]>.faq-shell-summary {
  margin-bottom: 18px;
}

#faq details {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: var(--radius-md);
  padding: 5px 0;
}

#faq details summary {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark);
  padding: 15px 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
}

#faq details summary::-webkit-details-marker,
details>summary::-webkit-details-marker {
  display: none;
}

#faq details summary .faq-icon {
  font-size: 1.4rem;
  color: var(--secondary);
  transition: transform 0.2s;
}

#faq details[open]>summary .faq-icon {
  transform: rotate(45deg);
  display: inline-block;
}

#faq details p {
  padding: 0 24px 15px;
  color: var(--text-light);
  margin: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.03);
  padding-top: 15px;
}

/* ============================================================
   LANDING PAGES — SHARED UTILITIES
   Used across home, companyinfo (businessinfo) and about
   ============================================================ */

/* Background alternating sections */
.section-bg-white {
  background: var(--white);
}

/* CTA block: paragraph above button */
.cta-text {
  margin-bottom: 30px;
}

/* CTA block: width-constrained button wrapper */
.cta-wrap {
  max-width: 400px;
  margin: 0 auto;
}

.cta-wrap-sm {
  max-width: 320px;
  margin: 0 auto;
}

/* Large CTA button — primary brand accent, used in all three CTAs */
.btn-cta {
  display: block;
  width: 100%;
  text-align: center;
  padding: 20px 28px;
  font-size: 1.1rem;
  font-weight: 700;
  background: var(--primary);
  color: var(--dark);
  border-radius: 100px;
  text-decoration: none;
  transition: all 0.2s;
}

.btn-cta:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
  color: var(--dark);
}

/* Secondary CTA variant (dark background, used alongside btn-cta) */
.btn-cta-secondary {
  display: block;
  width: 100%;
  text-align: center;
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: 600;
  background: var(--dark);
  color: var(--primary);
  border-radius: 100px;
  text-decoration: none;
  transition: all 0.2s;
  margin-top: 12px;
  font-family: "Kode Mono", monospace;
}

.btn-cta-secondary:hover {
  transform: translateY(-2px);
  opacity: 0.9;
  color: var(--primary);
}

/* Team member role label (about page) */
.member-role {
  font-size: 0.85rem;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Centered FAQ/section title wrapper */
.section-title-center {
  text-align: center;
}

/* ============================================================
   PRICING CARDS — migrated from companyinfo inline <style>
   ============================================================ */

/* Grid de planes */
#pricing .pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

@media (max-width: 900px) {
  #pricing .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }
}

/* Tarjeta */
#pricing .plan-card {
  background-color: var(--white);
  border-radius: 24px;
  padding: 32px 24px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  position: relative;
  display: flex;
  flex-direction: column;
}

#pricing .plan-card-featured {
  border: 3px solid var(--primary);
  transform: translateY(-8px);
}

@media (max-width: 900px) {
  #pricing .plan-card-featured {
    transform: none;
  }
}

/* Badge "Más popular" */
#pricing .plan-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--dark);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  white-space: nowrap;
}

/* Cabecera de la tarjeta */
#pricing .plan-card-head {
  text-align: center;
  padding-bottom: 20px;
  margin-bottom: 20px;
}

#pricing .plan-name {
  color: var(--secondary);
  font-size: 1.6rem;
  margin: 0 0 8px;
  font-weight: 700;
}

#pricing .plan-price-old {
  font-size: 1rem;
  color: var(--text-light);
  text-decoration: line-through;
  margin-bottom: 2px;
}

#pricing .plan-price {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1;
  color: var(--dark);
  margin-bottom: 6px;
}

#pricing .plan-price span {
  font-size: 1.5rem;
  font-weight: 700;
}

#pricing .plan-vat {
  font-size: 0.7rem;
  color: var(--text-light);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}

#pricing .plan-launch-pill {
  display: inline-block;
  background: var(--primary);
  color: var(--dark);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 100px;
}

/* Botón */
#pricing .plan-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 14px 20px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  margin-bottom: 24px;
  transition: all 0.2s;
  border: 2px solid var(--secondary);
}

#pricing .plan-btn-outline {
  color: var(--secondary);
  background: transparent;
}

#pricing .plan-btn-outline:hover {
  background: var(--secondary);
  color: var(--white);
  transform: translateY(-2px);
}

#pricing .plan-btn-solid {
  color: var(--white);
  background: var(--secondary);
}

#pricing .plan-btn-solid:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

/* Lista de features */
#pricing .plan-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

#pricing .plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  line-height: 1.4;
  border-bottom: 1px #ccff05 solid;
  padding-bottom: 10px;
}

#pricing .plan-features li:last-child {
  border-bottom: none;
}

#pricing .plan-features li:first-child {
  border-bottom: none;
}

#pricing .feat-icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
}

#pricing .feat-yes .feat-icon {
  background-color: #a6cf00;
}

#pricing .feat-no .feat-icon {
  background-color: rgba(0, 0, 0, 0.15);
}

#pricing .plan-features strong {
  display: block;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--dark);
}

#pricing .feat-no strong {
  color: var(--text-light);
  font-weight: 500;
}

#pricing .plan-features small {
  display: block;
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 2px;
  line-height: 1.4;
}

/* Feature destacada (edición profesional) */
#pricing .feat-highlight {
  background: rgba(204, 255, 0, 0.15);
  margin: 0 -12px;
  padding: 10px 12px;
  border-radius: 8px;
}

#pricing .feat-highlight .feat-icon {
  background: transparent;
  font-size: 18px;
  color: inherit;
  width: auto;
  height: auto;
}

/* Feature destacada del talonario (solo Premium) */
#pricing .feat-highlight-dark {
  background: var(--dark);
  margin: 0 -12px;
  padding: 12px;
  border-radius: 8px;
}

#pricing .feat-highlight-dark .feat-icon {
  background: transparent;
  font-size: 18px;
  color: inherit;
  width: auto;
  height: auto;
}

#pricing .feat-highlight-dark strong {
  color: var(--primary);
}

#pricing .feat-highlight-dark small {
  color: rgba(255, 255, 255, 0.75);
}

/* Nota del talonario */
#pricing .pricing-note {
  max-width: 900px;
  margin: 40px auto 0;
  padding: 20px 24px;
  background: rgba(204, 255, 0, 0.15);
  border-radius: 16px;
  font-size: 0.9rem;
  line-height: 1.6;
  text-align: center;
}

/* Dashboard soporte */
body.udb-support .main-content {
  padding-top: 0 !important;
}

.support-page {
  max-width: 1180px;
  margin: -76px auto 0;
  padding: 0 16px 48px;
}

.support-hero {
  overflow: hidden;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  line-height: 0;
}

.support-hero img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
}

.support-contact {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 28px;
  align-items: start;
  margin-top: -62px;
  padding: 30px;
  border: 1px solid rgba(15, 61, 62, 0.1);
  border-radius: 8px;
  background: #fff;
}

.support-contact__eyebrow {
  margin: 0 0 10px;
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.support-contact h1 {
  margin: 0 0 14px;
  color: var(--dark);
  font-size: clamp(2rem, 3vw, 3.1rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.support-contact__intro p:last-child {
  max-width: 430px;
  margin: 0;
  color: var(--text-light);
  line-height: 1.7;
}

.support-contact__form-wrap {
  min-width: 0;
}

.support-personal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.support-form .form-control {
  border-radius: 8px;
}

@media (max-width: 991px) {
  .support-contact {
    grid-template-columns: 1fr;
    padding: 28px 22px;
  }
}

@media (max-width: 767px) {
  .support-page {
    margin-top: -34px;
    padding: 0 12px 32px;
  }

  .support-hero {
    border-radius: 0;
  }

  .support-hero img {
    height: auto;
  }

  .support-contact {
    margin-top: -22px;
    padding: 24px 16px;
  }

  .support-personal-grid {
    grid-template-columns: 1fr;
  }
}

/* Contacto publico */
.public-contact-page {
  max-width: 1180px;
  margin: -48px auto 0;
  padding: 0 16px 72px;
}

.public-contact-hero {
  overflow: hidden;
  line-height: 0;
}

.public-contact-hero img {
  display: block;
  width: 100%;
  height: auto;
}

.public-contact-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 28px;
  align-items: start;
  margin-top: 10px;
  padding: 30px;
  border: 1px solid rgba(15, 61, 62, 0.1);
  border-radius: 8px;
  background: #fff;
}

.public-contact-eyebrow {
  margin: 0 0 10px;
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.public-contact-intro h1 {
  margin: 0 0 14px;
  color: var(--dark);
  font-size: clamp(2rem, 3vw, 3.1rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.public-contact-intro p:last-child {
  max-width: 430px;
  margin: 0;
  color: var(--text-light);
  line-height: 1.7;
}

.public-contact-form-wrap {
  min-width: 0;
}

.public-contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.public-contact-form .form-control {
  border-radius: 8px;
}

@media (max-width: 991px) {
  .public-contact-shell {
    grid-template-columns: 1fr;
    padding: 28px 22px;
  }
}

@media (max-width: 767px) {
  .public-contact-page {
    margin-top: -26px;
    padding: 0 12px 48px;
  }

  .public-contact-hero img {
    height: auto;
  }

  .public-contact-shell {
    margin-top: 10px;
    padding: 24px 16px;
  }

  .public-contact-grid {
    grid-template-columns: 1fr;
  }
}