/* ══════════════════════════════════════════
   BeYou Beauty Concept – CSS Compartilhado
   Usado em TODAS as páginas do site
   ══════════════════════════════════════════ */

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

:root {
  --orange:      #E8640A;
  --orange-lt:   #F7943A;
  --nude:        #F5E8DC;
  --brown:       #3A1F1A;
  --brown-mid:   #6B3A30;
  --cream:       #FDF7F2;
  --text:        #2A1510;
  --gold:        #C9922A;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--nude); }
::-webkit-scrollbar-thumb { background: var(--orange); border-radius: 3px; }

/* ── NAVBAR ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5vw; height: 68px;
  background: rgba(253,247,242,0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(232,100,10,0.15);
  transition: box-shadow .3s;
}
nav.scrolled { box-shadow: 0 4px 24px rgba(58,31,26,.12); }

.nav-logo img { height: 44px; width: auto; display: block; }

.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  font-size: .85rem; font-weight: 500; letter-spacing: .07em;
  text-transform: uppercase; color: var(--brown-mid);
  text-decoration: none; position: relative; padding-bottom: 3px;
  transition: color .25s;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 2px; background: var(--orange);
  transition: width .3s ease;
}
.nav-links a:hover { color: var(--orange); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--orange); }
.nav-links a.active::after { width: 100%; }

.nav-cta {
  background: var(--orange); color: #fff !important;
  padding: .5rem 1.3rem; border-radius: 100px;
  font-size: .82rem; font-weight: 600;
  text-decoration: none; transition: background .25s, transform .2s;
}
.nav-cta:hover { background: var(--brown) !important; transform: scale(1.04); }
.nav-cta::after { display: none !important; }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 4px;
}
.hamburger span { display: block; width: 24px; height: 2px; background: var(--brown); border-radius: 2px; transition: .3s; }

.mobile-menu {
  display: none; position: fixed;
  top: 68px; left: 0; right: 0;
  background: rgba(253,247,242,.97); backdrop-filter: blur(14px);
  padding: 1.5rem 5vw 2rem; z-index: 99;
  border-bottom: 1px solid rgba(232,100,10,.15);
  flex-direction: column; gap: 1rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 1rem; font-weight: 500; color: var(--brown);
  text-decoration: none; padding: .5rem 0;
  border-bottom: 1px solid rgba(58,31,26,.07);
}

/* ── BREADCRUMB ── */
.breadcrumb {
  padding: 5.5rem 5vw 0;
  font-size: .8rem; color: var(--brown-mid);
}
.breadcrumb a { color: var(--orange); text-decoration: none; }
.breadcrumb span { margin: 0 .4rem; color: var(--brown-mid); }

/* ── BOTÕES ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: .55rem;
  background: var(--orange); color: #fff;
  font-weight: 600; font-size: 1rem;
  padding: .9rem 2rem; border-radius: 100px;
  text-decoration: none;
  transition: background .25s, transform .2s, box-shadow .25s;
  box-shadow: 0 8px 28px rgba(232,100,10,.35);
}
.btn-primary:hover { background: var(--brown); transform: translateY(-2px); box-shadow: 0 12px 36px rgba(232,100,10,.45); }

.btn-secondary {
  display: inline-flex; align-items: center; gap: .5rem;
  background: transparent; color: var(--orange);
  font-weight: 600; font-size: .95rem;
  padding: .9rem 2rem; border-radius: 100px;
  text-decoration: none; border: 2px solid var(--orange);
  transition: background .25s, color .25s, transform .2s;
}
.btn-secondary:hover { background: var(--orange); color: #fff; transform: translateY(-2px); }

/* ── SECTION SHARED ── */
.section-tag {
  font-size: .75rem; font-weight: 600; letter-spacing: .22em;
  text-transform: uppercase; color: var(--orange);
  margin-bottom: .7rem; display: block;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 700; line-height: 1.15; color: var(--brown);
}
.section-title em { font-style: italic; color: var(--orange); }

/* ── STATS BAND ── */
.stats-band {
  background: var(--brown); padding: 2.8rem 5vw;
  display: flex; justify-content: center;
  gap: clamp(1.5rem, 5vw, 5rem); flex-wrap: wrap;
}
.stat { text-align: center; }
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem; font-weight: 900;
  color: var(--orange-lt); line-height: 1;
}
.stat-label { font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.6); margin-top: .3rem; }

