:root {
  --bg: #f6f6fa;
  --surface: #ffffff;
  --surface-soft: #f4f3fb;
  --text: #303040;
  --muted: #5b6274;
  --line: #d9dcef;
  --primary: #5020f0;
  --primary-strong: #3f2ac3;
  --secondary: #ff7040;
  --secondary-soft: #ffd9cc;
  --success: #0f9d68;
  --radius: 18px;
  --radius-lg: 26px;
  --shadow: 0 20px 46px rgba(33, 36, 52, 0.12);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  color: var(--text);
  font-family: "Avenir Next", "Nunito Sans", "Gill Sans MT", "Trebuchet MS", sans-serif;
  line-height: 1.6;
  background:
    radial-gradient(1100px 620px at 100% -10%, rgba(255, 112, 64, 0.16), transparent 72%),
    radial-gradient(1100px 700px at -10% 15%, rgba(80, 32, 240, 0.2), transparent 68%),
    linear-gradient(180deg, #fcfcff 0%, #f4f5fa 100%);
}

a {
  color: var(--primary-strong);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  width: min(1150px, 92vw);
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 220;
  background: rgba(246, 247, 252, 0.93);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.topbar__inner {
  height: 72px;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.brand img {
  display: block;
  height: 48px;
  width: auto;
  max-width: min(72vw, 390px);
  object-fit: contain;
  image-rendering: auto;
}

.menu-toggle {
  border: 1px solid #cfd3eb;
  background: #ffffff;
  color: #2f3250;
  border-radius: 999px;
  min-height: 42px;
  padding: 0 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  cursor: pointer;
}

.menu-toggle__icon {
  width: 20px;
  height: 14px;
  position: relative;
  display: inline-block;
}

.menu-toggle__icon::before,
.menu-toggle__icon::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  border-radius: 6px;
  background: currentColor;
  transition: transform 0.2s ease, top 0.2s ease, bottom 0.2s ease;
}

.menu-toggle__icon::before {
  top: 2px;
  box-shadow: 0 5px 0 currentColor;
}

.menu-toggle__icon::after {
  bottom: 0;
}

body.menu-open .menu-toggle {
  background: #f2f4ff;
  border-color: #b8bfe8;
}

body.menu-open .menu-toggle__icon::before {
  top: 6px;
  box-shadow: none;
  transform: rotate(45deg);
}

body.menu-open .menu-toggle__icon::after {
  bottom: 6px;
  transform: rotate(-45deg);
}

.menu-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(10, 20, 24, 0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 300;
}

.side-menu {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: min(340px, 86vw);
  background: #ffffff;
  border-right: 1px solid #d3d8f1;
  box-shadow: 24px 0 46px rgba(34, 37, 59, 0.2);
  transform: translateX(-106%);
  transition: transform 0.28s ease;
  z-index: 320;
  padding: 84px 18px 24px;
}

.side-menu__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.side-menu__list a {
  display: block;
  border-radius: 12px;
  border: 1px solid #dbe0f2;
  color: #2f3250;
  font-weight: 700;
  padding: 12px 14px;
  background: #fbfbff;
}

.side-menu__list a:hover {
  text-decoration: none;
  border-color: #b8bfe8;
}

.side-menu__reserve {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%) !important;
  color: #fff !important;
  border-color: transparent !important;
}

body.menu-open {
  overflow: hidden;
}

body.menu-open .menu-backdrop {
  opacity: 1;
  pointer-events: auto;
}

body.menu-open .side-menu {
  transform: translateX(0);
}

.hero {
  padding: 68px 0 34px;
}

.hero__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 24px;
  align-items: start;
}

.hero__content {
  animation: rise 0.65s ease both;
}

