:root {
  --pistachio: #8fbf6a;
  --pistachio-dark: #5e9142;
  --pistachio-light: #e7f3de;
  --azzurro: #5fc7e3;
  --azzurro-dark: #2e9bc7;
  --azzurro-light: #e3f6fb;
  --white: #ffffff;
  --ink: #24352a;
  --ink-soft: #4b5d52;
  --border: #e2ece0;
  --shadow: 0 10px 30px rgba(36, 53, 42, 0.08);
  --radius: 18px;
  --gradient-brand: linear-gradient(135deg, var(--pistachio) 0%, var(--azzurro) 100%);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-family: "Poppins", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  line-height: 1.25;
  margin: 0 0 16px;
}

a { color: var(--pistachio-dark); text-decoration: none; }
a:hover { color: var(--azzurro-dark); }

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

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.brand { color: var(--pistachio-dark); }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}

.logo-link { display: flex; align-items: center; }
.logo-link img { height: 52px; width: auto; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.main-nav a {
  color: var(--ink-soft);
  font-weight: 600;
  font-size: 15px;
}

.main-nav a.active,
.main-nav a:hover { color: var(--pistachio-dark); }

.header-cta { display: flex; align-items: center; gap: 12px; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  margin: 5px 0;
  background: var(--ink);
  border-radius: 2px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--gradient-brand);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(95, 199, 227, 0.35);
}
.btn-primary:hover { color: var(--white); box-shadow: 0 12px 26px rgba(95, 199, 227, 0.45); }

.btn-outline {
  background: var(--white);
  color: var(--pistachio-dark);
  border-color: var(--pistachio);
}
.btn-outline:hover { color: var(--pistachio-dark); border-color: var(--pistachio-dark); }

.btn-whatsapp {
  background: #ffffff;
  color: #1f8a52;
  border-color: #bfe6cd;
}
.btn-whatsapp:hover { color: #1f8a52; }

.btn-lg { padding: 16px 34px; font-size: 16px; }
.btn-block { width: 100%; justify-content: center; }

/* Hero */
.hero {
  position: relative;
  padding: 72px 0 96px;
  background: linear-gradient(180deg, var(--pistachio-light) 0%, var(--azzurro-light) 100%);
  overflow: hidden;
}

.hero .container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  background: var(--white);
  color: var(--pistachio-dark);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.4px;
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 18px;
  box-shadow: var(--shadow);
}

.hero h1 { font-size: 44px; }
.hero p.lead { font-size: 18px; color: var(--ink-soft); margin-bottom: 28px; max-width: 520px; }

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 32px; }

.hero-benefits {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}
.hero-benefits li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 14px;
  color: var(--ink-soft);
}
.hero-benefits li::before {
  content: "";
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--gradient-brand);
}

.hero-art {
  border-radius: 28px;
  background: var(--gradient-brand);
  min-height: 360px;
  position: relative;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-art img { width: 55%; filter: drop-shadow(0 12px 20px rgba(0,0,0,0.15)); }

/* Sections */
.section { padding: 80px 0; }
.section-alt { background: var(--pistachio-light); }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 48px; }
.section-head h2 { font-size: 32px; }
.section-head p { color: var(--ink-soft); font-size: 17px; }
.kicker {
  display: inline-block;
  color: var(--azzurro-dark);
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  font-size: 13px;
  margin-bottom: 10px;
}

/* Cards grid */
.grid { display: grid; gap: 28px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 16px 34px rgba(36,53,42,0.12); }

.card-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--gradient-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--white);
  font-size: 26px;
}

.card h3 { font-size: 20px; margin-bottom: 10px; }
.card p { color: var(--ink-soft); font-size: 15px; margin: 0; }

