/* ============================================================
   Jetski Busauto Rental — styles
   Palette: deep ocean navy + Sea-Doo turquoise
   ============================================================ */

:root {
  --navy-950: #061320;
  --navy-900: #0a1a2f;
  --navy-800: #0f2740;
  --navy-700: #163551;
  --turq-500: #14c8c0;
  --turq-400: #2fded4;
  --turq-300: #7defe6;
  --sky-300: #6fc6e8;
  --foam: #eaf7f8;
  --sand: #f4efe6;
  --white: #ffffff;
  --ink: #0b1b2b;
  --slate-600: #4a5b6b;
  --slate-400: #8497a6;
  --line: #e3ebef;
  --wa: #25d366;
  --wa-dark: #128c44;

  --bg: #ffffff;
  --bg-muted: #f3f8fa;

  --radius: 18px;
  --radius-lg: 26px;
  --radius-sm: 12px;
  --shadow-sm: 0 4px 16px rgba(10, 26, 47, 0.08);
  --shadow-md: 0 12px 40px rgba(10, 26, 47, 0.12);
  --shadow-lg: 0 24px 70px rgba(10, 26, 47, 0.22);

  --maxw: 1180px;
  --font-head: 'Sora', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.12; margin: 0; letter-spacing: -0.02em; }
h1 { font-size: clamp(2.1rem, 6vw, 4rem); font-weight: 800; }
h2 { font-size: clamp(1.7rem, 4vw, 2.8rem); font-weight: 700; }
h3 { font-size: 1.3rem; font-weight: 700; }
p { margin: 0 0 1rem; }
a { color: inherit; text-decoration: none; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }
.container-narrow { max-width: 820px; }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 2000;
  background: var(--navy-900); color: #fff; padding: 12px 18px; border-radius: 0 0 10px 0;
}
.skip-link:focus { left: 0; }

