/* =========================================================
   Critical CSS: Base + Header + Buttons
   Above-the-fold styles combined to reduce render-blocking requests.
   ========================================================= */

/* ===== 01-base.css ===== */
/* =========================================================
   Base
   Variabili globali, reset, layout helpers
   ========================================================= */

:root {
  --blue: #120a8f;
  --blue-2: #1877ff;
  --cyan: #51d4ff;
  --aqua: #7ee7ff;
  --navy: #07112d;
  --navy-2: #040817;

  --sand: #fff7e9;
  --cream: #fffaf1;
  --white: #ffffff;

  --surface: rgba(255, 255, 255, .88);
  --surface-strong: #ffffff;
  --surface-blue: #f4f9ff;

  --glass: rgba(255, 255, 255, .74);
  --glass-strong: rgba(255, 255, 255, .9);
  --blur: blur(22px) saturate(165%);

  --text: #13223a;
  --muted: #66758b;

  --gold: #f4c76b;
  --coral: #ff7a66;
  --success: #25d366;

  --line: rgba(19, 34, 58, .11);
  --line-strong: rgba(19, 34, 58, .18);
  --line-light: rgba(255, 255, 255, .18);

  --radius-sm: 16px;
  --radius: 26px;
  --radius-lg: 38px;
  --radius-xl: 52px;

  --shadow-xs: 0 8px 22px rgba(7, 17, 45, .06);
  --shadow-soft: 0 16px 42px rgba(7, 17, 45, .09);
  --shadow: 0 26px 80px rgba(7, 17, 45, .14);
  --shadow-blue: 0 20px 52px rgba(18, 10, 143, .28);

  --ease: cubic-bezier(.2, .8, .2, 1);

  --header-h: 112px;
  --safe-bottom: env(safe-area-inset-bottom, 0px);
}

/* Reset */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
  background: #fff;
}

body {
  position: relative;
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at 4% 0%, rgba(81, 212, 255, .16), transparent 30rem),
    radial-gradient(circle at 92% 8%, rgba(244, 199, 107, .13), transparent 24rem),
    linear-gradient(180deg, #ffffff 0%, #f7fbff 44%, #ffffff 100%);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 10% 18%, rgba(81, 212, 255, .1), transparent 28rem),
    radial-gradient(circle at 88% 72%, rgba(18, 10, 143, .07), transparent 32rem);
}

body.nav-open {
  overflow: hidden;
}

::selection {
  background: rgba(81, 212, 255, .34);
  color: var(--navy);
}

/* Elements */

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

img,
video,
iframe,
svg {
  display: block;
  max-width: 100%;
}

img,
video {
  height: auto;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  color: inherit;
}

button,
select {
  cursor: pointer;
}

[id] {
  scroll-margin-top: calc(var(--header-h) + 18px);
}

/* Focus */

:focus-visible {
  outline: 3px solid rgba(81, 212, 255, .78);
  outline-offset: 4px;
  border-radius: 12px;
}

/* Layout */

.container,
.nav-wrap,
.topbar__inner {
  width: min(1160px, calc(100% - 40px));
  margin-inline: auto;
}

.container--narrow {
  width: min(920px, calc(100% - 40px));
  margin-inline: auto;
}

/* Accessibility */

.skip-link {
  position: absolute;
  top: 12px;
  left: -999px;
  z-index: 9999;
  padding: 12px 16px;
  border-radius: 999px;
  background: #fff;
  color: #000;
  box-shadow: var(--shadow-soft);
  font-weight: 900;
}

.skip-link:focus {
  left: 12px;
}

/* Reveal animation
   Safe mode:
   - without JS everything stays visible
   - with JS reveal is enabled only after html.js is added
   - hero content is always visible to protect LCP
*/

.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 0;
  transform: translate3d(0, 18px, 0);
  will-change: opacity, transform;
  transition:
    opacity .42s var(--ease),
    transform .42s var(--ease);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  will-change: auto;
}

.hero__content,
.hero__content.reveal,
.js .hero__content,
.js .hero__content.reveal {
  opacity: 1;
  transform: none;
  transition: none;
  will-change: auto;
}

/* Animations */

