:root {
  --bg: #f9f8f4;
  --bg-alt: #f1efe8;
  --surface: #ffffff;
  --text: #2f3427;
  --muted: #5f6650;
  --primary: #7f8952;
  --primary-dark: #6d7644;
  --accent: #e7cdb4;
  --shadow: 0 18px 40px rgba(70, 78, 44, 0.14);
  --radius-lg: 22px;
  --radius-md: 14px;
  --container: 1120px;
  --header-height: 82px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
}

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

.container {
  width: min(100% - 2.4rem, var(--container));
  margin-inline: auto;
}

.narrow {
  max-width: 760px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-height);
  backdrop-filter: blur(10px);
  background: rgba(249, 248, 244, 0.86);
  border-bottom: 1px solid rgba(127, 137, 82, 0.14);
  transition: height 280ms ease, background-color 280ms ease, box-shadow 280ms ease;
}

.site-header.is-scrolled {
  --header-height: 72px;
  background: rgba(249, 248, 244, 0.96);
  box-shadow: 0 10px 30px rgba(70, 78, 44, 0.1);
}

.nav-wrapper {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
}

.brand-mark {
  width: 42px;
  aspect-ratio: 1 / 1;
  border-radius: 999px;
  position: relative;
  background: linear-gradient(145deg, var(--primary), #a2ac77);
  box-shadow: inset -8px -8px 18px rgba(255, 255, 255, 0.18);
}

.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  border-radius: 999px;
}

.brand-mark::before {
  width: 18px;
  height: 18px;
  background: var(--accent);
  bottom: -4px;
  left: -6px;
}

.brand-mark::after {
  width: 10px;
  height: 10px;
  background: #738046;
  top: -5px;
  right: -5px;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-text strong {
  font-family: "Marcellus", serif;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--primary-dark);
}

.brand-text small {
  font-size: 0.7rem;
  color: var(--muted);
  letter-spacing: 0.16em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.main-nav a {
  font-size: 0.96rem;
  color: var(--muted);
  position: relative;
  transition: color 220ms ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 220ms ease;
}

.main-nav a:hover {
  color: var(--primary-dark);
}

.main-nav a:hover::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 0.2rem;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  margin: 5px 0;
  border-radius: 99px;
  background: var(--primary-dark);
  transition: transform 240ms ease, opacity 240ms ease;
}

.hero {
  padding: 4.8rem 0 4rem;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 2rem;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 0.6rem;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.17em;
  color: var(--primary-dark);
  font-weight: 600;
}

h1,
h2,
h3 {
  margin-top: 0;
  line-height: 1.2;
  color: #2b2f24;
}

h1 {
  font-family: "Marcellus", serif;
  font-size: clamp(2rem, 4vw, 3.3rem);
  max-width: 18ch;
  margin-bottom: 1rem;
}

h2 {
  font-family: "Marcellus", serif;
  font-size: clamp(1.65rem, 2.8vw, 2.4rem);
  margin-bottom: 0.9rem;
}

p {
  margin: 0 0 1rem;
  color: var(--muted);
}

.hero-actions {
  margin-top: 1.6rem;
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  border-radius: 999px;
  padding: 0.78rem 1.35rem;
  transition: transform 220ms ease, box-shadow 220ms ease, background-color 220ms ease, color 220ms ease;
}

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

.btn-primary {
  color: #fefefe;
  background: var(--primary);
  box-shadow: 0 12px 22px rgba(109, 118, 68, 0.26);
}

.btn-primary:hover {
  background: var(--primary-dark);
}

.btn-ghost {
  color: var(--primary-dark);
  border: 1px solid rgba(109, 118, 68, 0.35);
  background: rgba(255, 255, 255, 0.7);
}

