/* ============================================================
   Salão Taiti — folha de estilo única do site
   Mobile-first, tema escuro com detalhes em turquesa.
   ============================================================ */

:root{
  --bg: #0b0d12;
  --bg-overlay: rgba(6,8,12,.55);
  --panel: rgba(13,16,22,.82);
  --panel-2: rgba(18,22,30,.92);
  --ring: rgba(255,255,255,.14);
  --text: #f3f6fb;
  --muted: #c7ceda;
  --brand: #00e6c3;
  --brand-2: #36b9ff;
  --danger: #ff6b6b;
  --whats: #25D366;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 14px 40px rgba(0,0,0,.35);
  --maxw: 1120px;
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
html,body{ min-height: 100%; }
body{
  margin: 0;
  color: var(--text);
  font-family: "Segoe UI", system-ui, -apple-system, Roboto, Arial, sans-serif;
  background: var(--bg);
  line-height: 1.55;
}
img{ max-width: 100%; display: block; }
a{ color: inherit; }
h1,h2,h3,h4{ line-height: 1.2; margin: 0 0 .5em; }
p{ margin: 0 0 1em; }
.container{ max-width: var(--maxw); margin: 0 auto; padding: 0 18px; }
.sr-only{
  position:absolute; width:1px; height:1px; padding:0; margin:-1px;
  overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0;
}

/* ---------- Navbar ---------- */
.navbar{
  position: sticky; top: 0; z-index: 100;
  background: linear-gradient(180deg, rgba(8,10,14,.92), rgba(8,10,14,.78));
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--ring);
}
.nav-inner{
  max-width: var(--maxw); margin: 0 auto; padding: 12px 18px;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.brand{
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; color: var(--text); font-weight: 800; font-size: 1.05rem;
  white-space: nowrap;
}
.brand .mark{
  width: 34px; height: 34px; border-radius: 10px; flex: none;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  display: flex; align-items: center; justify-content: center;
  color: #06231d; font-weight: 900; font-size: 1rem;
}
.nav-toggle{
  display: none; flex-direction: column; gap: 4px;
  background: rgba(255,255,255,.06); border: 1px solid var(--ring);
  border-radius: 10px; padding: 9px 10px; cursor: pointer;
}
.nav-toggle span{ width: 20px; height: 2px; background: var(--text); display: block; }
.nav-menu{
  display: flex; align-items: center; gap: 4px; flex-wrap: wrap;
  list-style: none; margin: 0; padding: 0;
}
.nav-menu a{
  display: inline-block; text-decoration: none; color: var(--text);
  font-weight: 600; font-size: .92rem; padding: 9px 12px; border-radius: 10px;
  white-space: nowrap;
}
.nav-menu a:hover, .nav-menu a.active{ background: rgba(255,255,255,.09); }
.nav-menu a.cta{
  background: linear-gradient(135deg, var(--whats), #5BF28D);
  color: #06231d; font-weight: 800;
}
.nav-menu a.cta:hover{ filter: brightness(1.06); }

@media (max-width: 920px){
  .nav-toggle{ display: flex; }
  .nav-menu{
    position: fixed; inset: 62px 0 auto 0; z-index: 99;
    flex-direction: column; align-items: stretch; gap: 2px;
    background: rgba(8,10,14,.98); border-bottom: 1px solid var(--ring);
    padding: 10px 14px 16px; max-height: calc(100vh - 62px); overflow: auto;
    transform: translateY(-8px); opacity: 0; pointer-events: none;
    transition: transform .18s ease, opacity .18s ease;
  }
  .nav-menu.open{ transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-menu a{ padding: 13px 12px; border-radius: 10px; }
  .nav-menu a.cta{ margin-top: 6px; text-align: center; }
}

/* ---------- Hero ---------- */
.hero{
  position: relative;
  background: linear-gradient(var(--bg-overlay), var(--bg-overlay)), url("../images/hero.jpg") center/cover no-repeat;
  padding: 64px 0 56px;
  text-align: center;
}
.hero .eyebrow{
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0,230,195,.14); border: 1px solid rgba(0,230,195,.35);
  color: var(--brand); font-weight: 700; font-size: .82rem; letter-spacing: .3px;
  padding: 7px 14px; border-radius: 999px; margin-bottom: 18px;
}
.hero h1{
  font-size: clamp(1.7rem, 4vw + 1rem, 3rem);
  margin: 0 0 .35em;
}
.hero .lead{
  color: var(--muted); font-size: clamp(1rem, .4vw + .95rem, 1.2rem);
  max-width: 640px; margin: 0 auto 22px;
}
.hero-actions{
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 8px;
}

/* ---------- Buttons ---------- */
.btn{
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 20px; border-radius: 12px; font-weight: 800; letter-spacing: .2px;
  text-decoration: none; font-size: .98rem; border: 1px solid transparent;
  cursor: pointer;
}
.btn-whats{
  color: #06231d;
  background: linear-gradient(135deg, var(--whats), #5BF28D);
  box-shadow: 0 12px 28px rgba(37,211,102,.3);
}
.btn-whats:hover{ filter: brightness(1.05); }
.btn-outline{
  color: var(--text); background: rgba(255,255,255,.06); border-color: var(--ring);
}
.btn-outline:hover{ background: rgba(255,255,255,.11); }
.btn-block{ width: 100%; }

/* ---------- Sections & panels ---------- */
section.section{ padding: 44px 0; }
section.section.tight{ padding: 28px 0; }
.section-head{ text-align: center; max-width: 680px; margin: 0 auto 28px; }
.section-head .kicker{
  color: var(--brand); font-weight: 800; font-size: .82rem; letter-spacing: .6px;
  text-transform: uppercase; margin-bottom: 6px; display: block;
}
.section-head h2{ font-size: clamp(1.4rem, 1.4vw + 1rem, 2rem); }
.section-head p{ color: var(--muted); margin: 0; }

.panel{
  background: linear-gradient(180deg, var(--panel), var(--panel-2));
  border: 1px solid var(--ring); border-radius: var(--radius);
  padding: 22px; box-shadow: var(--shadow);
}

.grid{ display: grid; gap: 16px; }
.grid-3{ grid-template-columns: repeat(3, 1fr); }
.grid-2{ grid-template-columns: repeat(2, 1fr); }
@media (max-width: 860px){ .grid-3{ grid-template-columns: repeat(2,1fr); } }
@media (max-width: 620px){ .grid-3, .grid-2{ grid-template-columns: 1fr; } }

.card{
  background: rgba(255,255,255,.045);
  border: 1px solid var(--ring); border-radius: var(--radius-sm);
  padding: 20px;
}
.card .icon{
  width: 44px; height: 44px; border-radius: 12px; margin-bottom: 12px;
  display: flex; align-items: center; justify-content: center; font-size: 1.3rem;
  background: linear-gradient(135deg, rgba(0,230,195,.22), rgba(54,185,255,.18));
}
.card h3{ font-size: 1.05rem; margin-bottom: 6px; }
.card p{ color: var(--muted); font-size: .95rem; margin: 0; }

.badge{
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.07); border: 1px solid var(--ring);
  color: var(--muted); font-size: .82rem; font-weight: 700;
  padding: 6px 12px; border-radius: 999px;
}

/* Guarantee / trust strip */
.trust-strip{
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: center;
  margin: 18px 0 6px;
}

/* Quote / bio blocks */
.bio blockquote{
  margin: 0 0 16px; padding-left: 16px; border-left: 3px solid var(--brand);
  color: var(--muted); font-size: .98rem;
}
.bio strong{ color: var(--text); }

/* ---------- FAQ accordion ---------- */
.faq-item{
  border: 1px solid var(--ring); border-radius: var(--radius-sm);
  background: rgba(255,255,255,.04); margin-bottom: 10px; overflow: hidden;
}
.faq-q{
  width: 100%; text-align: left; background: none; border: none; color: var(--text);
  font-weight: 700; font-size: 1rem; padding: 16px 44px 16px 18px; cursor: pointer;
  position: relative;
}
.faq-q::after{
  content: "+"; position: absolute; right: 16px; top: 50%; transform: translateY(-50%);
  font-size: 1.4rem; color: var(--brand); font-weight: 400;
}
.faq-item.open .faq-q::after{ content: "–"; }
.faq-a{
  max-height: 0; overflow: hidden; transition: max-height .25s ease;
  color: var(--muted); font-size: .95rem;
}
.faq-a-inner{ padding: 0 18px 16px; }
.faq-item.open .faq-a{ max-height: 600px; }

/* ---------- Pricing tables ---------- */
.price-table{ width: 100%; border-collapse: collapse; }
.price-table caption{
  text-align: left; font-weight: 800; font-size: 1.05rem; padding: 4px 0 10px; color: var(--brand);
}
.price-table th, .price-table td{
  padding: 12px 10px; border-bottom: 1px solid var(--ring); text-align: left; font-size: .95rem;
}
.price-table td.price{ text-align: right; font-weight: 800; color: var(--text); white-space: nowrap; }
.price-table .obs{ display: block; color: var(--muted); font-size: .82rem; font-weight: 400; margin-top: 3px; }

/* ---------- Forms ---------- */
form label{ display: block; font-weight: 700; margin: 12px 0 6px; font-size: .92rem; }
input, select, textarea{
  width: 100%; padding: 12px 12px; border-radius: 12px; color: var(--text);
  background: rgba(255,255,255,.06); border: 1px solid var(--ring);
  outline: none; font-size: .95rem; font-family: inherit;
}
input:focus, select:focus, textarea:focus{ border-color: var(--brand); }
textarea{ min-height: 100px; resize: vertical; }
.row{ display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 640px){ .row{ grid-template-columns: 1fr; } }
.hint{ color: var(--muted); font-size: .85rem; margin-top: 6px; }
.actions{ display: flex; gap: 10px; flex-wrap: wrap; margin-top: 16px; }

/* ---------- Map ---------- */
.map-wrap{
  border-radius: var(--radius); overflow: hidden; border: 1px solid var(--ring);
  box-shadow: var(--shadow);
}
.map-wrap iframe{ width: 100%; height: 340px; border: 0; display: block; }

/* ---------- Footer ---------- */
footer.site-footer{
  border-top: 1px solid var(--ring); margin-top: 30px;
  padding: 30px 0 90px;
  background: rgba(6,8,12,.6);
}
.footer-grid{ display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 22px; }
@media (max-width: 720px){ .footer-grid{ grid-template-columns: 1fr; } }
.footer-grid h4{ font-size: .9rem; color: var(--brand); text-transform: uppercase; letter-spacing: .4px; }
.footer-grid ul{ list-style: none; margin: 0; padding: 0; }
.footer-grid li{ margin-bottom: 8px; }
.footer-grid a{ text-decoration: none; color: var(--muted); font-size: .92rem; }
.footer-grid a:hover{ color: var(--text); }
.footer-bottom{
  text-align: center; color: var(--muted); font-size: .82rem;
  margin-top: 22px; padding-top: 16px; border-top: 1px solid var(--ring);
}

/* ---------- Floating WhatsApp button ---------- */
.whats-float{
  position: fixed; right: 16px; bottom: 16px; z-index: 200;
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--whats); color: #06231d; text-decoration: none;
  font-weight: 800; font-size: .9rem; padding: 13px 18px; border-radius: 999px;
  box-shadow: 0 12px 30px rgba(37,211,102,.45);
}
.whats-float svg{ width: 20px; height: 20px; flex: none; }
.whats-float .txt{ display: none; }
@media (min-width: 640px){ .whats-float .txt{ display: inline; } }

/* ---------- Utilities ---------- */
.mt-0{ margin-top: 0; } .mb-0{ margin-bottom: 0; }
.center{ text-align: center; }
.stack{ display: flex; flex-direction: column; gap: 10px; }
