/* assets/css/layout.css
   Shared header, navigation, topbar, mobile drawer, footer and floating WhatsApp.
*/
/* Header */
.site-header {
  position: sticky;
  top: -40px !important;
  z-index: 1000;
  background: var(--white);
}

.topbar {
  /*color: rgba(0, 0, 0, .92);*/
  color: rgba(255, 255, 255, .92);
  background: var(--blue-500);
  font-size: 14px;
  /*border-bottom: solid 1px rgba(0, 0, 0, 0.1);*/
}

.topbar__inner,
.topbar__left,
.topbar__right,
.brandbar__inner,
.brand-actions,
.socials,
.desktop-nav__inner,
.desktop-menu,
.mobile-actions {
  display: flex;
  align-items: center;
}

.topbar__inner {
  min-height: 38px;
  justify-content: space-between;
  gap: 16px;
}

.topbar__left,
.topbar__right {
  gap: 10px;
  flex-wrap: wrap;
}

.topbar a {
  color: inherit;
  line-height: 1;
}

.topbar a:hover {
  color: var(--gold-400);
}

.sticky-header {
  position: relative;
  z-index: 1001;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 8px 24px rgba(8, 47, 37, .08);
}

.brandbar {
  background: var(--white);
}

.brandbar__inner {
  min-height: 78px;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand__mark {
  display: grid;
  flex: 0 0 auto;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(135deg, var(--green-900), var(--green-700));
  font-weight: 900;
  letter-spacing: -.04em;
}

.brand__text {
  min-width: 0;
}

.brand__text strong,
.brand__text small {
  display: block;
}

.brand__text strong {
  color: var(--green-950);
  font-size: 19px;
  line-height: 1.1;
}

.brand__text small {
  color: var(--ink-500);
  font-size: 13px;
}

.brand-actions {
  justify-content: flex-end;
  gap: 18px;
  color: var(--ink-700);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .02em;
}

.socials {
  gap: 8px;
}

.socials a {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--green-900);
  background: var(--cream-50);
  font-weight: 700;
  text-transform: lowercase;
}

.socials a:hover,
.mini-link:hover {
  color: var(--green-700);
}

.desktop-nav {
  color: var(--dark);
  /*background: var(--blue-500);*/
  background: var(--white);
  border-top: solid 1px #EEE;
}

.desktop-nav__inner {
  min-height: 45px;
  justify-content: space-between;
  gap: 16px;
}

.desktop-menu {
  min-width: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.desktop-item {
  position: relative;
}

.desktop-trigger {
  display: flex;
  align-items: center;
  gap: 7px;
  min-height: 56px;
  padding: 0 15px;
  color: var(--dark);
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: .02em;
}

.desktop-trigger::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  opacity: .8;
}

.desktop-item:hover > .desktop-trigger {
  color: var(--blue-500);
  background: var(--white-500);
}

.desktop-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1002;
  min-width: 350px;
  padding: 12px;
  color: var(--ink-950);
  background: rgba(255, 255, 255, .98);
  border: 1px solid var(--border);
  border-top: 2px solid var(--blue-500);
  border-radius: 0 0 var(--radius-xs) var(--radius-xs);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity .15s ease, transform .15s ease, visibility .15s ease;
}

.desktop-dropdown--right {
  right: 0;
  left: auto;
}

.desktop-item:hover > .desktop-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.desktop-dropdown a,
.dropdown-col a {
  display: block;
  padding: 10px 12px;
  border-radius: 5px;
  color: var(--ink-700);
  font-size: 13px;
  font-weight: 600;
}

.desktop-dropdown a:hover,
.dropdown-col a:hover {
  color: var(--green-950);
  background: var(--preblue);
}

.desktop-dropdown--mega {
  width: min(820px, calc(100vw - 32px));
}

.dropdown-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 260px;
  gap: 14px;
}

.desktop-dropdown h3 {
  margin: 6px 12px 8px;
  color: var(--green-950);
  font-size: 15px;
}

.dropdown-feature {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--cream-50);
}

.dropdown-feature img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.dropdown-feature div {
  padding: 12px;
}

.dropdown-feature strong,
.dropdown-feature span {
  display: block;
}

.dropdown-feature span {
  color: var(--ink-500);
  font-size: 13px;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  color: var(--green-950);
  background: var(--gold-400);
  font-weight: 800;
  white-space: nowrap;
}

.nav-cta:hover {
  color: var(--green-950);
  background: #ffd278;
}

.mobile-actions,
.drawer-check,
.drawer-backdrop {
  display: none;
}

.mobile-icon,
.language-pill,
.hamburger,
.drawer-close {
  -webkit-tap-highlight-color: transparent;
}

.mobile-icon {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--green-950);
  border-radius: 999px;
  font-size: 23px;
  font-weight: 900;
}

