/* ==========================================================================
   Kumu — Landing Page
   ========================================================================== */

:root {
  --color-text: #0d0d0d;
  --color-text-muted: #666665;
  --color-text-muted-inverse: #a2a2a1;
  --color-surface: #ffffff;
  --color-surface-alt: #f7f7f6;
  --color-surface-card: #f9f9f9;
  --color-surface-inverse: #0d0d0d;
  --color-border: #eaeae7;
  --color-border-light: #f4f4f4;
  --color-border-lighter: #f6f6f6;
  --color-border-dashed: #d9d9d9;
  --color-primary: #3db192;
  --color-purple: #6b3ab4;
  --color-bubble-sent: #e7ffdb;

  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 10px;
  --radius-xl: 16px;
  --radius-2xl: 24px;
  --radius-full: 9999px;

  --container-max: 1440px;
  --section-px: 152px;
  --section-py: 128px;

  --font-body: "Figtree", "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-surface);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
}

.section-px {
  padding-left: var(--section-px);
  padding-right: var(--section-px);
}

.section {
  padding: var(--section-py) var(--section-px);
}

.section-title {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 924px;
}

.section-title.centered {
  align-items: center;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.section-title h2 {
  margin: 0;
  font-size: clamp(28px, 3.6vw, 40px);
  font-weight: 500;
  line-height: 1.2;
}

.section-title p {
  margin: 0;
  font-size: clamp(16px, 1.6vw, 20px);
  color: var(--color-text-muted);
  line-height: 1.4;
}

.eyebrow-row {
  display: flex;
  gap: 6px;
  align-items: center;
}

.icon-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  border-radius: 6px;
  background: linear-gradient(142deg, #000000 5%, #202020 96%);
  flex-shrink: 0;
}

.icon-badge img {
  width: 16px;
  height: 16px;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 16px;
  white-space: nowrap;
  border: none;
  transition: opacity 0.15s ease;
}

.btn:hover {
  opacity: 0.85;
}

.btn img {
  width: 20px;
  height: 20px;
}

.btn-dark {
  background: #000;
  color: #fff;
  padding: 12px 16px;
}

.btn-light {
  background: #fff;
  color: #000;
  padding: 12px 16px;
}

.btn-light img {
  /* apple.svg / android.svg are exported white-on-transparent for dark buttons;
     invert so they read as black on the light CTA-banner buttons */
  filter: invert(1);
}

.btn-outline {
  background: transparent;
  color: #000;
  border: 1px solid var(--color-border);
  padding: 10px 16px;
  font-size: 14px;
}

.cta-buttons {
  display: flex;
  gap: 12px;
  align-items: center;
}

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 20px var(--section-px) 0;
}