@keyframes menuIn {
  from {
    opacity: 0;
    transform: translate3d(0, -8px, 0) scale(.98);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

/* Responsive base */

@media (max-width: 900px) {
  :root {
    --header-h: 86px;
  }

  html {
    scroll-padding-top: var(--header-h);
  }

  .js .reveal {
    transform: translate3d(0, 12px, 0);
    transition-duration: .32s;
  }

  .hero__content,
  .hero__content.reveal,
  .js .hero__content,
  .js .hero__content.reveal {
    opacity: 1;
    transform: none;
    transition: none;
    will-change: auto;
  }
}

@media (max-width: 520px) {
  .container,
  .nav-wrap,
  .topbar__inner,
  .container--narrow {
    width: min(100% - 28px, 1160px);
  }
}

/* Motion preferences */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }

  .reveal,
  .js .reveal,
  .hero__content,
  .hero__content.reveal,
  .js .hero__content,
  .js .hero__content.reveal {
    opacity: 1;
    transform: none;
    transition: none;
    will-change: auto;
  }
}

/* =========================================================
   Global responsive refinements
   Merged from 08-responsive.css to reduce one critical request
   ========================================================= */

@media (max-width: 900px) {
  html {
    scroll-padding-top: 86px;
  }

  .section-head::after {
    width: 78px;
    margin-top: 18px;
  }

  .tour-card h3 {
    min-height: auto;
  }
}

@media (max-width: 520px) {
  .section-head::after {
    width: 68px;
  }
}

@media (hover: none) {
  .btn:hover,
  .booking-channel:not(.is-disabled):hover {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .btn,
  .booking-channel {
    transition: none !important;
  }
}

/* ===== 02-header.css ===== */
/* =========================================================
   Header
   ========================================================= */

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  background: rgba(255, 255, 255, .94);
  border-bottom: 1px solid rgba(255, 255, 255, .72);
  backdrop-filter: blur(12px) saturate(140%);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
  transform: translate3d(0, 0, 0);
  transition:
    background .24s var(--ease),
    transform .24s var(--ease);
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 12% 0%, rgba(81, 212, 255, .14), transparent 18rem),
    radial-gradient(circle at 88% 0%, rgba(244, 199, 107, .08), transparent 16rem);
  opacity: .75;
  pointer-events: none;
}

.site-header::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -1px;
  width: min(1160px, calc(100% - 40px));
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(18, 10, 143, .2), rgba(81, 212, 255, .24), transparent);
  pointer-events: none;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, .98);
  border-bottom-color: rgba(19, 34, 58, .08);
  box-shadow: 0 12px 34px rgba(7, 17, 45, .08);
}

/* =========================================================
   Topbar
   ========================================================= */

.topbar {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 50%, rgba(81, 212, 255, .22), transparent 20rem),
    radial-gradient(circle at 84% 50%, rgba(244, 199, 107, .1), transparent 16rem),
    linear-gradient(135deg, var(--blue), #0c0668 58%, #05031f);
  color: #fff;
  font-size: 13px;
}

.topbar::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .22), transparent);
  pointer-events: none;
}

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

.topbar__left,
.topbar__links,
.topbar__location,
.topbar__link {
  display: inline-flex;
  align-items: center;
}

.topbar__left {
  min-width: 0;
  gap: 16px;
}

.topbar__links {
  flex-shrink: 0;
  gap: 10px;
}

.topbar__location,
.topbar__link {
  gap: 8px;
  color: rgba(255, 255, 255, .9);
  font-weight: 850;
}

.topbar__location {
  min-width: 0;
}

.topbar__location span:last-child {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.topbar__icon,
.topbar__link span:first-child {
  width: 21px;
  height: 21px;
  flex: 0 0 21px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, .13);
  font-size: 12px;
  line-height: 1;
}

.topbar a {
  transition: transform .18s var(--ease);
}

.topbar a:hover {
  color: #fff;
}

.topbar__link {
  padding: 5px 10px 5px 6px;
  border-radius: 999px;
}

.topbar__link:hover {
  background: rgba(255, 255, 255, .1);
  transform: translate3d(0, -1px, 0);
}