.language-pill {
  min-width: 64px;
  padding: 4px 8px;
  color: var(--ink-950);
  border: 1px solid #777;
  border-radius: 4px;
  font-size: 24px;
  line-height: 1.2;
  text-align: center;
}

.hamburger {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
  width: 40px;
  height: 32px;
  cursor: pointer;
  margin-left: 20px;
  margin-right: 10px;
}

.hamburger span {
  display: block;
  width: 38px;
  height: 6px;
  margin-left: auto;
  border-radius: 999px;
  background: var(--ink-950);
}

.drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1003;
  background: rgba(0, 0, 0, .42);
}

.mobile-drawer {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1004;
  width: min(88vw, 390px);
  height: 100dvh;
  overflow-y: auto;
  padding: 18px;
  color: var(--ink-950);
  background: var(--white);
  box-shadow: 18px 0 45px rgba(0, 0, 0, .22);
  transform: translateX(-105%);
  visibility: hidden;
  pointer-events: none;
  transition: transform .2s ease, visibility .2s ease;
}

.drawer-check:checked ~ .drawer-backdrop {
  display: block;
}

.drawer-check:checked ~ .mobile-drawer {
  transform: translateX(0);
  visibility: visible;
  pointer-events: auto;
}

.drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.brand--drawer .brand__mark {
  width: 44px;
  height: 44px;
}

.brand--drawer .brand__text strong {
  font-size: 16px;
}

.drawer-close {
  display: grid;
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 999px;
  color: var(--white);
  background: var(--blue-900);
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}

.drawer-quick {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding-block: 16px;
}

.drawer-quick a {
  padding: 10px 8px;
  border-radius: 12px;
  color: var(--green-950);
  background: var(--cream-100);
  font-size: 13px;
  font-weight: 900;
  text-align: center;
}

.drawer-nav {
  display: grid;
  gap: 8px;
}

.drawer-nav details {
  border: 1px solid var(--blue);
  border-radius: 8px;
  /*background: var(--cream-50);*/
  background: linear-gradient(90deg, #f1fff2 0%, #eefbff 100%);
  overflow: hidden;
}

.drawer-nav summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 50px;
  padding: 0 14px;
  color: var(--blue-500);
  cursor: pointer;
  font-weight: 900;
  list-style: none;
}

.drawer-nav summary::-webkit-details-marker {
  display: none;
}

.drawer-nav summary::after {
  content: "+";
  font-size: 24px;
  line-height: 1;
}

.drawer-nav details[open] summary {
  color: var(--white);
  background: var(--blue-500);
}

.drawer-nav details[open] summary::after {
  content: "−";
}

.drawer-nav details a {
  display: block;
  padding: 11px 16px;
  color: var(--ink-700);
  border-top: 1px solid var(--blue-500);
  font-size: 12px;
  font-weight: 500;
}

.drawer-nav details a:hover {
  color: var(--green-950);
  /*background: var(--cream-100);*/
}

.mobile-submenu {
  padding: 10px;
  border-top: 1px solid var(--border);
  background: var(--white);
}

.mobile-subgroup {
  padding-bottom: 10px;
}

.mobile-subgroup + .mobile-subgroup,
.mobile-feature {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--border);
}

.mobile-subgroup h4 {
  margin: 0 0 6px;
  color: var(--green-950);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.drawer-nav .mobile-submenu a {
  margin-top: 4px;
  padding: 9px 10px;
  border: 0;
  border-radius: 7px;
  background: linear-gradient(90deg, #f1fff2 0%, #eefbff 100%);
}

.mobile-feature {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--cream-50);
}

.mobile-feature img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.mobile-feature div {
  padding: 12px;
}

.mobile-feature strong,
.mobile-feature span {
  display: block;
}

.mobile-feature span {
  margin-top: 4px;
  color: var(--ink-500);
  font-size: 13px;
}

.drawer-book {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin-top: 18px;
  border-radius: 999px;
  color: var(--white);
  background: var(--blue-500);
  font-weight: 900;
}


/* Footer */
.site-footer {
  padding-block: 56px 22px;
  color: rgba(255, 255, 255, .78);
  background: #061e18;
}

.site-footer h2,
.site-footer h3 {
  margin-top: 0;
  color: var(--white);
}

.site-footer a {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, .78);
}

.site-footer a:hover {
  color: var(--gold-400);
}

.footer-bottom {
  margin-top: 36px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, .14);
  font-size: 14px;
}


/* Floating WhatsApp like reference */
.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 900;
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border: 4px solid rgba(255,255,255,.9);
  border-radius: 999px;
  color: var(--white);
  background: #28bd3b;
  font-size: 38px;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(0,0,0,.22);
}

.whatsapp-float:hover {
  color: var(--white);
  background: #1fa832;
}