/* ---------------- Buttons ---------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-head); font-weight: 700; font-size: 1rem;
  padding: 14px 26px; border-radius: 100px; border: 2px solid transparent;
  cursor: pointer; transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease), color .2s var(--ease);
  line-height: 1.15; text-align: center; white-space: nowrap; max-width: 100%;
}
.btn:active { transform: scale(0.97); }
.btn .ico { width: 20px; height: 20px; fill: currentColor; flex: 0 0 auto; }
.btn-sm { padding: 10px 18px; font-size: .92rem; }
.btn-lg { padding: 17px 32px; font-size: 1.08rem; }
.btn-xl { padding: 18px 26px; font-size: 1.08rem; white-space: normal; }
.btn-block { display: flex; width: 100%; }

.btn-whatsapp { background: var(--wa); color: #fff; box-shadow: 0 10px 26px rgba(37,211,102,.35); }
.btn-whatsapp:hover { background: #1fbd5a; transform: translateY(-2px); box-shadow: 0 16px 34px rgba(37,211,102,.45); }

.btn-ghost { background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,.55); backdrop-filter: blur(6px); }
.btn-ghost:hover { background: rgba(255,255,255,.22); transform: translateY(-2px); }

.btn-outline { background: transparent; color: var(--navy-900); border-color: var(--line); }
.btn-outline:hover { border-color: var(--turq-500); color: var(--navy-900); background: var(--foam); transform: translateY(-2px); }

.btn-dark { background: var(--navy-900); color: #fff; }
.btn-dark:hover { background: var(--navy-800); transform: translateY(-2px); }

/* ---------------- Header ---------------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.86); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s var(--ease);
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }
.header-inner { display: flex; align-items: center; gap: 18px; height: 70px; }
.brand { display: flex; align-items: center; gap: 10px; margin-right: auto; }
.brand img { width: 44px; height: 44px; object-fit: contain; }
.brand-name { font-family: var(--font-head); font-weight: 600; font-size: 1.15rem; color: var(--navy-900); letter-spacing: -.02em; }
.brand-name strong { color: var(--turq-500); font-weight: 800; }
.main-nav { display: none; gap: 26px; }
.main-nav a { font-weight: 600; font-size: .98rem; color: var(--navy-800); position: relative; padding: 4px 0; }
.main-nav a::after { content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px; background: var(--turq-500); transition: width .25s var(--ease); }
.main-nav a:hover::after { width: 100%; }
.header-cta { display: none; }

.nav-toggle { display: inline-flex; flex-direction: column; gap: 5px; background: none; border: 0; padding: 8px; cursor: pointer; }
.nav-toggle span { width: 26px; height: 3px; background: var(--navy-900); border-radius: 3px; transition: .3s var(--ease); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.mobile-menu {
  overflow: hidden; max-height: 0;
  background: var(--white); border-bottom: 0 solid var(--line);
  transition: max-height .35s var(--ease), border-color .35s var(--ease);
}
.mobile-menu.open { max-height: 420px; border-bottom: 1px solid var(--line); }
.mobile-menu a { display: block; padding: 14px 22px; font-weight: 600; color: var(--navy-800); border-bottom: 1px solid var(--line); }
.mobile-menu a:last-child { border-bottom: 0; }

/* ---------------- Hero ---------------- */
.hero { position: relative; min-height: 92vh; min-height: 92dvh; display: flex; align-items: center; color: #fff; overflow: hidden; }
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; }
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(6,19,32,.55) 0%, rgba(6,19,32,.25) 35%, rgba(6,19,32,.75) 100%),
    linear-gradient(90deg, rgba(6,19,32,.7) 0%, rgba(6,19,32,.15) 60%);
}
.hero-content { position: relative; z-index: 2; padding: 120px 22px 110px; max-width: 820px; }
.eyebrow {
  display: inline-block; font-family: var(--font-head); font-weight: 700; font-size: .8rem;
  letter-spacing: .14em; text-transform: uppercase; color: var(--turq-300);
  background: rgba(20,200,192,.14); border: 1px solid rgba(47,222,212,.4);
  padding: 7px 14px; border-radius: 100px; margin-bottom: 22px;
}
.eyebrow-dark { color: var(--turq-500); background: var(--foam); border-color: rgba(20,200,192,.25); }
.hero h1 { margin-bottom: 22px; text-shadow: 0 2px 30px rgba(0,0,0,.3); }
.hero h1 .accent { color: var(--turq-300); }
.hero-sub { font-size: clamp(1.05rem, 2.2vw, 1.3rem); max-width: 620px; color: rgba(255,255,255,.92); margin-bottom: 32px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 30px; }
.hero-trust { list-style: none; display: flex; flex-wrap: wrap; gap: 12px 24px; padding: 0; margin: 0; font-weight: 600; font-size: .98rem; }
.hero-trust li { display: flex; align-items: center; gap: 8px; }
.hero-trust svg { width: 20px; height: 20px; stroke: var(--turq-300); stroke-width: 3; fill: none; }

.scroll-hint { position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%); z-index: 3; width: 26px; height: 42px; border: 2px solid rgba(255,255,255,.6); border-radius: 100px; }
.scroll-hint span { position: absolute; top: 8px; left: 50%; width: 4px; height: 8px; background: #fff; border-radius: 4px; transform: translateX(-50%); animation: scrolldot 1.6s infinite; }
@keyframes scrolldot { 0%{opacity:0;transform:translate(-50%,0)} 40%{opacity:1} 80%{opacity:0;transform:translate(-50%,14px)} 100%{opacity:0} }

/* ---------------- Trust bar ---------------- */
.trustbar { background: var(--navy-900); color: #fff; }
.trustbar-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; padding: 30px 22px; }
.trust-item { display: flex; align-items: center; gap: 12px; }
.trust-item svg { width: 30px; height: 30px; stroke: var(--turq-400); stroke-width: 1.8; fill: none; flex: 0 0 auto; }
.trust-item strong { display: block; font-family: var(--font-head); font-size: 1rem; }
.trust-item span { font-size: .85rem; color: rgba(255,255,255,.65); }

/* ---------------- Sections ---------------- */
.section { padding: 72px 0; }
.section-muted { background: var(--bg-muted); }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 48px; }
.section-head h2 { margin-bottom: 14px; color: var(--navy-900); }
.section-lead { color: var(--slate-600); font-size: 1.12rem; }

