/* ═══════════════════════════════════════════════
   Hostly — Main Stylesheet
   Fonts: Plus Jakarta Sans (headings) + Nunito Sans (body)
   ═══════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Nunito+Sans:wght@300;400;500;600;700&display=swap');

/* ── CSS VARIABLES ──────────────────────────────── */
:root {
  --white:       #ffffff;
  --off:         #f8fafc;
  --light:       #f1f5f9;
  --border:      #e2e8f0;
  --muted:       #64748b;
  --text:        #1e293b;
  --heading:     #0f172a;
  --accent:      #1e40af;
  --accent-h:    #1d4ed8;
  --accent-bg:   #eff6ff;
  --accent-lite: #93c5fd;
  --gold:        #3b82f6;
  --gold-bg:     #eff6ff;
  --green:       #16a34a;
  --green-bg:    #dcfce7;
  --red:         #dc2626;
  --red-bg:      #fee2e2;
  --amber:       #d97706;
  --amber-bg:    #fef3c7;

  --shadow-s:  0 2px 12px rgba(0,0,0,0.06);
  --shadow-m:  0 8px 32px rgba(0,0,0,0.10);
  --shadow-l:  0 20px 60px rgba(0,0,0,0.13);

  --radius:    6px;
  --radius-lg: 10px;
  --max:       1200px;

  --font-display: 'Plus Jakarta Sans', sans-serif;
  --font-body:    'Nunito Sans', sans-serif;
}

/* ── RESET ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: var(--font-body); font-weight: 400; color: var(--text); background: var(--white); overflow-x: hidden; line-height: 1.6; }
img   { display: block; max-width: 100%; }
a     { text-decoration: none; color: inherit; }
ul    { list-style: none; }
input, select, textarea, button { font-family: inherit; }

/* ── CONTAINER ──────────────────────────────────── */
.container { max-width: var(--max); margin: 0 auto; padding: 0 20px; }
@media (min-width: 768px)  { .container { padding: 0 48px; } }
@media (min-width: 1200px) { .container { padding: 0 60px; } }

/* ── TYPOGRAPHY ─────────────────────────────────── */
.eyebrow { display: inline-block; font-family: var(--font-display); font-size: 0.68rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-display); }
.section-title { font-size: clamp(1.7rem, 4vw, 2.7rem); font-weight: 800; color: var(--heading); line-height: 1.15; }
.section-title em { font-style: italic; font-weight: 700; color: var(--accent); }
.section-sub { font-size: 0.97rem; color: var(--muted); line-height: 1.78; max-width: 500px; margin-top: 10px; }

