/* =========================================
   PAIVA SERVICES — copia do layout viniciusdetalhes.pt
   ========================================= */

:root {
  /* Background : noir un peu bleuté comme le Vinicius mais plus sombre */
  --bg:        #0a0d12;
  --bg-card:   #131820;
  --bg-card-2: #1a2029;
  --border:    rgba(212, 175, 55, 0.12);
  --border-2:  rgba(255, 255, 255, 0.06);

  --fg:        #f5f5f5;
  --fg-2:      #b8bdc7;
  --muted:     #6f7886;

  /* Or signature Paiva (à la place du rouge Vinicius) */
  --accent:        #d4af37;
  --accent-bright: #f0c75a;
  --accent-dark:   #a8861f;
  --accent-glow:   rgba(212, 175, 55, 0.4);

  --grad-accent: linear-gradient(135deg, #a8861f 0%, #d4af37 50%, #f0c75a 100%);
  --grad-card:   linear-gradient(135deg, #131820 0%, #0d1117 100%);

  --shadow-card: 0 4px 20px -4px rgba(0,0,0,0.5);
  --shadow-hover: 0 20px 50px -12px rgba(212, 175, 55, 0.2);

  --radius: 16px;
  --radius-sm: 10px;
  --ease: cubic-bezier(.4, 0, .2, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--fg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.hidden { display: none !important; }

h1, h2, h3, h4 { line-height: 1.15; letter-spacing: -0.01em; }
.accent { color: var(--accent); }
.muted { color: var(--muted); font-size: 14px; }

/* ====== NAV ====== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  background: transparent;
  transition: all .3s var(--ease);
}
.nav.scrolled {
  background: rgba(10, 13, 18, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.nav-logo img { height: 44px; transition: height .3s var(--ease); }
.nav.scrolled .nav-logo img { height: 36px; }
.nav-fallback {
  font-size: 22px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: 4px;
  font-family: 'Inter', sans-serif;
}
.nav-links { display: flex; gap: 28px; list-style: none; margin-left: auto; }
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--fg-2);
  transition: color .2s var(--ease);
}
.nav-links a:hover { color: var(--accent); }
.nav-burger {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav-burger span { width: 24px; height: 2px; background: var(--accent); transition: all .3s; }

/* ====== LANGUAGE SWITCHER ====== */
.lang-switcher {
  position: relative;
  margin-left: 8px;
}
.lang-current {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-2);
  border-radius: 50px;
  color: var(--fg);
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s var(--ease);
}
.lang-current:hover { background: rgba(255, 255, 255, 0.10); border-color: var(--accent); }
.lang-current svg { opacity: 0.6; transition: transform .2s var(--ease); }
.lang-switcher.open .lang-current svg { transform: rotate(180deg); }

.lang-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 170px;
  background: rgba(18, 22, 30, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 6px;
  display: none;
  flex-direction: column;
  gap: 2px;
  box-shadow: 0 12px 32px -8px rgba(0,0,0,0.6);
  z-index: 200;
}
.lang-switcher.open .lang-menu { display: flex; }

.lang-menu button {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: transparent;
  border: none;
  color: var(--fg);
  font-family: inherit;
  font-size: 14px;
  cursor: pointer;
  border-radius: 8px;
  text-align: left;
  transition: all .15s var(--ease);
}
.lang-menu button:hover { background: rgba(255, 255, 255, 0.06); color: var(--accent); }
.lang-menu button.active {
  background: rgba(212, 175, 55, 0.12);
  color: var(--accent);
  font-weight: 600;
}
.lang-menu button span { font-size: 18px; }

/* ====== BUTTONS ====== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 12px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.3px;
  cursor: pointer;
  border: none;
  transition: all .25s var(--ease);
  text-align: center;
}
.btn-lg { padding: 16px 36px; font-size: 15px; }
.btn-sm { padding: 10px 20px; font-size: 13px; }

.btn-primary {
  background: var(--grad-accent);
  color: #0a0d12;
  box-shadow: 0 6px 16px -4px rgba(212, 175, 55, 0.4);
}
.btn-primary:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -4px rgba(212, 175, 55, 0.5);
}
.btn-primary:disabled { opacity: 0.4; cursor: not-allowed; transform: none !important; }

.btn-dark {
  background: rgba(255, 255, 255, 0.04);
  color: var(--fg);
  border: 1px solid var(--border-2);
  backdrop-filter: blur(10px);
}
.btn-dark:hover { background: rgba(255, 255, 255, 0.08); border-color: rgba(255, 255, 255, 0.15); }

/* ====== HERO ====== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 0 60px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    url('images/hero-bg.jpg') center/cover no-repeat,
    linear-gradient(135deg, #1a2029, #0a0d12);
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(10, 13, 18, 0.85) 0%,
    rgba(10, 13, 18, 0.75) 50%,
    rgba(10, 13, 18, 0.95) 100%);
  z-index: 1;
}
.hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 720px;
}
.hero-logo-wrap {
  margin-bottom: 32px;
  animation: fadeUp .8s var(--ease) both;
}
.hero-logo {
  max-width: 420px;
  width: 100%;
  height: auto;
  margin: 0 auto;
  filter: drop-shadow(0 8px 24px rgba(212, 175, 55, 0.25));
}
.hero-logo-fallback {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.hero-logo-fallback span {
  font-size: clamp(48px, 8vw, 84px);
  font-weight: 800;
  color: var(--accent);
  letter-spacing: 8px;
  line-height: 1;
  filter: drop-shadow(0 4px 16px rgba(212, 175, 55, 0.4));
}
.hero-logo-fallback em {
  font-style: normal;
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 300;
  color: var(--fg);
  letter-spacing: 12px;
}
.hero-logo-fallback small {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-top: 8px;
}
.hero-lead {
  font-size: clamp(15px, 1.6vw, 17px);
  color: var(--fg-2);
  line-height: 1.7;
  margin-bottom: 36px;
  animation: fadeUp .9s .1s var(--ease) both;
}
.hero-cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
  animation: fadeUp 1s .2s var(--ease) both;
}
.social-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-2);
  border-radius: 50px;
  font-size: 13px;
  color: var(--fg);
  font-weight: 500;
  backdrop-filter: blur(10px);
  animation: fadeUp 1.1s .3s var(--ease) both;
  transition: all .2s var(--ease);
}
.social-pill:hover { background: rgba(255, 255, 255, 0.10); border-color: var(--accent); color: var(--accent); }
.social-pill svg { color: var(--accent); }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ====== SECTIONS ====== */
.section { padding: 100px 0; position: relative; }
.section-stats {
  background: linear-gradient(180deg, transparent, rgba(212, 175, 55, 0.025) 50%, transparent);
}
.section-booking { background: rgba(255, 255, 255, 0.015); }
.section-head { text-align: center; margin-bottom: 56px; }
.section-head h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 12px;
}
.section-head p {
  font-size: 15px;
  color: var(--fg-2);
  max-width: 560px;
  margin: 0 auto;
}

/* ====== SERVICES ====== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-bottom: 32px;
}
.service-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 4px 16px -4px rgba(0,0,0,0.5);
  transition: transform .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
}
.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent);
  box-shadow: 0 24px 50px -14px rgba(212, 175, 55, 0.28);
}
/* Foto INTEIRA visivel — proporcao 3:4, cover puxando carro pra parte inferior */
.service-card-img {
  position: relative;
  aspect-ratio: 3 / 4;
  width: 100%;
  overflow: hidden;
  background: #000;
}
.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  display: block;
  transition: transform .6s var(--ease);
}
.service-card:hover .service-card-img img { transform: scale(1.04); }
.service-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 65%, rgba(10, 13, 18, 0.55) 100%);
  pointer-events: none;
  transition: opacity .3s var(--ease);
}
.service-card:hover .service-card-img::after { opacity: 0.6; }