@media (max-width: 1100px) {
  .showcase-arrow--left { left: -12px; }
  .showcase-arrow--right { right: -12px; }
  .price-row {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 900px) {
  .home-about h2 {
    font-size: clamp(36px, 8vw, 52px);
  }

  .about-photo,
  .about-photo img {
    min-height: 380px;
  }

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

  .destination-card {
    min-height: 250px;
  }

  .showcase-arrow {
    display: none;
  }

  .showcase-card {
    min-height: 480px;
  }

  .home-section-head p {
    line-height: 1.65;
  }
}

@media (max-width: 575px) {
  .home-section-head h2,
  .blog-head h2 {
    font-size: 34px;
  }

  .home-section-head p,
  .blog-head p {
    font-size: 16px;
  }

  .home-about p {
    margin-top: 22px;
    font-size: 16px;
    line-height: 1.7;
  }

  .brush-label {
    padding-inline: 34px;
    font-size: 17px;
  }

  .about-badges {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .about-badge {
    min-height: 82px;
    padding: 16px;
  }

  .destination-card h2 {
    left: 22px;
    bottom: 22px;
    font-size: 30px;
  }

  .destination-card a {
    top: 22px;
    right: 22px;
    min-height: 42px;
    padding-inline: 16px;
    font-size: 15px;
  }

  .showcase-card {
    min-height: 430px;
  }

  .showcase-card__content {
    right: 18px;
    bottom: 20px;
    left: 18px;
  }

  .showcase-card h3,
  .blog-card__body h3 {
    font-size: 24px;
  }

  .price-row a {
    width: 100%;
  }

  .blog-card {
    min-height: 390px;
  }

  .blog-card__body {
    right: 24px;
    bottom: 36px;
    left: 24px;
  }

  .whatsapp-float {
    width: 56px;
    height: 56px;
    font-size: 32px;
  }
}


/* V9 - Topbar estilo referencia + selector de idioma por click */
.site-header {
  top: -106px;
}

.topbar {
  color: #8b8b8b;
  background: #ffffff;
  border-bottom: 1px solid #e4e4e4;
  font-size: 27px;
  font-weight: 500;
}

.topbar__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 56px;
  gap: 28px;
}

.topbar__left,
.topbar__right,
.topbar__center {
  display: flex;
  align-items: center;
}

.topbar__left {
  justify-content: flex-start;
  gap: 26px;
  text-transform: uppercase;
}

.topbar__right {
  justify-content: flex-end;
  min-height: 30px;
  padding-left: 48px;
  /*border-left: 1px solid #d8d8d8;*/
}

.topbar__center {
  justify-content: center;
  min-height: 90px;
  padding-inline: 0 48px;
  border-right: 1px solid #d8d8d8;
}

.topbar a,
.topbar summary {
  color: #8b8b8b;
}

.topbar a:hover {
  color: var(--blue);
}

.topbar-link {
  letter-spacing: -.02em;
}

.topbar-separator {
  color: #c9c9c9;
  font-weight: 400;
}

.topbar-mail {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  white-space: nowrap;
}

.mail-icon {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: #04a1f0;
  font-size: 34px;
  line-height: 1;
}

.lang-switcher {
  position: relative;
  z-index: 1300;
}

.lang-switcher summary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-width: 200px;
  min-height: 52px;
  padding: 0 10px;
  color: #101010;
  background: #c7c7c7;
  border: 1px solid #b7b7b7;
  border-radius: 12px;
  box-shadow: 0 0 0 8px rgba(0, 0, 0, .06);
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  list-style: none;
  user-select: none;
}

.lang-switcher summary::-webkit-details-marker {
  display: none;
}

.lang-switcher[open] summary {
  background: #bebebe;
}

.flag {
  display: inline-grid;
  width: 46px;
  height: 32px;
  place-items: center;
  overflow: hidden;
  font-size: 32px;
  line-height: 1;
}

.lang-arrow {
  width: 0;
  height: 0;
  margin-left: 4px;
  border-right: 8px solid transparent;
  border-left: 8px solid transparent;
  border-top: 9px solid #101010;
}

.lang-switcher[open] .lang-arrow {
  transform: rotate(180deg);
}

.lang-menu {
  position: absolute;
  top: calc(100% + 5px);
  left: 0;
  width: 320px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #d2d2d2;
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, .15);
}

.lang-menu a {
  display: flex;
  align-items: center;
  gap: 22px;
  min-height: 110px;
  padding: 0 34px;
  color: #202020;
  font-size: 24px;
  text-transform: uppercase;
}

.lang-menu a:hover {
  color: #111111;
  background: #f5f5f5;
}

@media (max-width: 1100px) {
  .topbar {
    font-size: 22px;
  }

  .lang-switcher summary {
    min-width: 200px;
    min-height: 52px;
    font-size: 13px;
  }

  .topbar__center {
    padding-right: 28px;
  }

  .topbar__right {
    padding-left: 28px;
  }
}

