/* ==========================================================================
   Juliana Lazzaretti — Varejo de Moda na Prática
   Versão HTML + CSS puro (sem build). Cores e fontes da identidade visual.
   ========================================================================== */

:root {
  --paper: #F1ECE6;   /* Crisp Off-White (fundo) */
  --card:  #FCF9F3;
  --sand:  #EAE0CF;
  --beige: #D1BBA4;
  --navy:  #0F2847;   /* Deep Navy (texto) */
  --navy-soft: #28425F;
  --copper: #CC866D;  /* Soft Terracotta (botões/detalhes) */
  --copper-soft: #D99C84;
  --copper-deep: #B4694F;
  --olive: #6C6E46;
  --cream: #FBF7F0;   /* texto sobre fundos escuros */
  --maxw: 1180px;
  --serif: "Cormorant Garamond", Georgia, serif;
  --display: "Poppins", system-ui, sans-serif;
  --sans: "Montserrat", system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--paper);
  color: var(--navy);
  font-family: var(--sans);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 1.5rem; }
@media (min-width: 640px) { .container { padding: 0 2rem; } }
@media (min-width: 1024px) { .container { padding: 0 3rem; } }

/* ---------- Tipografia ---------- */
.h-serif { font-family: var(--display); font-weight: 600; line-height: 1.12; letter-spacing: -0.02em; color: var(--navy); }
h1.h-serif { font-size: clamp(2.6rem, 6vw, 4.5rem); }
h2.h-serif { font-size: clamp(2rem, 4.5vw, 3rem); }
.text-copper { color: var(--copper); }
.wordmark { font-family: var(--serif); font-weight: 600; text-transform: uppercase; letter-spacing: 0.16em; color: var(--navy); }

.eyebrow { display: flex; align-items: center; gap: 0.75rem; font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.26em; color: var(--copper); }
.eyebrow::before { content: ""; width: 2rem; height: 1px; background: var(--copper); }
.eyebrow.center { justify-content: center; }

.lead { max-width: 32rem; font-size: 1rem; line-height: 1.7; color: rgba(15, 40, 71, 0.7); margin-top: 1.5rem; }
@media (min-width: 640px) { .lead.big { font-size: 1.125rem; } }

/* ---------- Botões ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  border: none; cursor: pointer; border-radius: 0.5rem;
  background: var(--copper); color: var(--cream);
  font-family: var(--sans); font-weight: 600; font-size: 0.75rem;
  text-transform: uppercase; letter-spacing: 0.1em; padding: 1rem 2rem;
  box-shadow: 0 4px 12px rgba(204, 134, 109, 0.25); transition: 0.3s;
}
.btn:hover { background: var(--copper-deep); transform: translateY(-2px); }
.btn svg { width: 1rem; height: 1rem; flex: none; }
.btn--sm { padding: 0.7rem 1.2rem; }
.btn--navy { background: var(--navy); color: var(--cream); box-shadow: 0 4px 12px rgba(15, 40, 71, 0.25); }
.btn--navy:hover { background: var(--navy-soft); }

/* ---------- Seções ---------- */
section { padding: 4rem 0; }
@media (min-width: 1024px) { section { padding: 6rem 0; } }
.bg-sand { background: var(--sand); }
.bg-paper { background: var(--paper); }

.two-col { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; }
@media (min-width: 1024px) { .two-col { grid-template-columns: 1fr 1fr; gap: 4rem; } }

/* ---------- Foto com moldura ---------- */
.framed { position: relative; }
.framed img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: 1rem; box-shadow: 0 22px 45px rgba(15, 40, 71, 0.18); position: relative; z-index: 1; }
.framed::before { content: ""; position: absolute; inset: 0; border: 1px solid rgba(204, 134, 109, 0.6); border-radius: 1rem; z-index: 0; }
.framed.br::before { transform: translate(1rem, 1rem); }
.framed.tl::before { transform: translate(-1rem, -1rem); }
.framed.tr::before { transform: translate(1rem, -1rem); }
.framed.bl::before { transform: translate(-1rem, 1rem); }
.framed .sparkle { position: absolute; z-index: 2; width: 2rem; height: 2rem; color: var(--cream); bottom: 1.5rem; right: 1.5rem; }

