:root {
  --bg: #f7f5fb;
  --surface: #ffffff;
  --surface-soft: #f3eefc;
  --surface-ink: #faf8ff;
  --text: #1d1630;
  --muted: #665d7e;
  --line: #e4dcf3;
  --brand: #6f3cc3;
  --brand-strong: #55289a;
  --brand-soft: #efe6fb;
  --dark: #15111f;
  --whatsapp: #25d366;
  --shadow: 0 16px 44px rgba(25, 16, 40, .08);
  --shadow-soft: 0 10px 26px rgba(111, 60, 195, .08);
  --radius: 22px;
  --max: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }
.container { width: min(100% - 32px, var(--max)); margin: 0 auto; }

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(247,245,251,.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(111,60,195,.10);
}
.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
}
.brand { display: flex; align-items: center; gap: 12px; font-weight: 900; color: var(--brand); min-width: 0; }
.brand img { height: 38px; width: auto; display: block; flex-shrink: 0; }
.brand span { white-space: nowrap; }
.nav-links { display: flex; gap: 20px; align-items: center; list-style: none; margin: 0; padding: 0; }
.nav-links a { font-weight: 700; color: var(--muted); font-size: .95rem; }
.nav-links a:hover { color: var(--brand); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  padding: 14px 22px;
  font-weight: 900;
  border: 1px solid transparent;
  transition: .2s ease;
  text-align: center;
  line-height: 1.2;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--whatsapp); color: #122319; box-shadow: 0 10px 28px rgba(37,211,102,.22); }
.btn-secondary { background: rgba(255,255,255,.08); color: #fff; border-color: rgba(255,255,255,.18); }
.btn-outline { border-color: rgba(111,60,195,.22); color: var(--brand); background: #fff; }

.breadcrumb { font-size: .9rem; color: var(--muted); padding: 20px 0; }
.breadcrumb a { color: var(--brand); font-weight: 800; }

.hero {
  background: var(--dark);
  color: #fff;
  padding: clamp(58px, 7vw, 84px) 0;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 84% 18%, rgba(111,60,195,.36), transparent 30%),
    radial-gradient(circle at 8% 80%, rgba(183,138,230,.13), transparent 24%);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(310px, .92fr);
  gap: clamp(32px, 5vw, 56px);
  align-items: center;
}
.badge {
  display: inline-flex;
  max-width: 100%;
  flex-wrap: wrap;
  gap: 8px;
  padding: 10px 15px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.9);
  font-size: .9rem;
  margin-bottom: 20px;
}
.hero h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.25rem, 5vw, 4.4rem);
  line-height: 1.02;
  margin: 0;
  letter-spacing: -.035em;
  text-wrap: balance;
}
.hero p { max-width: 690px; color: rgba(255,255,255,.78); font-size: 1.08rem; margin: 18px 0 0; }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.hero-card {
  background: #fff;
  color: var(--text);
  border-radius: 28px;
  padding: clamp(22px, 3vw, 30px);
  box-shadow: 0 24px 60px rgba(0,0,0,.20);
}
.hero-card h2 { font-family: Georgia, "Times New Roman", serif; font-size: 1.55rem; line-height: 1.1; margin: 0 0 12px; }

.check-list { display: grid; gap: 12px; margin: 20px 0 0; padding: 0; list-style: none; }
.check-list li { display: flex; gap: 10px; align-items: flex-start; background: var(--surface-soft); border: 1px solid var(--line); border-radius: 16px; padding: 13px; }
.check-list span { color: var(--brand); font-weight: 900; flex-shrink: 0; }

.section { padding: clamp(60px, 7vw, 82px) 0; scroll-margin-top: 86px; }
.label { display: inline-block; margin-bottom: 12px; font-size: .78rem; text-transform: uppercase; letter-spacing: .12em; font-weight: 900; color: var(--brand); }
.section-title { font-family: Georgia, "Times New Roman", serif; font-size: clamp(2rem, 3.5vw, 3.05rem); line-height: 1.08; letter-spacing: -.02em; margin: 0 0 14px; text-wrap: balance; }
.section-text { max-width: 790px; color: var(--muted); font-size: 1.04rem; margin: 0; }