@media (max-width: 900px) {
  .site-header {
    top: -46px;
  }

  .topbar {
    font-size: 14px;
  }

  .topbar__inner {
    display: flex;
    min-height: 46px;
    justify-content: space-between;
    gap: 10px;
    text-align: left;
  }

  .topbar__left {
    gap: 8px;
  }

  .topbar__left .topbar-separator,
  .topbar__left .topbar-link:nth-of-type(2),
  .topbar__right {
    display: none;
  }

  .topbar__center {
    min-height: 0;
    margin-left: auto;
    padding: 0;
    border: 0;
  }

  .lang-switcher summary {
    min-width: 100px;
    min-height: 34px;
    gap: 7px;
    padding: 0 10px;
    border-radius: 8px;
    box-shadow: none;
    font-size: 13px;
  }

  .flag {
    width: 25px;
    height: 20px;
    font-size: 15px;
  }

  .lang-arrow {
    border-right-width: 5px;
    border-left-width: 5px;
    border-top-width: 6px;
  }

  .lang-menu {
    right: 0;
    left: auto;
    width: 180px;
  }

  .lang-menu a {
    min-height: 56px;
    gap: 10px;
    padding: 0 14px;
    font-size: 14px;
  }
}


/* V10 - Topbar completo estilo referencia enviada */
.site-header {
  top: -70px;
}

.topbar {
  color: #949494;
  background: #ffffff;
  /*border-top: 3px solid #4a2d1d;*/
  border-bottom: 1px solid #e4e4e4;
  font-size: 14px;
  font-weight: 500;
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 40px;
  gap: 14px;
}

.topbar__left,
.topbar__right {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
}

.topbar__left {
  justify-content: flex-start;
  gap: 14px;
}

.topbar__right {
  justify-content: flex-end;
  gap: 22px;
  margin-left: auto;
}

.topbar-contact,
.topbar-mail {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #969696 !important;
  white-space: nowrap;
}

.topbar-contact:hover,
.topbar-mail:hover,
.topbar-link:hover {
  color: var(--blue) !important;
}

.topbar-icon,
.mail-icon {
  display: inline-grid;
  width: 28px;
  height: 28px;
  place-items: center;
  color: var(--blue);
  font-size: 25px;
  line-height: 1;
}

.mail-icon {
  font-size: 27px;
}

.topbar-link {
  color: #8e8e8e !important;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: -.02em;
  white-space: nowrap;
}

.topbar-separator {
  color: #cfcfcf;
  font-weight: 400;
}

.topbar-divider {
  display: block;
  width: 1px;
  height: 48px;
  background: #dddddd;
}

.lang-switcher {
  position: relative;
  z-index: 1300;
}

.lang-switcher summary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-width: 100px;
  min-height: 30px;
  padding: 0 10px;
  color: #111111 !important;
  background: #f6f6f7;
  border: 0;
  border-radius: 5px;
  box-shadow: none;
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  list-style: none;
  user-select: none;
}

.lang-switcher summary::-webkit-details-marker {
  display: none;
}

.lang-switcher[open] summary {
  background: #eeeeef;
}

.flag {
  display: inline-grid;
  width: 34px;
  height: 24px;
  place-items: center;
  overflow: hidden;
  font-size: 25px;
  line-height: 1;
}

.lang-arrow {
  width: 0;
  height: 0;
  margin-left: 2px;
  border-right: 6px solid transparent;
  border-left: 6px solid transparent;
  border-top: 7px solid #111111;
}

.lang-switcher[open] .lang-arrow {
  transform: rotate(180deg);
}

.lang-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  width: 150px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #d8d8d8;
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, .14);
}

.lang-menu a {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 42px;
  padding: 0 24px;
  color: #202020 !important;
  font-size: 14px;
  /*font-weight: 500;*/
  text-transform: uppercase;
}

.lang-menu a:hover {
  color: #111111 !important;
  background: #f5f5f5;
}

@media (max-width: 1200px) {
  .topbar {
    font-size: 16px;
  }

  .topbar__left {
    gap: 18px;
  }

  .topbar__right {
    gap: 14px;
  }

  .lang-switcher summary {
    min-width: 104px;
    padding-inline: 14px;
  }
}

@media (max-width: 900px) {
  .site-header {
    top: -48px;
  }

  .topbar {
    font-size: 13px;
  }

  .topbar__inner {
    min-height: 40px;
    gap: 10px;
  }

  .topbar__left {
    gap: 8px;
  }

  .topbar__right {
    gap: 8px;
  }

  .topbar-contact:nth-child(2),
  .topbar-link,
  .topbar-separator,
  .topbar-divider,
  .topbar-mail span:last-child {
    display: none;
  }

  .topbar-icon,
  .mail-icon {
    width: 22px;
    height: 22px;
    font-size: 20px;
  }

  .lang-switcher summary {
    min-width: 102px;
    min-height: 34px;
    gap: 7px;
    padding: 0 10px;
    border-radius: 7px;
    font-size: 12px;
  }

  .flag {
    width: 24px;
    height: 18px;
    font-size: 18px;
  }

  .lang-arrow {
    border-right-width: 5px;
    border-left-width: 5px;
    border-top-width: 6px;
  }

  .lang-menu {
    right: 0;
    left: auto;
    width: 168px;
  }

  .lang-menu a {
    min-height: 54px;
    gap: 9px;
    padding: 0 14px;
    font-size: 13px;
  }
}