/* ---------- Header ---------- */
.header { position: fixed; top: 0; left: 0; right: 0; z-index: 50; transition: 0.3s; }
.header.scrolled { background: rgba(241, 236, 230, 0.95); box-shadow: 0 1px 12px rgba(15, 40, 71, 0.08); backdrop-filter: blur(8px); }
.header .container { display: flex; align-items: center; justify-content: space-between; padding-top: 1rem; padding-bottom: 1rem; }
.brand { display: flex; align-items: center; gap: 0.75rem; }
.brand img { width: 2.75rem; height: 2.75rem; }
.brand .name { display: block; font-size: 1.125rem; line-height: 1.1; }
.brand .tag { display: block; font-size: 0.625rem; text-transform: uppercase; letter-spacing: 0.24em; color: var(--copper); margin-top: 0.15rem; }
.nav { display: none; align-items: center; gap: 2.25rem; }
@media (min-width: 1024px) { .nav { display: flex; } }
.nav > a { font-size: 0.875rem; font-weight: 500; color: rgba(15, 40, 71, 0.75); transition: 0.2s; }
.nav > a:hover { color: var(--copper); }
.menu-btn { display: inline-flex; background: none; border: none; color: var(--navy); cursor: pointer; }
.menu-btn svg { width: 1.75rem; height: 1.75rem; }
@media (min-width: 1024px) { .menu-btn { display: none; } }
.mobile-nav { display: none; border-top: 1px solid rgba(15, 40, 71, 0.1); background: rgba(241, 236, 230, 0.98); backdrop-filter: blur(8px); }
.mobile-nav.open { display: block; }
.mobile-nav .container { display: flex; flex-direction: column; gap: 0.25rem; padding-top: 1rem; padding-bottom: 1rem; }
.mobile-nav a { padding: 0.75rem 0.5rem; border-radius: 0.5rem; font-size: 0.9rem; font-weight: 500; color: rgba(15, 40, 71, 0.85); }
.mobile-nav a:hover { background: var(--sand); }
.mobile-nav .btn { margin-top: 0.5rem; }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; padding-top: 7rem; }
@media (min-width: 1024px) { .hero { padding-top: 8rem; } }
.hero .glow1 { position: absolute; right: 0; top: 2.5rem; width: 36rem; height: 36rem; transform: translateX(25%); background: rgba(209, 187, 164, 0.4); filter: blur(70px); border-radius: 50%; pointer-events: none; }
.hero .glow2 { position: absolute; left: -6rem; bottom: 0; width: 18rem; height: 18rem; background: rgba(204, 134, 109, 0.1); filter: blur(60px); border-radius: 50%; pointer-events: none; }
.hero .two-col { position: relative; padding: 3rem 0; }
@media (min-width: 1024px) { .hero .two-col { grid-template-columns: 1.05fr 0.95fr; padding: 4rem 0; } }
.hero .btn-wrap { margin-top: 2.25rem; }

/* ---------- Checklist ---------- */
.checklist { margin-top: 2rem; display: flex; flex-direction: column; gap: 1rem; }
.checklist li { display: flex; gap: 0.75rem; align-items: flex-start; }
.checklist svg { width: 1.25rem; height: 1.25rem; flex: none; margin-top: 0.15rem; color: var(--copper); }
.checklist span { font-size: 0.95rem; line-height: 1.6; color: rgba(15, 40, 71, 0.8); }

/* ---------- Áreas (cards) ---------- */
.areas-title { text-align: center; }
.areas-sub { max-width: 36rem; margin: 1rem auto 0; text-align: center; font-size: 0.875rem; color: rgba(204, 134, 109, 0.95); }
.cards { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.5rem; max-width: 64rem; margin: 3rem auto 0; }
.card { width: 100%; background: var(--card); border: 1px solid rgba(15, 40, 71, 0.1); border-radius: 1rem; padding: 2rem; box-shadow: 0 1px 5px rgba(15, 40, 71, 0.05); transition: 0.3s; }
@media (min-width: 640px) { .card { width: calc(50% - 0.75rem); } }
@media (min-width: 1024px) { .card { width: calc(33.333% - 1rem); } }
.card:hover { transform: translateY(-4px); border-color: rgba(204, 134, 109, 0.5); box-shadow: 0 10px 24px rgba(15, 40, 71, 0.08); }
.card .ico { width: 3rem; height: 3rem; display: flex; align-items: center; justify-content: center; border-radius: 0.75rem; border: 1px solid rgba(204, 134, 109, 0.3); background: rgba(204, 134, 109, 0.1); color: var(--copper); }
.card .ico svg { width: 1.5rem; height: 1.5rem; }
.card h3 { font-family: var(--display); font-weight: 600; font-size: 1.125rem; margin-top: 1.25rem; color: var(--navy); }
.card p { margin-top: 0.75rem; font-size: 0.875rem; line-height: 1.6; color: rgba(15, 40, 71, 0.6); }

