/* ============================================
   VALQUIRIA DE SOUZA DA SILVA
   Cabeleireiros, Manicure & Pedicure
   Aesthetic: Warm Rose Gold — Feminine Luxury
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Jost:wght@300;400;500;600&display=swap');

:root {
  --rose:        #C4687A;
  --rose-deep:   #A3485A;
  --rose-pale:   #F2D5DA;
  --blush:       #F9EEF0;
  --gold:        #C9A96E;
  --gold-light:  #E8D0A8;
  --brown:       #4A2E2E;
  --warm-white:  #FDFAF8;
  --cream:       #F7F1EC;
  --text:        #2E1F1F;
  --text-muted:  #7A5C5C;
  --border:      #EDD8D4;
  --font-display:'Libre Baskerville', Georgia, serif;
  --font-body:   'Jost', sans-serif;
  --radius:      2px;
  --shadow:      0 4px 24px rgba(164,72,90,0.08);
  --shadow-lg:   0 16px 56px rgba(164,72,90,0.13);
  --transition:  all 0.35s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--warm-white);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--rose); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--rose-deep); }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container { max-width: 1120px; margin: 0 auto; padding: 0 2rem; }
.content-narrow { max-width: 800px; }

h1, h2, h3 { font-family: var(--font-display); line-height: 1.2; }
h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 400; }
h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 400; margin-bottom: 1.2rem; }
h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 0.6rem; }
p { margin-bottom: 1rem; }
em { font-style: italic; color: var(--rose); }
strong { font-weight: 600; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 1rem;
}
.section-label::before {
  content: '✦';
  font-size: 0.55rem;
  color: var(--gold);
}
.section-label.light { color: var(--rose-pale); }
.section-label.light::before { color: var(--gold-light); }

/* BUTTONS */
.btn-primary {
  display: inline-block;
  background: var(--rose);
  color: #fff;
  padding: 0.9rem 2.4rem;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 30px;
  border: 2px solid var(--rose);
  transition: var(--transition);
}
.btn-primary:hover { background: var(--rose-deep); border-color: var(--rose-deep); color: #fff; }
.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--rose);
  padding: 0.9rem 2.4rem;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 2px solid var(--rose);
  border-radius: 30px;
  transition: var(--transition);
}
.btn-outline:hover { background: var(--rose); color: #fff; }
.btn-outline-light {
  display: inline-block;
  background: transparent;
  color: #fff;
  padding: 0.9rem 2.4rem;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: 30px;
  transition: var(--transition);
  margin-top: 1.5rem;
}
.btn-outline-light:hover { border-color: #fff; background: rgba(255,255,255,0.12); color: #fff; }

/* ============================================
   HEADER
   ============================================ */
.site-header {
  position: sticky;
  top: 0; z-index: 100;
  background: var(--warm-white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 20px rgba(164,72,90,0.06);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 0;
  gap: 1rem;
}
.logo { display: flex; flex-direction: column; line-height: 1.15; }
.logo-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--brown);
  letter-spacing: 0.02em;
}
.logo-sub {
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rose);
}
.main-nav ul { display: flex; gap: 2rem; align-items: center; }
.main-nav a {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  position: relative;
}
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--rose);
  transition: width 0.3s ease;
}
.main-nav a:hover::after, .main-nav a.active::after { width: 100%; }
.main-nav a:hover, .main-nav a.active { color: var(--rose-deep); }
.nav-cta {
  background: var(--rose) !important;
  color: #fff !important;
  padding: 0.5rem 1.4rem;
  border-radius: 30px;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--rose-deep) !important; }
.menu-toggle { display: none; background: none; border: none; font-size: 1.5rem; cursor: pointer; color: var(--brown); }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--brown);
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 65% 35%, rgba(196,104,122,0.4) 0%, transparent 55%),
    radial-gradient(ellipse at 15% 80%, rgba(201,169,110,0.2) 0%, transparent 50%),
    linear-gradient(145deg, #4A2E2E 0%, #2E1F1F 60%, #3d2525 100%);
}
.hero-petal {
  position: absolute;
  border-radius: 50% 0 50% 0;
  opacity: 0.07;
  pointer-events: none;
}
.hero-petal-1 { width: 420px; height: 420px; background: var(--rose-pale); top: -80px; right: 12%; transform: rotate(30deg); }
.hero-petal-2 { width: 260px; height: 260px; background: var(--gold-light); bottom: 8%; right: 28%; transform: rotate(-20deg); }
.hero-petal-3 { width: 180px; height: 180px; background: var(--rose-pale); top: 42%; left: 52%; transform: rotate(60deg); }

