/* muse-visit.cyou — Rosetta Audio Guides — mvc namespace */

:root {
  --mvc-indigo: #4f46e5;
  --mvc-violet: #7c3aed;
  --mvc-amber: #f5b333;
  --mvc-near: #14121f;
  --mvc-slate: #565270;
  --mvc-mist: #f1f0fb;
  --mvc-white: #ffffff;
  --mvc-line: #e2e0f2;

  --mvc-head: "Gabarito", "Segoe UI", system-ui, sans-serif;
  --mvc-body: "Onest", -apple-system, "Segoe UI", sans-serif;

  --mvc-max: 1180px;
  --mvc-r: 18px;
  --mvc-r-sm: 10px;
  --mvc-shadow: 0 24px 52px -28px rgba(20, 18, 31, 0.5);
}

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

body {
  margin: 0;
  font-family: var(--mvc-body);
  font-size: 17px;
  line-height: 1.72;
  color: var(--mvc-slate);
  background: var(--mvc-white);
}

h1, h2, h3, h4 {
  font-family: var(--mvc-head);
  color: var(--mvc-near);
  line-height: 1.12;
  font-weight: 700;
  margin: 0 0 16px;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.2rem, 5.4vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.6vw, 2.3rem); }
h3 { font-size: 1.2rem; }
p { margin: 0 0 18px; }

a { color: var(--mvc-indigo); text-decoration: none; }
a:hover { color: var(--mvc-violet); }

img { max-width: 100%; height: auto; display: block; }

.mvc-wrap { max-width: var(--mvc-max); margin: 0 auto; padding: 0 24px; }

