/* ============================================================
   VARIÁVEIS & BASE
   ============================================================ */
:root {
  --cream:       #faf7f4;
  --nude:        #ede0d4;
  --nude-rose:   #e8d5cb;
  --bege:        #d9c9bb;
  --gold:        #b89a6a;
  --gold-light:  #d4b98a;
  --gold-ultra:  #eddfc8;
  --dark:        #2a2320;
  --mid:         #6b5a4e;
  --soft:        #9e8878;
  --white:       #ffffff;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  background: var(--cream);
  color: var(--dark);
  min-height: 100vh;
  max-width: 480px;
  margin: 0 auto;
  position: relative;
  overflow-x: hidden;
}

/* ============================================================
   HEADER
   ============================================================ */
.header-section {
  position: relative;
  padding: 56px 32px 48px;
  text-align: center;
  background: var(--white);
  overflow: hidden;
}

.marble-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 10%, rgba(184,154,106,0.07) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 90%, rgba(232,213,203,0.15) 0%, transparent 55%),
    radial-gradient(ellipse at 60% 40%, rgba(217,201,187,0.08) 0%, transparent 50%);
  pointer-events: none;
}

/* subtle marble veins */
.marble-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='600' height='600'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='600' height='600' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E");
  opacity: 0.5;
}

.header-content { position: relative; z-index: 1; }

.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--gold);
  letter-spacing: 0.08em;
  margin-bottom: 20px;
  animation: fadeUp 0.8s ease both;
}

.salon-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--dark);
  line-height: 1.1;
  animation: fadeUp 0.8s ease 0.1s both;
}

.salon-tag {
  font-family: 'Jost', sans-serif;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 4px;
  animation: fadeUp 0.8s ease 0.15s both;
}

.salon-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-style: italic;
  font-weight: 300;
  color: var(--mid);
  margin-top: 16px;
  line-height: 1.5;
  animation: fadeUp 0.8s ease 0.2s both;
}

.salon-subsub {
  font-size: 0.75rem;
  font-weight: 300;
  color: var(--soft);
  margin-top: 6px;
  letter-spacing: 0.03em;
  animation: fadeUp 0.8s ease 0.25s both;
}

/* ============================================================
   MAIN CONTENT
   ============================================================ */
.main-content {
  padding: 24px 20px 120px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* ============================================================
   CTA BLOCK
   ============================================================ */
.cta-block {
  padding: 28px 20px 22px !important;
  background: linear-gradient(135deg, var(--dark) 0%, #3d2e28 100%) !important;
  border: none !important;
  text-align: center;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--white);
  border: none;
  border-radius: 50px;
  padding: 16px 32px;
  font-family: 'Jost', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 8px 24px rgba(184,154,106,0.35);
}

.cta-btn:active { transform: scale(0.97); }
.cta-btn:hover  { box-shadow: 0 12px 32px rgba(184,154,106,0.5); transform: translateY(-1px); }

.cta-icon { width: 22px; height: 22px; display: flex; align-items: center; }
.cta-icon svg { width: 22px; height: 22px; }

.cta-sub {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.5);
  margin-top: 10px;
  letter-spacing: 0.03em;
}

/* ============================================================
   SECTION BLOCK & CARD
   ============================================================ */
.section-block {
  background: var(--white);
  border-radius: 20px;
  padding: 24px 22px;
  box-shadow: 0 2px 16px rgba(42,35,32,0.06);
  border: 1px solid rgba(184,154,106,0.12);
  animation: fadeUp 0.6s ease both;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.section-block:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(42,35,32,0.1);
}

.card { display: flex; flex-direction: column; gap: 6px; }

.card-icon {
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}

.card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--dark);
  letter-spacing: 0.01em;
}

.card-desc {
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--soft);
  line-height: 1.5;
}

.card-btn {
  display: inline-block;
  margin-top: 12px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid rgba(184,154,106,0.4);
  padding-bottom: 2px;
  align-self: flex-start;
  transition: color 0.2s, border-color 0.2s;
}

