/* =========================================================
   Ateliê Priscila Andrade — Design System
   Paleta e tipografia derivadas da identidade da marca.
   ========================================================= */

:root {
  /* Cores */
  --cream:        #FAF8F5;
  --cream-2:      #F3EEE9;
  --blush:        #EFE0DC;
  --blush-light:  #F5ECEC;
  --rose:         #C49098;
  --rose-deep:    #A96E79;
  --mauve:        #B98A98;
  --ink:          #1E1B2E;
  --muted:        #6B5F72;
  --slate:        #5A4F62;
  --line:         #E5D5D8;
  --white:        #FFFFFF;
  --wa:           #25D366;
  --wa-dark:      #1EBE5A;

  /* Tipografia */
  --serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --sans:  'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Medidas */
  --maxw: 1160px;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 18px 50px -24px rgba(30, 27, 46, 0.28);
  --shadow-sm: 0 8px 26px -18px rgba(30, 27, 46, 0.30);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 500; line-height: 1.1; color: var(--ink); }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--mauve);
  font-weight: 600;
  margin-bottom: 16px;
  display: inline-block;
}

.section { padding: 92px 0; }
.section--tight { padding: 64px 0; }
.section-title { font-size: clamp(2rem, 4vw, 3rem); letter-spacing: -0.5px; }
.section-lead { color: var(--muted); font-size: 1.08rem; max-width: 620px; margin-top: 18px; }
.center { text-align: center; }
.center .section-lead { margin-left: auto; margin-right: auto; }
.divider { width: 40px; height: 1px; background: var(--rose); margin: 20px 0; }
.center .divider { margin-left: auto; margin-right: auto; }