.topbar__link--whatsapp {
  color: #fff;
  background: rgba(37, 211, 102, .16);
}

/* =========================================================
   Main navigation
   ========================================================= */

.nav-shell {
  position: relative;
}

.nav-wrap {
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

.brand {
  position: relative;
  min-width: 0;
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  transform-origin: left center;
  transition: transform .18s var(--ease);
}

.brand__mark {
  position: absolute;
  left: -12px;
  top: 50%;
  width: 54px;
  height: 54px;
  transform: translateY(-50%);
  border-radius: 999px;
  background: radial-gradient(circle, rgba(81, 212, 255, .2), transparent 64%);
  opacity: .85;
  pointer-events: none;
}

.brand:hover {
  transform: translate3d(0, -1px, 0);
}

.brand img {
  position: relative;
  z-index: 1;
  width: 214px;
  height: auto;
  max-height: 64px;
  object-fit: contain;
  object-position: left center;
  image-rendering: auto;
  backface-visibility: visible;
  will-change: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 5px;
  border: 1px solid rgba(19, 34, 58, .07);
  border-radius: 999px;
  background: rgba(255, 255, 255, .58);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .6),
    0 8px 22px rgba(7, 17, 45, .045);
  font-size: 14px;
  font-weight: 900;
}

.site-nav > a:not(.nav-cta) {
  position: relative;
  isolation: isolate;
  padding: 11px 12px;
  border-radius: 999px;
  color: rgba(7, 17, 45, .82);
  white-space: nowrap;
  transition: transform .18s var(--ease);
}

.site-nav > a:not(.nav-cta)::before {
  content: "";
  position: absolute;
  inset: 4px;
  z-index: -1;
  border-radius: inherit;
  background:
    radial-gradient(circle at 30% 20%, rgba(81, 212, 255, .2), transparent 55%),
    linear-gradient(135deg, rgba(18, 10, 143, .07), rgba(24, 119, 255, .05));
  opacity: 0;
  transform: scale(.96);
  transition:
    opacity .18s var(--ease),
    transform .18s var(--ease);
}

.site-nav > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 15px;
  right: 15px;
  bottom: 7px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .18s var(--ease);
}

.site-nav > a:not(.nav-cta):hover {
  color: var(--blue);
  transform: translate3d(0, -1px, 0);
}

.site-nav > a:not(.nav-cta):hover::before {
  opacity: 1;
  transform: scale(1);
}

.site-nav > a:not(.nav-cta):hover::after {
  transform: scaleX(1);
}

/* =========================================================
   CTA
   ========================================================= */

.nav-cta {
  position: relative;
  overflow: hidden;
  margin-left: 6px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 20% 12%, rgba(255, 255, 255, .3), transparent 2rem),
    linear-gradient(135deg, var(--blue), var(--blue-2));
  color: #fff;
  white-space: nowrap;
  box-shadow:
    0 12px 30px rgba(18, 10, 143, .24),
    inset 0 1px 0 rgba(255, 255, 255, .22);
  transition:
    transform .18s var(--ease),
    filter .18s var(--ease);
}

.nav-cta::before {
  content: "⚓";
  width: 22px;
  height: 22px;
  margin-right: 8px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, .18);
  font-size: 12px;
  line-height: 1;
}

.nav-cta::after {
  content: "";
  position: absolute;
  inset: -55% -90%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .3), transparent);
  transform: translateX(-62%) rotate(12deg);
  transition: transform .55s var(--ease);
  pointer-events: none;
}

.nav-cta:hover {
  transform: translate3d(0, -2px, 0);
  filter: saturate(108%);
  box-shadow:
    0 14px 34px rgba(18, 10, 143, .3),
    inset 0 1px 0 rgba(255, 255, 255, .26);
}

.nav-cta:hover::after {
  transform: translateX(62%) rotate(12deg);
}

/* =========================================================
   GTranslate
   ========================================================= */

.nav-language {
  position: relative;
  isolation: isolate;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 4px;
}

