/* Unic Beleza e Spa — main.css v1 */
:root {
  --verde: #4d5e4d;
  --verde-escuro: #3a483a;
  --verde-claro: #6b7d6b;
  --dourado: #b3946e;
  --dourado-claro: #c9ac85;
  --creme: #f4f1e8;
  --off: #faf8f3;
  --branco: #ffffff;
  --texto: #2e352e;
  --texto-suave: #5a635a;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Jost', 'Segoe UI', sans-serif;
  --sombra: 0 8px 30px rgba(46, 53, 46, .10);
  --sombra-hover: 0 16px 44px rgba(46, 53, 46, .18);
  --radius: 18px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  color: var(--texto);
  background: var(--off);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--verde); text-decoration: none; }
h1, h2, h3 { font-family: var(--serif); font-weight: 600; line-height: 1.15; color: var(--verde-escuro); }
h1 { font-size: clamp(2.3rem, 5.5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); }
h3 { font-size: 1.25rem; }
h1 em { font-style: italic; color: var(--dourado); }

.container { max-width: 1180px; margin: 0 auto; padding: 0 22px; }
.container.narrow { max-width: 780px; }
.container.narrow p + p { margin-top: 1.1em; }

.eyebrow {
  font-size: .8rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--dourado); font-weight: 600; margin-bottom: .8rem;
}
.eyebrow-gold { color: var(--dourado-claro); }

