:root {
  --green: #1f8f5f;
  --orange: #f08a24;
  --white: #ffffff;
  --text: #163126;
  --muted: #5c6f67;
  --bg: #f7fbf9;
  --shadow: 0 10px 30px rgba(17, 52, 39, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Manrope", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

.container { width: min(1120px, 92vw); margin: 0 auto; }
.site-header {
  position: sticky; top: 0; z-index: 1000;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(31, 143, 95, 0.12);
  min-height: 82px;
  display: flex;
  align-items: center;
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  padding: 0.45rem 0;
  gap: 1rem;
}
.brand { display: inline-flex; align-items: center; text-decoration: none; color: inherit; }
.brand-logo {
  display: block;
  height: 62px;
  max-height: 62px;
  width: auto;
  max-width: 240px;
  object-fit: contain;
}
.site-header .brand-logo { width: auto; }
.menu-toggle {
  border: 1px solid #d8e6df; background: #fff; border-radius: 10px; padding: 0.55rem 0.8rem; font-weight: 700;
}
.main-nav { display: none; gap: 1rem; }
.main-nav a { text-decoration: none; color: var(--text); font-weight: 600; }
.main-nav a:hover { color: var(--green); }
.main-nav.is-open { display: flex; flex-direction: column; position: absolute; top: 64px; right: 4vw; background: #fff; padding: 1rem; border-radius: 12px; box-shadow: var(--shadow); }

.hero {
  background: radial-gradient(circle at 10% 5%, rgba(240, 138, 36, 0.16), transparent 30%),
              linear-gradient(145deg, #eaf7f0 0%, #f8fcff 100%);
  padding: 3.5rem 0 2.7rem;
}
.section-curve { border-bottom-left-radius: 42px; border-bottom-right-radius: 42px; overflow: hidden; }
.hero-grid { display: grid; gap: 1.2rem; }
.eyebrow {
  display: inline-block; margin: 0 0 0.6rem; padding: 0.35rem 0.7rem;
  border-radius: 100px; background: rgba(240, 138, 36, 0.15); color: #b65c00; font-weight: 800;
}
h1 { font-size: clamp(1.9rem, 5vw, 3.1rem); line-height: 1.15; margin: 0 0 0.8rem; }
.hero-copy p { margin: 0 0 1rem; color: var(--muted); }
.cta-row { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.btn {
  display: inline-block; text-decoration: none; font-weight: 700; padding: 0.72rem 1rem;
  border-radius: 12px; transition: transform .2s ease, box-shadow .2s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-whatsapp { background: var(--green); color: #fff; }
.btn-call { background: var(--orange); color: #fff; }
.btn-outline { border: 1px solid #b8d9c9; color: var(--green); background: #fff; }
.hero-card {
  border-radius: 20px; overflow: hidden; background: #fff; box-shadow: var(--shadow);
}
.hero-card img { display: block; width: 100%; height: auto; }

.section { padding: 3rem 0; }
.section-soft { background: linear-gradient(180deg, #fff 0%, #f1f8f4 100%); }
.section-title { margin: 0 0 1rem; font-size: clamp(1.45rem, 3vw, 2.2rem); }

.cards {
  display: grid; gap: 0.9rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.card, .panel, .contact-card {
  background: #fff; border-radius: 16px; padding: 1.1rem; box-shadow: var(--shadow);
}
.card h3, .panel h2, .contact-card h3 { margin-top: 0; margin-bottom: 0.55rem; }
.card p, .contact-card p { margin: 0; color: var(--muted); }

.split { display: grid; gap: 1rem; }
.hours-list { margin: 0; padding: 0; list-style: none; }
.hours-list li {
  display: flex; justify-content: space-between; gap: 1rem; padding: 0.6rem 0;
  border-bottom: 1px solid #edf2ef;
}

.contact-grid {
  display: grid; gap: 0.9rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.contact-card a { color: var(--green); text-decoration: none; font-weight: 700; }

.site-footer {
  background: #0f3a2b; color: #d7efe5; text-align: center; padding: 1.2rem 0;
}

.floating-whatsapp {
  position: fixed; right: 1rem; bottom: 1rem;
  width: 3.35rem; height: 3.35rem; border-radius: 50%;
  display: grid; place-items: center;
  background: #24cc63; color: #fff; box-shadow: var(--shadow); z-index: 1200;
}
.floating-whatsapp svg { width: 1.45rem; fill: currentColor; }

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.site-header .main-nav,
.site-header .menu-toggle {
  align-self: center;
}

@media (max-width: 768px) {
  .site-header { min-height: 64px; }
  .nav-wrap { min-height: 64px; padding: 0.32rem 0; gap: 0.65rem; }
  .brand {
    min-width: 0;
    flex: 0 1 auto;
    max-width: min(56vw, 168px);
  }
  .brand-logo {
    height: 40px;
    max-height: 40px;
    max-width: 100%;
    width: auto;
  }
}

@media (max-width: 420px) {
  .brand { max-width: min(52vw, 144px); }
  .brand-logo {
    height: 36px;
    max-height: 36px;
  }
  .site-header { min-height: 60px; }
  .nav-wrap { min-height: 60px; }
}

@media (min-width: 860px) {
  .menu-toggle { display: none; }
  .main-nav { display: flex; }
  .main-nav.is-open { all: unset; display: flex; gap: 1rem; }
  .hero-grid { grid-template-columns: 1.2fr 1fr; align-items: center; }
  .split { grid-template-columns: 1fr 1fr; }
}