/* Header */
.mvc-top { background: var(--mvc-white); border-bottom: 1px solid var(--mvc-line); position: sticky; top: 0; z-index: 40; }
.mvc-top__row { display: flex; align-items: center; justify-content: space-between; gap: 18px; min-height: 72px; }
.mvc-brand { display: flex; align-items: center; gap: 12px; }
.mvc-brand:hover { text-decoration: none; }
.mvc-brand__mark { width: 40px; height: 40px; flex: none; border-radius: 12px; background: linear-gradient(135deg, var(--mvc-indigo), var(--mvc-violet)); display: grid; place-items: center; color: #fff; font-family: var(--mvc-head); font-weight: 700; }
.mvc-brand__name { display: block; font-family: var(--mvc-head); font-weight: 700; color: var(--mvc-near); font-size: 1.04rem; }
.mvc-brand__sub { display: block; font-size: 0.72rem; color: var(--mvc-slate); letter-spacing: 0.03em; }

.mvc-nav { display: flex; align-items: center; gap: 22px; }
.mvc-nav a { color: var(--mvc-slate); font-size: 0.94rem; font-weight: 500; }
.mvc-nav a.is-on { color: var(--mvc-indigo); }
.mvc-nav .mvc-get { background: var(--mvc-near); color: #fff; padding: 9px 18px; border-radius: 999px; font-weight: 600; }
.mvc-nav .mvc-get:hover { background: var(--mvc-indigo); text-decoration: none; }

.mvc-burger { display: none; border: 1px solid var(--mvc-line); background: var(--mvc-mist); color: var(--mvc-near); border-radius: var(--mvc-r-sm); padding: 8px 14px; font: inherit; cursor: pointer; }

/* Buttons */
.mvc-btn { display: inline-block; font-family: var(--mvc-head); font-weight: 700; padding: 13px 26px; border-radius: 999px; cursor: pointer; border: 2px solid transparent; font-size: 0.98rem; }
.mvc-btn:hover { text-decoration: none; }
.mvc-btn--dark { background: var(--mvc-near); color: #fff; }
.mvc-btn--dark:hover { background: var(--mvc-indigo); }
.mvc-btn--indigo { background: var(--mvc-indigo); color: #fff; }
.mvc-btn--indigo:hover { background: var(--mvc-violet); }
.mvc-btn--ghost { background: transparent; color: var(--mvc-indigo); border-color: var(--mvc-line); }
.mvc-btn--ghost:hover { border-color: var(--mvc-indigo); }
.mvc-btn--block { display: block; width: 100%; text-align: center; }

/* Hero — split text + phone visual */
.mvc-hero { background: var(--mvc-mist); padding: 70px 0; }
.mvc-hero__grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 48px; align-items: center; }
.mvc-hero__eyebrow { display: inline-block; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--mvc-violet); background: rgba(124,58,237,0.1); padding: 5px 13px; border-radius: 999px; margin-bottom: 18px; }
.mvc-hero__lead { font-size: 1.12rem; margin-bottom: 26px; }
.mvc-hero__actions { display: flex; gap: 12px; flex-wrap: wrap; }
.mvc-hero__visual { position: relative; }
.mvc-hero__visual img { border-radius: var(--mvc-r); box-shadow: var(--mvc-shadow); }

/* Sections */
.mvc-sec { padding: 64px 0; }
.mvc-sec--mist { background: var(--mvc-mist); }
.mvc-sec--dark { background: var(--mvc-near); color: #b9b6cc; }
.mvc-sec--dark h2, .mvc-sec--dark h3 { color: #fff; }
.mvc-sec--dark a { color: var(--mvc-amber); }

.mvc-head { max-width: 720px; margin-bottom: 40px; }
.mvc-kick { display: inline-block; font-size: 0.77rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--mvc-amber); margin-bottom: 10px; }

.mvc-pagehead { background: var(--mvc-mist); padding: 56px 0 18px; border-bottom: 1px solid var(--mvc-line); }
.mvc-pagehead__lead { max-width: 760px; font-size: 1.08rem; }
.mvc-crumb { font-size: 0.83rem; color: var(--mvc-slate); margin-bottom: 14px; }

/* Cards */
.mvc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.mvc-card { background: var(--mvc-white); border: 1px solid var(--mvc-line); border-radius: var(--mvc-r); padding: 26px; }
.mvc-card--mist { background: var(--mvc-mist); }
.mvc-card__icon { width: 48px; height: 48px; border-radius: 14px; background: rgba(79,70,229,0.12); color: var(--mvc-indigo); display: grid; place-items: center; font-family: var(--mvc-head); font-weight: 700; margin-bottom: 14px; }
.mvc-card h3 { margin-bottom: 10px; }
.mvc-card p { font-size: 0.95rem; margin-bottom: 10px; }
.mvc-card__link { font-weight: 700; font-size: 0.92rem; }
.mvc-card__role { display: block; font-size: 0.85rem; color: var(--mvc-violet); font-weight: 600; margin-bottom: 8px; }

/* Two col */
.mvc-two { display: grid; grid-template-columns: 1fr 1fr; gap: 46px; align-items: center; }
.mvc-two img { border-radius: var(--mvc-r); box-shadow: var(--mvc-shadow); }

/* Steps */
.mvc-steps { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.mvc-step { display: flex; gap: 16px; }
.mvc-step__n { flex: none; width: 42px; height: 42px; border-radius: 12px; background: var(--mvc-near); color: #fff; display: grid; place-items: center; font-family: var(--mvc-head); font-weight: 700; }
.mvc-step h3 { margin-bottom: 6px; }
.mvc-step p { margin: 0; font-size: 0.96rem; }

/* Tiers */
.mvc-tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.mvc-tier { background: var(--mvc-white); border: 1px solid var(--mvc-line); border-radius: var(--mvc-r); padding: 30px 26px; }
.mvc-tier--star { border: 2px solid var(--mvc-indigo); }
.mvc-tier__name { font-family: var(--mvc-head); font-weight: 700; color: var(--mvc-indigo); }
.mvc-tier__price { font-family: var(--mvc-head); font-size: 2.1rem; font-weight: 700; color: var(--mvc-near); margin: 6px 0; }
.mvc-tier__price span { font-size: 0.88rem; font-weight: 400; color: var(--mvc-slate); }
.mvc-tier__note { font-size: 0.9rem; color: var(--mvc-slate); min-height: 44px; }
.mvc-tier ul { list-style: none; padding: 0; margin: 16px 0 24px; }
.mvc-tier li { padding: 8px 0 8px 26px; position: relative; font-size: 0.93rem; border-bottom: 1px solid var(--mvc-line); }
.mvc-tier li::before { content: "♪"; position: absolute; left: 2px; color: var(--mvc-amber); }

/* Table */
.mvc-tablewrap { overflow-x: auto; border: 1px solid var(--mvc-line); border-radius: var(--mvc-r); }
.mvc-table { width: 100%; border-collapse: collapse; font-size: 0.94rem; background: var(--mvc-white); }
.mvc-table th, .mvc-table td { padding: 13px 17px; text-align: left; border-bottom: 1px solid var(--mvc-line); }
.mvc-table th { background: var(--mvc-near); color: #fff; font-family: var(--mvc-head); font-weight: 700; }
.mvc-table tr:last-child td { border-bottom: none; }

/* FAQ */
.mvc-faq { display: grid; gap: 12px; }
.mvc-faq__item { background: var(--mvc-white); border: 1px solid var(--mvc-line); border-radius: var(--mvc-r-sm); padding: 4px 18px; }
.mvc-faq__item summary { cursor: pointer; padding: 15px 0; font-family: var(--mvc-head); font-weight: 700; color: var(--mvc-near); list-style: none; padding-right: 30px; position: relative; }
.mvc-faq__item summary::-webkit-details-marker { display: none; }
.mvc-faq__item summary::after { content: "+"; position: absolute; right: 4px; top: 13px; color: var(--mvc-violet); font-size: 1.3rem; }
.mvc-faq__item[open] summary::after { content: "–"; }
.mvc-faq__item p { padding-bottom: 15px; margin: 0; font-size: 0.95rem; }

/* Form */
.mvc-form { background: var(--mvc-white); border: 1px solid var(--mvc-line); border-radius: var(--mvc-r); padding: 28px; box-shadow: var(--mvc-shadow); }
.mvc-form__intro { font-size: 0.9rem; color: var(--mvc-slate); }
.mvc-form label { display: block; font-weight: 600; font-size: 0.87rem; margin: 15px 0 6px; color: var(--mvc-near); }
.mvc-form input, .mvc-form select, .mvc-form textarea { width: 100%; padding: 12px 13px; border: 1px solid var(--mvc-line); border-radius: var(--mvc-r-sm); font: inherit; font-size: 0.95rem; background: var(--mvc-mist); color: var(--mvc-near); }
.mvc-form input:focus, .mvc-form select:focus, .mvc-form textarea:focus { outline: none; border-color: var(--mvc-indigo); background: #fff; box-shadow: 0 0 0 3px rgba(79,70,229,0.14); }
.mvc-form__agree { display: flex; gap: 10px; align-items: flex-start; font-weight: 400; font-size: 0.84rem; color: var(--mvc-slate); margin-top: 16px; }
.mvc-form__agree input { width: auto; }
.mvc-form__status { margin: 14px 0 0; font-weight: 700; font-size: 0.92rem; color: var(--mvc-indigo); min-height: 20px; }

.mvc-contact { list-style: none; padding: 0; margin: 0 0 20px; }
.mvc-contact li { padding: 9px 0; border-bottom: 1px solid var(--mvc-line); font-size: 0.95rem; }
.mvc-contact strong { display: inline-block; min-width: 90px; color: var(--mvc-near); }

.mvc-legal h2 { margin-top: 32px; font-size: 1.2rem; }
.mvc-legal h2:first-child { margin-top: 0; }

/* Footer */
.mvc-foot { background: var(--mvc-near); color: #918da7; padding: 54px 0 26px; }
.mvc-foot__grid { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1fr; gap: 30px; }
.mvc-foot h4 { color: #fff; font-family: var(--mvc-head); font-size: 1rem; margin: 0 0 14px; }
.mvc-foot ul { list-style: none; padding: 0; margin: 0; }
.mvc-foot li { padding: 5px 0; }
.mvc-foot a { color: #918da7; font-size: 0.9rem; }
.mvc-foot a:hover { color: #fff; }
.mvc-foot__addr { font-style: normal; font-size: 0.88rem; line-height: 1.7; color: #918da7; }
.mvc-foot__base { margin-top: 38px; padding-top: 22px; border-top: 1px solid #2c2940; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: 0.8rem; color: #6a6680; }

:focus-visible { outline: 3px solid var(--mvc-amber); outline-offset: 2px; }

/* Responsive — 1100 / 700 / 440 */
@media (max-width: 1100px) {
  .mvc-hero__grid, .mvc-two { grid-template-columns: 1fr; gap: 34px; }
  .mvc-grid, .mvc-tiers, .mvc-steps { grid-template-columns: repeat(2, 1fr); }
  .mvc-foot__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 700px) {
  .mvc-burger { display: block; }
  .mvc-nav { display: none; position: absolute; left: 0; right: 0; top: 72px; flex-direction: column; align-items: stretch; gap: 0; background: #fff; border-bottom: 1px solid var(--mvc-line); padding: 6px 24px 16px; }
  .mvc-nav.is-open { display: flex; }
  .mvc-nav a { padding: 12px 0; border-bottom: 1px solid var(--mvc-line); }
  .mvc-nav .mvc-get { text-align: center; margin-top: 10px; }
  .mvc-top__row { position: relative; }
  .mvc-grid, .mvc-tiers, .mvc-steps { grid-template-columns: 1fr; }
}
@media (max-width: 440px) {
  body { font-size: 16px; }
  .mvc-sec { padding: 46px 0; }
  .mvc-foot__grid { grid-template-columns: 1fr; }
  .mvc-foot__base { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0s !important; transition-duration: 0s !important; scroll-behavior: auto !important; }
}
