:root {
  --green: #1f9f71;
  --green-dark: #0f6f4d;
  --purple: #6f35c6;
  --purple-dark: #3f1f78;
  --soft-green: #eaf8f2;
  --soft-purple: #f1eafa;
  --text: #202331;
  --muted: #626579;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(31, 159, 113, 0.16);
  --radius: 28px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: Arial, Helvetica, sans-serif;
  background: var(--white);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(111, 53, 198, 0.12);
}

.navbar {
  width: min(1180px, calc(100% - 36px));
  margin: auto;
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: #fff;
  font-weight: 800;
  font-size: 1.4rem;
  background: linear-gradient(135deg, var(--green), var(--purple));
  box-shadow: 0 12px 28px rgba(111, 53, 198, 0.22);
}
.brand strong { display: block; font-size: 1.15rem; }
.brand small { color: var(--muted); font-size: 0.78rem; }

.nav-links { display: flex; align-items: center; gap: 22px; font-weight: 700; color: #363949; }
.nav-links a { transition: color .25s ease, transform .25s ease; }
.nav-links a:hover { color: var(--purple); transform: translateY(-2px); }
.nav-cta {
  padding: 11px 18px;
  color: white !important;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--green), var(--purple));
}
.menu-toggle { display: none; border: none; background: var(--soft-purple); color: var(--purple-dark); font-size: 1.4rem; border-radius: 12px; padding: 8px 12px; }

.hero {
  position: relative;
  width: min(1180px, calc(100% - 36px));
  margin: 42px auto 0;
  min-height: 650px;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 34px;
  align-items: center;
  padding: 58px;
  border-radius: 42px;
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 24%, rgba(31,159,113,.14), transparent 34%),
    radial-gradient(circle at 78% 12%, rgba(111,53,198,.16), transparent 34%),
    linear-gradient(135deg, #fff, #fbfffd 55%, #f8f3ff);
  box-shadow: var(--shadow);
  border: 1px solid rgba(31, 159, 113, .14);
}

.hero-bg-shape { position: absolute; border-radius: 999px; filter: blur(1px); opacity: .85; }
.shape-one { width: 250px; height: 250px; right: -80px; top: 110px; background: rgba(31,159,113,.13); }
.shape-two { width: 330px; height: 330px; left: -120px; bottom: -130px; background: rgba(111,53,198,.12); }

.eyebrow { color: var(--green-dark); font-weight: 800; text-transform: uppercase; letter-spacing: .11em; font-size: .78rem; margin-bottom: 14px; }
.eyebrow.light { color: #ddffef; }
.hero h1 { font-size: clamp(4rem, 10vw, 8.7rem); line-height: .86; color: var(--purple-dark); letter-spacing: -0.08em; }
.hero h2 { font-size: clamp(1.65rem, 3vw, 3rem); line-height: 1.08; margin: 22px 0 18px; color: var(--green-dark); }
.hero-text { color: var(--muted); font-size: 1.18rem; max-width: 650px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 24px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform .25s ease, box-shadow .25s ease;
}
.btn:hover { transform: translateY(-3px); }
.btn.primary { color: white; background: linear-gradient(135deg, var(--green), var(--purple)); box-shadow: 0 16px 36px rgba(111, 53, 198, .22); }
.btn.secondary { color: var(--purple-dark); background: white; border: 1px solid rgba(111, 53, 198, .18); }

.hero-card {
  position: relative;
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(111, 53, 198, .14);
  border-radius: 34px;
  padding: 36px;
  box-shadow: 0 28px 70px rgba(63, 31, 120, .16);
  overflow: hidden;
}
.pulse-circle {
  width: 145px;
  height: 145px;
  border-radius: 50%;
  margin: 0 auto 28px;
  background: conic-gradient(from 140deg, var(--green), var(--purple), var(--green));
  position: relative;
  animation: spin 10s linear infinite;
}
.pulse-circle::after {
  content: "";
  position: absolute;
  inset: 20px;
  border-radius: 50%;
  background: white;
  box-shadow: inset 0 0 0 18px var(--soft-green);
}
.card-label { color: var(--green-dark); font-weight: 800; }
.hero-card h3 { font-size: 2rem; color: var(--purple-dark); margin: 6px 0 12px; }
.hero-card p { color: var(--muted); }
.mini-info { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.mini-info span { background: var(--soft-purple); color: var(--purple-dark); padding: 8px 12px; border-radius: 999px; font-weight: 800; font-size: .85rem; }

.section { width: min(1180px, calc(100% - 36px)); margin: 80px auto; }
.section-title { text-align: center; max-width: 820px; margin: 0 auto 34px; }
.section-title h2, .service-copy h2, .location-card h2, .contact-box h2 { font-size: clamp(2rem, 4vw, 3.4rem); line-height: 1.08; color: var(--purple-dark); letter-spacing: -0.04em; }

.intro-grid, .benefits-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 22px; }
.glass-card, .benefit, .contact-box, .location-card {
  background: white;
  border: 1px solid rgba(31, 159, 113, .16);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: 0 18px 50px rgba(31, 159, 113, .10);
}
.glass-card h3, .benefit h3 { color: var(--green-dark); font-size: 1.45rem; margin-bottom: 10px; }
.glass-card p, .benefit p, .location-card p, .contact-box p { color: var(--muted); }

.service-band {
  display: grid;
  grid-template-columns: 1fr .8fr;
  gap: 28px;
  align-items: center;
  padding: 44px;
  border-radius: 38px;
  background: linear-gradient(135deg, var(--green-dark), var(--purple));
  color: white;
  box-shadow: 0 24px 70px rgba(63, 31, 120, .22);
}
.service-copy h2 { color: white; }
.service-copy p { color: rgba(255,255,255,.86); font-size: 1.08rem; margin-top: 14px; }
.service-panel { background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.25); border-radius: 26px; padding: 28px; }
.service-panel h3 { margin-bottom: 14px; font-size: 1.4rem; }
.service-panel ul { list-style: none; display: grid; gap: 12px; }
.service-panel li { padding: 11px 13px; border-radius: 14px; background: rgba(255,255,255,.12); }

