/* ============================================================
   Lara Luiza — página oficial
   Direção: clean, tranquila, arejada.
   Paleta derivada da foto: azul-serenidade + dourado suave +
   areia + off-white. Tipografia: Cormorant Garamond + Inter.
   ============================================================ */

:root {
  --cloud: #f7f6f2;      /* fundo geral off-white */
  --mist: #eef2f3;       /* seção azul-acinzentada bem clara */
  --sky: #c7dae1;        /* azul-serenidade (look da Lara) */
  --sky-deep: #a3c1cd;
  --sand: #ece4d7;       /* areia quente */
  --slate: #33454f;      /* azul-ardósia profundo (títulos) */
  --ink: #2c3439;        /* texto */
  --muted: #5f6b71;      /* texto secundário */
  --gold: #b0904f;       /* dourado joias */
  --gold-soft: #cbb079;
  --line: rgba(51, 69, 79, 0.14);
  --shadow: 0 30px 70px -34px rgba(51, 69, 79, 0.4);

  --f-display: "Cormorant Garamond", Georgia, serif;
  --f-body: "Inter", system-ui, -apple-system, sans-serif;

  --maxw: 1140px;
  --gutter: clamp(1.25rem, 5vw, 3.25rem);
}

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

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

body {
  margin: 0;
  font-family: var(--f-body);
  color: var(--ink);
  background: var(--cloud);
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }

.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.eyebrow {
  font-family: var(--f-body);
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}
.eyebrow::before {
  content: "";
  width: 30px;
  height: 1px;
  background: var(--gold-soft);
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 246, 242, 0.85);
  backdrop-filter: saturate(120%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 1rem;
}
.brand {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 1.6rem;
  letter-spacing: 0.01em;
  text-decoration: none;
  color: var(--slate);
}
.brand .dot { color: var(--gold); }
.nav-links {
  display: flex;
  gap: 2.25rem;
  list-style: none;
  margin: 0; padding: 0;
  font-size: 0.9rem;
  font-weight: 500;
}
.nav-links a {
  text-decoration: none;
  color: var(--slate);
  opacity: 0.7;
  transition: opacity 0.2s ease;
}
.nav-links a:hover { opacity: 1; }
.nav-cta {
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--slate);
  border: 1px solid var(--slate);
  padding: 0.55rem 1.2rem;
  border-radius: 999px;
  transition: background 0.25s ease, color 0.25s ease;
}
.nav-cta:hover { background: var(--slate); color: var(--cloud); }
@media (max-width: 760px) { .nav-links { display: none; } }

/* ---------- Hero ---------- */
.hero { padding-block: clamp(3rem, 8vw, 6.5rem); }
.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.hero h1 {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(2.8rem, 6.6vw, 5rem);
  line-height: 1.04;
  letter-spacing: 0.005em;
  color: var(--slate);
  margin: 1.4rem 0 1.2rem;
}
.hero h1 em { font-style: italic; color: var(--gold); }
.hero .lead {
  font-size: clamp(1.02rem, 1.5vw, 1.18rem);
  color: var(--muted);
  max-width: 44ch;
  margin: 0 0 2.2rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }
.proof {
  margin-top: 2.2rem;
  font-size: 0.86rem;
  color: var(--muted);
  letter-spacing: 0.02em;
}
.proof strong { color: var(--slate); font-weight: 600; }

.btn {
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  padding: 0.9rem 1.7rem;
  border-radius: 999px;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.btn-primary {
  background: var(--slate);
  color: var(--cloud);
  box-shadow: var(--shadow);
}
.btn-primary:hover { background: #26343c; transform: translateY(-2px); }
.btn-ghost { color: var(--slate); border: 1px solid var(--line); }
.btn-ghost:hover { border-color: var(--slate); }

/* Hero photo */
.hero-photo { position: relative; }
.hero-photo .frame {
  position: relative;
  z-index: 2;
  border-radius: 220px 220px 20px 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 5;
}
.hero-photo .frame img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.hero-photo::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: auto -6% -6% 10%;
  height: 78%;
  background: var(--sky);
  border-radius: 200px 200px 20px 20px;
}
.hero-photo .tag {
  position: absolute;
  z-index: 3;
  left: -8px; bottom: 26px;
  background: var(--cloud);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.7rem 1.1rem;
  box-shadow: 0 18px 40px -24px rgba(51,69,79,0.5);
  font-size: 0.82rem;
}
.hero-photo .tag b { display: block; font-family: var(--f-display); font-size: 1.05rem; color: var(--slate); font-weight: 600; }
.hero-photo .tag span { color: var(--muted); }
@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-photo { max-width: 380px; margin-inline: auto; width: 100%; }
}