/* ===== Botões ===== */
.btn {
  display: inline-block; padding: 13px 28px; border-radius: 999px;
  font-weight: 500; font-size: .95rem; letter-spacing: .02em;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
  min-height: 44px; text-align: center;
}
.btn:hover { transform: translateY(-3px); box-shadow: var(--sombra-hover); }
.btn-lg { padding: 16px 34px; font-size: 1rem; }
.btn-gold { background: var(--dourado); color: #fff; }
.btn-gold:hover { background: var(--dourado-claro); color: #fff; }
.btn-green { background: var(--verde); color: #fff; }
.btn-green:hover { background: var(--verde-escuro); color: #fff; }
.btn-outline { border: 1.5px solid var(--verde); color: var(--verde); background: transparent; }
.btn-outline:hover { background: var(--verde); color: #fff; }

/* ===== Header ===== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  border-bottom: 1px solid rgba(77, 94, 77, .10);
  transition: box-shadow .3s ease, padding .3s ease;
}
/* blur em pseudo-elemento: backdrop-filter no proprio header viraria
   containing block e quebraria o position:fixed do drawer mobile */
.site-header::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: rgba(250, 248, 243, .92); backdrop-filter: blur(12px);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 22px; transition: padding .3s ease; }
.site-header.shrink .header-inner { padding: 8px 22px; }
.site-header.shrink { box-shadow: 0 4px 20px rgba(46, 53, 46, .08); }
.brand { display: flex; align-items: center; gap: 12px; }
.brand-logo { border-radius: 50%; width: 48px; height: 48px; object-fit: cover; }
.brand-text { font-family: var(--serif); font-size: 1.25rem; color: var(--verde-escuro); letter-spacing: .04em; }
.brand-text strong { font-weight: 700; }
.main-nav { display: flex; align-items: center; gap: 28px; }
.main-nav a:not(.btn) {
  font-size: .95rem; font-weight: 500; color: var(--texto);
  position: relative; padding: 4px 0;
}
.main-nav a:not(.btn)::after {
  content: ''; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px;
  background: var(--dourado); transition: width .25s ease;
}
.main-nav a:not(.btn):hover::after, .main-nav a.active::after { width: 100%; }
.nav-cta { padding: 10px 22px; }
.drop-arrow { font-size: .65em; opacity: .7; }
.nav-drop { position: relative; }
.nav-drop > a { display: inline-block; }
.nav-drop-menu {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
  background: var(--branco); border-radius: 16px; box-shadow: var(--sombra-hover);
  padding: 16px 0; min-width: 310px; z-index: 120;
  opacity: 0; visibility: hidden; translate: 0 8px;
  transition: opacity .25s ease, translate .25s ease, visibility .25s;
}
.nav-drop:hover .nav-drop-menu, .nav-drop:focus-within .nav-drop-menu {
  opacity: 1; visibility: visible; translate: 0 0;
}
.main-nav .nav-drop-menu a:not(.btn) {
  display: block; padding: 13px 36px; font-size: .95rem; font-weight: 500;
  line-height: 1.4; color: var(--texto); transition: background .2s ease, color .2s ease;
}
.main-nav .nav-drop-menu a + a { border-top: 1px solid rgba(77, 94, 77, .08); }
.main-nav .nav-drop-menu a:not(.btn)::after { display: none; }
.main-nav .nav-drop-menu a:not(.btn):hover { background: var(--creme); color: var(--verde-escuro); }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 10px; }
.nav-toggle span { display: block; width: 26px; height: 2.5px; background: var(--verde-escuro); margin: 5px 0; border-radius: 2px; transition: .3s; }

/* ===== Hero ===== */
.hero { padding: 150px 0 70px; background: linear-gradient(180deg, var(--creme) 0%, var(--off) 100%); }
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: center; }
.hero-sub { font-size: 1.12rem; color: var(--texto-suave); margin: 1.2rem 0 1.8rem; max-width: 34rem; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-badges { display: flex; gap: 22px; flex-wrap: wrap; margin-top: 1.6rem; font-size: .9rem; color: var(--verde); font-weight: 500; }
.hero-media { position: relative; }
.hero-media img {
  border-radius: var(--radius); box-shadow: var(--sombra-hover);
  width: 100%; height: auto; max-height: 560px; object-fit: cover; object-position: top;
}
.hero-media::before {
  content: ''; position: absolute; inset: -16px 16px 16px -16px;
  border: 2px solid var(--dourado); border-radius: var(--radius); z-index: -1;
}

/* ===== Strip / marquee ===== */
.strip { background: var(--verde-escuro); overflow: hidden; padding: 14px 0; }
.strip-track {
  display: flex; gap: 34px; white-space: nowrap; width: max-content;
  animation: marquee 28s linear infinite;
  font-family: var(--serif); font-size: 1.1rem; color: var(--creme); font-style: italic;
}
.strip-track span:nth-child(even) { color: var(--dourado-claro); font-style: normal; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ===== Sections ===== */
.section { padding: 84px 0; }
.section-alt { background: var(--creme); }
.section-dark { background: var(--verde-escuro); }
.section-dark h2, .section-dark h3 { color: var(--creme); }
.section-dark p, .section-dark li { color: rgba(244, 241, 232, .85); }
.section-head { max-width: 640px; margin: 0 auto 48px; text-align: center; }
.section-head p { color: var(--texto-suave); margin-top: .8rem; }

/* ===== Serviços grid ===== */
.serv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.serv-card {
  background: var(--branco); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--sombra); transition: transform .3s ease, box-shadow .3s ease;
  display: flex; flex-direction: column;
}
.serv-card:hover { transform: translateY(-4px); box-shadow: var(--sombra-hover); }
.serv-img { height: 220px; overflow: hidden; }
.serv-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.serv-card:hover .serv-img img { transform: scale(1.06); }
.serv-body { padding: 24px 26px 28px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.serv-body p { color: var(--texto-suave); font-size: .95rem; flex: 1; }
.serv-link { color: var(--dourado); font-weight: 600; font-size: .92rem; letter-spacing: .03em; }
.serv-card:hover .serv-link { color: var(--verde); }

/* ===== Sobre ===== */
.about-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 60px; align-items: center; }
.about-media img { border-radius: var(--radius); box-shadow: var(--sombra-hover); max-height: 520px; width: 100%; object-fit: cover; }
.about-text p { color: var(--texto-suave); margin-bottom: 1rem; }
.about-text .btn { margin-top: .6rem; }

/* ===== Experiência (dark) ===== */
.exp-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 60px; align-items: center; }
.exp-list { list-style: none; margin: 1.4rem 0 1.8rem; }
.exp-list li { padding: 10px 0 10px 30px; position: relative; }
.exp-list li::before { content: '✦'; position: absolute; left: 0; color: var(--dourado-claro); }
.exp-list strong { color: var(--creme); }
.exp-media { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.exp-media img { border-radius: var(--radius); height: 320px; width: 100%; object-fit: cover; }
.exp-media img:last-child { margin-top: 36px; }

/* ===== CTA banner ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--verde) 0%, var(--verde-escuro) 100%);
  padding: 72px 0; text-align: center;
}
.cta-banner h2 { color: var(--creme); }
.cta-banner p { color: rgba(244, 241, 232, .85); margin: 1rem auto 1.8rem; max-width: 540px; }

/* ===== Contato ===== */
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 44px; align-items: start; }
.contact-info h3 { margin: 1.3rem 0 .3rem; font-size: 1.1rem; }
.contact-info h3:first-child { margin-top: 0; }
.contact-info p { color: var(--texto-suave); }
.contact-info .btn { margin-top: 1.6rem; }
.contact-map iframe { border-radius: var(--radius); box-shadow: var(--sombra); width: 100%; }

/* ===== Page hero (serviços/blog) ===== */
.page-hero { padding: 150px 0 70px; background: linear-gradient(160deg, var(--verde-escuro) 0%, var(--verde) 100%); }
.page-hero h1 { color: var(--creme); }
.page-hero .hero-sub { color: rgba(244, 241, 232, .85); }
.page-hero .hero-badges { color: var(--dourado-claro); }
.page-hero-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 56px; align-items: center; }
.page-hero-media img { border-radius: var(--radius); box-shadow: 0 20px 50px rgba(0, 0, 0, .35); max-height: 480px; width: 100%; object-fit: cover; object-position: top; }
.page-hero-slim { padding: 140px 0 56px; }
.breadcrumb { font-size: .85rem; margin-bottom: 1.2rem; color: rgba(244, 241, 232, .7); }
.breadcrumb a { color: var(--dourado-claro); }
.breadcrumb span { margin: 0 6px; }
.breadcrumb strong { color: var(--creme); font-weight: 500; }

/* ===== Benefícios ===== */
.ben-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 22px; }
.ben-card {
  background: var(--branco); border-radius: var(--radius); padding: 28px 26px;
  box-shadow: var(--sombra); transition: transform .3s ease, box-shadow .3s ease;
  border-top: 3px solid var(--dourado);
}
.ben-card:hover { transform: translateY(-4px); box-shadow: var(--sombra-hover); }
.ben-card p { color: var(--texto-suave); font-size: .95rem; margin-top: .5rem; }

