/* ============================================
   FAST HOME — CSS COMPARTILHADO
   Paleta: #C9A84C | #2C1810 | #F5F0E8
   ============================================ */

:root {
  --gold: #C9A84C;
  --gold-light: #e8c96a;
  --brown: #2C1810;
  --brown-mid: #4a2c1a;
  --beige: #F5F0E8;
  --beige-dark: #EDE6D6;
  --white: #fff;
  --text: #3a2a20;
  --text-light: #7a6a5a;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(44,24,16,.10);
  --transition: .3s cubic-bezier(.4,0,.2,1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', sans-serif;
  background: var(--beige);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1,h2,h3,h4 { font-family: 'Playfair Display', serif; color: var(--brown); line-height: 1.2; }

a { color: inherit; text-decoration: none; }

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

.container { max-width: 1180px; margin: 0 auto; padding: 0 1.5rem; }

/* ── NAVBAR ── */
.navbar {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,168,76,.2);
  padding: .9rem 0;
}
.navbar .container { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.nav-logo { display: flex; align-items: center; gap: .7rem; }
.nav-logo img { height: 44px; }
.nav-logo-text { font-family: 'Playfair Display', serif; font-size: 1.15rem; font-weight: 700; color: var(--brown); line-height: 1.1; }
.nav-logo-text span { display: block; font-family: 'Lato', sans-serif; font-size: .65rem; font-weight: 400; color: var(--text-light); letter-spacing: .08em; text-transform: uppercase; }
.nav-menu { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nav-menu a { font-size: .9rem; font-weight: 600; color: var(--text); transition: color var(--transition); letter-spacing: .02em; }
.nav-menu a:hover, .nav-menu a.active { color: var(--gold); }
.nav-cta {
  background: var(--gold); color: var(--white) !important;
  padding: .6rem 1.4rem; border-radius: 8px;
  font-weight: 700 !important; font-size: .85rem !important;
  transition: background var(--transition), transform var(--transition);
}
.nav-cta:hover { background: var(--brown) !important; transform: translateY(-1px); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: .3rem; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: var(--transition); }

/* ── FOOTER ── */
.footer {
  background: var(--brown);
  color: rgba(255,255,255,.8);
  padding: 3.5rem 0 1.5rem;
  margin-top: auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
.footer-brand .nav-logo-text { color: var(--gold); }
.footer-brand .nav-logo-text span { color: rgba(255,255,255,.5); }
.footer-tagline { font-size: .85rem; color: rgba(255,255,255,.55); margin-top: .8rem; line-height: 1.6; }
.footer-title { font-family: 'Playfair Display', serif; font-size: .95rem; color: var(--gold); margin-bottom: 1rem; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: .5rem; }
.footer-links a { font-size: .85rem; color: rgba(255,255,255,.65); transition: color var(--transition); }
.footer-links a:hover { color: var(--gold); }
.footer-contact p { font-size: .85rem; color: rgba(255,255,255,.65); margin-bottom: .5rem; display: flex; align-items: flex-start; gap: .5rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 1.5rem;
  display: flex; flex-wrap: wrap; gap: 1rem;
  justify-content: space-between; align-items: center;
  font-size: .78rem; color: rgba(255,255,255,.4);
}
.footer-creds { display: flex; flex-wrap: wrap; gap: .8rem; }
.footer-creds span {
  background: rgba(201,168,76,.15); color: var(--gold);
  padding: .2rem .7rem; border-radius: 20px; font-size: .72rem; font-weight: 700;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .85rem 2rem; border-radius: 10px;
  font-family: 'Lato', sans-serif; font-weight: 700; font-size: .95rem;
  cursor: pointer; border: none; transition: all var(--transition);
  text-decoration: none;
}
.btn-gold { background: var(--gold); color: var(--white); }
.btn-gold:hover { background: var(--brown); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(44,24,16,.2); }
.btn-outline { background: transparent; color: var(--brown); border: 2px solid var(--brown); }
.btn-outline:hover { background: var(--brown); color: var(--white); }
.btn-outline-white { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,.5); }
.btn-outline-white:hover { background: rgba(255,255,255,.1); border-color: var(--white); }
.btn-whatsapp { background: #25D366; color: var(--white); }
.btn-whatsapp:hover { background: #1da851; transform: translateY(-2px); }

/* ── SECTION LABELS ── */
.section-label {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .75rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 1rem;
}
.section-label::before, .section-label::after {
  content: '✦'; font-size: .5rem;
}

/* ── CARDS ── */
.card {
  background: var(--white); border-radius: var(--radius);
  padding: 2rem; box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(44,24,16,.15); }

/* ── STATS ── */
.stat-number { font-family: 'Playfair Display', serif; font-size: 2.5rem; color: var(--gold); font-weight: 700; }
.stat-label { font-size: .8rem; text-transform: uppercase; letter-spacing: .08em; color: var(--text-light); }

/* ── PAGE HERO ── */
.page-hero {
  background: var(--brown);
  padding: 5rem 0 4rem;
  text-align: center;
}
.page-hero h1 { color: var(--white); font-size: clamp(2rem, 5vw, 3.2rem); margin-bottom: 1rem; }
.page-hero p { color: rgba(255,255,255,.7); font-size: 1.1rem; max-width: 580px; margin: 0 auto; }

/* ── DIVIDER ── */
.gold-divider { width: 60px; height: 3px; background: var(--gold); margin: 1.5rem auto; border-radius: 2px; }
.gold-divider.left { margin-left: 0; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  /* Drawer lateral — fechado por padrão */
  .nav-menu {
    display: none;
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: min(300px, 82vw);
    background: #1c0d05;
    flex-direction: column;
    padding: 70px 0 2rem;
    gap: 0;
    overflow-y: auto;
    z-index: 1100;
    box-shadow: -8px 0 40px rgba(0,0,0,.6);
    list-style: none;
    transform: translateX(100%);
    transition: transform .3s ease;
  }
  .nav-menu.open {
    display: flex;
    transform: translateX(0);
  }
  .nav-menu li {
    border-bottom: 1px solid rgba(255,255,255,.08);
  }
  .nav-menu li:last-child {
    border-bottom: none;
    padding: 1.2rem 1.5rem 0;
  }
  .nav-menu a {
    color: rgba(255,255,255,.85) !important;
    font-size: 1.05rem;
    font-weight: 600;
    display: block;
    padding: 1rem 1.5rem;
    letter-spacing: .01em;
  }
  .nav-menu a:hover, .nav-menu a.active { color: var(--gold) !important; }
  .nav-cta {
    background: var(--gold) !important;
    color: #fff !important;
    text-align: center;
    border-radius: 8px;
    padding: .9rem 1.4rem !important;
    display: block;
    margin: 0 1.5rem;
  }
  .nav-toggle {
    display: flex;
    z-index: 1200;
    position: relative;
  }
  .nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.55);
    z-index: 1099;
  }
  .nav-overlay.open { display: block; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
}