.service-card-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.service-card h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--accent);
  margin: 0 0 8px;
  letter-spacing: 0.3px;
}
.service-card-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.service-card-meta .meta-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 5px 11px;
  border-radius: 50px;
  text-transform: uppercase;
}
.service-card-meta .meta-chip.price {
  background: var(--grad-accent);
  color: #0a0d12;
  box-shadow: 0 2px 8px -2px rgba(212, 175, 55, 0.5);
}
.service-card-meta .meta-chip.duration {
  background: rgba(255, 255, 255, 0.04);
  color: var(--fg-2);
  border: 1px solid var(--border-2);
}
.service-card-desc {
  color: var(--fg-2);
  font-size: 13.5px;
  line-height: 1.55;
  margin: 0 0 14px;
  min-height: 36px;
}
.service-card-checks {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.service-card-checks li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  color: var(--fg);
  line-height: 1.4;
}
.service-card-checks li::before {
  content: '';
  width: 5px; height: 5px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 8px var(--accent-glow);
}
.service-card-cta {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--border-2);
}
.service-card-cta button {
  width: 100%;
  padding: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-2);
  color: var(--fg);
  border-radius: 10px;
  font-family: inherit;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.3px;
  cursor: pointer;
  transition: all .25s var(--ease);
}
.service-card:hover .service-card-cta button {
  background: var(--accent);
  color: #0a0d12;
  border-color: var(--accent);
}