.nav-language select,
.nav-language .gt_selector {
  width: auto;
  min-width: 112px;
  min-height: 40px;
  padding: 0 36px 0 14px;
  border: 1px solid rgba(18, 10, 143, .12);
  border-radius: 999px;
  appearance: none;
  -webkit-appearance: none;
  background: linear-gradient(135deg, rgba(255, 255, 255, .96), rgba(255, 255, 255, .8));
  color: var(--blue);
  font-family: inherit;
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.01em;
  outline: none;
  cursor: pointer;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .78),
    0 8px 20px rgba(7, 17, 45, .05);
  transition: transform .18s var(--ease);
}

.nav-language::after {
  content: "⌄";
  position: absolute;
  right: 14px;
  top: 50%;
  z-index: 2;
  transform: translateY(-52%);
  color: var(--blue);
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
  pointer-events: none;
}

.nav-language select:hover,
.nav-language .gt_selector:hover {
  border-color: rgba(18, 10, 143, .28);
  transform: translate3d(0, -1px, 0);
}

.nav-language select:focus-visible,
.nav-language .gt_selector:focus-visible {
  border-color: rgba(18, 10, 143, .55);
  box-shadow:
    0 0 0 4px rgba(81, 212, 255, .16),
    0 10px 24px rgba(18, 10, 143, .1);
}

.nav-language img {
  display: inline-block;
  max-width: 22px;
  height: auto;
  vertical-align: middle;
  border-radius: 999px;
}

.nav-language .gtranslate_wrapper,
.nav-language .switcher,
.nav-language .gt_switcher {
  width: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.nav-language .switcher {
  font-family: inherit;
}

.nav-language .switcher .selected,
.nav-language .switcher .option {
  background: transparent;
}

.nav-language .switcher .selected a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0 36px 0 14px;
  border: 1px solid rgba(18, 10, 143, .12);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 255, 255, .96), rgba(255, 255, 255, .8));
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .78),
    0 8px 20px rgba(7, 17, 45, .05);
}

.nav-language .switcher .selected a:hover {
  color: var(--blue);
}

.nav-language .switcher .option {
  margin-top: 8px;
  overflow: hidden;
  border: 1px solid rgba(19, 34, 58, .08);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(7, 17, 45, .12);
}

.nav-language .switcher .option a {
  padding: 10px 14px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
}

.nav-language .switcher .option a:hover {
  background: rgba(18, 10, 143, .06);
  color: var(--blue);
}

/* =========================================================
   Toggle
   ========================================================= */

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(7, 17, 45, .1);
  border-radius: 999px;
  background:
    radial-gradient(circle at 28% 18%, rgba(255, 255, 255, .96), transparent 2rem),
    rgba(255, 255, 255, .86);
  box-shadow: var(--shadow-xs);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  border-radius: 10px;
  background: var(--navy);
  transition:
    transform .2s var(--ease),
    opacity .2s var(--ease);
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* =========================================================
   Focus
   ========================================================= */

.site-nav > a:not(.nav-cta):focus-visible,
.nav-cta:focus-visible,
.nav-toggle:focus-visible,
.brand:focus-visible,
.topbar a:focus-visible,
.nav-language select:focus-visible,
.nav-language .gt_selector:focus-visible,
.nav-language .switcher .selected a:focus-visible {
  outline-offset: 3px;
}

/* =========================================================
   Responsive
   ========================================================= */

@media (max-width: 1120px) {
  .site-nav {
    gap: 2px;
    font-size: 13px;
  }

  .site-nav > a:not(.nav-cta) {
    padding-inline: 10px;
  }

  .nav-cta {
    padding-inline: 15px;
  }

  .nav-language select,
  .nav-language .gt_selector {
    min-width: 104px;
  }
}

