:root{
  --bg-start:#8b6be4;
  --bg-end:#a98cf0;
  --surface:rgba(255,255,255,.92);
  --surface-soft:rgba(255,255,255,.82);
  --line:rgba(255,255,255,.58);
  --text:#0f172a;
  --muted:#475569;
  --primary:#16a34a;
  --primary-dark:#15803d;
  --secondary:#2563eb;
  --footer:#111827;
  --shadow:0 22px 54px rgba(15,23,42,.15);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:"Nunito",ui-sans-serif,system-ui,sans-serif;
  color:var(--text);
  background:linear-gradient(135deg,var(--bg-start),var(--bg-end));
}

a{text-decoration:none;color:inherit}
img{max-width:100%;display:block}

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

.site-header{
  position:sticky;
  top:0;
  z-index:40;
  backdrop-filter:blur(12px);
  -webkit-backdrop-filter:blur(12px);
  background:rgba(255,255,255,.18);
  border-bottom:1px solid rgba(255,255,255,.35);
}

.site-header .container{
  min-height:84px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  font-family:"Quicksand",sans-serif;
  font-weight:700;
}

.brand-mark{
  width:42px;
  height:42px;
  border-radius:50%;
  display:grid;
  place-items:center;
  background:rgba(255,255,255,.35);
  border:1px solid rgba(255,255,255,.5);
  overflow:hidden;
}

.brand-mark img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.brand small{
  display:block;
  font-family:"Nunito",sans-serif;
  font-size:.78rem;
  color:#5b21b6;
  font-weight:600;
}

.nav{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  justify-content:center;
  gap:18px;
  font-size:.95rem;
}

.nav a{color:#1f2937}

.header-cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:44px;
  padding:10px 20px;
  border-radius:14px;
  background:#fff;
  font-weight:800;
  box-shadow:0 10px 24px rgba(15,23,42,.08);
}

.page-hero{
  padding:48px 0 28px;
}

.hero-card{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:28px;
  align-items:center;
  padding:32px;
  background:
    radial-gradient(circle at top left, rgba(191,219,254,.88), transparent 34%),
    linear-gradient(135deg, rgba(255,255,255,.94), rgba(239,246,255,.86));
  border:1px solid rgba(255,255,255,.75);
  border-radius:28px;
  box-shadow:var(--shadow);
}

.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 14px;
  border-radius:999px;
  background:rgba(37,99,235,.12);
  color:#1d4ed8;
  font-size:.85rem;
  font-weight:800;
  margin-bottom:18px;
}

h1,h2,h3,h4{font-family:"Quicksand",sans-serif;margin:0 0 14px}
h1{font-size:clamp(2rem,5vw,3.8rem);line-height:1.05}
h2{font-size:clamp(1.8rem,4vw,2.8rem)}
h3{font-size:1.5rem}

.lead,.section-intro,p,li{color:var(--muted);line-height:1.7}
.lead{font-size:1.05rem}

.button-row{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-top:22px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:52px;
  padding:14px 22px;
  border-radius:999px;
  font-weight:800;
  transition:.18s ease;
}

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