/* ── HERO INTERNO (páginas de serviço) ── */
.page-hero {
  position: relative; min-height: 52vh;
  display: flex; align-items: flex-end;
  overflow: hidden; margin-top: 68px;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(58,31,26,.92) 0%, rgba(58,31,26,.35) 60%, transparent 100%);
}
.page-hero-content {
  position: relative; z-index: 2;
  padding: 3rem 5vw 3.5rem; max-width: 760px;
}
.page-hero-tag {
  font-size: .72rem; font-weight: 600; letter-spacing: .2em;
  text-transform: uppercase; color: var(--orange-lt);
  margin-bottom: .8rem; display: block;
}
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900; line-height: 1.1; color: #fff;
  margin-bottom: 1rem;
}
.page-hero h1 em { font-style: italic; color: var(--orange-lt); }
.page-hero-desc { font-size: 1rem; color: rgba(255,255,255,.78); max-width: 500px; line-height: 1.7; margin-bottom: 1.8rem; }

/* ── SERVIÇOS GRID (páginas internas) ── */
.services-section { padding: 5rem 5vw; max-width: 1200px; margin: 0 auto; }
.services-intro { max-width: 900px; margin-bottom: 3.5rem; }
.services-intro .section-title { margin-bottom: .8rem; }
.services-intro p { color: var(--brown-mid); line-height: 1.75; }

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: #fff; border-radius: 18px;
  overflow: hidden; border: 1px solid rgba(58,31,26,.08);
  transition: transform .3s, box-shadow .3s;
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(58,31,26,.12); }

.card-icon {
  background: var(--nude); padding: 2rem 2rem 1.2rem;
  font-size: 2.2rem;
}
.card-body { padding: 1.4rem 2rem 2rem; }
.card-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem; font-weight: 700;
  color: var(--brown); margin-bottom: .5rem;
}
.card-body p { font-size: .9rem; color: var(--brown-mid); line-height: 1.7; margin-bottom: 1.2rem; }
.card-tag {
  display: inline-block; font-size: .7rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--orange); background: rgba(232,100,10,.08);
  padding: .3rem .9rem; border-radius: 100px;
}

/* ── TEXTO SEO ── */
.seo-section {
  background: #fff; padding: 5rem 5vw;
}
.seo-inner { max-width: 820px; margin: 0 auto; }
.seo-inner .section-title { margin-bottom: 2rem; }
.seo-inner p { color: var(--brown-mid); line-height: 1.85; margin-bottom: 1.3rem; font-size: .97rem; }
.seo-inner strong { color: var(--brown); font-weight: 600; }

/* ── CTA SECTION ── */
.cta-section {
  background: var(--brown); padding: 5.5rem 5vw; text-align: center;
}
.cta-section .section-tag { color: rgba(255,255,255,.6); }
.cta-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 900;
  color: #fff; margin-bottom: 1rem; line-height: 1.15;
}
.cta-section h2 em { font-style: italic; color: var(--orange-lt); }
.cta-section p { color: rgba(255,255,255,.72); max-width: 500px; margin: 0 auto 2.2rem; line-height: 1.7; }
.cta-section .btn-primary { background: var(--orange); }
.cta-section .btn-primary:hover { background: var(--orange-lt); }

/* ── FOOTER ── */
footer {
  background: var(--brown); color: rgba(255,255,255,.7);
  padding: 4rem 5vw 2.5rem;
  border-top: 1px solid rgba(255,255,255,.07);
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr;
  gap: 3rem; margin-bottom: 3rem;
}
.footer-logo { height: 48px; width: auto; }
.footer-brand p { font-size: .9rem; line-height: 1.7; max-width: 260px; margin-top: 1rem; }
.footer-col h4 { font-family: 'Playfair Display', serif; color: #fff; font-size: 1rem; margin-bottom: 1.2rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .6rem; }
.footer-col ul a { color: rgba(255,255,255,.65); text-decoration: none; font-size: .88rem; transition: color .2s; }
.footer-col ul a:hover { color: var(--orange-lt); }
.footer-col p { font-size: .88rem; line-height: 1.8; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1); padding-top: 2rem;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem; font-size: .8rem; color: rgba(255,255,255,.4);
}

/* ── WHATSAPP FLOAT ── */
.wa-float {
  position: fixed; bottom: 1.8rem; right: 1.8rem;
  width: 58px; height: 58px; background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,.4); z-index: 200;
  transition: transform .25s, box-shadow .25s; text-decoration: none;
}
.wa-float:hover { transform: scale(1.1) rotate(-5deg); box-shadow: 0 10px 32px rgba(37,211,102,.5); }
.wa-float svg { width: 30px; height: 30px; fill: #fff; }

/* ── ANIMATIONS ── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 580px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