.header-inner {
  max-width: 904px;
  margin: 0 auto;
  background: #fff;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px;
  box-shadow: 0px 17px 19px rgba(0, 0, 0, 0.1), 0px 69px 34.5px rgba(0, 0, 0, 0.09),
    0px 155px 46.5px rgba(0, 0, 0, 0.05);
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo img {
  width: 40px;
  height: 38px;
}

.logo span {
  font-weight: 600;
  font-size: 24px;
  letter-spacing: -1px;
  color: #483c26;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lang-btn {
  gap: 6px;
}

/* ---------- Hero ---------- */

.hero {
  padding-top: 42px;
  padding-bottom: 128px;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  width: 100%;
  max-width: 720px;
  text-align: center;
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 8px;
  background: var(--color-primary);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  border-radius: 4px;
}

.hero-content h1 {
  margin: 0;
  font-size: clamp(32px, 5.5vw, 64px);
  font-weight: 500;
  line-height: 1.15;
}

.hero-content .lead {
  margin: 0;
  font-size: clamp(16px, 1.8vw, 20px);
  color: var(--color-text-muted);
  line-height: 1.5;
}

.hero-image {
  position: relative;
  width: 100%;
  max-width: 1136px;
  aspect-ratio: 1136 / 540;
  margin: 0 auto;
}

.hero-image .hero-bg-wrap {
  position: absolute;
  left: 0;
  right: 0;
  top: 22.2%;
  height: 77.8%;
  border-radius: 24px;
  overflow: hidden;
  background: #bebebe;
}

.hero-image .hero-bg-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-phone {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 33.89%; /* 385 / 1136, matches Figma phone-frame ratio */
  height: 100%;
  object-fit: cover;
  object-position: top center;
  filter: drop-shadow(0 15px 33px rgba(0, 0, 0, 0.1));
  z-index: 2;
}

.chat-bubble {
  position: absolute;
  width: 28.8%;
  max-width: 327px;
  filter: drop-shadow(0 9px 10px rgba(0, 0, 0, 0.1)) drop-shadow(0 36px 18px rgba(0, 0, 0, 0.09));
  font-family: "Roboto", var(--font-body);
  font-size: clamp(11px, 1.1vw, 16px);
  line-height: 1.3;
  z-index: 3;
}

.chat-bubble .bubble-body {
  border-radius: 8px;
  padding: 8px;
  background: #fff;
}

.chat-bubble.sent .bubble-body {
  background: var(--color-bubble-sent);
  border-radius: 8px 8px 0 8px;
}

.chat-bubble.received .bubble-body {
  border-radius: 0 8px 8px 8px;
}

.chat-bubble p {
  margin: 0 0 0.6em;
  color: #000;
}

.chat-bubble p:last-of-type {
  margin-bottom: 0;
}

.chat-bubble time {
  display: block;
  text-align: right;
  color: #9da3a7;
  font-size: 0.75em;
  margin-top: 4px;
}

.chat-bubble.b-1 { left: 69.1%; top: 38.3%; }
.chat-bubble.b-2 { left: 69.1%; top: -8.3%; }
.chat-bubble.b-3 { left: 69.1%; top: 56.9%; }
.chat-bubble.b-4 { left: 2.1%; top: 26.9%; }
.chat-bubble.b-5 { left: 2.1%; top: 59.4%; }
.chat-bubble.b-6 { left: 2.1%; top: 78%; }
.chat-bubble.b-7 { left: 2.1%; top: 8.3%; }

/* ---------- Cinco rotinas (routines) ---------- */

.routines-grid {
  display: flex;
  background: #fff;
  border-radius: 24px;
  padding: 6px;
  gap: 6px;
  box-shadow: 0px 32px 34.5px rgba(0, 0, 0, 0.1), 0px 126px 63px rgba(0, 0, 0, 0.09),
    0px 284px 85px rgba(0, 0, 0, 0.05);
  margin-top: 42px;
}

.routine-card {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 24px;
  background: var(--color-surface-alt);
}

.routine-card:first-child {
  border-radius: 18px 0 0 18px;
}

.routine-card:last-child {
  border-radius: 0 18px 18px 0;
}

.routine-card img.icon {
  width: 24px;
  height: 24px;
}

.routine-card h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
}

.routine-card p {
  margin: 0;
  font-size: 16px;
  color: var(--color-text-muted);
}

/* ---------- Cada parte (features grid) ---------- */

.features-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 42px;
}

.features-row {
  display: grid;
  gap: 24px;
}

.features-row-2 {
  grid-template-columns: repeat(2, 1fr);
}

.features-row-3 {
  grid-template-columns: repeat(3, 1fr);
}

.feature-card {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.feature-image {
  position: relative;
  height: 260px;
  border-radius: 16px;
  overflow: hidden;
  background: var(--color-surface-alt);
}

.feature-image img.bg-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-category {
  display: flex;
  align-items: center;
  gap: 6px;
}

.feature-category span {
  font-weight: 600;
  font-size: 14px;
}

.feature-card h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
}