.btn-primary{
  background:linear-gradient(135deg,var(--primary),#22c55e);
  color:#fff;
  box-shadow:0 16px 34px rgba(34,197,94,.28);
}

.btn-secondary{
  background:#fff;
  color:var(--text);
  border:1px solid rgba(148,163,184,.3);
  box-shadow:0 10px 24px rgba(15,23,42,.08);
}

.hero-side,.section-card,.info-card{
  background:var(--surface);
  border:1px solid rgba(226,232,240,.9);
  border-radius:24px;
  box-shadow:0 16px 40px rgba(15,23,42,.08);
}

.hero-side{padding:20px}
.hero-side + .hero-side{margin-top:14px}

.price-list,.bullet-list,.cards,.social-cards{display:grid;gap:14px}
.price-row{display:flex;justify-content:space-between;gap:16px;color:var(--muted)}
.price-row strong{color:var(--text)}

.section{padding:26px 0 42px}
.section-shell{
  padding:30px;
  background:var(--surface-soft);
  border:1px solid var(--line);
  border-radius:28px;
  box-shadow:var(--shadow);
}

.section-head{
  text-align:center;
  max-width:760px;
  margin:0 auto 28px;
}

.grid-2,.grid-3{
  display:grid;
  gap:20px;
  align-items:stretch;
}
.grid-2{grid-template-columns:repeat(2,minmax(0,1fr))}
.grid-3{grid-template-columns:repeat(3,minmax(0,1fr))}

.section-card,.info-card{padding:24px}

.section-card h2{
  font-size:clamp(1.7rem,2.4vw,2.3rem);
  line-height:1.08;
  overflow-wrap:anywhere;
  word-break:break-word;
}

.section-card h3{
  font-size:clamp(1.3rem,1.8vw,1.7rem);
  line-height:1.12;
  overflow-wrap:anywhere;
  word-break:break-word;
}

.card-icon{
  width:56px;
  height:56px;
  border-radius:18px;
  display:grid;
  place-items:center;
  background:linear-gradient(135deg,#dbeafe,#eff6ff);
  margin-bottom:14px;
  font-size:1.45rem;
}

.tags{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:18px;
}

.tag{
  padding:8px 12px;
  border-radius:999px;
  background:rgba(219,234,254,.8);
  color:#1e3a8a;
  font-size:.86rem;
  font-weight:700;
}

.stars{color:#f59e0b;letter-spacing:.18em;margin-bottom:10px}

.form-grid{display:grid;gap:16px}
.form-grid-2{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:16px}
label{display:block;font-weight:800;margin-bottom:8px}
input,select,textarea{
  width:100%;
  padding:14px 16px;
  border-radius:16px;
  border:1px solid rgba(148,163,184,.35);
  background:#fff;
  font:inherit;
  color:var(--text);
}
textarea{min-height:130px;resize:vertical}

.site-footer{
  margin-top:42px;
  background:var(--footer);
  color:#fff;
  padding:42px 0 28px;
}

.footer-grid{
  display:grid;
  grid-template-columns:1.4fr 1fr 1fr 1fr;
  gap:20px;
}

.site-footer p,.site-footer a{color:#cbd5e1}
.copyright{
  margin-top:26px;
  padding-top:18px;
  border-top:1px solid rgba(255,255,255,.12);
  text-align:center;
  color:#94a3b8;
  font-size:.92rem;
}

.sticky-actions{
  position:fixed;
  right:18px;
  bottom:18px;
  z-index:50;
  display:grid;
  gap:10px;
}

.sticky-actions a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:50px;
  padding:12px 18px;
  border-radius:999px;
  color:#fff;
  font-weight:800;
  box-shadow:0 16px 36px rgba(15,23,42,.2);
}

.sticky-whatsapp{background:linear-gradient(135deg,var(--primary),#22c55e)}
.sticky-ritalindas{background:linear-gradient(135deg,#1d4ed8,#2563eb)}

.page-image{
  width:100%;
  border-radius:22px;
  box-shadow:0 18px 38px rgba(15,23,42,.12);
  object-fit:cover;
}

.group-page .hero-card{
  background:linear-gradient(135deg, rgba(255,255,255,.98), rgba(248,250,252,.95));
  border:1px solid rgba(226,232,240,.95);
}

.group-page .section-shell{
  background:rgba(255,255,255,.9);
}

.group-page .lead,
.group-page .section-head p,
.group-page .section-card p,
.group-page .section-card li,
.group-page .price-row{
  color:#111827;
}

.group-page .section-card h2,
.group-page .section-card h3,
.group-page .section-head h2{
  color:#0f172a;
}

.group-page .hero-card .lead{
  color:#1f2937;
}

@media (max-width: 960px){
  .hero-card,.grid-2,.grid-3,.form-grid-2,.footer-grid{grid-template-columns:1fr}
  .site-header .container{padding:14px 0;align-items:flex-start;flex-direction:column}
  .nav{justify-content:flex-start}
  .sticky-actions{left:14px;right:14px;bottom:14px}
  .sticky-actions a{width:100%}
}