/* Schedule banner */
.schedule-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: var(--azzurro-light);
  border-radius: var(--radius);
  padding: 32px 40px;
  flex-wrap: wrap;
}
.schedule-banner .info {
  display: flex;
  align-items: center;
  gap: 18px;
}
.schedule-banner .icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--gradient-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  flex-shrink: 0;
  color: var(--white);
}
.schedule-banner h3 { margin: 0 0 4px; font-size: 19px; }
.schedule-banner p { margin: 0; color: var(--ink-soft); font-size: 14px; }
.schedule-banner .actions { display: flex; gap: 12px; flex-wrap: wrap; }

@media (max-width: 720px) {
  .schedule-banner { padding: 24px; }
}

/* Process steps */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  counter-reset: step;
}
.step { text-align: center; position: relative; }
.step-num {
  width: 56px;
  height: 56px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--gradient-brand);
  color: var(--white);
  font-weight: 700;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step h3 { font-size: 18px; }
.step p { color: var(--ink-soft); font-size: 14px; }

/* Why choose us */
.reasons { list-style: none; padding: 0; margin: 0; display: grid; gap: 20px; }
.reasons li {
  display: flex;
  gap: 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px 22px;
}
.reasons .dot {
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--gradient-brand);
  margin-top: 6px;
  flex-shrink: 0;
}
.reasons strong { display: block; margin-bottom: 2px; }
.reasons span.desc { color: var(--ink-soft); font-size: 14px; }

/* CTA banner */
.cta-banner {
  background: var(--gradient-brand);
  border-radius: 28px;
  padding: 56px;
  text-align: center;
  color: var(--white);
  margin: 0 24px;
}
.cta-banner h2 { color: var(--white); font-size: 30px; }
.cta-banner p { color: rgba(255,255,255,0.9); margin-bottom: 28px; }
.cta-banner .btn-primary { background: var(--white); color: var(--pistachio-dark); box-shadow: none; }
.cta-banner .btn-primary:hover { color: var(--pistachio-dark); }
.cta-banner .btn-whatsapp { background: rgba(255,255,255,0.15); color: var(--white); border-color: rgba(255,255,255,0.4); }
.cta-banner .btn-whatsapp:hover { color: var(--white); }

/* Zones */
.zone-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
  justify-content: center;
}
.zone-list li {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 18px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-soft);
}

/* FAQ accordion */
.faq-list { max-width: 780px; margin: 0 auto; display: grid; gap: 14px; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--white);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 20px 24px;
  font-weight: 700;
  font-size: 16px;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-question .icon {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--pistachio-light);
  color: var(--pistachio-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  transition: transform 0.2s ease;
}
.faq-item.open .faq-question .icon { transform: rotate(45deg); background: var(--gradient-brand); color: var(--white); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
  padding: 0 24px;
  color: var(--ink-soft);
  font-size: 15px;
}
.faq-item.open .faq-answer { max-height: 400px; padding-bottom: 22px; }

/* Contact / form page */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.contact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
}
.contact-info-card {
  background: var(--pistachio-light);
  border-radius: var(--radius);
  padding: 36px;
}
.contact-info-card .contact-row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 22px;
}
.contact-info-card .contact-row .icon {
  width: 42px; height: 42px; border-radius: 12px;
  background: var(--white); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
}
.contact-info-card strong { display: block; }
.contact-info-card span { color: var(--ink-soft); font-size: 14px; }

/* Service picker cards */
.service-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}
.service-card {
  border: 2px solid var(--border);
  border-radius: 14px;
  padding: 18px 10px;
  text-align: center;
  cursor: pointer;
  background: var(--white);
  transition: border-color 0.15s ease, background 0.15s ease;
}
.service-card:hover { border-color: var(--pistachio); }
.service-card.selected { border-color: var(--pistachio); background: var(--pistachio-light); }
.service-card .emoji { font-size: 26px; display: block; margin-bottom: 8px; }
.service-card .label { font-weight: 700; font-size: 13px; color: var(--ink); }

/* Booking calendar */
.booking-calendar {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px;
  margin-bottom: 24px;
}
.cal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.cal-header .month-label { font-weight: 700; font-size: 15px; }
.cal-nav-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: var(--pistachio-light);
  color: var(--pistachio-dark);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cal-nav-btn:disabled { opacity: 0.3; cursor: not-allowed; }
