/* Lugar Secreto — landing page
   Paleta: creme #F7F3E9, verde #2F5D3A, verde-claro #E8F0E0, laranja #F5A623 */

:root {
  --cream: #F7F3E9;
  --green: #2F5D3A;
  --green-light: #E8F0E0;
  --orange: #F5A623;
  --ink: #2B2B27;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.5;
}

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

a {
  color: var(--green);
}

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Header / nav ---------- */

.top-nav {
  padding: 20px 0;
}

.top-nav .container {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand {
  font-weight: 800;
  font-size: 20px;
  color: var(--green);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ---------- Hero ---------- */

.hero {
  padding: 24px 0 64px;
  text-align: center;
}

.hero-avatar {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 28px;
  border: 6px solid #ffffff;
  box-shadow: 0 12px 30px rgba(47, 93, 58, 0.18);
}

.hero h1 {
  color: var(--green);
  font-weight: 800;
  font-size: clamp(28px, 5vw, 46px);
  text-transform: lowercase;
  max-width: 720px;
  margin: 0 auto 16px;
  line-height: 1.2;
}

.hero .sub {
  font-size: clamp(16px, 2.4vw, 20px);
  max-width: 560px;
  margin: 0 auto 32px;
  color: #4a4a44;
}

.btn-cta {
  display: inline-block;
  background: var(--orange);
  color: #ffffff;
  font-weight: 800;
  font-size: 17px;
  padding: 16px 32px;
  border-radius: 999px;
  text-decoration: none;
  cursor: default;
  box-shadow: 0 10px 24px rgba(245, 166, 35, 0.35);
}

.hero .store-note {
  margin-top: 16px;
  font-size: 14px;
  color: #6b6b62;
}

/* ---------- Feature sections ---------- */

.features {
  padding: 32px 0;
}

.feature {
  display: flex;
  align-items: center;
  gap: 48px;
  padding: 48px 0;
}

.feature:not(:last-child) {
  border-bottom: 1px solid rgba(47, 93, 58, 0.08);
}

.feature.reverse {
  flex-direction: row-reverse;
}

.feature-media,
.feature-text {
  flex: 1 1 0;
  min-width: 0;
}

.feature-media img {
  border-radius: 20px;
  box-shadow: 0 16px 32px rgba(47, 93, 58, 0.12);
  margin: 0 auto;
  max-width: 340px;
}

.feature-text .emoji {
  font-size: 36px;
  margin-bottom: 12px;
  display: block;
}

.feature-text h2 {
  color: var(--green);
  font-weight: 800;
  font-size: 26px;
  text-transform: lowercase;
  margin: 0 0 12px;
}

.feature-text p {
  font-size: 17px;
  color: #4a4a44;
  margin: 0;
}

/* ---------- Social proof ---------- */

.social-proof {
  background: var(--green-light);
  padding: 56px 0;
  margin-top: 24px;
}

.social-proof h2 {
  text-align: center;
  color: var(--green);
  font-weight: 800;
  text-transform: lowercase;
  font-size: 26px;
  margin: 0 0 32px;
}

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

.testimonial-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 10px 24px rgba(47, 93, 58, 0.08);
}

.testimonial-card .stars {
  color: var(--orange);
  font-size: 18px;
  margin-bottom: 12px;
}

.testimonial-card p.quote {
  margin: 0 0 16px;
  color: #4a4a44;
  font-size: 15px;
}

.testimonial-card .author {
  font-weight: 800;
  color: var(--green);
  font-size: 14px;
}

/* ---------- Footer ---------- */

footer {
  padding: 40px 0 56px;
  text-align: center;
  color: #6b6b62;
  font-size: 14px;
}

footer .links {
  margin-top: 12px;
}

footer .links a {
  color: var(--green);
  text-decoration: none;
  margin: 0 8px;
  font-weight: 700;
}

footer .links a:hover {
  text-decoration: underline;
}

/* ---------- Legal pages (termos/privacidade) ---------- */

.legal {
  padding: 24px 0 64px;
}

.legal h1 {
  color: var(--green);
  font-weight: 800;
  font-size: clamp(26px, 4vw, 34px);
  text-transform: lowercase;
}

.legal h2 {
  color: var(--green);
  font-weight: 800;
  font-size: 20px;
  margin-top: 32px;
}

.legal p,
.legal li {
  font-size: 16px;
  color: #4a4a44;
}

.legal .updated {
  color: #6b6b62;
  font-size: 14px;
  margin-bottom: 32px;
}

.legal .back {
  display: inline-block;
  margin-top: 32px;
  font-weight: 700;
}

/* ---------- Responsive ---------- */

@media (max-width: 760px) {
  .feature,
  .feature.reverse {
    flex-direction: column;
    text-align: center;
    gap: 24px;
    padding: 32px 0;
  }

  .testimonials {
    grid-template-columns: 1fr;
  }

  .hero-avatar {
    width: 140px;
    height: 140px;
  }
}