@media (max-width: 575px) {
  .topbar__inner {
    width: min(100% - 18px, var(--container));
  }

  .topbar-contact span:last-child {
    max-width: 112px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}





.aa-footer {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(64px, 8vw, 96px) 0 24px;
  color: rgba(255,255,255,.65);
  background: radial-gradient(circle at 10% 82%, rgba(18, 29, 25,.05) 0 1px, transparent 2px),
    radial-gradient(circle at 58% 25%, rgba(7, 15, 12,.035), transparent 35%),
    linear-gradient(135deg, rgba(18, 29, 25,.98), rgba(7, 15, 12,.94));
}

.aa-footer__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    /*radial-gradient(circle at 10% 82%, rgba(255,255,255,.05) 0 1px, transparent 2px),
    radial-gradient(circle at 58% 25%, rgba(255,255,255,.035), transparent 35%),
    linear-gradient(135deg, rgba(18,29,25,.98), rgba(18,29,25,.94));*/
}

.aa-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: .08;
  /*background-image:
    linear-gradient(30deg, transparent 49%, rgba(255,255,255,.45) 50%, transparent 51%),
    linear-gradient(120deg, transparent 49%, rgba(255,255,255,.35) 50%, transparent 51%);*/
  background-size: 160px 160px;
}

.aa-footer__grid {
  display: grid;
  grid-template-columns: 1.25fr .85fr 1.45fr 1.45fr;
  gap: clamp(34px, 5vw, 74px);
  align-items: start;
}

.aa-footer__logo {
  display: inline-flex;
  margin-bottom: 26px;
}

.aa-footer__logo img {
  width: min(220px, 100%);
  filter: grayscale(1) invert(1) brightness(2.2);
}

.aa-footer__trip h5 {
  margin: 0;
  color: var(--white);
  font-size: clamp(25px, 3.5vw, 30px);
  line-height: 1.35;
  letter-spacing: -.05em;
}

.aa-footer__trip h5 span {
  font-weight: 900;
}

.aa-footer__trip h6 {
  margin: 0;
  color: var(--white);
  font-size: clamp(20px, 3vw, 30px);
  line-height: 1.35;
  letter-spacing: -.05em;
}

.aa-footer__trip h6 span {
  font-weight: 900;
}

.aa-footer__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 190px;
  min-height: 58px;
  margin-top: 38px;
  border-radius: 6px;
  color: var(--white);
  background: var(--blue);
  font-size: 20px;
  font-weight: 900;
}

.aa-footer__btn:hover {
  color: var(--white);
  background: var(--blue-900);
}

.aa-footer h3 {
  margin: 0 0 24px;
  color: rgba(255,255,255,.86);
  font-size: 28px;
  line-height: 1.1;
  font-weight: 900;
}

.aa-footer h4 {
  margin: 0 0 24px;
  color: rgba(255,255,255,.86);
  font-size: 22px;
  line-height: 1.1;
  font-weight: 600;
}

.aa-footer h6 {
  margin: 0 0 24px;
  color: rgba(255,255,255,.86);
  font-size: 20px;
  line-height: 1.1;
  font-weight: 900;
}

.aa-footer__links a {
  display: block;
  margin-bottom: 24px;
  color: rgba(255,255,255,.62);
  font-size: 15px;
  font-weight: 500;
}

.aa-footer__links a:hover,
.aa-footer__legal a:hover {
  color: var(--blue);
}

.footer-contact-item + .footer-contact-item {
  margin-top: 12px;
}

.footer-contact-item h4 {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 13px;
}

.footer-contact-item p,
.aa-footer__about p {
  margin: 0;
  color: rgba(255,255,255,.62);
  font-size: 15px;
  line-height: 1.8;
  font-weight: 500;
}

.footer-icon {
  display: inline-grid;
  width: 22px;
  place-items: center;
  font-size: 20px;
  line-height: 1;
}

.footer-icon--orange { color: #ff9f00; }
.footer-icon--blue { color: var(--blue); }

.aa-footer__about p {
  max-width: 420px;
}

.payment-title {
  margin-top: 44px !important;
  margin-bottom: 24px !important;
}

.payment-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.payment-badges span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 54px;
  min-height: 34px;
  padding: 0 11px;
  border-radius: 4px;
  color: var(--white);
  background: #0057a8;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: -.03em;
}