@media (max-width: 900px) {
  .topbar {
    display: none;
  }

  .site-header {
    background: rgba(255, 255, 255, .97);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .site-header::before {
    opacity: .55;
  }

  .nav-wrap {
    height: 74px;
  }

  .brand img {
    width: 172px;
    max-height: 56px;
  }

  .brand:hover {
    transform: none;
  }

  .nav-toggle {
    position: relative;
    z-index: 141;
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 86px;
    left: 16px;
    right: 16px;
    z-index: 140;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    max-height: calc(100svh - 108px);
    overflow-y: auto;
    padding: 16px;
    border: 1px solid rgba(19, 34, 58, .1);
    border-radius: 30px;
    background:
      radial-gradient(circle at top right, rgba(81, 212, 255, .16), transparent 16rem),
      radial-gradient(circle at bottom left, rgba(244, 199, 107, .1), transparent 14rem),
      rgba(255, 255, 255, .98);
    box-shadow: 0 18px 44px rgba(7, 17, 45, .14);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    contain: layout paint;
  }

  .site-nav.is-open {
    display: flex;
    animation: menuIn .2s var(--ease) both;
  }

  .site-nav > a:not(.nav-cta) {
    width: 100%;
    min-height: 48px;
    display: flex;
    align-items: center;
    padding: 14px 15px;
    border-radius: 18px;
    background: rgba(18, 10, 143, .045);
    color: var(--navy);
    font-size: 15px;
  }

  .site-nav > a:not(.nav-cta)::after {
    display: none;
  }

  .site-nav > a:not(.nav-cta):hover {
    background: rgba(18, 10, 143, .075);
    transform: none;
  }

  .site-nav > a:not(.nav-cta)::before {
    content: "✨";
    position: static;
    width: 28px;
    height: 28px;
    margin-right: 10px;
    display: inline-grid;
    place-items: center;
    flex: 0 0 28px;
    border-radius: 999px;
    background: rgba(81, 212, 255, .16);
    font-size: 13px;
    opacity: 1;
    transform: none;
  }

  .site-nav > a[href="#esperienza"]::before {
    content: "🌊";
  }

  .site-nav > a[href="#mete"]::before {
    content: "📍";
  }

  .site-nav > a[href="#tour"]::before {
    content: "🛥️";
  }

  .site-nav > a[href="#barca"]::before {
    content: "⚓";
  }

  .site-nav > a[href="#prenota"]::before {
    content: "🎟️";
  }

  .site-nav > a[href="#recensioni"]::before {
    content: "★";
  }

  .nav-language {
    width: 100%;
    min-height: 48px;
    justify-content: stretch;
    margin: 4px 0;
  }

  .nav-language select,
  .nav-language .gt_selector,
  .nav-language .switcher .selected a {
    width: 100%;
    min-height: 48px;
    padding: 0 42px 0 54px;
    border-radius: 18px;
    background:
      radial-gradient(circle at 12% 20%, rgba(81, 212, 255, .14), transparent 7rem),
      rgba(18, 10, 143, .045);
    color: var(--navy);
    font-size: 15px;
    box-shadow: none;
  }

  .nav-language::before {
    content: "🌍";
    position: absolute;
    left: 15px;
    top: 50%;
    z-index: 2;
    width: 28px;
    height: 28px;
    display: inline-grid;
    place-items: center;
    transform: translateY(-50%);
    border-radius: 999px;
    background: rgba(81, 212, 255, .16);
    font-size: 13px;
    pointer-events: none;
  }

  .nav-language::after {
    right: 16px;
    color: var(--navy);
  }

  .nav-language select:hover,
  .nav-language .gt_selector:hover {
    transform: none;
    background: rgba(18, 10, 143, .075);
    box-shadow: none;
  }

  .nav-language .gtranslate_wrapper,
  .nav-language .switcher,
  .nav-language .gt_switcher {
    width: 100%;
    justify-content: stretch;
  }

  .nav-language .switcher .option {
    position: static;
    width: 100%;
    margin-top: 8px;
    border-radius: 18px;
    box-shadow: none;
  }

  .nav-cta {
    width: 100%;
    min-height: 52px;
    margin: 6px 0 0;
    padding: 16px;
    text-align: center;
  }

  .nav-cta:hover {
    transform: none;
  }
}

@media (max-width: 520px) {
  .brand img {
    width: 164px;
    max-height: 54px;
  }

  .site-nav {
    top: 82px;
    left: 14px;
    right: 14px;
    max-height: calc(100svh - 104px);
    padding: 14px;
    border-radius: 26px;
  }
}

@media (max-width: 380px) {
  .brand img {
    width: 154px;
    max-height: 52px;
  }

  .nav-toggle {
    width: 46px;
    height: 46px;
  }
}

@media (hover: none) {
  .brand:hover,
  .topbar__link:hover,
  .site-nav > a:not(.nav-cta):hover,
  .nav-cta:hover,
  .nav-language select:hover,
  .nav-language .gt_selector:hover {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-header,
  .topbar a,
  .brand,
  .site-nav > a,
  .site-nav > a::before,
  .site-nav > a::after,
  .nav-cta,
  .nav-cta::after,
  .nav-language select,
  .nav-language .gt_selector,
  .nav-language .switcher .selected a,
  .nav-toggle span {
    transition: none !important;
    animation: none !important;
  }
}

/* ===== 03-buttons.css ===== */
/* =========================================================
   Buttons
   Global CTA styles
   ========================================================= */

.btn {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 56px;
  padding: 16px 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: inherit;
  font-weight: 950;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  transform: translate3d(0, 0, 0);
  transition:
    transform .18s var(--ease),
    filter .18s var(--ease);
}

.btn::before {
  position: relative;
  z-index: 1;
  flex: 0 0 auto;
  line-height: 1;
}

.btn::after {
  content: "";
  position: absolute;
  inset: -55% -90%;
  z-index: -1;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .3), transparent);
  transform: translateX(-62%) rotate(12deg);
  transition: transform .55s var(--ease);
  pointer-events: none;
}