/* ---------------- Plans ---------------- */
.plans { display: grid; grid-template-columns: 1fr; gap: 22px; }
.plan {
  position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 30px 26px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.plan:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: rgba(20,200,192,.4); }
.plan-featured { border-color: var(--turq-500); box-shadow: 0 20px 50px rgba(20,200,192,.22); }
.plan-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(90deg, var(--turq-500), var(--sky-300)); color: var(--navy-950);
  font-family: var(--font-head); font-weight: 800; font-size: .78rem; letter-spacing: .04em;
  padding: 7px 18px; border-radius: 100px; box-shadow: var(--shadow-sm); white-space: nowrap;
}
.plan-top h3 { color: var(--navy-900); font-size: 1.45rem; }
.plan-tag { color: var(--slate-400); font-size: .92rem; margin: 4px 0 0; }
.plan-price { display: flex; align-items: baseline; gap: 8px; margin: 18px 0; }
.plan-price .price { font-family: var(--font-head); font-size: 2.8rem; font-weight: 800; color: var(--navy-900); font-variant-numeric: tabular-nums; }
.plan-price .per { color: var(--slate-400); font-weight: 600; }
.plan-desc { color: var(--slate-600); font-size: .98rem; }
.plan-feats { list-style: none; padding: 0; margin: 6px 0 24px; display: grid; gap: 10px; }
.plan-feats li { position: relative; padding-left: 28px; font-size: .96rem; color: var(--navy-800); }
.plan-feats li::before {
  content: ""; position: absolute; left: 0; top: 3px; width: 18px; height: 18px; border-radius: 50%;
  background: var(--foam) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2314c8c0' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center/12px no-repeat;
}
.plan .btn { margin-top: auto; }