.payment-badges span:nth-child(2) { background: #214da5; font-size: 11px; }
.payment-badges span:nth-child(3) { color: #18d7dc; background: transparent; font-size: 18px; font-style: italic; }

.aa-footer__bottom {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 20px;
  align-items: center;
  margin-top: clamp(54px, 7vw, 90px);
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.14);
}

.footer-socials--dark {
  display: flex;
  gap: 22px;
}

.footer-socials--dark a {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 2px solid #AAA;
  border-radius: 999px;
  color: rgba(255,255,255,.64);
  font-weight: 900;
}

.footer-socials--dark a:hover {
  color: var(--white);
  border-color: var(--white);
  background: var(--blue);
}

.aa-footer__bottom p {
  margin: 0;
  color: rgba(255,255,255,.62);
  text-align: center;
  font-size: 15px;
  font-weight: 500;
}

.aa-footer__bottom strong {
  color: var(--white);
}

.aa-footer__legal {
  display: flex;
  justify-content: flex-end;
  gap: 18px;
  color: rgba(255,255,255,.62);
  font-size: 15px;
  font-weight: 500;
}

.aa-footer__legal a {
  color: rgba(255,255,255,.62);
}

@media (max-width: 1180px) {
  .review-card { flex-basis: calc((100% - 44px) / 3); }
  .aa-footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .home-reviews { padding-block: 46px; }
  .reviews-glass { border-radius: 22px; }
  .review-card { flex-basis: calc((100% - 22px) / 2); }
  .reviews-arrow { display: none; }
  .aa-footer__grid { grid-template-columns: 1fr; }
  .aa-footer__bottom { grid-template-columns: 1fr; text-align: center; }
  .footer-socials--dark,
  .aa-footer__legal { justify-content: center; }
}

@media (max-width: 575px) {
  .review-card { flex-basis: 100%; }
  .review-bubble { min-height: 230px; padding: 24px 22px; }
  .review-bubble h3 { font-size: 21px; }
  .review-bubble p { font-size: 16px; }
  .aa-footer { padding-top: 56px; }
  .aa-footer h3 { font-size: 24px; }
  .footer-contact-item p,
  .aa-footer__about p,
  .aa-footer__links a { font-size: 17px; }
}





/* ==========================================================
   Header mini buttons: Contact Us / Reviews
   ========================================================== */

.brand-actions {
  gap: 14px;
}

.mini-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  min-height: 40px;
  padding: 0 17px;

  border: 1px solid var(--blue);
  border-radius: 10px;

  color: #777;
  background: var(--white);

  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0;

  transition: color .18s ease, background .18s ease, border-color .18s ease, transform .18s ease;
}

.mini-link__icon {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  flex: 0 0 auto;
}