@media (max-width: 1024px) { .services-grid { grid-template-columns: repeat(2, 1fr); gap: 22px; } }
@media (max-width: 700px)  { .services-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; } }

.services-empty {
  text-align: center;
  color: var(--fg-2);
  font-size: 15px;
  max-width: 560px;
  margin: 0 auto;
  padding: 48px 24px;
  background: var(--bg-card);
  border: 1px dashed var(--border);
  border-radius: var(--radius);
}

/* ====== STATS ====== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}
.stat {
  text-align: center;
  padding: 32px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all .3s var(--ease);
}
.stat:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: var(--shadow-hover);
}
.stat-ico {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.12);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}
.stat-num {
  font-size: clamp(32px, 4vw, 42px);
  font-weight: 800;
  color: var(--fg);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-lbl {
  font-size: 13px;
  color: var(--fg-2);
}

/* ====== GALLERY ====== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 40px;
}
@media (max-width: 760px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .gallery-grid { grid-template-columns: 1fr; } }

.gallery-item {
  aspect-ratio: 4/3;
  background: var(--bg-card);
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  border: 1px solid var(--border-2);
  transition: all .35s var(--ease);
}
.gallery-item:hover {
  transform: translateY(-3px);
  border-color: var(--accent);
  box-shadow: var(--shadow-hover);
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s var(--ease);
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 56px;
  color: var(--accent-dark);
  background: linear-gradient(135deg, var(--bg-card-2), var(--bg-card));
}

.socials {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  color: var(--fg);
  transition: all .25s var(--ease);
}
.social-btn:hover {
  background: var(--accent);
  color: #0a0d12;
  border-color: var(--accent);
}
.social-btn svg { color: var(--accent); transition: color .25s var(--ease); }
.social-btn:hover svg { color: #0a0d12; }

/* ====== BOOKING ====== */
.booking-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 28px;
  align-items: start;
}
@media (max-width: 920px) { .booking-grid { grid-template-columns: 1fr; } }

.booking-main { display: flex; flex-direction: column; gap: 18px; }
.step {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: border-color .3s var(--ease);
}
.step:focus-within { border-color: var(--accent-dark); }
.step-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.step-head h3 { font-size: 17px; font-weight: 600; color: var(--fg); margin: 0; }
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px; height: 30px;
  background: var(--grad-accent);
  color: #0a0d12;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 800;
  flex-shrink: 0;
}
.optional { font-size: 11px; color: var(--muted); font-weight: 400; }