.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
  text-align: center;
}
.cal-grid .dow { font-size: 11px; font-weight: 700; color: var(--ink-soft); padding-bottom: 6px; }
.cal-day {
  padding: 10px 0;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  background: var(--pistachio-light);
  color: var(--pistachio-dark);
}
.cal-day.empty { visibility: hidden; cursor: default; }
.cal-day.closed { background: none; color: #c7cfc9; cursor: not-allowed; }
.cal-day.selected { background: var(--gradient-brand); color: var(--white); }
.cal-legend { display: flex; gap: 18px; margin-top: 14px; font-size: 12px; color: var(--ink-soft); }
.cal-legend .dot { display: inline-block; width: 10px; height: 10px; border-radius: 50%; margin-right: 6px; }
.cal-legend .dot.avail { background: var(--pistachio); }
.cal-legend .dot.closed { background: #dfe6e1; }

.time-slots { display: flex; gap: 10px; margin-top: 16px; }
.time-slot {
  flex: 1;
  border: 2px solid var(--border);
  border-radius: 10px;
  padding: 12px;
  text-align: center;
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  background: var(--white);
}
.time-slot.selected { border-color: var(--azzurro); background: var(--azzurro-light); }

.booking-summary {
  margin-top: 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--pistachio-dark);
  min-height: 18px;
}

.form-section-label {
  display: block;
  font-weight: 700;
  font-size: 15px;
  margin: 28px 0 12px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.form-section-label:first-of-type { margin-top: 0; padding-top: 0; border-top: none; }

form .field { margin-bottom: 18px; }
form label { display: block; font-weight: 700; font-size: 14px; margin-bottom: 6px; }
form input,
form select,
form textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 15px;
  font-family: inherit;
  background: var(--white);
  color: var(--ink);
}
form input:focus,
form select:focus,
form textarea:focus {
  outline: none;
  border-color: var(--pistachio);
  box-shadow: 0 0 0 3px var(--pistachio-light);
}
form textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-note { font-size: 13px; color: var(--ink-soft); margin-top: 10px; }

/* Simple content pages */
.prose { max-width: 780px; margin: 0 auto; }
.prose h2 { margin-top: 36px; font-size: 22px; }
.prose p, .prose li { color: var(--ink-soft); font-size: 15px; }
.page-hero {
  background: var(--pistachio-light);
  padding: 56px 0;
  text-align: center;
}
.page-hero h1 { font-size: 34px; }
.page-hero p { color: var(--ink-soft); }

/* Footer */
.site-footer {
  background: #1c2b21;
  color: #cfe0d6;
  padding: 64px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 32px;
  margin-bottom: 40px;
}
.footer-grid img { height: 44px; margin-bottom: 14px; }
.site-footer p { color: #a9c1b0; font-size: 14px; }
.site-footer h4 { color: var(--white); font-size: 15px; margin-bottom: 16px; }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.site-footer a { color: #cfe0d6; font-size: 14px; }
.site-footer a:hover { color: var(--pistachio); }
.social-row { display: flex; gap: 12px; margin-top: 16px; }
.social-row a {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 17px;
}
.social-row a:hover { background: var(--gradient-brand); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: #8fa896;
}
.footer-bottom a { color: #8fa896; }

/* WhatsApp float button */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.45);
  z-index: 60;
}
.wa-float:hover { color: var(--white); transform: scale(1.06); }

@media (max-width: 960px) {
  .hero .container { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-wrap { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .main-nav { display: none; }
  .nav-toggle { display: block; }
  .header-cta .btn-outline { display: none; }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .hero h1 { font-size: 32px; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .cta-banner { margin: 0; border-radius: 0; }

  .site-header.nav-open .main-nav {
    display: flex;
    position: absolute;
    top: 84px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
    gap: 18px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
  }
}