.hero-content {
  position: relative; z-index: 2;
  color: #fff;
  max-width: 660px;
  padding: 5rem 0;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
}
.hero-tag::before { content: '✦'; color: var(--gold); font-size: 0.6rem; }
.hero-content h1 { color: #fff; font-weight: 400; margin-bottom: 0.3rem; }
.hero-content h1 em {
  display: block;
  font-style: italic;
  color: var(--gold-light);
  font-size: 0.52em;
  font-weight: 400;
  letter-spacing: 0.06em;
  margin-top: 0.3rem;
}
.hero-content p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.72);
  margin: 1.6rem 0 2.2rem;
  max-width: 480px;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero .btn-primary { background: var(--rose); border-color: var(--rose); }
.hero .btn-primary:hover { background: var(--gold); border-color: var(--gold); }
.hero .btn-outline { border-color: rgba(255,255,255,0.4); color: #fff; }
.hero .btn-outline:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.7); }
.hero-scroll {
  position: absolute; bottom: 2.5rem; left: 50%;
  transform: translateX(-50%); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 0.4rem;
}
.hero-scroll span {
  font-size: 0.62rem; font-weight: 600; letter-spacing: 0.15em;
  text-transform: uppercase; color: rgba(255,255,255,0.35);
}
.hero-scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.3), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 0.8; transform: scaleY(1.2); }
}

/* ============================================
   SERVICES STRIP
   ============================================ */
.services-strip { background: var(--blush); border-bottom: 1px solid var(--border); padding: 3.5rem 0; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.service-card {
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
  transition: var(--transition);
}
.service-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.service-icon { font-size: 2.2rem; margin-bottom: 0.8rem; }
.service-card h3 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 0.4rem;
}
.service-card p { font-size: 0.9rem; color: var(--text-muted); margin: 0; }

/* ============================================
   ABOUT TEASER
   ============================================ */
.about-teaser { padding: 6rem 0; }
.split-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
.split-text p { color: var(--text-muted); font-size: 1.02rem; margin-bottom: 1.5rem; }
.split-deco { display: flex; flex-direction: column; gap: 1rem; }
.deco-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.6rem 1.8rem;
  display: flex; align-items: center; gap: 1.5rem;
  transition: var(--transition);
}
.deco-card:hover { box-shadow: var(--shadow); }
.deco-card.accent { background: var(--brown); border-color: var(--brown); }
.deco-card.accent .deco-number { color: var(--gold-light); }
.deco-card.accent .deco-label { color: rgba(255,255,255,0.6); }
.deco-number { font-family: var(--font-display); font-size: 2rem; font-weight: 400; color: var(--rose); min-width: 70px; }
.deco-label { font-size: 0.76rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); }

/* ============================================
   MISSION TEASER
   ============================================ */
