@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Jost:wght@300;400;500&display=swap');

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

:root {
  --cream: #f2eadd;
  --cream-dark: #EAE5DC;
  --green: #5C6B3A;
  --green-dark: #47542D;
  --green-light: #8A9A5B;
  --brown: #7A6652;
  --text: #2E2A25;
  --text-light: #6B6258;
  --white: #FDFBF8;
  --border: #D8D0C4;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  background-color: var(--cream);
  color: var(--text);
  line-height: 1.7;
  font-weight: 300;
}

/* NAV */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 max(6%, calc(50% - 640px));
  height: 70px;
}

.nav-logo {
  font-family: 'Lora', serif;
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.04em;
  text-decoration: none;
  line-height: 1.2;
}

.nav-logo span {
  display: block;
  font-size: 0.65rem;
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  letter-spacing: 0.18em;
  color: var(--text-light);
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.2s;
  font-weight: 400;
}

.nav-links a:hover, .nav-links a.active { color: var(--green); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-toggle span { display: block; width: 24px; height: 1.5px; background: var(--text); transition: all 0.3s; }

.page-content { padding-top: 70px; }

/* HERO */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
  padding: 90px max(8%, calc(50% - 640px)) 80px;
  min-height: calc(100vh - 70px);
}

.hero-text { flex: 1 1 480px; max-width: 560px; }

.hero-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green);
  font-weight: 400;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-family: 'Lora', serif;
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  font-weight: 300;
  color: var(--green);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.hero-sub { font-size: 1rem; color: var(--text-light); margin-bottom: 2.5rem; font-weight: 300; }

.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 13px 26px;
  border-radius: 4px;
  font-family: 'Jost', sans-serif;
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-decoration: none;
  transition: all 0.25s;
  cursor: pointer;
  border: none;
}

.btn-primary { background: var(--green); color: #fff; }
.btn-primary:hover { background: var(--green-dark); }
.btn-secondary { background: transparent; color: var(--green); border: 1px solid var(--green); }
.btn-secondary:hover { background: var(--green); color: #fff; }

.hero-image { flex: 0 0 300px; }

.circular-photo {
  width: 300px; height: 300px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--border);
  display: block;
}

/* SECTIONS */
section { padding: 70px max(8%, calc(50% - 640px)); }
#sobre > * { max-width: 700px; }

.section-label {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green);
  font-weight: 400;
  margin-bottom: 0.75rem;
}

h2 {
  font-family: 'Lora', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 300;
  color: var(--green);
  line-height: 1.25;
  margin-bottom: 1.25rem;
}

h3 {
  font-family: 'Lora', serif;
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--green);
  margin-bottom: 0.75rem;
}

p { margin-bottom: 1rem; color: var(--text-light); font-weight: 300; }

/* INFO GRID */
.info-grid {
  background: var(--cream-dark);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 0 max(6%, calc(50% - 640px));
}

.info-card {
  padding: 50px 2rem;
  border-right: 1px solid var(--border);
}
.info-card:last-child { border-right: none; }
.info-icon { font-size: 1.6rem; margin-bottom: 1rem; }

/* BLOG CARDS */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 1.75rem;
  margin-top: 2.5rem;
}

.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  text-decoration: none;
  display: block;
  transition: transform 0.22s, box-shadow 0.22s;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(0,0,0,0.08); }
.blog-card-body { padding: 1.75rem; }

.blog-tag {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green);
  font-weight: 400;
  margin-bottom: 0.75rem;
  display: block;
}

.blog-card h3 {
  font-family: 'Lora', serif;
  font-size: 1.25rem;
  color: var(--green);
  margin-bottom: 0.6rem;
  line-height: 1.3;
}

.blog-card p { font-size: 0.88rem; color: var(--text-light); margin-bottom: 1.25rem; }
.read-more { font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--green); font-weight: 400; }

/* BLOG PAGE */
.page-hero {
  background: var(--cream-dark);
  padding: 70px max(8%, calc(50% - 640px)) 55px;
  border-bottom: 1px solid var(--border);
}

/* ARTICLE */
.article-body {
  max-width: 700px;
  padding: 60px 8%;
}
.article-body p { font-size: 1.02rem; line-height: 1.9; margin-bottom: 1.5rem; }

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  text-decoration: none;
  margin-bottom: 2rem;
  transition: color 0.2s;
}
.back-link:hover { color: var(--green); }

/* CONTACT */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  max-width: 920px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--border);
  color: var(--text-light);
  font-size: 0.95rem;
}
.contact-item a { color: var(--text-light); text-decoration: none; }
.contact-item a:hover { color: var(--green); }

form { display: flex; flex-direction: column; gap: 1.25rem; }

label {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  font-weight: 400;
}

input, textarea {
  font-family: 'Jost', sans-serif;
  font-size: 0.95rem;
  font-weight: 300;
  padding: 11px 14px;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: var(--white);
  color: var(--text);
  outline: none;
  transition: border-color 0.2s;
}
input:focus, textarea:focus { border-color: var(--green); }
textarea { resize: vertical; min-height: 130px; }

/* FOOTER */
footer {
  background: var(--cream-dark);
  border-top: 1px solid var(--border);
  padding: 36px max(8%, calc(50% - 640px));
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-logo { font-family: 'Lora', serif; font-size: 1.1rem; color: var(--text); font-weight: 500; }
footer p { font-size: 0.8rem; color: var(--text-light); margin: 0; }
footer a { color: var(--green); text-decoration: none; font-size: 0.8rem; }

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

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero { flex-direction: column-reverse; text-align: center; padding: 50px 6% 40px; min-height: auto; }
  .hero-buttons { justify-content: center; }
  .hero-image { flex: 0 0 auto; }
  .circular-photo { width: 200px; height: 200px; }
  .info-grid { grid-template-columns: 1fr; }
  .info-card { border-right: none; border-bottom: 1px solid var(--border); }
  .info-card:last-child { border-bottom: none; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  footer { justify-content: center; text-align: center; }
  .nav-links {
    display: none;
    position: absolute;
    top: 70px; left: 0; right: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    gap: 0;
    padding: 0.5rem 0;
  }
  .nav-links.open { display: flex; }
  .nav-links li a { display: block; padding: 0.9rem 6%; }
  .nav-toggle { display: flex; }
}