.input {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-sm);
  color: var(--fg);
  font-family: inherit;
  font-size: 16px;  /* 16px evita zoom iOS Safari ao tocar */
  margin-bottom: 10px;
  transition: all .2s var(--ease);
}
.input:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.08);
}
.input::placeholder { color: var(--muted); }
textarea.input { resize: vertical; }
select.input { cursor: pointer; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
@media (max-width: 580px) { .grid-2 { grid-template-columns: 1fr; } }

.switch-row { display: flex; align-items: center; gap: 12px; cursor: pointer; color: var(--fg); margin-bottom: 12px; }
.switch-row input { width: 18px; height: 18px; accent-color: var(--accent); }

.pickup-result {
  margin-top: 14px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.02);
  border-left: 3px solid var(--accent);
  border-radius: 8px;
  font-size: 14px;
}
.pickup-result:empty { display: none; }
.pickup-result.success { color: var(--accent-bright); }
.pickup-result.error { color: #ff6b6b; border-left-color: #ff6b6b; }

/* ====== CALENDAR ====== */
.calendar {
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid var(--border-2);
  border-radius: 12px;
  padding: 18px;
}
.cal-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.cal-head span { font-size: 15px; font-weight: 600; color: var(--fg); text-transform: capitalize; }
.cal-nav {
  background: transparent;
  border: 1px solid var(--border-2);
  color: var(--accent);
  width: 30px; height: 30px;
  border-radius: 50%;
  font-size: 16px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all .2s var(--ease);
}
.cal-nav:hover { background: var(--accent); color: #0a0d12; }

.cal-weekdays { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; margin-bottom: 6px; }
.cal-weekdays span { text-align: center; font-size: 10px; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; font-weight: 600; }
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.cal-day {
  aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.02);
  color: var(--fg);
  font-size: 13px;
  cursor: not-allowed;
  opacity: 0.3;
  transition: all .2s var(--ease);
}
.cal-day.empty { background: transparent; }
.cal-day.available { cursor: pointer; opacity: 1; }
.cal-day.available:hover {
  background: var(--accent-dark);
  color: #0a0d12;
}
.cal-day.selected {
  background: var(--grad-accent);
  color: #0a0d12;
  font-weight: 700;
}
.slots { margin-top: 16px; }
.slots-list { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; }
.slot {
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-2);
  border-radius: 8px;
  color: var(--fg);
  cursor: pointer;
  font-size: 13px;
  font-family: inherit;
  transition: all .2s var(--ease);
}
.slot:hover { border-color: var(--accent); color: var(--accent); }
.slot.selected {
  background: var(--grad-accent);
  color: #0a0d12;
  border-color: var(--accent);
  font-weight: 700;
}

/* ====== SUMMARY ====== */
.booking-aside { position: sticky; top: 100px; }
@media (max-width: 920px) { .booking-aside { position: static; } }
.summary-card {
  background: var(--bg-card);
  border: 1px solid var(--accent-dark);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: 0 12px 32px -8px rgba(212, 175, 55, 0.15);
}
.summary-card h3 { font-size: 18px; color: var(--accent); margin-bottom: 18px; font-weight: 700; }
#summaryContent { font-size: 14px; margin-bottom: 18px; }
#summaryContent .sum-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 9px 0;
  border-bottom: 1px solid var(--border-2);
}
#summaryContent .sum-row:last-child { border-bottom: none; }
#summaryContent .sum-row span:first-child { color: var(--muted); font-size: 13px; }
#summaryContent .sum-row strong { color: var(--fg); font-size: 13px; font-weight: 600; text-align: right; }
#summaryContent .sum-total {
  margin-top: 8px;
  padding-top: 14px !important;
  border-top: 1px solid var(--accent-dark) !important;
  border-bottom: none !important;
  align-items: center !important;
}
#summaryContent .sum-total span:first-child {
  color: var(--accent) !important;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1.5px;
}
#summaryContent .sum-total span:last-child {
  font-size: 22px;
  font-weight: 800;
  color: var(--accent);
}
.btn-wa { width: 100%; padding: 14px; font-size: 14px; }
.summary-note {
  margin-top: 10px;
  font-size: 11px;
  color: var(--muted);
  text-align: center;
}

