/* ===== Zen da Mente — Estilo Geral ===== */

:root {
  --bg: #faf8f4;
  --bg-alt: #f0ece4;
  --text: #2e2c28;
  --text-soft: #6b6760;
  --accent: #8a9a7e;
  --accent-dark: #5f6f54;
  --line: #e2ddd3;
  --white: #ffffff;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(0,0,0,0.06);
  --max-width: 1140px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Poppins', 'Segoe UI', Helvetica, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-weight: 600;
  line-height: 1.25;
  margin: 0 0 16px;
  color: var(--text);
}

p { margin: 0 0 16px; color: var(--text-soft); }

a { color: var(--accent-dark); text-decoration: none; }
a:hover { color: var(--accent); }

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

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== Header ===== */
header.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 248, 244, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.logo img { height: 38px; width: auto; }

nav.main-nav ul {
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

nav.main-nav a {
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}

nav.main-nav a.active,
nav.main-nav a:hover { color: var(--accent-dark); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
  color: var(--text);
}

@media (max-width: 820px) {
  .nav-toggle { display: block; }
  nav.main-nav {
    display: none;
    width: 100%;
  }
  nav.main-nav.open { display: block; }
  nav.main-nav ul {
    flex-direction: column;
    gap: 0;
    padding: 12px 0;
  }
  nav.main-nav li { border-top: 1px solid var(--line); }
  nav.main-nav a { display: block; padding: 14px 24px; }
  .nav-wrap { flex-wrap: wrap; }
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  overflow: hidden;
}

.hero img.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(46,44,40,0.45), rgba(46,44,40,0.65));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 40px 24px;
}

.hero-content h1 {
  color: var(--white);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  margin-bottom: 18px;
}

.hero-content p {
  color: rgba(255,255,255,0.9);
  font-size: 1.1rem;
  margin-bottom: 22px;
}

.stars { color: #f3c969; font-size: 1.2rem; letter-spacing: 4px; margin-bottom: 22px; }

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 14px 34px;
  border-radius: 999px;
  background: var(--accent-dark);
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  transition: background 0.25s, transform 0.2s;
  border: none;
  cursor: pointer;
}

.btn:hover { background: var(--accent); transform: translateY(-2px); color: var(--white); }

.btn-outline {
  background: transparent;
  border: 1.5px solid var(--white);
  color: var(--white);
}

.btn-outline:hover { background: var(--white); color: var(--text); }

/* ===== Sections ===== */
section { padding: 70px 0; }

.section-alt { background: var(--bg-alt); }

.section-title {
  text-align: center;
  margin-bottom: 14px;
}

.section-lead {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 50px;
}

.eyebrow {
  display: block;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  color: var(--accent-dark);
  font-weight: 600;
  margin-bottom: 10px;
}

/* ===== Grid / cards ===== */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

@media (max-width: 900px) {
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.card img { width: 100%; height: 220px; object-fit: cover; }

.card-body { padding: 24px; }

.card-body h4 { margin-bottom: 10px; }

/* ===== Testimonial ===== */
.testimonial {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.testimonial img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.testimonial .stars { text-align: left; font-size: 1rem; letter-spacing: 2px; margin-bottom: 8px; }

.testimonial-name { font-weight: 600; color: var(--text); margin-top: 8px; }

/* ===== Image + text feature ===== */
.feature-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.feature-img img { width: 100%; height: 100%; object-fit: cover; }

/* ===== Lists / benefits ===== */
.benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

@media (max-width: 700px) { .benefits-list { grid-template-columns: 1fr; } }

.benefits-list li {
  background: var(--white);
  border-radius: 10px;
  padding: 14px 18px;
  font-weight: 500;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 10px;
}

.benefits-list li::before {
  content: '✓';
  color: var(--accent-dark);
  font-weight: 700;
}

/* ===== Forms ===== */
.contact-form {
  display: grid;
  gap: 16px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 10px;
  font-family: inherit;
  font-size: 0.95rem;
  background: var(--white);
  color: var(--text);
}

.contact-form textarea { min-height: 130px; resize: vertical; }

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
}

/* ===== Info blocks ===== */
.info-block { text-align: center; }
.info-block h6 {
  font-family: 'Poppins', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  color: var(--accent-dark);
  margin-bottom: 6px;
}

/* ===== Footer ===== */
footer.site-footer {
  background: #2e2c28;
  color: #d8d4cc;
  padding: 60px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

@media (max-width: 800px) {
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
}

.footer-grid h5 {
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.85rem;
  margin-bottom: 16px;
}

.footer-grid p, .footer-grid a { color: #b8b4ac; }
.footer-grid a:hover { color: var(--white); }

.footer-grid ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }

.social-links { display: flex; gap: 14px; margin-top: 14px; }
.social-links a {
  width: 38px; height: 38px;
  border: 1px solid #555049;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #d8d4cc;
}
.social-links a:hover { background: var(--accent-dark); border-color: var(--accent-dark); color: var(--white); }

.newsletter-form { display: flex; gap: 8px; margin-top: 10px; flex-wrap: wrap; }
.newsletter-form input {
  flex: 1;
  min-width: 160px;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid #555049;
  background: #3a3833;
  color: var(--white);
}
.newsletter-form button {
  padding: 12px 20px;
  border-radius: 8px;
  border: none;
  background: var(--accent-dark);
  color: var(--white);
  font-weight: 600;
  cursor: pointer;
}
.newsletter-form button:hover { background: var(--accent); }

.footer-bottom {
  text-align: center;
  border-top: 1px solid #444039;
  padding-top: 20px;
  font-size: 0.85rem;
  color: #8a857c;
}

/* ===== Page header (sub-pages) ===== */
.page-header {
  padding: 110px 0 50px;
  text-align: center;
  background: var(--bg-alt);
}

.page-header h1 { margin-bottom: 8px; }
.page-header p { max-width: 620px; margin: 0 auto; }
