:root {
  --bg: #f7f5f0;
  --surface: #ffffff;
  --text: #22222b;
  --muted: #5f6d7a;
  --accent: #7a9f8b;
  --accent-dark: #4d6b57;
  --highlight: #d5b49d;
  --border: #e3ded8;
  --shadow: 0 22px 60px rgba(34, 34, 43, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: radial-gradient(circle at top left, rgba(122, 159, 139, 0.12), transparent 24%),
              radial-gradient(circle at bottom right, rgba(186, 144, 120, 0.12), transparent 20%),
              var(--bg);
  line-height: 1.7;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(148, 147, 145, 0.16);
}

.topbar__content {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 1rem 0;
}

.brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.25em;
  padding: 0.75rem 1.25rem;
  border-radius: 999px;
  text-align: center;
}

.navigation {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
}

.navigation {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.navigation a {
  color: var(--muted);
  font-weight: 500;
}

.menu-toggle {
  display: none;
  width: 2.3rem;
  height: 2.3rem;
  border: none;
  background: transparent;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-between;
  padding: 0;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background: var(--text);
  border-radius: 999px;
}

.hero {
  padding: 5rem 0 3rem;
  background: radial-gradient(circle at top left, rgba(122, 159, 139, 0.15), transparent 25%),
              radial-gradient(circle at bottom right, rgba(187, 134, 120, 0.12), transparent 18%),
              rgba(247, 245, 240, 0.94);
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
  position: relative;
}

.eyebrow,
.section__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--accent-dark);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.7rem, 5vw, 4rem);
  margin: 1rem 0 1.2rem;
  line-height: 1.05;
}

.hero__text {
  text-align: center;
}

.hero p {
  max-width: 40rem;
  margin: 0 auto 2rem;
  color: var(--muted);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 16px 40px rgba(34, 34, 43, 0.08);
}

.btn:hover {
  transform: translateY(-1px);
}

.btn--primary {
  background: linear-gradient(135deg, #4d6b57 0%, #6c8164 100%);
  color: #fff;
}

.btn--secondary {
  background: rgba(255, 255, 255, 0.9);
  color: var(--accent-dark);
  border: 1.8px solid rgba(77, 107, 87, 0.24);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--primary:hover {
  box-shadow: 0 18px 40px rgba(77, 107, 87, 0.28);
}

.btn--secondary:hover {
  background: rgba(255, 255, 255, 1);
  border-color: rgba(77, 107, 87, 0.5);
}

.hero__link {
  display: inline-block;
  color: var(--accent-dark);
  font-weight: 600;
}

.hero__visual {
  display: grid;
  place-items: center;
}

.hero__card {
  background: linear-gradient(180deg, rgba(255,255,255,0.97) 0%, rgba(245, 241, 236, 0.9) 100%);
  border: 1px solid rgba(255, 255, 255, 0.85);
  box-shadow: 0 28px 70px rgba(34, 34, 43, 0.12);
  border-radius: 32px;
  padding: 2rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.hero__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 34px 80px rgba(34, 34, 43, 0.16);
}

.hero__card--photo {
  display: grid;
  gap: 1.4rem;
  text-align: center;
}

.hero__image {
  width: 100%;
  height: auto;
  border-radius: 28px;
  object-fit: cover;
  min-height: 320px;
  box-shadow: 0 18px 40px rgba(34, 34, 43, 0.12);
}

.hero__card p {
  margin: 0;
  color: var(--text);
  font-size: 1rem;
}

.section {
  padding: 4rem 0;
}

.section--soft {
  background: #fff;
  background-image: linear-gradient(180deg, rgba(247, 245, 240, 0.65), rgba(255, 255, 255, 0.95));
}

.section__header {
  max-width: 52rem;
  margin: 0 auto 2rem;
  text-align: center;
}

.section__header::after {
  content: '';
  display: block;
  width: 4.5rem;
  height: 3px;
  margin: 1.1rem auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(122, 159, 139, 0.95), rgba(187, 134, 120, 0.95));
}

.section__header h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  margin: 0.8rem 0;
}

.section__header p {
  color: var(--muted);
}

.about__grid,
.cards-grid,
.points-grid,
.services-grid,
.benefits-grid,
.audience-grid,
.testimonial-grid,
.faq-grid,
.contact__layout {
  display: grid;
  gap: 1.5rem;
}

.about__grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.cards-grid,
.services-grid,
.benefits-grid,
.testimonial-grid {
  grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
}

.points-grid {
  grid-template-columns: repeat(auto-fit, minmax(17rem, 1fr));
}