/* ---------- Botões ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--sans); font-weight: 700; font-size: 0.95rem;
  letter-spacing: 0.3px; padding: 15px 30px; border-radius: 100px;
  border: 1px solid transparent; cursor: pointer; transition: all .25s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn--wa { background: var(--wa); color: #fff; }
.btn--wa:hover { background: var(--wa-dark); transform: translateY(-2px); box-shadow: 0 14px 30px -14px rgba(37,211,102,.7); }
.btn--primary { background: var(--ink); color: var(--cream); }
.btn--primary:hover { background: var(--rose-deep); transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--rose); color: var(--rose-deep); }
.btn--lg { padding: 18px 40px; font-size: 1rem; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250, 248, 245, 0.86);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 74px; }
.brand { display: flex; flex-direction: column; line-height: 1; }
.brand .brand-pre { font-family: var(--sans); font-size: 0.55rem; letter-spacing: 3px; text-transform: uppercase; color: var(--mauve); margin-bottom: 3px; }
.brand .brand-name { font-family: var(--serif); font-size: 1.35rem; color: var(--ink); font-weight: 600; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { font-size: 0.92rem; font-weight: 600; color: var(--slate); transition: color .2s; }
.nav-links a:hover { color: var(--rose-deep); }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--ink); margin: 5px 0; transition: .3s; }

.has-dropdown { position: relative; }
.dropdown {
  position: absolute; top: 130%; left: 50%; transform: translateX(-50%) translateY(8px);
  background: var(--white); border: 1px solid var(--line); border-radius: 14px;
  padding: 10px; min-width: 250px; box-shadow: var(--shadow);
  opacity: 0; visibility: hidden; transition: all .2s ease;
}
.has-dropdown:hover .dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.dropdown a { display: block; padding: 10px 14px; border-radius: 9px; font-size: 0.88rem; color: var(--slate); }
.dropdown a:hover { background: var(--blush-light); color: var(--rose-deep); }

/* ---------- Hero ---------- */
.hero { position: relative; padding: 96px 0 88px; overflow: hidden; }
.hero::before, .hero::after { content: ''; position: absolute; border-radius: 50%; z-index: 0; }
.hero::before { width: 460px; height: 460px; background: var(--blush); top: -160px; right: -140px; opacity: .55; }
.hero::after { width: 200px; height: 200px; background: var(--blush-light); bottom: -70px; left: -50px; opacity: .7; }
.hero .container { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
.hero h1 { font-size: clamp(2.6rem, 5.5vw, 4.2rem); letter-spacing: -1px; }
.hero h1 em { font-style: italic; color: var(--rose-deep); }
.hero-lead { color: var(--muted); font-size: 1.15rem; margin: 24px 0 34px; max-width: 480px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-trust { display: flex; gap: 26px; margin-top: 38px; flex-wrap: wrap; }
.hero-trust div { display: flex; flex-direction: column; }
.hero-trust b { font-family: var(--serif); font-size: 1.7rem; color: var(--ink); font-weight: 600; }
.hero-trust span { font-size: 0.78rem; color: var(--muted); letter-spacing: .5px; }

/* Placeholder de imagem elegante */
.img-ph {
  position: relative; border-radius: var(--radius); overflow: hidden;
  background: linear-gradient(135deg, var(--blush) 0%, var(--blush-light) 55%, var(--cream-2) 100%);
  display: flex; align-items: center; justify-content: center; text-align: center;
  color: var(--rose-deep); min-height: 200px;
}
.img-ph .ph-inner { padding: 20px; }
.img-ph .ph-icon { font-size: 1.6rem; margin-bottom: 8px; opacity: .8; }
.img-ph .ph-label { font-family: var(--sans); font-size: 0.72rem; letter-spacing: 2px; text-transform: uppercase; font-weight: 600; opacity: .8; }
.hero-visual { aspect-ratio: 4/5; box-shadow: var(--shadow); }

/* ---------- Serviços (grid) ---------- */
.grid { display: grid; gap: 26px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 32px; transition: all .28s ease; position: relative; overflow: hidden;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--blush); }
.card .card-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--rose); margin-bottom: 18px; }
.card h3 { font-size: 1.5rem; margin-bottom: 10px; }
.card p { color: var(--muted); font-size: 0.96rem; }
.card .card-link { display: inline-flex; align-items: center; gap: 7px; margin-top: 18px; font-weight: 700; font-size: 0.85rem; color: var(--rose-deep); letter-spacing: .3px; }
.card .card-link:hover { gap: 11px; }
.card--feature { background: linear-gradient(150deg, var(--ink) 0%, #2b2740 100%); color: var(--cream); border-color: transparent; }
.card--feature h3, .card--feature .section-title { color: var(--cream); }
.card--feature p { color: rgba(250,248,245,.75); }
.card--feature .card-dot { background: var(--rose); }

.tag { display: inline-block; font-size: 0.68rem; letter-spacing: 2px; text-transform: uppercase; font-weight: 700; color: var(--rose-deep); background: var(--blush-light); padding: 6px 12px; border-radius: 100px; }

/* ---------- Faixa diferencial ---------- */
.band { background: var(--ink); color: var(--cream); position: relative; overflow: hidden; }
.band::before { content: ''; position: absolute; width: 340px; height: 340px; border-radius: 50%; background: rgba(196,144,152,.18); top: -120px; right: -80px; }
.band .container { position: relative; z-index: 1; }
.band h2, .band .section-title { color: var(--cream); }
.band .section-lead { color: rgba(250,248,245,.78); }
.band .eyebrow { color: var(--rose); }

/* ---------- Passos ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; counter-reset: step; }
.step { position: relative; padding-top: 20px; }
.step .step-num { font-family: var(--serif); font-size: 2.6rem; color: var(--rose); font-weight: 600; line-height: 1; margin-bottom: 12px; }
.step h4 { font-size: 1.25rem; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 0.94rem; }

/* ---------- Preço / Investimento ---------- */
.price-box {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 40px; box-shadow: var(--shadow-sm); text-align: center;
}
.price-box .price-value { font-family: var(--serif); font-size: 3.2rem; color: var(--ink); font-weight: 600; line-height: 1; }
.price-box .price-value small { font-size: 1.1rem; color: var(--muted); font-weight: 400; }
.price-box .price-sub { color: var(--muted); margin-top: 10px; }
.price-list { list-style: none; margin: 24px 0; text-align: left; max-width: 340px; margin-left: auto; margin-right: auto; }
.price-list li { padding: 11px 0; border-bottom: 1px dashed var(--line); display: flex; align-items: flex-start; gap: 10px; color: var(--slate); font-size: 0.95rem; }
.price-list li::before { content: '✦'; color: var(--rose); flex-shrink: 0; }
.price-note { font-size: 0.85rem; color: var(--muted); background: var(--blush-light); border-radius: var(--radius-sm); padding: 14px 18px; margin-top: 8px; }

/* ---------- Lista de benefícios ---------- */
.benefits { list-style: none; display: grid; gap: 16px; }
.benefits li { display: flex; gap: 14px; align-items: flex-start; color: var(--slate); }
.benefits li .bicon { flex-shrink: 0; width: 30px; height: 30px; border-radius: 50%; background: var(--blush-light); color: var(--rose-deep); display: flex; align-items: center; justify-content: center; font-size: 0.9rem; }
.benefits li b { color: var(--ink); font-family: var(--serif); font-weight: 600; font-size: 1.08rem; }

/* ---------- FAQ ---------- */
.faq { max-width: 780px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; text-align: left; background: none; border: none; cursor: pointer; padding: 24px 0; display: flex; justify-content: space-between; align-items: center; gap: 20px; font-family: var(--serif); font-size: 1.25rem; color: var(--ink); font-weight: 500; }
.faq-q .faq-icon { flex-shrink: 0; width: 26px; height: 26px; position: relative; transition: transform .3s; }
.faq-q .faq-icon::before, .faq-q .faq-icon::after { content: ''; position: absolute; background: var(--rose); border-radius: 2px; top: 50%; left: 50%; transform: translate(-50%,-50%); }
.faq-q .faq-icon::before { width: 14px; height: 2px; }
.faq-q .faq-icon::after { width: 2px; height: 14px; transition: transform .3s; }
.faq-item.open .faq-icon::after { transform: translate(-50%,-50%) scaleY(0); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a p { color: var(--muted); padding-bottom: 24px; }

/* ---------- Depoimentos ---------- */
.quote { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; }
.quote .stars { color: var(--rose); letter-spacing: 3px; margin-bottom: 14px; }
.quote p { color: var(--slate); font-style: italic; font-family: var(--serif); font-size: 1.2rem; line-height: 1.5; }
.quote .quote-name { margin-top: 18px; font-family: var(--sans); font-style: normal; font-size: 0.85rem; font-weight: 700; color: var(--ink); }
.quote .quote-name span { color: var(--muted); font-weight: 400; }

/* ---------- CTA final ---------- */
.cta-final { background: linear-gradient(150deg, var(--blush) 0%, var(--cream) 100%); border-radius: var(--radius); padding: 64px 40px; text-align: center; position: relative; overflow: hidden; }
.cta-final h2 { font-size: clamp(2rem, 4vw, 2.8rem); }
.cta-final .section-lead { margin: 18px auto 30px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: var(--cream); padding: 64px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.12); }
.site-footer .brand-name { color: var(--cream); font-size: 1.6rem; }
.site-footer .brand-pre { color: var(--rose); }
.site-footer p { color: rgba(250,248,245,.7); font-size: 0.92rem; margin-top: 14px; max-width: 300px; }
.footer-col h4 { color: var(--cream); font-size: 1rem; font-family: var(--sans); font-weight: 700; letter-spacing: .5px; margin-bottom: 16px; }
.footer-col a, .footer-col span { display: block; color: rgba(250,248,245,.7); font-size: 0.92rem; padding: 5px 0; transition: color .2s; }
.footer-col a:hover { color: var(--rose); }
.footer-bottom { padding-top: 24px; text-align: center; color: rgba(250,248,245,.5); font-size: 0.8rem; }
.footer-bottom a { color: rgba(250,248,245,.7); }

/* ---------- Botão flutuante WhatsApp ---------- */
.wa-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 90;
  display: flex; align-items: center; gap: 10px;
  background: var(--wa); color: #fff; padding: 14px 20px 14px 16px; border-radius: 100px;
  box-shadow: 0 16px 40px -12px rgba(37,211,102,.6); font-weight: 700; font-size: 0.92rem;
  transition: all .25s ease;
}
.wa-float:hover { background: var(--wa-dark); transform: translateY(-3px) scale(1.02); }
.wa-float svg { width: 24px; height: 24px; }
.wa-float .wa-float-txt { max-width: 200px; overflow: hidden; }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Breadcrumb ---------- */
.breadcrumb { font-size: 0.82rem; color: var(--muted); padding: 20px 0 0; }
.breadcrumb a:hover { color: var(--rose-deep); }
.breadcrumb span { margin: 0 8px; opacity: .5; }

/* ---------- Utilidades ---------- */
.mt-0 { margin-top: 0; }
.bg-alt { background: var(--cream-2); }
.text-muted { color: var(--muted); }
.maxw-720 { max-width: 720px; }

/* =========================================================
   Responsivo
   ========================================================= */
@media (max-width: 900px) {
  .hero .container { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { max-width: 420px; }
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; gap: 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }

  .nav-links, .nav-cta .btn { display: none; }
  .nav-toggle { display: block; }
  .nav-links.open {
    display: flex; flex-direction: column; align-items: flex-start; gap: 4px;
    position: absolute; top: 74px; left: 0; right: 0;
    background: var(--white); border-bottom: 1px solid var(--line); padding: 16px 24px 22px;
    box-shadow: var(--shadow-sm);
  }
  .nav-links.open a { width: 100%; padding: 12px 0; border-bottom: 1px solid var(--line); }
  .nav-links.open .has-dropdown { width: 100%; }
  .nav-links.open .dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; padding: 0 0 0 14px; min-width: auto; }
}