/* ===== Passos ===== */
.steps { display: flex; flex-direction: column; gap: 26px; }
.step { display: flex; gap: 20px; align-items: flex-start; }
.step-num {
  flex: 0 0 46px; height: 46px; border-radius: 50%; background: var(--verde);
  color: var(--creme); font-family: var(--serif); font-size: 1.3rem; font-weight: 600;
  display: flex; align-items: center; justify-content: center;
}
.step p { color: var(--texto-suave); }

/* ===== Outros serviços ===== */
.outros-nav { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.outros-nav a {
  padding: 10px 22px; border-radius: 999px; background: var(--branco);
  border: 1px solid rgba(77, 94, 77, .18); font-size: .92rem; font-weight: 500;
  transition: all .25s ease;
}
.outros-nav a:hover { background: var(--verde); color: #fff; transform: translateY(-2px); }

/* ===== Blog ===== */
.posts-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 26px; }
.blog-empty { text-align: center; color: var(--texto-suave); padding: 30px 0; }
.post-card {
  background: var(--branco); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--sombra); transition: transform .3s ease, box-shadow .3s ease;
  display: flex; flex-direction: column;
}
.post-card:hover { transform: translateY(-4px); box-shadow: var(--sombra-hover); }
.post-card-img { height: 200px; overflow: hidden; }
.post-card-img img { width: 100%; height: 100%; object-fit: cover; }
.post-card-body { padding: 22px 24px 26px; }
.post-card-body h3 { margin-bottom: .5rem; }
.post-card-body p { color: var(--texto-suave); font-size: .93rem; }
.post-card-meta { font-size: .8rem; color: var(--dourado); font-weight: 600; letter-spacing: .05em; text-transform: uppercase; margin-bottom: .6rem; display: block; }

/* ===== Footer ===== */
.site-footer { background: var(--verde-escuro); color: rgba(244, 241, 232, .8); }
.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 48px; padding: 64px 22px 44px; }
.footer-col h3 { color: var(--creme); font-size: 1.15rem; margin-bottom: .8rem; }
.footer-col h3:not(:first-child) { margin-top: 1.4rem; }
.footer-col p { font-size: .93rem; }
.footer-brand img { border-radius: 0; margin-bottom: 14px; }
.footer-brand p { max-width: 280px; }
.footer-ig { display: inline-flex; align-items: center; gap: 8px; color: var(--dourado-claro); margin-top: 12px; font-size: .93rem; }
.footer-nav { display: flex; flex-direction: column; gap: 8px; }
.footer-nav a, .footer-col a { color: rgba(244, 241, 232, .8); font-size: .93rem; transition: color .2s; }
.footer-nav a:hover, .footer-col a:hover { color: var(--dourado-claro); }
.footer-bottom { border-top: 1px solid rgba(244, 241, 232, .15); padding: 20px 0; }
.footer-bottom .container { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; font-size: .85rem; }
.footer-bottom a { color: var(--dourado-claro); }