.point,
.benefit,
.card,
.service-card,
.testimonial-card,
.faq-item,
.audience-card {
  background: linear-gradient(180deg, #ffffff 0%, #fdfaf6 100%);
  border: 1px solid rgba(166, 152, 136, 0.22);
  border-radius: 26px;
  padding: 1.8rem;
  box-shadow: 0 18px 40px rgba(34, 34, 43, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.point:hover,
.benefit:hover,
.card:hover,
.service-card:hover,
.testimonial-card:hover,
.faq-item:hover,
.audience-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 54px rgba(34, 34, 43, 0.12);
  border-color: rgba(122, 159, 139, 0.35);
}

.card--feature {
  min-height: 13rem;
}

.point h3,
.benefit h3,
.service-card h3,
.card h3,
.faq-item h3 {
  margin-top: 0;
  margin-bottom: 0.9rem;
  color: var(--accent-dark);
}

.audience-grid {
  grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
}

.audience-card {
  font-weight: 600;
  color: var(--text);
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-card p {
  margin: 0 0 1.4rem;
  color: var(--muted);
}

.testimonial-card span {
  font-weight: 700;
  color: var(--accent-dark);
}

.faq-grid {
  grid-template-columns: repeat(auto-fit, minmax(19rem, 1fr));
}

.faq-item p {
  margin: 0.5rem 0 0;
  color: var(--muted);
}

.contact__layout {
  grid-template-columns: 1.1fr 0.9fr;
  align-items: start;
  gap: 3rem;
}

.contact__intro h2 {
  margin: 1rem 0;
}

.contact__intro p {
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.contact__intro {
  text-align: center;
}

.contact__details {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 1.4rem;
}

.contact__details p {
  margin: 0;
}

.contact__details a {
  color: var(--accent-dark);
  font-weight: 600;
}

.contact-form {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 2rem;
  box-shadow: 0 18px 36px rgba(34, 34, 43, 0.06);
}

.contact-form label {
  display: block;
  margin-bottom: 0.6rem;
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  background: #f8f5f0;
  border: 1px solid rgba(120, 111, 101, 0.18);
  border-radius: 16px;
  padding: 1rem 1rem;
  margin-bottom: 1.2rem;
  color: var(--text);
}

.contact-form textarea {
  resize: vertical;
}

.footer {
  background: #fff;
  padding: 2rem 0;
  border-top: 1px solid rgba(148, 147, 145, 0.12);
}

.footer__content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
}

.whatsapp-float {
  position: fixed;
  right: 1.4rem;
  bottom: 1.4rem;
  width: 3.8rem;
  height: 3.8rem;
  border-radius: 50%;
  background: #25d366;
  display: grid;
  place-items: center;
  box-shadow: 0 18px 40px rgba(37, 211, 102, 0.24);
  color: #fff;
  z-index: 60;
}

.whatsapp-float svg {
  width: 1.8rem;
  height: 1.8rem;
  fill: #fff;
}

@media (max-width: 960px) {
  .hero__grid,
  .contact__layout,
  .about__grid {
    grid-template-columns: 1fr;
  }

  .topbar__content {
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .hero {
    padding: 4rem 0 2.5rem;
  }

  .section {
    padding: 3.2rem 0;
  }
}

@media (max-width: 760px) {
  .navigation {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.98);
    padding: 1rem 1.5rem;
    border-bottom: 1px solid rgba(148, 147, 145, 0.16);
  }

  .navigation.show {
    display: flex;
  }

  .menu-toggle {
    display: flex;
  }

  .topbar__content {
    position: relative;
    justify-content: space-between;
    padding: 0.85rem 0.75rem;
  }

  .brand {
    font-size: 1rem;
    padding: 0.65rem 1rem;
  }

  .hero__grid,
  .contact__layout,
  .about__grid {
    grid-template-columns: 1fr;
  }

  .hero__visual {
    width: 100%;
  }

  .hero__image {
    min-height: 240px;
  }

  .hero p,
  .section__header p {
    max-width: 100%;
  }

  .hero__actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .cards-grid,
  .services-grid,
  .benefits-grid,
  .points-grid,
  .testimonial-grid,
  .faq-grid,
  .audience-grid {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 1.5rem;
  }

  .section__header h2 {
    font-size: 2rem;
  }

  .hero h1 {
    font-size: 2.4rem;
  }
}

@media (max-width: 520px) {
  .topbar__content {
    flex-direction: column;
    align-items: center;
  }

  .navigation {
    position: static;
    width: 100%;
    padding: 0.8rem 1rem;
  }

  .navigation a {
    width: 100%;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(148, 147, 145, 0.12);
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero__card {
    padding: 1.5rem;
  }

  .contact__intro,
  .contact-form {
    width: 100%;
  }
}