@media (max-width: 560px) {
  .section { padding: 64px 0; }
  .grid-3, .grid-4, .grid-2 { grid-template-columns: 1fr; }
  .hero { padding: 60px 0 56px; }
  .hero-trust { gap: 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .price-box, .cta-final { padding: 34px 22px; }
  .wa-float .wa-float-txt { display: none; }
  .wa-float { padding: 15px; }
  .container { padding: 0 18px; }
}


/* ---------- Instagram embeds ---------- */
.ig-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(296px,1fr)); gap:22px; margin-top:44px; justify-items:center; align-items:start; }
.ig-grid .instagram-media { margin:0 auto !important; min-width:auto !important; width:100% !important; max-width:340px !important; }
.ig-single { max-width:340px; margin:0 auto; width:100%; }
.ig-single .instagram-media { margin:0 auto !important; min-width:auto !important; width:100% !important; max-width:340px !important; }

/* ---------- Imagens reais ---------- */
.media-frame { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.media-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }
.media-frame.ar-45 { aspect-ratio: 4/5; }
.media-frame.ar-11 { aspect-ratio: 1/1; }

/* ---------- Antes e Depois ---------- */
.ba-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; margin-top: 44px; }
.ba-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.ba-imgs { display: grid; grid-template-columns: 1fr 1fr; }
.ba-imgs figure { position: relative; margin: 0; aspect-ratio: 4/5; }
.ba-imgs img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ba-imgs figcaption { position: absolute; top: 10px; left: 10px; font-family: var(--sans); font-size: 0.6rem; letter-spacing: 1.5px; text-transform: uppercase; font-weight: 700; background: rgba(30,27,46,.72); color: #fff; padding: 4px 10px; border-radius: 100px; }
@media (max-width: 560px) { .ba-grid { grid-template-columns: 1fr; } }

/* ---------- Marca / monograma no cabeçalho e rodapé ---------- */
.brand { flex-direction: row; align-items: center; gap: 11px; }
.brand-mark { width: 44px; height: 44px; flex-shrink: 0; display: block; }
.brand-txt { display: flex; flex-direction: column; line-height: 1; }
.site-footer .brand { align-items: center; }
.site-footer .brand-mark { width: 48px; height: 48px; }
@media (max-width: 560px){ .brand-mark { width: 38px; height: 38px; } }

/* Micropigmentação Permanente como linha de apoio, abaixo do nome */
.brand-txt .brand-pre { margin: 5px 0 0; }
.brand-txt .brand-name { margin: 0; }

/* ---------- Avaliações do Google (carrossel) ---------- */
.reviews-sec{overflow:hidden}
.rev-badge{display:inline-flex;align-items:center;gap:9px;margin-top:20px;font-size:.92rem;font-weight:700;color:var(--slate);background:#fff;border:1px solid var(--line);padding:10px 18px;border-radius:100px;box-shadow:var(--shadow-sm);flex-wrap:wrap;justify-content:center}
.rev-badge strong{font-size:1.05rem;color:var(--ink)}
.rev-badge .stars{color:#F5A623;letter-spacing:1px}
.rev-badge .rev-badge-txt{color:var(--muted);font-weight:600;font-size:.8rem}
.g{width:20px;height:20px;flex-shrink:0}
.rev-marquee{margin-top:44px;position:relative;
  -webkit-mask:linear-gradient(90deg,transparent,#000 7%,#000 93%,transparent);
  mask:linear-gradient(90deg,transparent,#000 7%,#000 93%,transparent)}
.rev-track{display:flex;gap:22px;width:max-content;animation:marquee 70s linear infinite}
.rev-marquee:hover .rev-track{animation-play-state:paused}
@keyframes marquee{from{transform:translateX(0)}to{transform:translateX(-50%)}}
.rev-card{flex:0 0 330px;width:330px;background:#fff;border:1px solid var(--line);border-radius:18px;padding:24px;
  box-shadow:var(--shadow-sm);transition:transform .28s ease,box-shadow .28s ease,border-color .28s ease}
.rev-card:hover{transform:translateY(-6px);box-shadow:var(--shadow);border-color:var(--blush)}
.rev-head{display:flex;align-items:center;gap:12px}
.rev-av{width:44px;height:44px;border-radius:50%;display:flex;align-items:center;justify-content:center;color:#fff;
  font-family:var(--serif);font-weight:600;font-size:1.25rem;flex-shrink:0}
.rev-name{font-weight:700;font-size:.95rem;color:var(--ink);display:block;line-height:1.2}
.rev-sub{font-size:.72rem;color:var(--muted);display:flex;align-items:center;gap:5px;margin-top:2px}
.rev-sub .g{width:13px;height:13px}
.rev-stars{color:#F5A623;letter-spacing:2px;margin:14px 0 9px;font-size:1rem}
.rev-text{color:var(--slate);font-size:.9rem;line-height:1.55}
.rev-time{display:block;margin-top:14px;font-size:.72rem;color:var(--mauve);font-weight:600}
@media (prefers-reduced-motion:reduce){
  .rev-track{animation:none;flex-wrap:wrap;justify-content:center;width:auto;max-width:1100px;margin:0 auto}
  .rev-marquee{-webkit-mask:none;mask:none}
}