.pill {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  margin: 0 0 12px;
  border: 1px solid #cdc7ff;
  color: #3f2ac3;
  background: linear-gradient(135deg, #f4f1ff 0%, #fff4ef 100%);
  padding: 6px 13px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.85rem;
}

h1 {
  margin: 0;
  font-size: clamp(2rem, 3.6vw, 3.3rem);
  line-height: 1.12;
  max-width: 19ch;
}

.lead {
  color: var(--muted);
  margin: 14px 0 0;
  max-width: 70ch;
}

.cta-group {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

.btn--primary {
  color: #fff;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  box-shadow: 0 12px 25px rgba(80, 32, 240, 0.32);
}

.btn--primary:hover {
  box-shadow: 0 14px 30px rgba(80, 32, 240, 0.42);
}

.btn--ghost {
  color: var(--text);
  background: #fff;
  border-color: var(--line);
}

.btn--whatsapp {
  background: #1daa61;
  border-color: #1daa61;
  color: #fff;
  box-shadow: 0 10px 20px rgba(29, 170, 97, 0.28);
}

.btn--whatsapp:hover {
  background: #179a57;
  border-color: #179a57;
}

.btn--small {
  min-height: 38px;
  padding: 0 14px;
  color: #fff !important;
  background: var(--primary-strong);
}

.btn--full {
  width: 100%;
  margin-top: 8px;
}

.quick-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.quick-points p {
  margin: 0;
  border: 1px solid #d9ddf2;
  background: #fcfcff;
  border-radius: 12px;
  padding: 10px 12px;
  font-weight: 600;
  color: #434868;
}

.trust-line {
  margin: 14px 0 0;
  font-weight: 700;
  color: #3f4463;
  font-size: 0.95rem;
}

.hero-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: var(--shadow);
  animation: rise 0.65s ease both;
}

h2 {
  margin: 0 0 10px;
  line-height: 1.2;
  font-size: clamp(1.45rem, 2.3vw, 2rem);
}

.hero-card p {
  margin: 0;
  color: var(--muted);
}

.metrics {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.metrics article {
  border-radius: 14px;
  padding: 14px 12px;
  background: linear-gradient(145deg, #f5f2ff 0%, #fff4ed 100%);
  border: 1px solid #d9dcf0;
  text-align: center;
}

.metrics strong {
  display: block;
  font-size: 1.5rem;
  color: var(--primary-strong);
  line-height: 1.05;
}

.metrics span {
  color: #5e637e;
  font-size: 0.87rem;
  font-weight: 700;
}

.tags-list {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tags-list li {
  font-size: 0.86rem;
  border-radius: 999px;
  padding: 6px 10px;
  background: #f3f2ff;
  border: 1px solid #d8d7ff;
  color: #3f2ac3;
  font-weight: 700;
}

.micro {
  margin: 10px 0 0;
  color: #4d6266;
  font-size: 0.9rem;
}

.micro--contact {
  margin-top: 24px;
  text-align: center;
  font-size: 1rem;
  font-weight: 700;
  color: #000;
}

.micro--contact a {
  display: inline-block;
  color: #000;
  font-size: 1.16rem;
  font-weight: 800;
}

.micro--contact a:hover {
  color: #000;
}

.section {
  padding: 54px 0;
}

.section--alt {
  background: var(--surface-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section--blend {
  background:
    linear-gradient(180deg, rgba(245, 243, 255, 0.92) 0%, rgba(255, 242, 236, 0.86) 100%);
  border-top: 1px solid rgba(212, 216, 240, 0.9);
  border-bottom: 1px solid rgba(212, 216, 240, 0.9);
}

.price-compare {
  border: 1px solid #d5daf0;
  background: #ffffff;
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 12px 24px rgba(33, 36, 52, 0.08);
}

.price-compare h2 {
  margin-bottom: 8px;
}

.price-compare p {
  margin: 0;
  color: var(--muted);
}

.section-intro {
  margin: 6px 0 0;
  color: var(--muted);
}

.office-gallery {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.office-photo-card {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #d8dcef;
  background: #fff;
  box-shadow: 0 14px 28px rgba(33, 37, 60, 0.1);
}

.office-photo-card img {
  display: block;
  width: 100%;
  height: min(480px, 56vw);
  object-fit: cover;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.why-card {
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid #d5daf0;
  background: #ffffff;
  box-shadow: 0 10px 25px rgba(35, 38, 58, 0.08);
}

.why-card p {
  color: var(--muted);
}

.why-card ul {
  margin: 10px 0 0;
  padding-left: 20px;
  color: #4a4f6f;
}

.why-card li {
  margin-bottom: 8px;
}

.effect {
  margin-top: 12px;
  font-weight: 800;
  color: #3f2ac3;
}

.cards {
  margin-top: 20px;
  display: grid;
  gap: 16px;
}

.cards--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  padding: 20px;
  background: #fff;
  box-shadow: 0 10px 25px rgba(12, 32, 34, 0.05);
}

h3 {
  margin: 0 0 8px;
  font-size: 1.2rem;
}

.card p {
  color: var(--muted);
  margin: 0;
}

.compact-list {
  margin: 10px 0 0;
  padding-left: 18px;
  color: #4a4f6f;
}

.compact-list li {
  margin-bottom: 6px;
}

.result-line {
  margin: 16px 0 0;
  font-weight: 700;
  color: #3f2ac3;
}

.docs-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 16px;
  align-items: start;
}

.check-list {
  margin: 12px 0 0;
  padding-left: 18px;
}

.check-list li {
  margin-bottom: 9px;
  color: #464b6b;
}

.address-card {
  border: 1px solid #d6dbef;
  border-radius: var(--radius);
  padding: 20px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(35, 39, 59, 0.08);
}

.address-card p {
  margin: 0;
  color: var(--muted);
}

.city-grid {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.city-grid li {
  border: 1px solid #d7dbef;
  border-radius: 12px;
  background: #fff;
  padding: 10px 12px;
  font-weight: 700;
  color: #3f4463;
  text-align: center;
}

.reviews-slider {
  margin-top: 18px;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid #d4d9ef;
  background: #fff;
  box-shadow: 0 16px 30px rgba(34, 38, 58, 0.1);
}

.reviews-track {
  display: flex;
  width: max-content;
  animation: slide 55s linear infinite;
}

.review-card {
  width: min(360px, 85vw);
  min-height: 210px;
  border-right: 1px solid #dce0f2;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;
}

.review-card p {
  margin: 0;
  color: #525877;
}

.review-card strong {
  color: #303552;
}

.review-card span {
  color: #6b718d;
  font-size: 0.92rem;
}

.review-links {
  margin-top: 14px;
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.review-links a {
  font-weight: 800;
}

.section--cta {
  padding-top: 36px;
}

.cta-panel {
  border-radius: 24px;
  padding: 28px;
  background:
    radial-gradient(600px 220px at 85% -25%, rgba(255, 255, 255, 0.22), transparent 65%),
    linear-gradient(135deg, #5020f0 0%, #ff7040 100%);
  color: #fffaf8;
}

.cta-panel h2 {
  color: #fff;
}

.cta-panel p {
  margin: 0;
  max-width: 66ch;
}

.cta-panel .btn--ghost {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.36);
  color: #fff;
}

.cta-panel .btn--whatsapp {
  background: #1daa61;
  border-color: #1daa61;
  color: #fff;
}

.cta-panel .btn--whatsapp:hover {
  background: #179a57;
  border-color: #179a57;
}

.cta-panel .btn--primary {
  background: linear-gradient(135deg, #ebe3ff 0%, #ffd8ca 100%);
  color: #352f63;
  box-shadow: 0 12px 24px rgba(52, 47, 99, 0.24);
}

.faq {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

details {
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #fff;
  padding: 12px 14px;
}

summary {
  cursor: pointer;
  font-weight: 800;
}

details p {
  margin: 9px 0 2px;
  color: var(--muted);
}

.footer {
  background: #252839;
  color: #e3e5f4;
  border-top: 1px solid #363a52;
  padding: 34px 0 98px;
}

.footer h3,
.footer h4 {
  margin: 0 0 8px;
  color: #f5feff;
}

.footer p {
  margin: 0 0 10px;
  color: #bec3de;
}

.legal-inline {
  margin-top: 12px;
  font-size: 0.92rem;
}

.legal-inline a {
  color: #ffaf8f;
  font-weight: 700;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 16px;
}

.footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer li {
  margin-bottom: 8px;
}

.footer a {
  color: #ffaf8f;
}

.floating-cta {
  position: fixed;
  right: 14px;
  bottom: 14px;
  z-index: 250;
  color: #fff;
  background: linear-gradient(135deg, #5020f0 0%, #ff7040 100%);
  box-shadow: 0 16px 28px rgba(44, 40, 87, 0.36);
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 800;
}

.floating-cta:hover {
  text-decoration: none;
}

.legal-page {
  min-height: 100vh;
}

.legal-main {
  padding: 64px 0 90px;
}

.legal-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  padding: 24px;
  box-shadow: 0 14px 30px rgba(33, 36, 52, 0.08);
}

.legal-card h1 {
  margin-top: 0;
  margin-bottom: 12px;
  font-size: clamp(1.6rem, 3vw, 2.3rem);
}

.legal-card h2 {
  margin-top: 20px;
}

.legal-card p,
.legal-card li {
  color: var(--muted);
}

.legal-card ul {
  margin-top: 8px;
  padding-left: 18px;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}

@media (max-width: 1100px) {
  .city-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .hero__layout,
  .docs-grid,
  .why-grid,
  .office-gallery,
  .footer-grid,
  .cards--2 {
    grid-template-columns: 1fr;
  }

  .city-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .quick-points {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .hero {
    padding-top: 42px;
  }

  .brand img {
    height: 40px;
    width: auto;
    max-width: 68vw;
  }

  .cta-group {
    width: 100%;
  }

  .cta-group .btn {
    width: 100%;
  }

  .city-grid {
    grid-template-columns: 1fr;
  }

  .floating-cta {
    left: 12px;
    right: 12px;
    text-align: center;
  }
}