.mission-teaser {
  background: var(--rose-deep);
  padding: 6rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.mission-teaser::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(255,255,255,0.05) 0%, transparent 70%);
}
.mission-teaser .container { position: relative; z-index: 1; }
.mission-teaser h2 { color: #fff; max-width: 680px; margin: 0 auto; font-weight: 400; }
.mission-teaser h2 em { color: var(--gold-light); font-style: italic; }

/* ============================================
   CONTACT
   ============================================ */
.contact-section { padding: 6rem 0; background: var(--blush); }
.contact-section h2 { margin-bottom: 3rem; }
.contact-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.contact-card {
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: var(--transition);
}
.contact-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.contact-icon { font-size: 2rem; margin-bottom: 1rem; }
.contact-card h3 {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 0.5rem;
}
.contact-card p { font-size: 0.88rem; color: var(--text); margin: 0; }
.contact-card a { color: var(--brown); font-weight: 500; }
.contact-card a:hover { color: var(--rose); }

/* ============================================
   FOOTER
   ============================================ */
.site-footer { background: var(--brown); color: rgba(255,255,255,0.8); padding: 4.5rem 0 0; }
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .logo-name { color: #fff; font-size: 1.2rem; }
.footer-brand .logo-sub { color: var(--rose-pale); }
.footer-desc { font-size: 0.76rem; color: rgba(255,255,255,0.4); margin-top: 1rem; line-height: 1.7; }
.footer-links h4, .footer-contact h4 {
  font-family: var(--font-body);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.2rem;
}
.footer-links ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a, .footer-contact a { color: rgba(255,255,255,0.55); font-size: 0.86rem; }
.footer-links a:hover, .footer-contact a:hover { color: var(--gold-light); }
.footer-contact p { font-size: 0.86rem; color: rgba(255,255,255,0.55); margin-bottom: 0.4rem; }
.footer-bottom { padding: 1.4rem 0; text-align: center; }
.footer-bottom p { font-size: 0.74rem; color: rgba(255,255,255,0.3); margin: 0; }
.footer-bottom a { color: rgba(255,255,255,0.45); }
.footer-bottom a:hover { color: var(--gold-light); }

/* ============================================
   PAGE HERO (inner pages)
   ============================================ */
.page-hero {
  background: var(--brown);
  padding: 5.5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 70% 30%, rgba(196,104,122,0.3) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 70%, rgba(201,169,110,0.15) 0%, transparent 50%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: #fff; font-weight: 400; }
.page-hero p { color: rgba(255,255,255,0.65); margin-top: 0.8rem; font-size: 1rem; }
.hero-tag-inner {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1rem;
}
.hero-tag-inner::before { content: '✦'; color: var(--gold); font-size: 0.55rem; }

/* ============================================
   PAGE CONTENT
   ============================================ */
.page-content { padding: 5rem 0; }
.story-block { margin-bottom: 3.5rem; }
.story-block p { color: var(--text-muted); font-size: 1.02rem; }

.styled-list { list-style: none; padding: 0; margin: 1rem 0; }
.styled-list li {
  padding: 0.6rem 0 0.6rem 1.6rem;
  position: relative;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  font-size: 0.97rem;
}
.styled-list li:last-child { border-bottom: none; }
.styled-list li::before { content: '✦'; position: absolute; left: 0; color: var(--gold); font-size: 0.55rem; top: 0.9rem; }

.values-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; margin-top: 1rem; }
.value-item {
  background: var(--blush);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.8rem;
  transition: var(--transition);
}
.value-item:hover { box-shadow: var(--shadow); }
.value-icon { font-size: 1.8rem; margin-bottom: 0.8rem; }
.value-item h3 { color: var(--brown); margin-bottom: 0.4rem; font-size: 1.1rem; }
.value-item p { font-size: 0.92rem; color: var(--text-muted); margin: 0; }

.info-box {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 2.5rem;
  margin-top: 2.5rem;
}
.info-box h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--brown);
  margin-bottom: 1.5rem;
  padding-bottom: 0.8rem;
  border-bottom: 2px solid var(--rose-pale);
  display: inline-block;
}
.info-table { width: 100%; border-collapse: collapse; }
.info-table tr { border-bottom: 1px solid var(--border); }
.info-table tr:last-child { border-bottom: none; }
.info-table td { padding: 0.85rem 0.5rem; font-size: 0.87rem; vertical-align: top; }
.info-table td:first-child {
  font-weight: 600; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.05em;
  font-size: 0.73rem; width: 35%; padding-right: 1rem;
}
.badge-ativa {
  display: inline-block;
  background: #2d7a4a; color: #fff;
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.1em;
  padding: 0.2rem 0.8rem; border-radius: 20px;
}

/* MISSION STATEMENT */
.mission-statement { background: var(--blush); padding: 5rem 0; border-bottom: 1px solid var(--border); }
.mission-big { max-width: 740px; margin: 0 auto; text-align: center; }
.mission-big blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-style: italic;
  font-weight: 400;
  color: var(--brown);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  padding: 0 2.5rem;
  position: relative;
}
.mission-big blockquote::before {
  content: '"';
  position: absolute;
  top: -1.2rem; left: 0.5rem;
  font-size: 5rem;
  color: var(--rose-pale);
  font-style: normal; line-height: 1;
}
.mission-big cite {
  font-size: 0.78rem; font-style: normal;
  font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--text-muted);
}