.benefit { position: relative; overflow: hidden; }
.benefit::before { content: ""; position: absolute; right: -45px; top: -45px; width: 130px; height: 130px; background: var(--soft-purple); border-radius: 50%; }
.benefit span { display: inline-grid; place-items: center; width: 48px; height: 48px; border-radius: 16px; color: white; background: linear-gradient(135deg, var(--green), var(--purple)); font-weight: 900; margin-bottom: 18px; }

.location { background: linear-gradient(135deg, var(--soft-green), var(--soft-purple)); border-radius: 38px; padding: 26px; }
.location-card { max-width: 760px; margin: auto; text-align: center; }
.location-card p { margin: 16px 0 24px; }

.contact { margin-bottom: 50px; }
.contact-box { text-align: center; max-width: 760px; margin: auto; background: linear-gradient(180deg, #fff, #fbfff9); }
.phone { display: block; color: var(--green-dark); font-size: clamp(2rem, 6vw, 4rem); font-weight: 900; letter-spacing: -0.06em; margin: 18px 0; }

.footer { padding: 34px 18px; text-align: center; color: #fff; background: linear-gradient(135deg, var(--purple-dark), var(--green-dark)); }
.footer p + p { opacity: .82; margin-top: 6px; }

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  color: white;
  background: linear-gradient(135deg, var(--green), var(--purple));
  border-radius: 999px;
  padding: 14px 18px;
  font-weight: 900;
  box-shadow: 0 18px 34px rgba(63,31,120,.26);
}

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .8s ease, transform .8s ease; }
.reveal.active { opacity: 1; transform: translateY(0); }

@keyframes spin { to { transform: rotate(360deg); } }

@media (max-width: 860px) {
  .menu-toggle { display: block; }
  .nav-links {
    position: absolute;
    top: 78px;
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: white;
    padding: 20px;
    border-radius: 22px;
    box-shadow: 0 24px 60px rgba(31,159,113,.18);
    border: 1px solid rgba(111,53,198,.12);
  }
  .nav-links.open { display: flex; }
  .hero { grid-template-columns: 1fr; padding: 34px 22px; min-height: auto; }
  .hero h1 { font-size: clamp(3.7rem, 18vw, 6rem); }
  .service-band, .intro-grid, .benefits-grid { grid-template-columns: 1fr; }
  .service-band { padding: 28px; }
}

@media (max-width: 520px) {
  .navbar, .hero, .section { width: min(100% - 24px, 1180px); }
  .brand small { display: none; }
  .hero-card, .glass-card, .benefit, .contact-box, .location-card { padding: 24px; }
  .floating-whatsapp { left: 18px; right: 18px; text-align: center; }
}