/* ---------- Sections ---------- */
section { padding-block: clamp(3.5rem, 8vw, 6rem); }
.section-head { max-width: 62ch; margin-bottom: 3rem; }
.section-head h2 {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(2rem, 4.4vw, 3.2rem);
  line-height: 1.08;
  color: var(--slate);
  margin: 1rem 0 0.7rem;
}
.section-head h2 em { font-style: italic; color: var(--gold); }
.section-head p { color: var(--muted); margin: 0; max-width: 54ch; }

/* Sobre */
.about { background: var(--mist); }
.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.about-photo {
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  box-shadow: var(--shadow);
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; }
.about-copy p { color: var(--ink); margin: 0 0 1rem; }
.about-copy p:last-of-type { margin-bottom: 0; }
.badges {
  display: flex; flex-wrap: wrap; gap: 0.6rem;
  margin-top: 1.8rem;
}
.badge {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--slate);
  background: var(--cloud);
  border: 1px solid var(--line);
  padding: 0.5rem 0.95rem;
  border-radius: 999px;
}
@media (max-width: 780px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-photo { max-width: 320px; }
}

/* O que ensina — pilares */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.4rem;
}
.pillar {
  padding: 2rem 1.8rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--cloud);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.pillar:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.pillar .ic {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: var(--sky);
  color: var(--slate);
  margin-bottom: 1.1rem;
}
.pillar h3 { font-family: var(--f-display); font-weight: 600; font-size: 1.4rem; color: var(--slate); margin: 0 0 0.5rem; }
.pillar p { color: var(--muted); font-size: 0.95rem; margin: 0; }

/* Depoimentos */
.voices { background: var(--sand); }
.voices-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.4rem;
}
.voice {
  background: var(--cloud);
  border-radius: 16px;
  padding: 1.8rem;
  box-shadow: 0 20px 50px -34px rgba(51,69,79,0.45);
}
.voice .quote {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 1.25rem;
  line-height: 1.4;
  color: var(--slate);
  margin: 0 0 1.2rem;
}
.voice .who { font-size: 0.82rem; color: var(--muted); font-weight: 500; letter-spacing: 0.04em; }
.disclaimer { margin-top: 2rem; font-size: 0.8rem; color: var(--muted); font-style: italic; }

/* Contato */
.contact { text-align: center; }
.contact-inner { max-width: 620px; margin-inline: auto; }
.contact h2 {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  line-height: 1.06;
  color: var(--slate);
  margin: 1rem 0 1rem;
}
.contact p { color: var(--muted); margin: 0 auto 2.2rem; max-width: 44ch; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--slate);
  color: rgba(247, 246, 242, 0.85);
  padding-block: 3.4rem 2rem;
  font-size: 0.9rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 2rem;
  align-items: start;
}
.site-footer .brand { color: var(--cloud); }
.site-footer .brand .dot { color: var(--gold-soft); }
.legal {
  margin-top: 1rem;
  line-height: 1.75;
  color: rgba(247, 246, 242, 0.68);
  font-size: 0.84rem;
  max-width: 46ch;
}
.footer-links { display: flex; flex-direction: column; gap: 0.65rem; }
.footer-links a { color: rgba(247,246,242,0.85); text-decoration: none; }
.footer-links a:hover { color: var(--gold-soft); }
.footer-bottom {
  border-top: 1px solid rgba(203, 176, 121, 0.22);
  margin-top: 2.6rem; padding-top: 1.4rem;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.6rem;
  font-size: 0.8rem; color: rgba(247,246,242,0.55);
}
@media (max-width: 640px) { .footer-grid { grid-template-columns: 1fr; } }

/* ---------- Páginas legais ---------- */
.doc { padding-block: clamp(3rem, 7vw, 5rem); }
.doc-inner { max-width: 760px; margin-inline: auto; }
.doc h1 {
  font-family: var(--f-display); font-weight: 600;
  font-size: clamp(2.2rem, 5vw, 3.2rem); color: var(--slate);
  margin: 0.6rem 0 0.3rem;
}
.doc .updated { color: var(--muted); font-size: 0.85rem; margin-bottom: 2.6rem; }
.doc h2 {
  font-family: var(--f-display); font-weight: 600; font-size: 1.5rem;
  color: var(--slate); margin: 2.4rem 0 0.6rem;
}
.doc p, .doc li { color: var(--ink); }
.doc ul { padding-left: 1.2rem; }
.doc a { color: var(--gold); }
.back-link {
  display: inline-flex; align-items: center; gap: 0.4rem;
  text-decoration: none; color: var(--slate); font-weight: 600;
  font-size: 0.9rem; margin-top: 2.8rem;
}

:where(a, button):focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}