.btn:hover {
  transform: translate3d(0, -2px, 0);
  filter: saturate(108%);
}

.btn:hover::after {
  transform: translateX(62%) rotate(12deg);
}

.btn:active {
  transform: translate3d(0, 0, 0) scale(.985);
}

/* Variants */

.btn--primary,
.btn--small {
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  color: #fff;
}

.btn--primary {
  box-shadow: 0 18px 46px rgba(18, 10, 143, .24);
}

.btn--primary::before {
  content: "🌊";
}

.btn--ghost {
  border-color: rgba(255, 255, 255, .38);
  background: rgba(255, 255, 255, .12);
  color: #fff;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.btn--ghost::before {
  content: "💬";
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, .18);
}

.btn--ghost-dark {
  border-color: var(--line);
  background: rgba(255, 255, 255, .94);
  color: var(--blue);
  box-shadow: var(--shadow-xs);
}

.btn--ghost-dark:hover {
  border-color: rgba(18, 10, 143, .18);
  background: #fff;
}

.btn--light {
  background: #fff;
  color: var(--blue);
  box-shadow: 0 14px 34px rgba(0, 0, 0, .12);
}

.btn--small {
  min-height: 48px;
  padding: 13px 18px;
  font-size: 14px;
  box-shadow: 0 12px 28px rgba(18, 10, 143, .2);
}

.btn--whatsapp {
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, .24), transparent 2.2rem),
    linear-gradient(135deg, #25d366, #16b756);
  color: #fff;
  box-shadow:
    0 14px 34px rgba(37, 211, 102, .26),
    inset 0 1px 0 rgba(255, 255, 255, .22);
}

.btn--whatsapp span {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .22);
  font-weight: 950;
  line-height: 1;
}

/* Context icons */

.hero .btn--ghost::before {
  content: "🧭";
}

.final-cta .btn--ghost::before {
  content: "📍";
}

.faq .btn--primary::before {
  content: "💬";
}

#incluso .btn--ghost-dark::before {
  content: "🛥️";
}

/* Shared active states for non-button CTAs */

.nav-cta:active,
.wa-float:active,
.back-to-top:active {
  transform: translate3d(0, 0, 0) scale(.985);
}

/* Responsive */

@media (max-width: 520px) {
  .btn {
    width: 100%;
    min-height: 52px;
    padding: 15px 20px;
  }

  .btn--small {
    min-height: 48px;
    padding: 13px 18px;
  }

  .btn--ghost {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}

/* Input modality */

@media (hover: none) {
  .btn:hover {
    transform: none;
    filter: none;
  }

  .btn:hover::after {
    transform: translateX(-62%) rotate(12deg);
  }
}

/* Motion preferences */

@media (prefers-reduced-motion: reduce) {
  .btn,
  .btn::after {
    transition: none !important;
  }
}