/* ====== CONTACT ====== */
.contact-wrap {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
@media (max-width: 800px) { .contact-wrap { grid-template-columns: 1fr; } }
.map-card { min-height: 380px; }
.map-card iframe {
  width: 100%; height: 100%; min-height: 380px;
  border: 0;
  filter: invert(0.9) hue-rotate(180deg) saturate(0.3);
}
.contact-info {
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.info-row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.info-ico {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(212, 175, 55, 0.12);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.info-row strong {
  display: block;
  font-size: 12px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 4px;
  font-weight: 700;
}
.info-row p { color: var(--fg); font-size: 14px; line-height: 1.5; }

/* ====== FOOTER ====== */
.footer {
  border-top: 1px solid var(--border);
  padding: 28px 0;
  text-align: center;
}
.footer p { color: var(--muted); font-size: 13px; }

/* ====== MODAL ====== */
.modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal-backdrop {
  position: absolute; inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
}
.modal-content {
  position: relative;
  max-width: 680px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  animation: modalIn .35s var(--ease) both;
}
@keyframes modalIn {
  from { opacity: 0; transform: scale(0.96) translateY(20px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}
.modal-close {
  position: absolute;
  top: 14px; right: 14px;
  width: 36px; height: 36px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-2);
  border-radius: 50%;
  color: var(--accent);
  font-size: 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  transition: all .2s var(--ease);
}
.modal-close:hover { background: var(--accent); color: #0a0d12; }

.modal-img {
  width: 100%; height: 240px;
  background: linear-gradient(135deg, var(--bg-card-2), var(--bg-card));
  border-radius: 12px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.modal-img img { width: 100%; height: 100%; object-fit: cover; }
.modal-img-fallback {
  font-size: 80px;
  color: var(--accent);
  filter: drop-shadow(0 0 20px var(--accent-glow));
}
.modal h2 { font-size: 28px; color: var(--accent); margin-bottom: 6px; font-weight: 700; }
.modal-meta { display: flex; gap: 14px; align-items: center; margin-bottom: 20px; }
.modal-price { font-size: 26px; font-weight: 800; color: var(--accent); }
.modal-duration {
  padding: 5px 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-2);
  border-radius: 50px;
  font-size: 12px;
  color: var(--muted);
}
.modal-desc { color: var(--fg-2); margin-bottom: 20px; font-size: 14px; line-height: 1.7; }
.modal-includes {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-2);
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
}
.modal-includes h4 {
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
  font-weight: 700;
}
.modal-includes ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.modal-includes li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--fg);
  font-size: 13px;
}
.modal-includes li::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ====== WhatsApp float ====== */
.wa-float {
  position: fixed;
  bottom: 20px; right: 20px;
  z-index: 99;
  width: 44px; height: 44px;
  background: #25d366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px -4px rgba(37, 211, 102, 0.5);
  transition: all .25s var(--ease);
}
.wa-float:hover { transform: scale(1.08); box-shadow: 0 12px 32px -4px rgba(37, 211, 102, 0.7); }
.wa-float::before {
  content: '';
  position: absolute;
  inset: -3px;
  pointer-events: none;
  border-radius: 50%;
  background: #25d366;
  opacity: 0.28;
  z-index: -1;
  animation: waPulse 2s ease-out infinite;
}
@keyframes waPulse {
  0% { transform: scale(1); opacity: 0.32; }
  100% { transform: scale(1.25); opacity: 0; }
}

/* =========================================
   ====== RESPONSIVE ======
   ========================================= */

/* Tablet / small desktop */
@media (max-width: 1024px) {
  .container { padding: 0 20px; }
  .services-grid { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
}

/* Mobile nav (tablet portrait and below) */
@media (max-width: 880px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; order: 3; position: relative; z-index: 201; }
  .lang-switcher { order: 2; margin-left: auto; position: relative; z-index: 201; }
  .nav-logo { order: 1; position: relative; z-index: 201; }

  .nav-links.open {
    display: flex;
    position: fixed;
    inset: 0;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    background: var(--bg);
    padding: 90px 24px 40px;
    gap: 4px;
    z-index: 200;
    overflow-y: auto;
    list-style: none;
  }
  .nav-links.open li {
    border-bottom: 1px solid var(--border-2);
  }
  .nav-links.open li:last-child { border-bottom: none; }
  .nav-links.open li a {
    display: block;
    padding: 20px 12px;
    font-size: 18px;
    font-weight: 600;
    color: var(--fg);
    text-align: left;
    transition: color .2s var(--ease);
  }
  .nav-links.open li a:hover,
  .nav-links.open li a:active { color: var(--accent); }

  /* Burger animation when open */
  .nav-links.open ~ .nav-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-links.open ~ .nav-burger span:nth-child(2) { opacity: 0; }
  .nav-links.open ~ .nav-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .lang-switcher .lang-current { padding: 7px 12px; font-size: 12px; }
}

/* Small mobile */
@media (max-width: 600px) {
  .container { padding: 0 18px; }

  /* Sections compactas */
  .section { padding: 64px 0; }
  .section-head { margin-bottom: 40px; }
  .section-head h2 { font-size: 28px; }
  .section-head p { font-size: 14px; }

  /* Hero */
  .hero { padding: 100px 0 50px; min-height: auto; }
  .hero-logo { max-width: 280px; }
  .hero-lead { font-size: 14px; margin-bottom: 28px; }
  .hero-lead br { display: none; }
  .hero-cta { gap: 10px; margin-bottom: 24px; flex-direction: column; align-items: stretch; }
  .hero-cta .btn { width: 100%; }
  .btn-lg { padding: 14px 24px; font-size: 14px; }
  .social-pill { font-size: 12px; padding: 7px 14px; }

  /* Stats 2x2 em mobile */
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .stat { padding: 22px 12px; }
  .stat-ico { width: 44px; height: 44px; margin-bottom: 10px; }
  .stat-ico svg { width: 22px; height: 22px; }
  .stat-num { font-size: 26px; }
  .stat-lbl { font-size: 11px; }

  /* Services */
  .services-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .service-card-body { padding: 20px; }
  .service-card h3 { font-size: 18px; }
  .service-card-desc { font-size: 13px; margin-bottom: 14px; }

  /* Gallery em 2 colunas até bem pequeno */
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .gallery-item { aspect-ratio: 1; }
  .gallery-placeholder { font-size: 32px; }

  .socials { gap: 8px; }
  .social-btn { padding: 10px 16px; font-size: 12px; }

  /* Booking */
  .booking-grid { gap: 16px; }
  .step { padding: 18px; }
  .step-head { gap: 10px; margin-bottom: 14px; }
  .step-head h3 { font-size: 15px; }
  .step-num { width: 26px; height: 26px; font-size: 12px; }
  .input { padding: 11px 14px; font-size: 16px; }

  /* Calendar denser */
  .calendar { padding: 14px; }
  .cal-day { font-size: 12px; border-radius: 6px; }
  .cal-grid, .cal-weekdays { gap: 3px; }
  .slot { padding: 7px 12px; font-size: 12px; }

  /* Summary card */
  .booking-aside { position: static !important; }
  .summary-card { padding: 22px; }
  .summary-card h3 { font-size: 17px; }

  /* Contact */
  .contact-wrap { grid-template-columns: 1fr; }
  .map-card, .map-card iframe { min-height: 280px; }
  .contact-info { padding: 22px 18px; }
  .info-row { gap: 12px; }

  /* Modal */
  .modal { padding: 14px; }
  .modal-content { padding: 24px 18px; max-height: 90vh; }
  .modal h2 { font-size: 22px; }
  .modal-price { font-size: 22px; }
  .modal-img { height: 180px; }
  .modal-close { top: 8px; right: 8px; width: 32px; height: 32px; font-size: 18px; }

  /* WhatsApp float */
  .wa-float { width: 42px; height: 42px; bottom: 14px; right: 14px; }
  .wa-float svg { width: 20px; height: 20px; pointer-events: none; }
}

/* Extra small ~ phones < 380 */
@media (max-width: 380px) {
  .container { padding: 0 14px; }
  .hero-logo { max-width: 220px; }
  .hero-lead { font-size: 13px; }
  .section-head h2 { font-size: 24px; }
  .stat-num { font-size: 22px; }
  .gallery-grid { gap: 8px; }
}


/* ====== MOBILE CARDS ====== */
@media (max-width: 700px) {
  .service-card { border-radius: 14px; }
  .service-card-body { padding: 14px 12px 14px; }
  .service-card h3 { font-size: 14px; line-height: 1.2; margin-bottom: 6px; }
  .service-card-meta { gap: 5px; margin-bottom: 10px; }
  .service-card-meta .meta-chip {
    padding: 3px 8px;
    font-size: 9px;
    letter-spacing: 0.3px;
  }
  .service-card-desc {
    font-size: 11.5px;
    line-height: 1.4;
    margin-bottom: 10px;
    min-height: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  /* checks list escondida em mobile pra ficar compacto */
  .service-card-checks { display: none; }
  .service-card-cta { padding-top: 10px; }
  .service-card-cta button {
    padding: 9px;
    font-size: 11.5px;
    border-radius: 8px;
  }
  .service-card-img::after {
    background: linear-gradient(180deg, transparent 55%, rgba(10, 13, 18, 0.7) 100%);
  }
}

/* Tela bem pequena: 1 coluna se < 360px (caso o user tenha um SE) */
@media (max-width: 360px) {
  .services-grid { grid-template-columns: 1fr; }
  .service-card-body { padding: 16px; }
  .service-card h3 { font-size: 16px; }
  .service-card-desc { font-size: 13px; }
}

/* Body lock when burger menu open */
body.menu-open { overflow: hidden; }
body.modal-open { overflow: hidden; }

.wa-float svg { width: 22px; height: 22px; pointer-events: none; }

/* WhatsApp green button (contact section) */
.btn-wa-green {
  background: #25d366;
  color: #fff;
  border: none;
  box-shadow: 0 6px 16px -4px rgba(37, 211, 102, 0.4);
}
.btn-wa-green:hover {
  background: #20bd5b;
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -4px rgba(37, 211, 102, 0.55);
}
.btn-wa-green svg { fill: #fff; }

.contact-phone-link {
  color: var(--fg) !important;
  text-decoration: none;
  transition: color .2s var(--ease);
}
.contact-phone-link:hover { color: #25d366 !important; }

/* ====== iOS NO-ZOOM RULE (16px obrigatorio em inputs) ====== */
@media (max-width: 768px) {
  input, select, textarea {
    font-size: 16px !important;
  }
}
/* Evita tap-highlight feio no iOS */
a, button { -webkit-tap-highlight-color: transparent; touch-action: manipulation; }

/* Site credit no footer */
.footer-credit {
  margin-top: 10px;
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.3px;
}
.footer-credit a {
  color: var(--accent) !important;
  font-weight: 600;
  text-decoration: none;
  transition: color .2s var(--ease);
  display: inline-flex;
  align-items: center;
}
.footer-credit a:hover { color: var(--accent-bright) !important; }

/* ====== CARDS SCROLL FX ====== */
/* Fade-up reveal quando entra na viewport (todos viewports) */
.service-card.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.service-card.reveal.shown {
  opacity: 1;
  transform: translateY(0);
}

/* Respeitar preferencia de movimento reduzido */
@media (prefers-reduced-motion: reduce) {
  .service-card.reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .service-card.scroll-active { transform: none !important; box-shadow: none !important; }
}

/* MOBILE ONLY — spotlight forte no card centralizado */
@media (max-width: 700px) {
  .service-card {
    transition: transform .55s var(--ease), border-color .55s var(--ease), box-shadow .55s var(--ease);
  }
  .service-card.scroll-active {
    transform: translateY(-3px) scale(1.02);
    border-color: var(--accent);
    box-shadow:
      0 18px 38px -10px rgba(212, 175, 55, 0.55),
      0 0 0 2px var(--accent) inset,
      0 0 70px -8px rgba(212, 175, 55, 0.45);
  }
  .service-card.scroll-active .service-card-img img {
    transform: scale(1.05);
  }
  .service-card.scroll-active .service-card-img::after { opacity: 0.7; }
  /* combine reveal+scroll-active */
  .service-card.reveal.shown.scroll-active {
    transform: translateY(-3px) scale(1.02);
  }
}

/* ====== NEXT AVAILABILITY (Contact) ====== */
.next-avail-wrap { margin-top: 6px; }
.next-avail-list {
  list-style: none;
  padding: 0; margin: 0 0 10px;
  display: flex; flex-direction: column;
  gap: 6px;
}
.next-avail-list li {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 9px 12px;
  background: rgba(212, 175, 55, 0.06);
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 13px;
  flex-wrap: wrap;
}
.next-avail-list .na-day {
  color: var(--accent);
  font-weight: 600;
  text-transform: capitalize;
}
.next-avail-list .na-slots {
  color: var(--fg);
  font-weight: 500;
  letter-spacing: 0.3px;
}
.next-avail-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  margin-top: 4px;
  transition: opacity .2s;
}
.next-avail-link:hover { opacity: 0.75; }
.next-avail-loading, .next-avail-empty {
  color: var(--muted);
  font-size: 13px;
  margin: 0;
}