/* offers */
.offers { display: grid; grid-template-columns: 1fr; gap: 18px; margin-top: 30px; }
.offer-card { display: flex; gap: 16px; align-items: flex-start; padding: 22px 24px; border-radius: var(--radius); }
.offer-weekend { background: linear-gradient(120deg, var(--navy-900), var(--navy-700)); color: #fff; }
.offer-group { background: var(--foam); color: var(--navy-900); border: 1px solid rgba(20,200,192,.3); }
.offer-icon { flex: 0 0 auto; width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; }
.offer-weekend .offer-icon { background: rgba(20,200,192,.2); }
.offer-group .offer-icon { background: #fff; }
.offer-icon svg { width: 26px; height: 26px; fill: none; stroke: var(--turq-400); stroke-width: 1.8; }
.offer-group .offer-icon svg { stroke: var(--turq-500); }
.offer-card h4 { font-family: var(--font-head); font-size: 1.1rem; margin: 0 0 6px; }
.offer-card p { margin: 0; font-size: .95rem; opacity: .95; }
.offer-card b { font-variant-numeric: tabular-nums; }
.offer-weekend .off { background: var(--turq-500); color: var(--navy-950); padding: 2px 9px; border-radius: 7px; font-weight: 800; font-size: .85rem; }

/* ---------------- Tabarca ---------------- */
.section-tabarca { background: linear-gradient(160deg, #fff 0%, var(--bg-muted) 100%); padding: 80px 0; }
.tabarca-grid { display: grid; grid-template-columns: 1fr; gap: 36px; align-items: center; }
.tabarca-text h2 { color: var(--navy-900); margin: 12px 0 18px; }
.tabarca-text p { color: var(--slate-600); }
.check-list { list-style: none; padding: 0; margin: 22px 0; display: grid; gap: 12px; }
.check-list li { display: flex; align-items: center; gap: 12px; font-weight: 600; color: var(--navy-800); }
.check-list svg { width: 22px; height: 22px; stroke: var(--turq-500); stroke-width: 3; fill: none; flex: 0 0 auto; }
.tabarca-cta { display: flex; flex-wrap: wrap; align-items: center; gap: 22px; margin-top: 28px; }
.tabarca-price { display: flex; flex-direction: column; line-height: 1.05; }
.tabarca-price .from { font-size: .8rem; color: var(--slate-400); text-transform: uppercase; letter-spacing: .1em; }
.tabarca-price .price { font-family: var(--font-head); font-size: 2.4rem; font-weight: 800; color: var(--navy-900); }
.tabarca-price .per { font-size: .82rem; color: var(--turq-500); font-weight: 700; }
.tabarca-media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); width: 100%; }

/* ---------------- Dark / features ---------------- */
.section-dark { background: var(--navy-900); color: #fff; }
.section-dark .section-head h2 { color: #fff; }
.section-dark .section-lead { color: rgba(255,255,255,.75); }
.section-dark .eyebrow { color: var(--turq-300); background: rgba(20,200,192,.14); border-color: rgba(47,222,212,.4); }
.features { display: grid; grid-template-columns: 1fr; gap: 18px; }
.feature { background: var(--navy-800); border: 1px solid rgba(255,255,255,.07); border-radius: var(--radius); padding: 28px 24px; transition: transform .25s var(--ease), background .25s; }
.feature:hover { transform: translateY(-5px); background: var(--navy-700); }
.feat-ico { width: 52px; height: 52px; border-radius: 14px; background: rgba(20,200,192,.15); display: grid; place-items: center; margin-bottom: 16px; }
.feat-ico svg { width: 28px; height: 28px; fill: none; stroke: var(--turq-400); stroke-width: 1.8; }
.feature h3 { color: #fff; margin-bottom: 8px; font-size: 1.18rem; }
.feature p { color: rgba(255,255,255,.72); font-size: .96rem; margin: 0; }

/* ---------------- Steps ---------------- */
.steps { display: grid; grid-template-columns: 1fr; gap: 22px; counter-reset: step; }
.step { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 24px; position: relative; box-shadow: var(--shadow-sm); }
.step-num {
  display: grid; place-items: center; width: 46px; height: 46px; border-radius: 50%;
  background: linear-gradient(135deg, var(--turq-500), var(--sky-300)); color: var(--navy-950);
  font-family: var(--font-head); font-weight: 800; font-size: 1.3rem; margin-bottom: 16px;
}
.step h3 { color: var(--navy-900); margin-bottom: 8px; }
.step p { color: var(--slate-600); margin: 0; font-size: .96rem; }

/* ---------------- Gallery ---------------- */
.gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; padding: 0 14px; max-width: 1320px; margin: 0 auto; }
.gallery figure { margin: 0; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); aspect-ratio: 3/4; }
.gallery figure:hover img { transform: scale(1.06); }

/* ---------------- About ---------------- */
.section-about { background: var(--bg-muted); }
.about-grid { display: grid; grid-template-columns: 1fr; gap: 32px; align-items: center; }
.about-media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); width: 100%; }
.about-text h2 { color: var(--navy-900); margin: 12px 0 16px; }
.about-text p { color: var(--slate-600); }

/* ---------------- Location ---------------- */
.location-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
.location-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 30px 28px; box-shadow: var(--shadow-sm); }
.location-card h3 { color: var(--navy-900); margin-bottom: 18px; }
.loc-list { list-style: none; padding: 0; margin: 0 0 24px; display: grid; gap: 14px; }
.loc-list li { display: flex; align-items: flex-start; gap: 12px; color: var(--navy-800); font-weight: 500; }
.loc-list svg { width: 22px; height: 22px; stroke: var(--turq-500); stroke-width: 1.8; fill: none; flex: 0 0 auto; margin-top: 2px; }
.location-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.location-map { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); min-height: 320px; }
.location-map iframe { width: 100%; height: 100%; min-height: 320px; display: block; }