/* PILLARS */
.pillars-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.8rem; margin: 3rem 0; }
.pillar-card {
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--rose);
  border-radius: 8px;
  padding: 2.5rem 2rem;
  transition: var(--transition);
}
.pillar-card:hover { box-shadow: var(--shadow-lg); }
.pillar-number {
  font-family: var(--font-display);
  font-size: 3rem; font-weight: 400;
  color: rgba(196,104,122,0.15);
  margin-bottom: 0.5rem; line-height: 1;
}
.pillar-card h3 { color: var(--brown); font-size: 1.15rem; }
.pillar-card p { color: var(--text-muted); font-size: 0.92rem; }
.pillar-list { list-style: none; margin-top: 0.5rem; }
.pillar-list li {
  padding: 0.4rem 0 0.4rem 1.2rem;
  font-size: 0.87rem; color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  position: relative;
}
.pillar-list li::before { content: '✦'; position: absolute; left: 0; color: var(--gold); font-size: 0.5rem; top: 0.75rem; }
.pillar-list li:last-child { border-bottom: none; }

/* CTA BLOCK */
.cta-block {
  background: linear-gradient(135deg, var(--brown) 0%, var(--rose-deep) 100%);
  color: #fff; padding: 3rem; border-radius: 12px; margin-top: 3rem;
}
.cta-block h3 { font-family: var(--font-display); font-size: 1.8rem; color: #fff; font-weight: 400; margin-bottom: 0.5rem; }
.cta-block p { color: rgba(255,255,255,0.7); margin-bottom: 1.5rem; }
.cta-block .btn-primary { background: var(--gold); border-color: var(--gold); color: var(--brown); }
.cta-block .btn-primary:hover { background: var(--gold-light); border-color: var(--gold-light); }
.cta-block .btn-outline { border-color: rgba(255,255,255,0.4); color: #fff; }
.cta-block .btn-outline:hover { background: rgba(255,255,255,0.1); }

/* PRIVACY */
.privacy-intro {
  background: var(--blush);
  border-left: 4px solid var(--rose);
  padding: 1.5rem 2rem;
  border-radius: 0 8px 8px 0;
  margin-bottom: 3rem;
}
.privacy-intro p { color: var(--text); margin: 0; font-size: 0.97rem; }
.privacy-section { margin-bottom: 2.5rem; padding-bottom: 2.5rem; border-bottom: 1px solid var(--border); }
.privacy-section:last-child { border-bottom: none; }
.privacy-section h2 { font-size: 1.35rem; color: var(--brown); margin-bottom: 1rem; font-weight: 400; }
.privacy-section p, .privacy-section ul li { color: var(--text-muted); font-size: 0.97rem; }
.contact-info-block {
  background: var(--blush); padding: 1.5rem;
  border-radius: 8px; margin: 1rem 0;
  border: 1px solid var(--border);
}
.contact-info-block p { margin-bottom: 0.4rem; color: var(--text); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .contact-grid { grid-template-columns: repeat(2, 1fr); }
  .pillars-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .menu-toggle { display: block; }
  .main-nav {
    display: none; position: fixed; inset: 0;
    background: rgba(74,46,46,0.97);
    z-index: 200; align-items: center; justify-content: center;
  }
  .main-nav.open { display: flex; }
  .main-nav ul { flex-direction: column; gap: 2rem; text-align: center; }
  .main-nav a { font-size: 1.2rem; color: #fff !important; }
  .split-layout { grid-template-columns: 1fr; gap: 3rem; }
  .values-grid { grid-template-columns: 1fr; }
  .pillars-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .services-grid { grid-template-columns: 1fr; }
  .hero-petal { display: none; }
}
@media (max-width: 480px) {
  .contact-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; }
  .cta-block { padding: 2rem 1.5rem; }
  .info-box { padding: 1.5rem; }
}
