@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400&family=DM+Sans:wght@300;400;500&display=swap');

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

:root {
  --forest:     #2C3A2E;
  --forest-mid: #3D5140;
  --moss:       #6B7C5E;
  --sage:       #9BAE8A;
  --cream:      #F5F0E8;
  --warm:       #EDE5D5;
  --sand:       #C9B99A;
  --gold:       #B8975A;
  --gold-light: #C9A865;
  --dark:       #1A2119;
}

html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; background: var(--cream); color: var(--forest); line-height: 1.6; }

/* NAV */
nav {
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.2rem 2.5rem;
  background: rgba(245,240,232,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(107,124,94,0.15);
}
.nav-logo { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 400; letter-spacing: 0.05em; color: var(--forest); text-decoration: none; }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a { font-size: 13px; color: var(--moss); text-decoration: none; letter-spacing: 0.08em; text-transform: uppercase; transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--forest); }
.nav-cta { background: var(--forest); color: var(--cream); padding: 0.55rem 1.4rem; border-radius: 2px; font-size: 12px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; border: none; cursor: pointer; transition: background 0.2s; font-family: 'DM Sans', sans-serif; text-decoration: none; display: inline-block; }
.nav-cta:hover { background: var(--forest-mid); }

/* BUTTONS */
.btn-primary { background: var(--gold); color: var(--dark); padding: 0.9rem 2rem; border-radius: 2px; font-size: 12px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; border: none; cursor: pointer; transition: background 0.2s; font-family: 'DM Sans', sans-serif; text-decoration: none; display: inline-block; }
.btn-primary:hover { background: var(--gold-light); }
.btn-outline { background: transparent; color: var(--forest); padding: 0.9rem 2rem; border-radius: 2px; font-size: 12px; font-weight: 400; letter-spacing: 0.12em; text-transform: uppercase; border: 1px solid rgba(44,58,46,0.3); cursor: pointer; transition: all 0.2s; font-family: 'DM Sans', sans-serif; text-decoration: none; display: inline-block; }
.btn-outline:hover { background: var(--forest); color: var(--cream); }

/* SECTION TAG */
.section-tag { font-size: 10px; font-weight: 500; letter-spacing: 0.25em; text-transform: uppercase; color: var(--sage); margin-bottom: 1.2rem; display: flex; align-items: center; gap: 0.6rem; }
.section-tag::before { content: ''; display: block; width: 20px; height: 1px; background: var(--sage); }
.section-tag.center { justify-content: center; }
.section-tag.center::before { display: none; }

/* FOOTER */
footer { background: var(--dark); color: rgba(255,255,255,0.45); padding: 2.5rem; display: flex; justify-content: space-between; align-items: center; font-size: 12px; flex-wrap: wrap; gap: 1rem; }
.footer-logo { font-family: 'Cormorant Garamond', serif; font-size: 18px; font-weight: 400; color: var(--sage); }
.footer-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-links a { color: rgba(255,255,255,0.35); text-decoration: none; font-size: 11px; letter-spacing: 0.1em; transition: color 0.2s; }
.footer-links a:hover { color: rgba(255,255,255,0.7); }

/* WHATSAPP FLOAT */
.wa-float { position: fixed; bottom: 2rem; right: 2rem; z-index: 200; background: #25D366; color: #fff; width: 56px; height: 56px; border-radius: 50%; display: flex; align-items: center; justify-content: center; text-decoration: none; box-shadow: 0 4px 20px rgba(37,211,102,0.4); transition: transform 0.2s; }
.wa-float:hover { transform: scale(1.1); }
.wa-float svg { width: 28px; height: 28px; fill: #fff; }

/* RESPONSIVE */
@media (max-width: 900px) {
  nav { padding: 1rem 1.5rem; }
  .nav-links { display: none; }
  footer { flex-direction: column; text-align: center; }
}