/* ---------------- FAQ ---------------- */
.faq { display: grid; gap: 12px; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; transition: box-shadow .2s, border-color .2s; }
.faq-item[open] { box-shadow: var(--shadow-sm); border-color: rgba(20,200,192,.4); }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 18px 52px 18px 22px; position: relative;
  font-family: var(--font-head); font-weight: 600; font-size: 1.05rem; color: var(--navy-900);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; position: absolute; right: 20px; top: 50%; transform: translateY(-50%);
  font-size: 1.5rem; color: var(--turq-500); font-weight: 400; transition: transform .25s var(--ease);
}
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-body { padding: 0 22px 20px; }
.faq-body p { color: var(--slate-600); margin: 0; }
.faq-cta { text-align: center; margin-top: 36px; }
.faq-cta p { font-family: var(--font-head); font-weight: 600; color: var(--navy-900); margin-bottom: 14px; }

/* ---------------- Final CTA ---------------- */
.final-cta { position: relative; padding: 90px 0; color: #fff; text-align: center; overflow: hidden; }
.final-cta-bg { position: absolute; inset: 0; z-index: 0; }
.final-cta-bg img { width: 100%; height: 100%; object-fit: cover; }
.final-cta::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(6,19,32,.78), rgba(6,19,32,.86)); z-index: 1; }
.final-cta-content { position: relative; z-index: 2; max-width: 680px; }
.final-cta h2 { color: #fff; margin-bottom: 14px; }
.final-cta p { color: rgba(255,255,255,.88); font-size: 1.12rem; margin-bottom: 28px; }
.final-cta-note { display: block; margin-top: 16px; font-size: .9rem; color: rgba(255,255,255,.7); }

/* ---------------- Footer ---------------- */
.site-footer { background: var(--navy-950); color: rgba(255,255,255,.7); padding-top: 56px; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 32px; padding-bottom: 36px; }
.footer-brand img { width: 56px; height: 56px; object-fit: contain; margin-bottom: 12px; }
.footer-brand p { font-size: .95rem; max-width: 340px; }
.footer-col h4 { color: #fff; font-size: 1rem; margin-bottom: 14px; }
.footer-col a, .footer-col p { display: block; color: rgba(255,255,255,.7); font-size: .94rem; margin-bottom: 8px; }
.footer-col a:hover { color: var(--turq-300); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 20px 22px; display: flex; flex-direction: column; gap: 8px; font-size: .85rem; }
.footer-bottom p { margin: 0; }
.footer-legal a:hover { color: var(--turq-300); }

/* ---------------- Mobile sticky CTA ---------------- */
/* Sticky CTA móvil desactivado: el chat widget de WhatsApp ya cubre esta acción */
.mobile-cta { display: none !important; }

/* ---------------- Chat widget ---------------- */
.chat-widget { position: fixed; right: 18px; bottom: 18px; z-index: 95; }
.chat-launcher {
  position: relative; width: 64px; height: 64px; border-radius: 50%; border: 0; cursor: pointer;
  background: var(--wa); box-shadow: 0 10px 30px rgba(37,211,102,.5); display: grid; place-items: center;
  transition: transform .25s var(--ease);
}
.chat-launcher:hover { transform: scale(1.07); }
.chat-launcher .chat-ico-wa { width: 32px; height: 32px; fill: #fff; }
.chat-pulse { position: absolute; inset: 0; border-radius: 50%; background: var(--wa); z-index: -1; animation: pulse 2.2s infinite; }
@keyframes pulse { 0%{transform:scale(1);opacity:.6} 70%{transform:scale(1.7);opacity:0} 100%{opacity:0} }
.chat-online-badge { position: absolute; top: 4px; right: 4px; width: 14px; height: 14px; border-radius: 50%; background: #38e06a; border: 2px solid #fff; }

.chat-panel {
  position: absolute; bottom: 80px; right: 0; width: min(340px, calc(100vw - 36px));
  background: #fff; border-radius: 20px; box-shadow: var(--shadow-lg); overflow: hidden;
  opacity: 0; transform: translateY(16px) scale(.96); pointer-events: none;
  transition: opacity .28s var(--ease), transform .28s var(--ease);
  transform-origin: bottom right;
}
.chat-widget.open .chat-panel { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.chat-header { display: flex; align-items: center; gap: 12px; padding: 16px; background: var(--navy-900); color: #fff; }
.chat-header img { width: 40px; height: 40px; border-radius: 50%; object-fit: contain; background: #fff; padding: 3px; }
.chat-id strong { display: block; font-family: var(--font-head); font-size: 1rem; }
.chat-status { font-size: .76rem; color: rgba(255,255,255,.8); display: flex; align-items: center; gap: 6px; }
.chat-status .dot { width: 9px; height: 9px; border-radius: 50%; background: #38e06a; box-shadow: 0 0 0 0 rgba(56,224,106,.7); animation: blink 1.8s infinite; }
@keyframes blink { 0%{box-shadow:0 0 0 0 rgba(56,224,106,.6)} 70%{box-shadow:0 0 0 7px rgba(56,224,106,0)} 100%{box-shadow:0 0 0 0 rgba(56,224,106,0)} }
.chat-close { margin-left: auto; background: none; border: 0; color: #fff; font-size: 1.7rem; line-height: 1; cursor: pointer; opacity: .8; }
.chat-close:hover { opacity: 1; }
.chat-body { padding: 18px 16px; background: #eef3f5; }
.chat-bubble { background: #fff; border-radius: 4px 16px 16px 16px; padding: 14px 16px; font-size: .92rem; color: var(--navy-900); box-shadow: var(--shadow-sm); margin-bottom: 14px; }
.chat-quick { display: grid; gap: 8px; }
.chat-quick button { text-align: left; background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 11px 14px; font-family: var(--font-body); font-weight: 600; font-size: .9rem; color: var(--navy-800); cursor: pointer; transition: .2s; }
.chat-quick button:hover { border-color: var(--turq-500); background: var(--foam); }
.chat-go { display: flex; align-items: center; justify-content: center; gap: 10px; padding: 15px; font-family: var(--font-head); font-weight: 700; color: #fff; }
.chat-go .ico { width: 20px; height: 20px; fill: #fff; }

/* ---------------- Reveal animation ---------------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .chat-pulse, .scroll-hint span, .chat-status .dot { animation: none; }
}

/* ============================================================
   Responsive
   ============================================================ */
@media (min-width: 600px) {
  .plans { grid-template-columns: repeat(3, 1fr); align-items: stretch; }
  .offers { grid-template-columns: 1fr 1fr; }
  .features { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(3, 1fr); }
  .gallery { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 2fr 1fr 1.4fr; }
  .footer-bottom { flex-direction: row; justify-content: space-between; align-items: center; }
}

@media (min-width: 768px) {
  body { font-size: 18px; }
  .btn-xl { padding: 20px 40px; font-size: 1.2rem; white-space: nowrap; }
  .section { padding: 90px 0; }
  .trustbar-grid { grid-template-columns: repeat(4, 1fr); padding: 34px 22px; }
  .tabarca-grid { grid-template-columns: 1.05fr 1fr; gap: 50px; }
  .about-grid { grid-template-columns: 1fr 1.1fr; gap: 50px; }
  .location-grid { grid-template-columns: 1fr 1.1fr; }
  .features { grid-template-columns: repeat(4, 1fr); }
  .mobile-cta { display: none; }
}

@media (min-width: 980px) {
  .main-nav { display: flex; }
  .header-cta { display: inline-flex; }
  .nav-toggle, .mobile-menu { display: none; }
  .gallery { grid-template-columns: repeat(6, 1fr); }
  .gallery figure:nth-child(1), .gallery figure:nth-child(4) { grid-column: span 2; grid-row: span 2; }
  .gallery img { aspect-ratio: auto; }
}

@media (min-width: 1180px) {
  .hero-content { padding-left: 0; padding-right: 0; }
}