/* ===== WhatsApp float ===== */
.wa-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 90;
  width: 58px; height: 58px; border-radius: 50%; background: #25d366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, .45);
  transition: transform .25s ease;
}
.wa-float:hover { transform: scale(1.1); color: #fff; }

/* ===== Reveal animations ===== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .strip-track { animation: none; }
}

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .hero-grid, .about-grid, .exp-grid, .page-hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .serv-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-media { max-width: 480px; }
  .page-hero-media { max-width: 420px; }
}
@media (max-width: 720px) {
  .main-nav {
    position: fixed; top: 0; right: 0; bottom: 0; width: min(78vw, 320px);
    background: var(--verde-escuro); flex-direction: column; align-items: flex-start;
    padding: 84px 32px 32px; gap: 16px; transform: translateX(100%);
    transition: transform .35s ease; box-shadow: -10px 0 40px rgba(0, 0, 0, .2);
    overflow-y: auto;
  }
  .main-nav a:not(.btn) { color: var(--creme); font-size: 1.1rem; }
  /* drawer: dropdown vira lista aberta */
  .nav-drop { position: static; width: 100%; }
  .nav-drop-menu {
    position: static; opacity: 1; visibility: visible; translate: none;
    transform: none; background: transparent; box-shadow: none;
    min-width: 0; padding: 12px 0 4px 24px; display: flex; flex-direction: column; gap: 16px;
    border-left: 1px solid rgba(244, 241, 232, .25); margin: 8px 0 0 6px;
  }
  .main-nav .nav-drop-menu a:not(.btn) { padding: 0; font-size: .95rem; color: rgba(244, 241, 232, .85); border-top: none; }
  .main-nav .nav-drop-menu a:not(.btn):hover { background: transparent; color: var(--dourado-claro); }
  body.nav-open .main-nav { transform: translateX(0); }
  .nav-toggle { display: block; z-index: 110; }
  body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); background: var(--creme); }
  body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
  body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); background: var(--creme); }
  .hero { padding: 120px 0 56px; }
  .page-hero { padding: 120px 0 56px; }
  .section { padding: 60px 0; }
  .serv-grid { grid-template-columns: 1fr; }
  .exp-media img:last-child { margin-top: 0; }
  .exp-media img { height: 240px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; padding: 48px 22px 36px; }
  .footer-bottom .container { flex-direction: column; text-align: center; }
  .hero-ctas .btn { width: 100%; }
  .brand-text { font-size: 1.05rem; }
}

/* ===== Prose (posts do blog) ===== */
.prose { max-width: 760px; margin: 0 auto; }
.prose h2 { margin: 2.2rem 0 .9rem; font-size: 1.75rem; }
.prose h3 { margin: 1.8rem 0 .7rem; }
.prose p { margin-bottom: 1.1rem; color: var(--texto); }
.prose ul, .prose ol { margin: 0 0 1.2rem 1.4rem; }
.prose li { margin-bottom: .4rem; }
.prose img { border-radius: var(--radius); margin: 1.6rem auto; box-shadow: var(--sombra); }
.prose a { text-decoration: underline; text-underline-offset: 3px; }
.prose blockquote { border-left: 3px solid var(--dourado); padding: .4rem 0 .4rem 1.2rem; margin: 1.4rem 0; font-family: var(--serif); font-size: 1.15rem; font-style: italic; color: var(--verde-escuro); }
.post-meta { font-size: .85rem; color: rgba(244,241,232,.75); margin-top: .8rem; }
.post-cta { background: var(--branco); border-radius: var(--radius); box-shadow: var(--sombra); padding: 34px 30px; max-width: 760px; margin: 3rem auto 0; text-align: center; border-top: 3px solid var(--dourado); }
.post-cta p { color: var(--texto-suave); margin: .6rem 0 1.2rem; }
.post-autor { max-width: 760px; margin: 2.5rem auto 0; padding-top: 1.6rem; border-top: 1px solid rgba(77,94,77,.15); display: flex; gap: 16px; align-items: center; }
.post-autor img { width: 60px; height: 60px; border-radius: 50%; object-fit: cover; }
.post-autor span { font-size: .85rem; color: var(--texto-suave); }
.post-card time { font-size: .8rem; color: var(--dourado); font-weight: 600; letter-spacing: .05em; text-transform: uppercase; display: block; margin-bottom: .5rem; }
.post-card > a > img { width: 100%; height: 200px; object-fit: cover; }

/* ===== Vídeo do serviço ===== */
.section-video { padding-top: 0; padding-bottom: 64px; }
.video-head { margin-bottom: 28px; }
.video-wrap {
  max-width: 320px;
  margin: 0 auto;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--sombra);
  background: var(--verde-escuro);
  line-height: 0;
}
.video-wrap video { width: 100%; height: auto; display: block; }
@media (max-width: 520px) {
  .video-wrap { max-width: 260px; }
  .section-video { padding-bottom: 48px; }
}
