
:root {
  --bg: #fffaf7;
  --paper: #ffffff;
  --ink: #26211f;
  --muted: #70635e;
  --brand: #b97564;
  --brand-dark: #7f493d;
  --brand-soft: #f4ded8;
  --green: #1f7a66;
  --line: rgba(127, 73, 61, .18);
  --shadow: 0 18px 50px rgba(58, 32, 26, .12);
  --radius: 26px;
  --max: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.62;
}

img { max-width: 100%; height: auto; }
a { color: var(--brand-dark); text-decoration: none; }
a:hover { text-decoration: underline; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  background: var(--ink);
  color: white;
  padding: 10px 14px;
  border-radius: 10px;
  z-index: 1000;
}
.skip-link:focus { left: 12px; }

.container {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.topbar {
  background: #2d2421;
  color: #fff;
  font-size: 14px;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 0;
  flex-wrap: wrap;
}
.topbar a { color: #fff; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 250, 247, .94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: .01em;
  color: var(--ink);
}
.brand img {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 8px 22px rgba(127, 73, 61, .15);
}
.brand small {
  display: block;
  color: var(--muted);
  font-weight: 600;
  font-size: 12px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  font-weight: 700;
  font-size: 14px;
}
.nav-links a { color: var(--ink); }
.menu-toggle { display: none; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 12px 18px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}
.btn-primary {
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: #fff;
  box-shadow: 0 12px 28px rgba(127, 73, 61, .24);
}
.btn-primary:hover { color: #fff; text-decoration: none; }
.btn-ghost {
  background: #fff;
  border-color: var(--line);
  color: var(--brand-dark);
}
.btn-whats {
  background: #20b15a;
  color: #fff;
}
.btn-whats:hover { color: #fff; text-decoration: none; }

.hero {
  padding: 72px 0 34px;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 44px;
  align-items: center;
}
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--brand-soft);
  color: var(--brand-dark);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  font-weight: 800;
  font-size: 13px;
}
h1, h2, h3 {
  line-height: 1.12;
  margin: 0 0 14px;
}
h1 {
  font-size: clamp(38px, 6vw, 70px);
  letter-spacing: -.04em;
}
h2 {
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: -.03em;
}
h3 { font-size: 22px; }
.lead {
  color: var(--muted);
  font-size: clamp(18px, 2vw, 21px);
  max-width: 760px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}
.hero-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 34px;
  box-shadow: var(--shadow);
  padding: 18px;
  position: relative;
}
.hero-card:before {
  content: "";
  position: absolute;
  inset: -26px -28px auto auto;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: var(--brand-soft);
  z-index: -1;
}
.hero-card img {
  display: block;
  border-radius: 26px;
  aspect-ratio: 4 / 3;
  width: 100%;
  object-fit: cover;
}
.hero-badge {
  margin-top: 14px;
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 12px;
  align-items: center;
}
.hero-badge img {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  aspect-ratio: 1;
}

.section { padding: 62px 0; }
.section-soft {
  background: linear-gradient(180deg, rgba(244, 222, 216, .58), rgba(255, 250, 247, 0));
}
.section-title {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}
.section-title p {
  max-width: 640px;
  color: var(--muted);
  margin: 0;
}

.trust-grid, .steps, .service-grid, .faq-grid, .domain-grid, .quick-grid {
  display: grid;
  gap: 18px;
}
.trust-grid { grid-template-columns: repeat(4, 1fr); }
.steps { grid-template-columns: repeat(4, 1fr); }
.service-grid { grid-template-columns: repeat(3, 1fr); }
.faq-grid { grid-template-columns: repeat(2, 1fr); }
.domain-grid { grid-template-columns: repeat(3, 1fr); }
.quick-grid { grid-template-columns: repeat(2, 1fr); }

.card, .service-card, .step, .faq, .notice, .answer-box {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: 0 12px 36px rgba(58, 32, 26, .07);
}
.card strong, .step strong {
  display: block;
  font-size: 18px;
  margin-bottom: 8px;
}
.card p, .step p, .service-card p, .faq p {
  color: var(--muted);
  margin: 0;
}
.icon {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: var(--brand-soft);
  color: var(--brand-dark);
  font-weight: 900;
  margin-bottom: 14px;
}
.service-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.service-card h3 { margin-bottom: 8px; }
.service-card .meta {
  color: var(--brand-dark);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .07em;
  margin-bottom: 10px;
}
.service-card a {
  margin-top: auto;
  padding-top: 16px;
  font-weight: 900;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 28px;
  align-items: start;
}
.article {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 34px;
  padding: clamp(24px, 4vw, 44px);
  box-shadow: var(--shadow);
}
.article p { color: var(--muted); }
.article ul {
  padding-left: 22px;
  color: var(--muted);
}
.article li { margin: 8px 0; }
.sidebar {
  position: sticky;
  top: 104px;
}
.sidebar .card { margin-bottom: 16px; }
.breadcrumb {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 18px;
}
.breadcrumb a { font-weight: 800; }
.answer-box {
  background: linear-gradient(135deg, #fff, #fff7f4);
  margin: 28px 0;
}
.answer-box strong {
  display: block;
  color: var(--brand-dark);
  margin-bottom: 8px;
}

.contact-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 26px;
}
.map {
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid var(--line);
  min-height: 360px;
  background: #eadbd7;
}
.map iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
}

.reviews-shell {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 32px;
  padding: 18px;
  box-shadow: var(--shadow);
}

.footer {
  background: #2d2421;
  color: #f8eeeb;
  padding: 42px 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  gap: 24px;
}
.footer a { color: #fff; }
.footer p { color: #decac4; margin: 0; }

.whatsapp-float {
  box-shadow: 0 14px 34px rgba(32, 177, 90, .32);
  transition: transform .28s ease, box-shadow .28s ease;
}
.whatsapp-float.attention {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 14px 34px rgba(32, 177, 90, .32);
}
.whatsapp-widget-fixed {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  display: grid;
  justify-items: end;
  gap: 10px;
}
.whatsapp-reminder {
  width: min(330px, calc(100vw - 36px));
  background: #fff;
  border: 1px solid rgba(32, 177, 90, .28);
  border-radius: 22px;
  box-shadow: 0 18px 48px rgba(32, 177, 90, .18);
  padding: 14px;
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity .28s ease, transform .28s ease;
}
.whatsapp-reminder.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.whatsapp-reminder strong {
  display: block;
  color: var(--ink);
  margin-bottom: 4px;
}
.whatsapp-reminder p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}
.whatsapp-close {
  float: right;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
}

.admin-link {
  opacity: .72;
  font-size: 13px;
}

@media (max-width: 980px) {
  .menu-toggle {
    display: inline-flex;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 10px 12px;
    font-weight: 900;
  }
  .nav { flex-wrap: wrap; }
  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 14px;
  }
  .nav-links.open { display: flex; }
  .hero-grid, .content-grid, .contact-grid { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .trust-grid, .steps { grid-template-columns: repeat(2, 1fr); }
  .service-grid, .domain-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .topbar .container { display: none; }
  .hero { padding-top: 38px; }
  .trust-grid, .steps, .service-grid, .faq-grid, .domain-grid, .quick-grid, .footer-grid { grid-template-columns: 1fr; }
  .section-title { display: block; }
  .brand span { max-width: 210px; }
  .whatsapp-float {
    width: 100%;
  }
  .whatsapp-widget-fixed {
    left: 16px;
    right: 16px;
    width: calc(100% - 32px);
    justify-items: stretch;
  }
}