.mini-link__icon svg {
  display: block;
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mini-link--contact .mini-link__icon {
  color: var(--blue);
}

.mini-link--contact .mini-link__icon svg {
  fill: var(--blue);
  stroke: var(--blue);
}

.mini-link--reviews .mini-link__icon {
  color: #111;
}

.mini-link--reviews .mini-link__icon svg {
  fill: none;
  stroke: #111;
  stroke-width: 4;
}

.mini-link__divider {
  width: 2px;
  height: 20px;
  background: #ddd;
}

.mini-link__text {
  color: #777;
  white-space: nowrap;
}

.mini-link:hover {
  color: var(--blue);
  border-color: var(--blue);
  background: #f7fcff;
  transform: translateY(-1px);
}

.mini-link:hover .mini-link__text {
  color: var(--blue);
}

/* Ajuste en pantallas medianas */
@media (max-width: 1200px) {
  .mini-link {
    min-height: 38px;
    padding: 0 13px;
    font-size: 14px;
  }

  .mini-link__icon,
  .mini-link__icon svg {
    width: 21px;
    height: 21px;
  }

  .mini-link__divider {
    height: 21px;
  }
}

/* ==========================================================
   Header responsive fix - estilo móvil/tablet como plantilla anterior
   Afecta solo al header entre desktop reducido y móvil.
   ========================================================== */

.brand > img,
.brand--drawer img {
  width: min(220px, 100%);
  height: auto;
}

@media (max-width: 1200px) {
  .site-header {
    top: -98px !important;
  }

  .topbar {
    color: #949494;
    background: #ffffff;
    border-bottom: 1px solid #dedede;
    font-size: 16px;
    font-weight: 500;
  }

  .topbar__inner {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    min-height: 40px;
    gap: 10px;
    width: min(100% - 28px, var(--container));
    text-align: left;
  }

  .topbar__left {
    display: flex !important;
    align-items: center;
    justify-content: flex-start;
    gap: 14px;
    min-width: 0;
  }

  .topbar__left .topbar-contact:not(:first-child) {
    display: none !important;
  }

  .topbar-contact {
    display: inline-flex !important;
    align-items: center;
    gap: 16px;
    color: #949494 !important;
    white-space: nowrap;
  }

  .topbar-contact span:last-child {
    display: inline-block !important;
    max-width: none !important;
    overflow: visible !important;
    text-overflow: clip !important;
    white-space: nowrap !important;
  }

  .topbar-icon {
    width: 38px;
    height: 38px;
  }

  .topbar-icon img {
    width: 25px;
    height: 25px;
    object-fit: contain;
  }

  .topbar__right {
    display: flex !important;
    align-items: center;
    justify-content: flex-end;
    gap: 0;
    margin-left: auto;
    padding-left: 0;
    min-height: auto;
  }

  .topbar-link,
  .topbar-separator,
  .topbar-divider,
  .topbar-mail {
    display: none !important;
  }

  .lang-switcher {
    position: relative;
    z-index: 1300;
  }

  .lang-switcher summary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    min-width: 100px;
    min-height: 34px;
    padding: 0 10px;
    color: #111111 !important;
    background: #f6f6f7;
    border: 0;
    border-radius: 12px;
    box-shadow: none;
    font-size: 13px;
    font-weight: 500;
    line-height: 1;
    text-transform: uppercase;
    cursor: pointer;
    list-style: none;
  }

  .lang-switcher summary::-webkit-details-marker {
    display: none;
  }

  .flag {
    width: 36px;
    height: 26px;
    font-size: 28px;
    line-height: 1;
  }

  .lang-arrow {
    border-right-width: 8px;
    border-left-width: 8px;
    border-top-width: 9px;
  }

  .lang-menu {
    right: 0;
    left: auto;
    width: 190px;
  }

  .lang-menu a {
    min-height: 58px;
    gap: 12px;
    padding: 0 18px;
    font-size: 15px;
  }

  .sticky-header {
    border-bottom: 1px solid #dedede;
    box-shadow: none;
  }

  .brandbar__inner {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    min-height: 78px;
    gap: 18px;
  }

  .brand {
    flex: 1 1 auto;
    min-width: 0;
  }

  .brand > img {
    width: 220px ;
    /*max-width: 58vw;*/
    height: auto;
  }

  .desktop-actions,
  .desktop-nav {
    display: none !important;
  }

  .mobile-actions {
    display: flex !important;
    align-items: center;
    justify-content: flex-end;
    flex: 0 0 auto;
    gap: 24px;
    margin-left: auto;
  }

  .mobile-icon {
    display: grid;
    width: 54px;
    height: 54px;
    place-items: center;
    color: var(--blue-500);
    background: transparent;
    border-radius: 0;
  }

  .mobile-icon img {
    width: 26px;
    height: 26px;
    object-fit: contain;
  }

  .hamburger {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    width: 76px;
    height: 58px;
    margin: 0 0 0 12px;
    cursor: pointer;
  }

  .hamburger span {
    display: block;
    width: 40px;
    height: 6px;
    margin-left: auto;
    border-radius: 999px;
    background: #1c2b26;
  }
}

@media (max-width: 700px) {
  .site-header {
    top: -66px !important;
  }

  .topbar__inner {
    min-height: 40px;
  }

  .topbar {
    font-size: 14px;
  }

  .topbar-contact {
    gap: 10px;
  }

  .topbar-icon,
  .topbar-icon img {
    width: 20px;
    height: 20px;
  }

  .lang-switcher summary {
    min-width: 100px;
    min-height: 34px;
    gap: 10px;
    padding: 0 14px;
    border-radius: 9px;
    font-size: 12px;
  }

  .flag {
    width: 28px;
    height: 20px;
    font-size: 21px;
  }

  .lang-arrow {
    border-right-width: 6px;
    border-left-width: 6px;
    border-top-width: 7px;
  }

  .brandbar__inner {
    min-height: 78px;
  }

  .brand > img {
    width: 220px !important;
    /*max-width: 58vw;*/
  }

  .mobile-actions {
    gap: 13px;
  }

  .mobile-icon {
    width: 42px;
    height: 42px;
  }

  .mobile-icon img {
    width: 26px;
    height: 26px;
  }

  .hamburger {
    width: 56px;
    height: 46px;
    gap: 6px;
    margin-left: 6px;
  }

  .hamburger span {
    width: 40px;
    height: 6px;
  }
}

@media (max-width: 430px) {
  .topbar__inner {
    width: min(100% - 18px, var(--container));
  }

  .topbar {
    font-size: 15px;
  }

  .topbar-contact span:last-child {
    max-width: 138px !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }

  .lang-switcher summary {
    min-width: 122px;
    min-height: 42px;
    font-size: 13px;
  }

  .brandbar__inner {
    min-height: 96px;
  }

  .brand > img {
    width: min(220px, 52vw) !important;
  }

  .mobile-actions {
    gap: 8px;
  }

  .mobile-icon {
    width: 34px;
    height: 34px;
  }

  .mobile-icon img {
    width: 29px;
    height: 29px;
  }

  .hamburger {
    width: 42px;
    height: 36px;
    gap: 6px;
    margin-left: 2px;
  }

  .hamburger span {
    width: 42px;
    height: 6px;
  }
}