.card-btn-solid {
  display: block;
  width: 100%;
  margin-top: 14px;
  padding: 12px;
  background: transparent;
  border: 1.5px solid var(--gold);
  border-radius: 50px;
  font-family: 'Jost', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.card-btn-solid:hover {
  background: var(--gold);
  color: var(--white);
}

.card-micro {
  font-size: 0.7rem;
  color: var(--soft);
  text-align: center;
  margin-top: 8px;
}

/* MAP */
.map-card { cursor: default; }
.map-card:hover { transform: none; box-shadow: 0 2px 16px rgba(42,35,32,0.06); }

.map-embed {
  margin-top: 14px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(184,154,106,0.15);
}

/* ============================================================
   PAGAMENTOS
   ============================================================ */
.payments-block { cursor: default; }
.payments-block:hover { transform: none; }

.payments-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--dark);
  text-align: center;
  margin-bottom: 16px;
}

.payments-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.payment-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--cream);
  border: 1px solid rgba(184,154,106,0.18);
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--mid);
}

.payment-icon {
  font-size: 1rem;
  color: var(--gold);
}

.payments-micro {
  text-align: center;
  font-size: 0.7rem;
  color: var(--soft);
  margin-top: 12px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer-section {
  background: var(--dark);
  padding: 28px 24px;
  text-align: center;
}

.footer-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 300;
  color: var(--gold-ultra);
  letter-spacing: 0.08em;
}

.footer-addr {
  font-size: 0.7rem;
  font-weight: 300;
  color: rgba(255,255,255,0.35);
  margin-top: 6px;
  letter-spacing: 0.03em;
}

/* ============================================================
   BOTÃO FLUTUANTE WHATSAPP
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 6px 20px rgba(184,154,106,0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  z-index: 100;
  animation: pulse-ring 2.5s ease infinite;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 10px 28px rgba(184,154,106,0.6);
}

@keyframes pulse-ring {
  0%   { box-shadow: 0 6px 20px rgba(184,154,106,0.45), 0 0 0 0 rgba(184,154,106,0.3); }
  70%  { box-shadow: 0 6px 20px rgba(184,154,106,0.45), 0 0 0 14px rgba(184,154,106,0); }
  100% { box-shadow: 0 6px 20px rgba(184,154,106,0.45), 0 0 0 0 rgba(184,154,106,0); }
}

/* ============================================================
   MODAIS
   ============================================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(42,35,32,0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.modal-overlay.active .modal-box {
  transform: translateY(0);
}

.modal-box {
  background: var(--white);
  border-radius: 24px 24px 0 0;
  padding: 32px 28px 40px;
  width: 100%;
  max-width: 480px;
  position: relative;
  transform: translateY(60px);
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: var(--cream);
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 0.75rem;
  color: var(--mid);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.modal-close:hover { background: var(--nude); }

.modal-icon {
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 10px;
}

.modal-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 22px;
}

/* Serviços list */
.services-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 24px;
}

.services-list li {
  padding: 13px 0;
  border-bottom: 1px solid rgba(184,154,106,0.12);
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--mid);
  display: flex;
  align-items: center;
  gap: 10px;
}

.services-list li::before {
  content: '—';
  color: var(--gold);
  font-size: 0.7rem;
}

.modal-cta {
  display: block;
  width: 100%;
  padding: 15px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  border: none;
  border-radius: 50px;
  font-family: 'Jost', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--white);
  cursor: pointer;
  transition: opacity 0.2s;
}

.modal-cta:hover { opacity: 0.9; }

/* Wi-Fi info */
.wifi-info {
  background: var(--cream);
  border-radius: 14px;
  padding: 18px 20px;
  margin-bottom: 20px;
  border: 1px solid rgba(184,154,106,0.15);
}

.wifi-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
}

.wifi-row + .wifi-row {
  border-top: 1px solid rgba(184,154,106,0.1);
}

.wifi-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--soft);
}

.wifi-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  color: var(--dark);
}

.modal-micro {
  font-size: 0.72rem;
  color: var(--soft);
  text-align: center;
  margin-top: 12px;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

.main-content .section-block:nth-child(1) { animation-delay: 0.1s; }
.main-content .section-block:nth-child(2) { animation-delay: 0.18s; }
.main-content .section-block:nth-child(3) { animation-delay: 0.26s; }
.main-content .section-block:nth-child(4) { animation-delay: 0.34s; }
.main-content .section-block:nth-child(5) { animation-delay: 0.42s; }
.main-content .section-block:nth-child(6) { animation-delay: 0.5s; }