.feature-card .feature-text {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.feature-card p {
  margin: 0;
  font-size: 16px;
  color: var(--color-text-muted);
}

/* mock: agenda do dia */
.mock-agenda-day {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mock-agenda-day .mock-card {
  width: 84%;
  max-width: 386px;
  background: #fff;
  border: 1px solid var(--color-border-light);
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0px 11px 11.5px rgba(0, 0, 0, 0.1), 0px 42px 21px rgba(0, 0, 0, 0.09);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mock-agenda-day .mock-title {
  font-size: 13px;
  font-weight: 600;
  margin: 0 0 8px;
}

.mock-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  border-top: 1px solid var(--color-border-lighter);
}

.mock-row:first-of-type {
  border-top: none;
}

.mock-row .mock-icon {
  width: 42px;
  height: 42px;
  border: 1px solid var(--color-border-lighter);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mock-row .mock-icon img {
  width: 20px;
  height: 20px;
}

.mock-row-content {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mock-row-header {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  row-gap: 4px;
  justify-content: space-between;
  gap: 8px;
}

.mock-row-header strong {
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}

.mock-row-header .mock-tags {
  display: flex;
  gap: 6px;
  flex-shrink: 0;
}

.mock-tag {
  font-size: 10px;
  font-weight: 500;
  padding: 2px 6px;
  border-radius: 999px;
  background: var(--color-surface-alt);
  color: var(--color-text-muted);
  white-space: nowrap;
}

.mock-tag.tag-now {
  background: var(--color-primary);
  color: #fff;
}

.mock-tag.tag-individual {
  background: var(--color-purple);
  color: #fff;
}

.mock-row-content .mock-sub {
  font-size: 12px;
  color: var(--color-text-muted);
  font-weight: 500;
}

/* mock: agenda semanal */
.mock-week {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 6%;
}

.mock-week .mock-card {
  width: 53%;
  max-width: 301px;
  background: #fff;
  border: 1px solid var(--color-border-light);
  border-radius: 16px;
  padding: 12px;
  box-shadow: 0px 8px 9px rgba(0, 0, 0, 0.1), 0px 33px 16.5px rgba(0, 0, 0, 0.09);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.segmented {
  display: flex;
  background: var(--color-surface-card);
  border-radius: 6px;
  padding: 3px;
}

.segmented span {
  flex: 1;
  text-align: center;
  padding: 6px;
  font-size: 10px;
  font-weight: 600;
  border-radius: 3px;
  color: #8f8f8f;
}

.segmented span.active {
  background: #fff;
  color: var(--color-text);
}

.mock-week-days {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mock-week-days button {
  width: 27px;
  height: 27px;
  border: none;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mock-week-days button img {
  width: 12px;
  height: 12px;
}

.mock-week-days .mock-week-label {
  text-align: center;
}

.mock-week-label strong {
  display: block;
  font-size: 11px;
  font-weight: 600;
}

.mock-week-label span {
  font-size: 9px;
  color: #8f8f8f;
}

.mock-calendar {
  display: flex;
  justify-content: space-between;
}

.mock-calendar .day {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 8px;
  color: #8f8f8f;
}

.mock-calendar .day strong {
  font-size: 9px;
  color: var(--color-text);
  font-weight: 600;
}

.mock-calendar .day.active {
  background: var(--color-primary);
  color: #fff;
}

.mock-calendar .day.active strong {
  color: #fff;
}

/* mock: pendencias */
.mock-pendencias {
  position: absolute;
  inset: 0;
}

.mock-pendencias .mock-item {
  position: absolute;
  left: 15%;
  width: 70%;
  max-width: 253px;
  display: flex;
  align-items: center;
  gap: 7px;
  background: #fff;
  border: 1px solid var(--color-border-light);
  border-radius: 9px;
  padding: 9px;
  box-shadow: 0px 7px 7.5px rgba(0, 0, 0, 0.1), 0px 28px 14px rgba(0, 0, 0, 0.09);
}

.mock-pendencias .mock-item.item-1 { top: 25%; }
.mock-pendencias .mock-item.item-2 { top: 55%; }

.mock-pendencias .mock-item img.avatar-icon {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
}

.mock-pendencias .mock-item-content {
  flex: 1;
  min-width: 0;
}

.mock-pendencias .mock-item-header {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  row-gap: 3px;
  justify-content: space-between;
  gap: 6px;
}

.mock-pendencias .mock-item-header strong {
  font-size: 9px;
  font-weight: 600;
  white-space: nowrap;
}

.mock-pendencias .mock-item-header .mock-tag {
  font-size: 8px;
  padding: 2px 5px;
}

.mock-pendencias .mock-item-content .mock-sub {
  font-size: 8px;
  color: var(--color-text-muted);
  font-weight: 500;
}

/* mock: alunos (photo collage) */
.mock-alunos {
  position: absolute;
  inset: 0;
}

.mock-alunos img.photo {
  position: absolute;
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 6px;
  border: 2px solid #fff;
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1), 0px 5px 5px rgba(0, 0, 0, 0.09);
}

.mock-alunos .photo-1 { left: 15%; top: 12%; transform: rotate(-5.3deg); }
.mock-alunos .photo-2 { left: 62%; top: 20%; transform: rotate(12.5deg); }
.mock-alunos .photo-3 { left: 65%; top: 68%; transform: rotate(5.2deg); }
.mock-alunos .photo-4 { left: 5%; top: 55%; transform: rotate(-13.1deg); }

/* mock: financeiro */
.mock-financeiro {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mock-financeiro .mock-card {
  width: 68%;
  max-width: 258px;
  background: #fff;
  border: 1px solid var(--color-border-light);
  border-radius: 10px;
  padding: 15px;
  box-shadow: 0px 7px 8px rgba(0, 0, 0, 0.1), 0px 28px 14px rgba(0, 0, 0, 0.09);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mock-financeiro .mock-row-header {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  row-gap: 3px;
  justify-content: space-between;
  gap: 6px;
}

.mock-financeiro .mock-row-header strong {
  white-space: nowrap;
}

.mock-financeiro .mock-row-header strong {
  font-size: 10px;
  font-weight: 600;
}

.mock-financeiro .amount {
  font-size: 25px;
  font-weight: 600;
  margin: 0;
}

.mock-financeiro .bar {
  display: flex;
  height: 2.5px;
  border-radius: 999px;
  overflow: hidden;
  background: #eaeae7;
}

.mock-financeiro .bar span {
  background: var(--color-primary);
  display: block;
  height: 100%;
}

.mock-financeiro .note {
  font-size: 8.7px;
  color: var(--color-text-muted);
  font-weight: 500;
  margin: 0;
}

.mock-financeiro .note b {
  color: var(--color-text);
  font-weight: 600;
}

/* dashed grid overlays used behind mockups */
.dash-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.dash-v, .dash-h {
  position: absolute;
  border-color: var(--color-border-dashed);
  border-style: dashed;
}

.dash-v { border-left-width: 1px; top: 0; bottom: 0; }
.dash-h { border-top-width: 1px; left: 0; right: 0; }

/* ---------- O que muda na sua semana ---------- */

.week-change {
  display: flex;
  gap: 24px;
  align-items: center;
}

.week-change-left {
  flex: 1;
  min-width: 0;
  max-width: 672px;
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.week-change-items {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.week-change-item {
  display: flex;
  gap: 15px;
}

.week-change-item .bar {
  width: 1px;
  border-radius: 4px;
  background: var(--color-border);
  flex-shrink: 0;
}

.week-change-item.active .bar {
  background: var(--color-primary);
}

.week-change-item h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
}

.week-change-item p {
  margin: 8px 0 0;
  font-size: 16px;
  color: var(--color-text-muted);
}

.week-change-item:not(.active) h3 {
  opacity: 0.2;
}

.week-change-image {
  flex-shrink: 0;
  width: 440px;
  height: 635px;
  border-radius: 24px;
  background: var(--color-surface-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.week-change-image img {
  width: 58.64%; /* 258 / 440, matches Figma phone-frame ratio */
  height: 83.46%; /* 530 / 635 */
  object-fit: cover;
  object-position: top center;
  filter: drop-shadow(0 14px 30px rgba(0, 0, 0, 0.1));
}

/* ---------- Três coisas para começar (steps) ---------- */

.steps-card {
  display: flex;
  background: #fff;
  border-radius: 24px;
  padding: 6px;
  gap: 6px;
  box-shadow: 0px 32px 34.5px rgba(0, 0, 0, 0.1), 0px 126px 63px rgba(0, 0, 0, 0.09),
    0px 284px 85px rgba(0, 0, 0, 0.05);
  margin-top: 42px;
}

.step-card {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  background: var(--color-surface-alt);
  overflow: hidden;
}

.step-card:first-child {
  border-radius: 18px 0 0 18px;
}

.step-card:last-child {
  border-radius: 0 18px 18px 0;
}

.step-image {
  position: relative;
  height: 240px;
  background: var(--color-surface-alt);
}

.step-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../assets/images/diagonal-lines.png");
  background-size: 6px 6px;
  opacity: 0.1;
}

.step-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.step-body h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  counter-increment: step;
}

.step-body h3::before {
  content: counter(step) ". ";
}

.steps-card {
  counter-reset: step;
}

.step-body p {
  margin: 0;
  font-size: 16px;
  color: var(--color-text-muted);
}

.steps-caption-wrap {
  display: flex;
  justify-content: center;
}

.steps-caption {
  margin-top: 0;
  background: #fff;
  border: 1px solid var(--color-surface-alt);
  border-radius: 0 0 8px 8px;
  padding: 8px 12px;
  font-size: 16px;
  font-weight: 600;
  color: var(--color-text-muted);
  opacity: 0.8;
}

.steps-caption b {
  color: #000;
  font-weight: 600;
}

/* mock: cadastre horarios */
.mock-schedule {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mock-schedule .mock-card {
  width: 86%;
  max-width: 323px;
  background: #fff;
  border: 1px solid var(--color-border-light);
  border-radius: 13px;
  padding: 20px;
  box-shadow: 0px 9px 9px rgba(0, 0, 0, 0.1), 0px 36px 18px rgba(0, 0, 0, 0.09);
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.mock-schedule-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mock-schedule-title span {
  font-size: 13px;
  font-weight: 600;
}

.mock-switch {
  width: 32px;
  height: 18px;
  border-radius: 999px;
  background: var(--color-primary);
  display: flex;
  align-items: center;
  padding: 2px;
}

.mock-switch span {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: #fff;
  margin-left: auto;
}

.mock-schedule hr {
  border: none;
  border-top: 1px solid var(--color-surface-alt);
  margin: 0;
}

.mock-time-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.mock-time-input {
  flex: 1;
  border: 1px solid var(--color-surface-alt);
  border-radius: 6px;
  padding: 10px;
  font-size: 11px;
  text-align: center;
}

.mock-time-row .sep {
  font-size: 11px;
  color: #8f8f8f;
}

.mock-time-row .icon-btn {
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mock-time-row .icon-btn img {
  width: 12px;
  height: 12px;
}

.mock-schedule .add-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  background: #0d0d0d;
  color: #fff;
  border-radius: 999px;
  padding: 10px;
  font-size: 11px;
  font-weight: 600;
}

.mock-schedule .add-btn img {
  width: 16px;
  height: 16px;
}

/* mock: compartilhe contato */
.mock-share {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mock-share .mock-card {
  width: 86%;
  max-width: 322px;
  background: #fff;
  border: 1px solid var(--color-border-light);
  border-radius: 13px;
  padding: 20px;
  box-shadow: 0px 9px 9px rgba(0, 0, 0, 0.1), 0px 35px 17.5px rgba(0, 0, 0, 0.09);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mock-share .label-sm {
  font-size: 11px;
  color: var(--color-text-muted);
  font-weight: 600;
  margin: 0;
}

.mock-share .link {
  font-size: 15px;
  font-weight: 600;
  margin: 2px 0 0;
}

.mock-share-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mock-share-actions .btn-mock {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  border-radius: 8px;
  padding: 10px;
  font-size: 10px;
  font-weight: 600;
}

.mock-share-actions .btn-mock img {
  width: 16px;
  height: 16px;
}

.mock-share-actions .btn-mock.primary {
  background: #0d0d0d;
  color: #fff;
}

.mock-share-actions .btn-mock.secondary {
  background: var(--color-surface-card);
  color: #0d0d0d;
}

/* mock: aprove pelo Kumu (notification stack) */
.mock-notify {
  position: absolute;
  inset: 0;
}

.mock-notify .stack-card {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 87%;
  max-width: 302px;
  height: 63px;
  background: #fff;
  border: 1px solid var(--color-border-light);
  border-radius: 9px;
  opacity: 0.8;
}

.mock-notify .stack-card.back-1 { top: 38%; width: 82%; }
.mock-notify .stack-card.back-2 { top: 34%; width: 78%; }

.mock-notify .mock-item {
  position: absolute;
  left: 50%;
  top: 28%;
  transform: translateX(-50%);
  width: 87%;
  max-width: 323px;
  display: flex;
  align-items: center;
  gap: 7px;
  background: #fff;
  border: 1px solid var(--color-border-light);
  border-radius: 9px;
  padding: 12px;
  box-shadow: 0px 7.5px 7.5px rgba(0, 0, 0, 0.1), 0px 28px 14px rgba(0, 0, 0, 0.09);
}

.mock-notify img.avatar-icon {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
}

.mock-notify .mock-item-content {
  flex: 1;
  min-width: 0;
}

.mock-notify .mock-item-header {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  row-gap: 3px;
  justify-content: space-between;
  gap: 6px;
}

.mock-notify .mock-item-header strong {
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}

.mock-notify .mock-item-content .mock-sub {
  font-size: 12px;
  color: var(--color-text-muted);
  font-weight: 500;
  margin: 2px 0 0;
}

/* ---------- CTA banner ---------- */

.cta-banner-inner {
  position: relative;
  background: #020202;
  border-radius: 24px;
  overflow: hidden;
  padding: 64px;
  display: flex;
  flex-direction: column;
  gap: 128px;
  box-shadow: 0px 31px 69px rgba(0, 0, 0, 0.1), 0px 125px 125px rgba(0, 0, 0, 0.09);
}

.cta-banner-inner img.banner-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
}

.cta-banner-inner .banner-logo {
  position: relative;
  background: #fff;
  border-radius: 12px;
  padding: 6px;
  width: fit-content;
  box-shadow: 0px 1px 1.5px rgba(0, 0, 0, 0.1), 0px 6px 3px rgba(0, 0, 0, 0.09);
}

.cta-banner-inner .banner-logo img {
  width: 40px;
  height: 38px;
}

.cta-banner-content {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 492px;
  color: #fff;
}

.cta-banner-content h2 {
  margin: 0;
  font-size: clamp(28px, 3.6vw, 40px);
  font-weight: 500;
  line-height: 1.2;
}

.cta-banner-content p {
  margin: 0;
  font-size: 20px;
}

/* ---------- FAQ ---------- */

.faq {
  background: #000;
  color: #fff;
  display: flex;
  gap: 24px;
}

.faq-left {
  flex-shrink: 0;
  width: 672px;
}

.faq-left .section-title p {
  color: var(--color-text-muted-inverse);
}

.faq-list {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: center;
}

.accordion-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--color-text-muted-inverse);
}

.accordion-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: none;
  border: none;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  font-family: inherit;
  padding: 0;
  text-align: left;
}

.accordion-trigger img {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.accordion-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.25s ease;
}

.accordion-item.open .accordion-panel {
  grid-template-rows: 1fr;
}

.accordion-panel-inner {
  overflow: hidden;
}

.accordion-panel p {
  margin: 0;
  font-size: 16px;
  color: var(--color-text-muted-inverse);
}

/* ---------- Footer ---------- */

.site-footer {
  background: #000;
  color: #fff;
  display: flex;
  gap: 141px;
  flex-wrap: wrap;
  padding-top: 128px;
  padding-bottom: 128px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 89px;
  max-width: 322px;
}

.footer-brand .logo span {
  color: #fff;
  font-size: 15px;
}

.footer-brand .logo img {
  width: 25px;
  height: 24px;
}

.footer-brand p {
  margin: 0;
  font-size: 14px;
  color: var(--color-text-muted-inverse);
  line-height: 1.5;
}

.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 200px;
}

.footer-col h4 {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col ul li,
.footer-col ul a {
  font-size: 14px;
  color: var(--color-text-muted-inverse);
}

.footer-col .footer-group {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.socials {
  display: flex;
  gap: 12px;
}

.socials img {
  width: 24px;
  height: 24px;
}

/* ==========================================================================
   Tablet (≤1024px)
   ========================================================================== */

@media (max-width: 1024px) {
  :root {
    --section-px: 45px;
  }

  .site-header {
    padding-top: 16px;
  }

  .header-inner {
    max-width: 552px;
  }

  .hero-image {
    max-width: 744px;
  }

  .hero-image .chat-bubble {
    display: none;
  }

  .hero-image .hero-bg-wrap {
    position: absolute;
    left: 0;
    right: 0;
    top: 22%;
    height: 78%;
  }

  .hero-phone {
    width: 51.75%; /* 385 / 744 */
  }

  .routines-grid {
    flex-wrap: wrap;
    border-radius: 18px;
  }

  .routine-card {
    flex: 1 1 calc(33.333% - 4px);
    min-width: 200px;
  }

  .routine-card:first-child {
    border-radius: 12px 0 0 0;
  }

  .routine-card:last-child {
    border-radius: 0;
  }

  .routine-card:nth-child(3) {
    border-radius: 0 12px 0 0;
  }

  .routine-card:nth-child(4) {
    border-radius: 0 0 0 12px;
  }

  .features-grid {
    max-width: 744px;
    margin-left: auto;
    margin-right: auto;
  }

  .features-row-2,
  .features-row-3 {
    grid-template-columns: 1fr;
  }

  .week-change {
    gap: 40px;
  }

  .week-change-left {
    max-width: 350px;
    gap: 40px;
  }

  .week-change-image {
    width: 370px;
    height: 635px;
  }

  .week-change-image img {
    width: 69.73%; /* 258 / 370 */
  }

  .steps-card {
    flex-direction: column;
    border-radius: 18px;
  }

  .step-card:first-child {
    border-radius: 18px 18px 0 0;
  }

  .step-card:last-child {
    border-radius: 0 0 18px 18px;
  }

  .step-image {
    height: 152px;
  }

  /* The step mockups are fixed-size desktop compositions; Figma's tablet/mobile
     frames scale them down as a whole (incl. borders, shadows, radii) to fit
     the shorter 152px image area, rather than reflowing their internals. */
  .mock-schedule .mock-card {
    transform: scale(0.643);
  }

  .mock-share .mock-card {
    transform: scale(0.666);
  }

  .mock-notify .mock-item,
  .mock-notify .stack-card {
    transform: translateX(-50%) scale(0.819);
  }

  /* Figma's tablet/mobile "Três coisas" frames use plain titles, no "1. / 2. / 3." numbering */
  .step-body h3::before {
    content: none;
  }

  .faq {
    flex-direction: column;
    gap: 48px;
  }

  .faq-left {
    width: 100%;
  }

  .faq-left .section-title {
    max-width: 672px;
  }

  .site-footer {
    gap: 60px;
  }
}

/* ==========================================================================
   Mobile (≤600px)
   ========================================================================== */

@media (max-width: 600px) {
  :root {
    --section-px: 16px;
  }

  /* Figma's mobile frames drop the top padding on most sections — the gap
     between sections comes from the preceding section's bottom padding
     instead, avoiding doubled-up whitespace on small screens. */
  .section {
    padding-top: 0;
    padding-bottom: var(--section-py);
  }

  .faq {
    padding-top: var(--section-py);
  }

  .site-footer {
    padding-top: 0;
    padding-bottom: 24px;
  }

  .site-header {
    padding: 12px 16px 0;
  }

  .header-inner {
    max-width: 100%;
    border-radius: 999px;
  }

  .logo span {
    font-size: 20px;
  }

  .lang-btn .lang-label {
    display: none;
  }

  .lang-btn {
    padding: 10px;
  }

  .header-actions .btn-outline:not(.lang-btn) {
    padding: 10px 14px;
    font-size: 13px;
  }

  .hero {
    padding-top: 24px;
  }

  .hero-inner {
    gap: 40px;
  }

  .hero-content {
    gap: 20px;
  }

  .hero-image {
    max-width: 361px;
    aspect-ratio: 361 / 420;
  }

  .hero-image .hero-bg-wrap {
    top: 24%;
    height: 76%;
    border-radius: 16px;
  }

  .hero-phone {
    width: 82.8%; /* 299 / 361 */
  }

  .routines-grid {
    flex-direction: column;
    border-radius: 12px;
  }

  .routine-card,
  .routine-card:first-child,
  .routine-card:last-child,
  .routine-card:nth-child(3),
  .routine-card:nth-child(4) {
    border-radius: 0;
    flex: 1 1 auto;
  }

  .routine-card:first-child {
    border-radius: 8px 8px 0 0;
  }

  .routine-card:last-child {
    border-radius: 0 0 8px 8px;
  }

  .week-change {
    flex-direction: column;
  }

  .week-change-left {
    max-width: 100%;
    gap: 32px;
  }

  .week-change-image {
    width: 100%;
    height: auto;
    aspect-ratio: 361 / 635;
  }

  .week-change-image img {
    width: 71.47%; /* 258 / 361 */
  }

  .steps-card {
    padding: 4px;
    gap: 4px;
  }

  .cta-banner-inner {
    padding: 32px 24px;
    gap: 64px;
    border-radius: 16px;
  }

  .cta-banner-content p {
    font-size: 16px;
  }

  .faq-left .section-title p,
  .section-title p {
    font-size: 16px;
  }

  .accordion-trigger {
    font-size: 16px;
  }

  .site-footer {
    flex-direction: column;
    gap: 48px;
  }

  .footer-brand {
    max-width: 100%;
    gap: 48px;
  }

  .footer-links {
    gap: 32px;
  }

  .cta-buttons {
    flex-wrap: wrap;
  }
}