/* ---------- Bio (consultora) ---------- */
.bio p { max-width: 32rem; font-size: 1rem; line-height: 1.7; margin-top: 1rem; color: rgba(15, 40, 71, 0.7); }
.bio p.first { margin-top: 1.5rem; color: rgba(15, 40, 71, 0.78); }
.bio b { font-weight: 600; color: var(--navy); }
.bio .btn-wrap { margin-top: 2rem; }

/* ---------- Como funciona (passos) ---------- */
.steps { margin-top: 2rem; display: flex; flex-direction: column; gap: 1.5rem; }
.steps li { display: flex; gap: 1rem; }
.steps .num { width: 2.5rem; height: 2.5rem; flex: none; display: flex; align-items: center; justify-content: center; border-radius: 50%; background: var(--copper); color: var(--cream); font-family: var(--display); font-weight: 600; }
.steps h3 { font-family: var(--display); font-weight: 600; font-size: 1.125rem; color: var(--navy); }
.steps p { margin-top: 0.25rem; font-size: 0.875rem; line-height: 1.6; color: rgba(15, 40, 71, 0.65); }
.como .photo { order: -1; }
@media (min-width: 1024px) { .como .photo { order: 0; } }

/* ---------- Faixa CTA ---------- */
.cta { background: var(--copper); text-align: center; }
.cta h2 { font-family: var(--display); font-weight: 600; font-size: clamp(1.75rem, 4vw, 2.5rem); line-height: 1.15; letter-spacing: -0.02em; max-width: 42rem; margin: 0 auto; color: var(--cream); }
.cta p { max-width: 42rem; margin: 1.25rem auto 0; font-size: 1rem; line-height: 1.7; color: rgba(251, 247, 240, 0.88); }
.cta .btn-wrap { margin-top: 2rem; }

/* ---------- Footer ---------- */
.footer { background: var(--navy); color: var(--cream); padding: 3rem 0; }
.footer-top { display: flex; flex-direction: column; align-items: center; gap: 2rem; }
@media (min-width: 768px) { .footer-top { flex-direction: row; justify-content: space-between; } }
.footer .wordmark { color: var(--cream); font-size: 1rem; }
.footer .tag { display: block; font-size: 0.625rem; text-transform: uppercase; letter-spacing: 0.24em; color: var(--copper); margin-top: 0.15rem; }
.footer-contacts { display: flex; flex-direction: column; align-items: center; gap: 0.75rem; font-size: 0.875rem; color: rgba(251, 247, 240, 0.75); }
.footer-contacts a { display: flex; align-items: center; gap: 0.5rem; }
.footer-contacts a:hover { color: var(--copper); }
.footer-contacts svg { width: 1rem; height: 1rem; color: var(--copper); }
.social { width: 2.75rem; height: 2.75rem; display: flex; align-items: center; justify-content: center; border-radius: 0.5rem; border: 1px solid rgba(204, 134, 109, 0.5); color: var(--copper); transition: 0.2s; }
.social:hover { background: var(--copper); color: var(--navy); }
.social svg { width: 1.25rem; height: 1.25rem; }
.footer-bottom { margin-top: 2.5rem; border-top: 1px solid rgba(255, 255, 255, 0.1); padding-top: 1.5rem; text-align: center; font-size: 0.75rem; color: rgba(251, 247, 240, 0.45); }

/* ---------- WhatsApp flutuante ---------- */
.float-wa { position: fixed; bottom: 1.25rem; right: 1.25rem; z-index: 50; width: 3.5rem; height: 3.5rem; border-radius: 50%; background: var(--copper); color: var(--cream); display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 22px rgba(15, 40, 71, 0.3); transition: 0.3s; }
.float-wa:hover { transform: scale(1.1); }
.float-wa svg { width: 1.75rem; height: 1.75rem; }

/* ---------- Animação de entrada ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: none; }