/* ── BUTTONS ────────────────────────────────────── */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 13px 26px; font-family: var(--font-display); font-size: 0.82rem; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase; border-radius: var(--radius); border: none; cursor: pointer; white-space: nowrap; transition: all 0.22s; text-decoration: none; -webkit-tap-highlight-color: transparent; }
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-h); transform: translateY(-1px); box-shadow: var(--shadow-m); }
.btn-outline { background: transparent; color: var(--accent); border: 2px solid var(--accent); }
.btn-outline:hover { background: var(--accent); color: #fff; }
.btn-white { background: #fff; color: var(--heading); box-shadow: var(--shadow-s); }
.btn-white:hover { background: var(--off); }
.btn-wa { background: #25D366; color: #fff; }
.btn-wa:hover { background: #1db954; transform: translateY(-1px); }
.btn-ghost { background: rgba(255,255,255,0.1); color: #fff; border: 1px solid rgba(255,255,255,0.25); backdrop-filter: blur(4px); }
.btn-ghost:hover { background: rgba(255,255,255,0.2); }
.btn-danger { background: var(--red); color: #fff; }
.btn-danger:hover { background: #b91c1c; }
.btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none !important; }

/* ── FORM ELEMENTS ──────────────────────────────── */
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); margin-bottom: 6px; }
.form-input, .form-select, .form-textarea { width: 100%; border: 1px solid var(--border); border-radius: var(--radius); padding: 12px 16px; font-size: 0.9rem; color: var(--heading); background: var(--white); transition: border-color 0.2s, box-shadow 0.2s; outline: none; -webkit-appearance: none; appearance: none; }
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-bg); }
.form-input.error, .form-select.error { border-color: var(--red); }
.form-error { font-size: 0.75rem; color: var(--red); margin-top: 4px; display: none; }
.form-error.show { display: block; }

/* ── ALERTS ─────────────────────────────────────── */
.alert { padding: 14px 18px; border-radius: var(--radius); font-size: 0.88rem; margin-bottom: 16px; display: none; line-height: 1.5; }
.alert.show { display: block; }
.alert-success { background: var(--green-bg); color: var(--green);  border: 1px solid #bbf7d0; }
.alert-error   { background: var(--red-bg);   color: var(--red);    border: 1px solid #fecaca; }
.alert-warning { background: var(--amber-bg); color: var(--amber);  border: 1px solid #fde68a; }
.alert-info    { background: var(--accent-bg); color: var(--accent); border: 1px solid var(--accent-lite); }

/* ── CARDS ──────────────────────────────────────── */
.card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); box-shadow: var(--shadow-s); }

/* ── BADGES ─────────────────────────────────────── */
.badge { display: inline-flex; align-items: center; padding: 3px 10px; border-radius: 100px; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
.badge-pending   { background: var(--amber-bg); color: var(--amber); }
.badge-confirmed { background: var(--green-bg); color: var(--green); }
.badge-cancelled { background: var(--red-bg);   color: var(--red);   }
.badge-completed { background: var(--accent-bg); color: var(--accent); }
.badge-active    { background: var(--green-bg); color: var(--green); }
.badge-inactive  { background: var(--off);      color: var(--muted); }

/* ── SCROLL REVEAL ──────────────────────────────── */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ── LOADING SPINNER ────────────────────────────── */
.spinner { width: 20px; height: 20px; border: 2px solid rgba(255,255,255,0.3); border-top: 2px solid #fff; border-radius: 50%; animation: spin 0.7s linear infinite; display: inline-block; }
.spinner-dark { border-color: rgba(15,42,94,0.2); border-top-color: var(--accent); }
@keyframes spin { to { transform: rotate(360deg); } }

/* ── PAGINATION ─────────────────────────────────── */
.pagination { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 48px; }
.page-btn { width: 36px; height: 36px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--white); cursor: pointer; font-size: 0.84rem; font-weight: 600; color: var(--text); transition: all 0.2s; display: flex; align-items: center; justify-content: center; }
.page-btn:hover { border-color: var(--accent); color: var(--accent); }
.page-btn.active { background: var(--accent); color: #fff; border-color: var(--accent); }
.page-btn:disabled { opacity: 0.4; cursor: not-allowed; }

/* ── STRIP ──────────────────────────────────────── */
.strip { background: var(--accent); color: #fff; text-align: center; padding: 9px 20px; font-family: var(--font-display); font-size: 0.74rem; font-weight: 600; letter-spacing: 0.05em; }
.strip a { color: var(--accent-lite); text-decoration: underline; }

/* ── NAV ────────────────────────────────────────── */
.nav { position: sticky; top: 0; z-index: 200; background: rgba(255,255,255,0.97); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border-bottom: 1px solid var(--border); transition: box-shadow 0.3s; }
.nav.raised { box-shadow: var(--shadow-s); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 62px; gap: 16px; }
@media (min-width: 768px) { .nav-inner { height: 70px; } }
.logo { font-family: var(--font-display); font-size: 1.35rem; font-weight: 800; color: var(--heading); letter-spacing: 0.01em; flex-shrink: 0; line-height: 1; }
.logo span  { color: var(--accent); }
.logo small { display: block; font-size: 0.55rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); margin-top: 2px; }
.nav-links { display: none; gap: 28px; }
@media (min-width: 900px) {
  .nav-links { display: flex; }
  .nav-links a { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text); transition: color 0.2s; }
  .nav-links a:hover { color: var(--accent); }
}
.nav-right { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav-book { display: none; }
@media (min-width: 900px) { .nav-book { display: inline-flex; padding: 10px 20px; font-size: 0.74rem; } }
.hamburger { display: flex; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; background: none; border: none; -webkit-tap-highlight-color: transparent; }
@media (min-width: 900px) { .hamburger { display: none; } }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--heading); border-radius: 2px; transition: all 0.3s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE MENU ────────────────────────────────── */
.mob-menu { position: fixed; top: calc(62px); left: 0; right: 0; bottom: 0; background: #fff; z-index: 190; display: flex; flex-direction: column; overflow-y: auto; transform: translateX(100%); visibility: hidden; transition: transform 0.32s cubic-bezier(0.4,0,0.2,1), visibility 0.32s; pointer-events: none; }
@media (min-width: 768px) { .mob-menu { top: 70px; } }
.mob-menu.open { transform: translateX(0); pointer-events: all; visibility: visible; }
@media (min-width: 900px) { .mob-menu { display: none !important; } }
.mob-nav-links { display: flex; flex-direction: column; }
.mob-nav-links a { display: flex; align-items: center; justify-content: space-between; font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; color: var(--heading); padding: 16px 24px; border-bottom: 1px solid var(--border); transition: color 0.2s, background 0.2s; }
.mob-nav-links a:hover { color: var(--accent); background: var(--off); }
.mob-cta { padding: 20px 24px 32px; display: flex; flex-direction: column; gap: 10px; border-top: 1px solid var(--border); margin-top: auto; background: var(--off); }
.mob-cta .btn { width: 100%; justify-content: center; padding: 14px; }

/* ── FOOTER ─────────────────────────────────────── */
footer { background: var(--heading); color: rgba(255,255,255,0.55); }
.foot-main { padding: 56px 0 44px; display: grid; grid-template-columns: 1fr; gap: 36px; border-bottom: 1px solid rgba(255,255,255,0.08); }
@media (min-width: 580px)  { .foot-main { grid-template-columns: repeat(2,1fr); gap: 36px 48px; } }
@media (min-width: 1024px) { .foot-main { grid-template-columns: 1.8fr 1fr 1fr 1fr; } }
.foot-brand .logo  { color: #fff; display: block; margin-bottom: 12px; }
.foot-brand p      { font-size: 0.84rem; line-height: 1.72; max-width: 240px; }
.foot-social { display: flex; gap: 8px; margin-top: 18px; }
.soc { width: 32px; height: 32px; border: 1px solid rgba(255,255,255,0.13); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; font-size: 0.66rem; font-weight: 700; text-transform: uppercase; color: rgba(255,255,255,0.4); transition: border-color 0.2s, color 0.2s; }
.soc:hover { border-color: var(--accent-lite); color: var(--accent-lite); }
.foot-col h4 { font-family: var(--font-display); font-size: 0.67rem; font-weight: 800; letter-spacing: 0.2em; text-transform: uppercase; color: #fff; margin-bottom: 16px; }
.foot-col ul  { display: flex; flex-direction: column; gap: 9px; }
.foot-col a   { font-size: 0.84rem; transition: color 0.2s; }
.foot-col a:hover { color: #fff; }
.foot-bottom { padding: 18px 0; display: flex; flex-direction: column; gap: 6px; font-size: 0.74rem; text-align: center; }
@media (min-width: 580px) { .foot-bottom { flex-direction: row; justify-content: space-between; text-align: left; } }
.foot-bottom a:hover { color: #fff; }
.foot-bottom span    { color: var(--accent-lite); }

/* ── FLOAT WHATSAPP ─────────────────────────────── */
.float-wa { position: fixed; bottom: 20px; right: 20px; z-index: 300; width: 54px; height: 54px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 22px rgba(37,211,102,0.45); transition: transform 0.28s, box-shadow 0.28s; }
.float-wa:hover { transform: scale(1.08); box-shadow: 0 8px 30px rgba(37,211,102,0.55); }
.float-wa svg { width: 28px; height: 28px; fill: #fff; }
@media (min-width: 768px) { .float-wa { width: 58px; height: 58px; bottom: 28px; right: 28px; } }

/* ── KEYFRAMES ──────────────────────────────────── */
@keyframes fadeUp   { from { opacity:0; transform: translateY(22px); } to { opacity:1; transform: none; } }
@keyframes blink    { 0%,100% { opacity:1; } 50% { opacity:0.3; } }

/* ── UTILITY ────────────────────────────────────── */
.text-center  { text-align: center; }
.text-muted   { color: var(--muted); }
.text-accent  { color: var(--accent); }
.text-success { color: var(--green); }
.text-danger  { color: var(--red); }
.mt-1 { margin-top: 8px; }   .mt-2 { margin-top: 16px; }  .mt-3 { margin-top: 24px; }  .mt-4 { margin-top: 32px; }
.mb-1 { margin-bottom: 8px; } .mb-2 { margin-bottom: 16px; } .mb-3 { margin-bottom: 24px; } .mb-4 { margin-bottom: 32px; }
.hidden { display: none !important; }
.w-full { width: 100%; }