/* ── Fonte local ─────────────────────────────────────── */
@font-face {
  font-family: 'Bloverly';
  src: url('/guias_design/Tipografia/BLOVERLY.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

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

:root {
  --dark:        #3a2820;
  --brand:       #69584D;
  --gray:        #BCB1A5;
  --gray-border: #D5CDCA;
  --gray-light:  #f3efe9;
  --cream:       #ECEBE6;
  --white:       #ffffff;
  --transition:  .3s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3 { font-family: 'Cormorant Garamond', serif; line-height: 1.2; font-weight: 400; }

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

.container        { max-width: 1160px; margin: 0 auto; padding: 0 32px; }
.container--narrow { max-width: 760px;  margin: 0 auto; padding: 0 32px; }
.section          { padding: 100px 0; }
.section--cream   { background: var(--cream); }
.section--gray    { background: var(--gray-light); }

/* ── Tipografia utilitária ───────────────────────────── */
.label {
  display: inline-block;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 16px;
}

.display {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--dark);
}
.display em { font-style: italic; font-family: 'Bloverly', 'Cormorant Garamond', serif; font-size: 1.05em; }

.lead { font-size: 1rem; color: var(--brand); line-height: 1.8; font-weight: 300; }

/* ── Botões ──────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  font-family: 'Montserrat', sans-serif;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}
.btn:hover { transform: translateY(-1px); }

.btn--dark          { background: var(--brand); color: var(--white); }
.btn--dark:hover    { background: #573f32; }

.btn--brand         { background: var(--brand); color: var(--white); }
.btn--brand:hover   { background: var(--dark); }

.btn--outline-white       { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,.5); }
.btn--outline-white:hover { background: rgba(255,255,255,.1); }

.btn--outline-dark        { background: transparent; color: var(--brand); border: 1px solid var(--brand); }
.btn--outline-dark:hover  { background: var(--brand); color: var(--white); }

.btn--whatsapp       { background: #25D366; color: var(--white); }
.btn--whatsapp:hover { background: #1ebe5b; }

/* ── Responsivo global ───────────────────────────────── */
@media (max-width: 640px) {
  .container         { padding: 0 20px; }
  .container--narrow { padding: 0 20px; }
  .section           { padding: 72px 0; }
}