/* ==========================================================
   WhatsApp floating button - corrected professional version
   ========================================================== */

.whatsapp-float.whatsapp-float--pro {
  position: fixed !important;
  right: 22px !important;
  bottom: 22px !important;
  z-index: 99999 !important;

  width: auto !important;
  height: auto !important;
  min-width: 0 !important;
  min-height: 0 !important;

  padding: 0 !important;
  margin: 0 !important;

  display: flex !important;
  align-items: center !important;
  gap: 12px !important;

  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  overflow: visible !important;

  color: #fff !important;
  text-decoration: none !important;
}

.whatsapp-float__bubble {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;

  width: 150px;
  min-height: 45px;
  padding: 5px 15px;

  background: #fff;
  color: #132018;

  border-radius: 18px;
  box-shadow: 0 14px 34px rgba(15, 23, 42, .18);

  white-space: nowrap;
}

.whatsapp-float__bubble::after {
  content: "";
  position: absolute;
  right: -6px;
  top: 50%;

  width: 12px;
  height: 12px;

  background: #fff;
  transform: translateY(-50%) rotate(45deg);
}

.whatsapp-float__bubble strong {
  display: block;
  color: #132018;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.1;
}

.whatsapp-float__bubble small {
  display: block;
  margin-top: 4px;
  color: #68736c;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.1;
}

.whatsapp-float__button {
  position: relative;

  display: flex;
  align-items: center;
  justify-content: center;

  flex: 0 0 58px;

  width: 58px;
  height: 58px;

  border-radius: 50%;
  background: #25d366;
  color: #fff;

  box-shadow: 0 16px 36px rgba(37, 211, 102, .38);
}

.whatsapp-float__icon {
  width: 32px;
  height: 32px;
  display: block;
}

.whatsapp-float__badge {
  position: absolute;
  top: -4px;
  right: -4px;

  display: flex;
  align-items: center;
  justify-content: center;

  width: 22px;
  height: 22px;

  border-radius: 50%;
  background: #ef233c;
  color: #fff;

  border: 2px solid #fff;

  font-size: 12px;
  font-weight: 900;
  line-height: 1;
}

.whatsapp-float__button::after {
  content: "";
  position: absolute;
  inset: -7px;

  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, .35);

  animation: whatsappPulse 1.9s ease-out infinite;
}

.whatsapp-float.whatsapp-float--pro:hover .whatsapp-float__button {
  /*transform: translateY(-3px) scale(1.04);*/
  background: #20bf5a;
}

@keyframes whatsappPulse {
  0% {
    transform: scale(.9);
    opacity: .75;
  }

  100% {
    transform: scale(1.35);
    opacity: 0;
  }
}

/* En pantallas pequeñas solo queda el botón */
@media (max-width: 767px) {
  .whatsapp-float.whatsapp-float--pro {
    right: 16px !important;
    bottom: 16px !important;
  }

  .whatsapp-float__bubble {
    display: none !important;
  }

  .whatsapp-float__button {
    width: 58px;
    height: 58px;
    flex-basis: 58px;
  }
}





/* ==========================================================
   FIX header sticky en tablet / móvil
   Evita que el menú flotante recorte el logo al hacer scroll
   ========================================================== */

@media (max-width: 1200px) {
  .site-header {
    top: -40px !important;
  }

  .topbar,
  .topbar__inner {
    min-height: 40px !important;
  }

  .sticky-header {
    position: relative !important;
    top: auto !important;
    background: #fff !important;
    z-index: 1002 !important;
  }

  .brandbar {
    background: #fff !important;
  }

  .brandbar__inner {
    min-height: 78px !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
}

@media (max-width: 700px) {
  .site-header {
    top: -40px !important;
  }

  .brandbar__inner {
    min-height: 78px !important;
  }

  .brand > img {
    width: min(220px, 52vw) !important;
    height: auto !important;
  }
}

@media (max-width: 430px) {
  .site-header {
    top: -40px !important;
  }

  .brandbar__inner {
    min-height: 78px !important;
  }

  .brand > img {
    width: min(210px, 52vw) !important;
    height: auto !important;
  }

  .mobile-actions {
    gap: 8px !important;
  }

  .mobile-icon {
    width: 34px !important;
    height: 34px !important;
  }

  .mobile-icon img {
    width: 27px !important;
    height: 27px !important;
  }

  .hamburger {
    width: 42px !important;
    height: 36px !important;
    margin-left: 2px !important;
  }

  .hamburger span {
    width: 38px !important;
    height: 6px !important;
  }
}