.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 26px; margin-top: 34px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; margin-top: 34px; }
.card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(22px, 2.5vw, 28px); box-shadow: var(--shadow); height: 100%; }
.card h3 { font-family: Georgia, "Times New Roman", serif; font-size: 1.28rem; line-height: 1.18; margin: 0 0 10px; }
.card p { margin: 0; color: var(--muted); }
.card p + p { margin-top: 12px; }
.card li { color: var(--muted); margin-bottom: 7px; }
.card ul { padding-left: 20px; margin: 12px 0 0; }

.soft { background: #fff; }
.dark { background: var(--dark); color: #fff; }
.dark .section-title { color: #fff; }
.dark .section-text, .dark .card p, .dark .card li { color: rgba(255,255,255,.76); }
.dark .card { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.12); box-shadow: none; }

.steps { counter-reset: s; display: grid; gap: 16px; margin-top: 30px; }
.step { background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 20px; display: grid; grid-template-columns: auto 1fr; gap: 14px; align-items: start; }
.step::before { counter-increment: s; content: counter(s); width: 38px; height: 38px; border-radius: 999px; background: var(--brand-soft); display: grid; place-items: center; color: var(--brand); font-weight: 900; }
.step h3 { margin: 0 0 6px; font-size: 1.05rem; }
.step p { margin: 0; color: var(--muted); }

.faq-list { display: grid; gap: 14px; margin-top: 32px; }
details { background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 18px 20px; box-shadow: var(--shadow-soft); }
summary { cursor: pointer; font-weight: 900; list-style: none; }
summary::-webkit-details-marker { display: none; }
details p { color: var(--muted); margin: 12px 0 0; }

.cta-box { background: linear-gradient(135deg, var(--brand), var(--brand-strong)); color: #fff; border-radius: 30px; padding: clamp(28px, 4vw, 44px); box-shadow: 0 24px 60px rgba(85,40,154,.18); overflow: hidden; }
.cta-box h2 { margin: 0 0 12px; font-family: Georgia, "Times New Roman", serif; font-size: clamp(2rem,3vw,3rem); line-height: 1.05; }
.cta-box p { color: rgba(255,255,255,.88); max-width: 760px; margin: 0 0 22px; }
.service-nav { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 22px; }
.service-nav a { background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 10px 14px; font-weight: 800; color: var(--brand); font-size: .9rem; }

footer { background: var(--dark); color: rgba(255,255,255,.72); padding: 48px 0 24px; }
footer .footer-grid { display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(180px, 1fr) minmax(220px, 1fr); gap: 28px; margin-bottom: 24px; }
footer h4 { margin: 0 0 10px; color: #fff; }
footer p { margin: 0; }
footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
footer a { color: rgba(255,255,255,.78); }
.footer-bottom { padding-top: 18px; border-top: 1px solid rgba(255,255,255,.1); font-size: .9rem; color: rgba(255,255,255,.56); }
.whatsapp-float { position: fixed; right: 20px; bottom: 20px; z-index: 30; width: 60px; height: 60px; border-radius: 999px; background: var(--whatsapp); display: grid; place-items: center; color: #fff; font-size: 1.55rem; box-shadow: 0 14px 30px rgba(37,211,102,.35); }

.privacy-page .hero { padding: 64px 0; }
.legal-layout { display: grid; grid-template-columns: minmax(0, 1fr) 300px; gap: 34px; align-items: start; }
.legal-card { background: #fff; border: 1px solid var(--line); border-radius: 24px; padding: clamp(24px, 4vw, 42px); box-shadow: var(--shadow); }
.legal-card h2 { font-family: Georgia, "Times New Roman", serif; font-size: 1.6rem; line-height: 1.15; margin: 34px 0 10px; }
.legal-card h2:first-child { margin-top: 0; }
.legal-card p, .legal-card li { color: var(--muted); }
.legal-card ul { padding-left: 20px; }
.legal-aside { position: sticky; top: 96px; background: var(--surface-ink); border: 1px solid var(--line); border-radius: 22px; padding: 22px; box-shadow: var(--shadow-soft); }
.legal-aside h3 { margin-top: 0; font-family: Georgia, "Times New Roman", serif; }
.legal-aside a { color: var(--brand); font-weight: 800; }


.app-delivery {
  background: linear-gradient(135deg, #ffffff 0%, #f3eefc 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.app-delivery-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 28px;
  align-items: center;
}
.app-delivery-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: clamp(22px, 3vw, 30px);
  box-shadow: var(--shadow);
}
.app-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.app-feature {
  background: var(--surface-ink);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px;
  transition: .22s ease;
}
.app-feature:hover {
  transform: translateY(-4px);
  border-color: rgba(111,60,195,.26);
  box-shadow: var(--shadow-soft);
}
.app-feature strong { display: block; margin-bottom: 5px; color: var(--text); }
.app-feature span { display: block; color: var(--muted); font-size: .95rem; line-height: 1.45; }
.app-note {
  margin-top: 18px;
  color: var(--muted);
  font-size: .95rem;
}
.app-note a { color: var(--brand); font-weight: 900; }
@media (max-width: 980px) {
  .app-delivery-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .app-feature-grid { grid-template-columns: 1fr; }
}

@media (max-width: 980px) {
  .hero-grid, .grid-2, .grid-3, footer .footer-grid, .legal-layout { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .legal-aside { position: static; }
}
@media (max-width: 640px) {
  .container { width: min(100% - 24px, var(--max)); }
  .nav .container { gap: 10px; }
  .brand span { display: none; }
  .nav .btn { padding: 10px 13px; font-size: .84rem; white-space: nowrap; }
  .btn { width: 100%; padding: 13px 16px; }
  .hero-cta .btn, .cta-box .btn { width: 100%; }
  .breadcrumb { padding: 14px 0; }
  .hero { padding: 46px 0 54px; }
  .hero h1 { font-size: clamp(2.05rem, 12vw, 3.1rem); }
  .badge { border-radius: 18px; }
  .step { grid-template-columns: 1fr; }
  .whatsapp-float { width: 56px; height: 56px; right: 14px; bottom: 14px; }
  footer { padding-bottom: 88px; }
}
.content-stack { display: grid; gap: 18px; margin-top: 34px; }
.content-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(22px, 3vw, 32px); box-shadow: var(--shadow-soft); }
.content-card h3 { font-family: Georgia, "Times New Roman", serif; font-size: 1.38rem; line-height: 1.2; margin: 0 0 10px; }
.content-card p { color: var(--muted); margin: 0; }
.footer-logo { width: min(290px, 100%); height: auto; display: block; margin-bottom: 14px; }
.about-photo-placeholder { background: linear-gradient(135deg, var(--brand-soft), #fff); border: 1px solid var(--line); border-radius: 26px; padding: 28px; box-shadow: var(--shadow); }
.about-photo-placeholder strong { display: block; font-size: 1.2rem; margin-bottom: 8px; }
.founder-photo-card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 30px;
  padding: 16px;
  box-shadow: 0 24px 60px rgba(0,0,0,.20);
  overflow: hidden;
}
.founder-photo-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 28%;
  border-radius: 22px;
  display: block;
  background: #fff;
}
.founder-photo-caption {
  margin-top: 14px;
  color: #fff;
}
.founder-photo-caption strong {
  display: block;
  font-size: 1.18rem;
  margin-bottom: 2px;
}
.founder-photo-caption span {
  display: block;
  color: rgba(255,255,255,.76);
  font-size: .95rem;
}
.about-story-grid {
  align-items: start;
}
.about-info-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: clamp(22px, 3vw, 30px);
  box-shadow: var(--shadow);
  position: sticky;
  top: 96px;
}
.about-info-card h3 {
  margin: 0 0 4px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  line-height: 1.15;
}
@media (max-width: 980px) {
  .about-info-card { position: static; }
}