.hero-card {
  background: linear-gradient(160deg, #ffffff, #f2f0e8);
  border: 1px solid rgba(127, 137, 82, 0.18);
  border-radius: var(--radius-lg);
  padding: 2rem 1.8rem;
  box-shadow: var(--shadow);
}

.hero-card h2 {
  margin-bottom: 0.3rem;
}

.hero-card ul {
  margin: 1rem 0 0;
  padding-left: 1.1rem;
}

.hero-card li {
  color: var(--muted);
  margin: 0.45rem 0;
}

.hero-glow {
  position: absolute;
  z-index: -1;
  border-radius: 999px;
  filter: blur(6px);
  opacity: 0.55;
}

.hero-glow-1 {
  width: 280px;
  height: 280px;
  background: rgba(231, 205, 180, 0.58);
  top: -70px;
  right: 10%;
  animation: float 9s ease-in-out infinite;
}

.hero-glow-2 {
  width: 190px;
  height: 190px;
  background: rgba(127, 137, 82, 0.24);
  bottom: -48px;
  left: 7%;
  animation: float 11s ease-in-out infinite reverse;
}

.section {
  padding: 4.4rem 0;
}

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

.section-header {
  max-width: 760px;
  margin-bottom: 2rem;
}

.cards {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  background: var(--surface);
  border: 1px solid rgba(127, 137, 82, 0.17);
  border-radius: var(--radius-md);
  padding: 1.5rem 1.3rem;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(89, 96, 57, 0.12);
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 1.5rem;
  align-items: center;
}

.benefit-list {
  list-style: none;
  margin: 0;
  padding: 1.2rem;
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid rgba(127, 137, 82, 0.16);
  box-shadow: var(--shadow);
}

.benefit-list li {
  position: relative;
  padding-left: 1.6rem;
  margin-bottom: 0.85rem;
  color: var(--muted);
}

.benefit-list li:last-child {
  margin-bottom: 0;
}

.benefit-list li::before {
  content: "";
  width: 0.62rem;
  height: 0.62rem;
  border-radius: 99px;
  background: var(--primary);
  position: absolute;
  left: 0;
  top: 0.53rem;
}

.faq-list {
  display: grid;
  gap: 0.8rem;
}

.faq-item {
  background: #fff;
  border: 1px solid rgba(127, 137, 82, 0.18);
  border-radius: var(--radius-md);
  padding: 0.9rem 1rem;
  box-shadow: 0 8px 18px rgba(89, 96, 57, 0.08);
}

.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  color: #2b2f24;
  list-style: none;
  position: relative;
  padding-right: 1.6rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  color: var(--primary-dark);
  font-size: 1.15rem;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  margin: 0.7rem 0 0.1rem;
}

.section-contact {
  background: linear-gradient(180deg, var(--bg), #efede5);
}

.contact-grid {
  display: grid;
  gap: 1.3rem;
  grid-template-columns: 1fr 1fr;
  align-items: start;
}

.contact-list {
  margin-top: 1rem;
  display: grid;
  gap: 0.66rem;
}

.contact-list a {
  color: var(--primary-dark);
}

.contact-list a:hover {
  text-decoration: underline;
}

.contact-list address {
  margin: 0;
  font-style: normal;
  color: var(--muted);
}

.map-box {
  min-height: 340px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(127, 137, 82, 0.2);
  box-shadow: var(--shadow);
}

.map-box iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.whatsapp-float {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  z-index: 70;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 62px;
  height: 62px;
  padding: 0 1rem;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #2dbb65, #25a45a);
  box-shadow: 0 14px 30px rgba(19, 123, 63, 0.34);
  transition: transform 230ms ease, box-shadow 230ms ease;
}

.whatsapp-float:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 18px 32px rgba(19, 123, 63, 0.4);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 620ms ease, transform 620ms ease;
}

.reveal.delay-1 {
  transition-delay: 120ms;
}

.reveal.delay-2 {
  transition-delay: 220ms;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(12px);
  }
}

@media (max-width: 920px) {
  .hero-grid,
  .cards,
  .benefits-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 4rem;
  }

  .map-box {
    min-height: 280px;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 1rem;
    width: min(240px, calc(100% - 2rem));
    background: #fff;
    border: 1px solid rgba(127, 137, 82, 0.2);
    border-radius: 14px;
    box-shadow: 0 18px 24px rgba(70, 78, 44, 0.14);
    padding: 0.8rem;
    display: grid;
    gap: 0.4rem;
    transform-origin: top right;
    transform: scale(0.92);
    opacity: 0;
    pointer-events: none;
    transition: opacity 220ms ease, transform 220ms ease;
  }

  .main-nav.is-open {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
  }

  .main-nav a {
    padding: 0.55rem;
    border-radius: 8px;
  }

  .main-nav a:hover {
    background: var(--bg-alt);
  }

  .menu-toggle {
    display: block;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 1.35rem, var(--container));
  }

  .section {
    padding: 3.4rem 0;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .whatsapp-float {
    right: 0.8rem;
    bottom: 0.8rem;
    min-width: 56px;
    height: 56px;
    font-size: 0.84rem;
    padding: 0 0.85rem;
  }
}
