/* ══════════════════════════════════════════
   PRIME MENTORIAS — Plataforma
   Design System: Premium Dark · True Cobalt
   ══════════════════════════════════════════ */

/* ── Fontes locais ── */
@font-face {
  font-family: 'Anton';
  src: url('desing.system/tipografia/Anton/Anton-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Asap Condensed';
  src: url('desing.system/tipografia/Asap_Condensed/AsapCondensed-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Asap Condensed';
  src: url('desing.system/tipografia/Asap_Condensed/AsapCondensed-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Asap Condensed';
  src: url('desing.system/tipografia/Asap_Condensed/AsapCondensed-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Asap Condensed';
  src: url('desing.system/tipografia/Asap_Condensed/AsapCondensed-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Asap Condensed';
  src: url('desing.system/tipografia/Asap_Condensed/AsapCondensed-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

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

:root {
  /* Paleta Prime Mentorias */
  --navy:         #0f192d;
  --navy-mid:     #0c1524;
  --navy-light:   #2A68C5;
  --blue:         #2563EB;
  --blue-light:   #3B82F6;
  --blue-glow:    #60A5FA;
  --sky:          #DBEAFE;
  --muted:        #8b95ae;
  --white:        #FFFFFF;
  --border:       rgba(192,199,213,.10);
  --border-bright:rgba(37,99,235,.35);
  --gray-50:      #F7F9FC;
  --gray-100:     #F1F5F9;
  --gray-200:     #E2E8F0;
  --gray-300:     #CBD5E1;
  --gray-400:     #94A3B8;
  --gray-600:     #475569;
  --gray-700:     #334155;
  --gray-800:     #1E293B;

  --ff-display: 'Anton', Georgia, sans-serif;
  --ff-body:    'Asap Condensed', system-ui, sans-serif;

  --radius-sm:  6px;
  --radius-md:  14px;
  --radius-lg:  22px;
  --radius-xl:  30px;

  --shadow-sm:  0 1px 3px rgba(15,25,45,.06), 0 1px 2px rgba(15,25,45,.04);
  --shadow-md:  0 4px 16px rgba(15,25,45,.12), 0 2px 6px rgba(15,25,45,.08);
  --shadow-lg:  0 20px 50px rgba(15,25,45,.18);
  --shadow-xl:  0 28px 70px rgba(15,25,45,.28);
  --shadow-blue: 0 8px 32px rgba(37,99,235,.35);

  --transition: 220ms cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-800);
  background: var(--gray-50);
  min-height: 100vh;
  overflow-x: hidden;
}

.container { max-width: 1080px; margin: 0 auto; padding: 0 24px; }
.hidden { display: none !important; }

/* ══════════════════════════════════════════
   HEADER (sóbrio, sem CTA de landing)
   ══════════════════════════════════════════ */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  background-image: url('desing.system/fundos/background-7.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.header::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(15,25,45,.93);
  pointer-events: none;
  z-index: 0;
}
.header__inner { position: relative; z-index: 1; }

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--white);
}

.logo__mark-img {
  height: 56px;
  width: auto;
  display: block;
  object-fit: contain;
  flex-shrink: 0;
}

.logo__full-img {
  height: 36px;
  width: auto;
  display: block;
  object-fit: contain;
}


/* Footer logo — tamanho maior */
.logo--light .logo__full-img {
  height: 60px;
  opacity: 0.92;
}

.nav { display: flex; align-items: center; gap: 14px; }

.nav__user {
  font-size: 13px;
  color: rgba(255,255,255,.65);
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav__user::before {
  content: '';
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #22C55E;
  box-shadow: 0 0 8px #22C55E;
}

.nav__link--ghost {
  background: transparent;
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.8);
  padding: 7px 14px;
  font-size: 13px; font-weight: 500;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-family: var(--ff-body);
  transition: var(--transition);
}
.nav__link--ghost:hover {
  background: rgba(255,255,255,.08);
  color: var(--white);
  border-color: rgba(255,255,255,.2);
}

/* ══════════════════════════════════════════
   GATEWAY — tela de entrada
   ══════════════════════════════════════════ */
.gateway {
  background: var(--navy);
  background-image: url('desing.system/fundos/background-3.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  min-height: calc(100vh - 64px - 100px);
  display: flex;
  align-items: center;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.gateway::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    180deg,
    rgba(15,25,45,0.72) 0%,
    rgba(15,25,45,0.82) 60%,
    rgba(15,25,45,0.92) 100%
  );
  pointer-events: none;
}
.gateway::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 40%, rgba(37,99,235,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.gateway__inner {
  max-width: 720px;
  text-align: center;
  position: relative;
}

.gateway__brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px; font-weight: 600;
  color: rgba(255,255,255,.7);
  background: rgba(37,99,235,.1);
  border: 1px solid rgba(37,99,235,.22);
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 32px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.gateway__dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--blue-light);
  box-shadow: 0 0 8px var(--blue-light);
}

.gateway__title {
  font-family: var(--ff-display);
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  font-weight: 400;
  line-height: 1.08;
  color: var(--white);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.gateway__title-brand {
  background: linear-gradient(135deg, var(--blue-light), #5BA3F5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gateway__sub {
  font-size: 16px;
  color: rgba(255,255,255,.65);
  font-weight: 400;
  margin-bottom: 52px;
}

.gateway__cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  max-width: 720px;
  margin: 0 auto;
}

.path-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--radius-lg);
  color: var(--white);
  text-align: left;
  cursor: pointer;
  font-family: var(--ff-body);
  transition: var(--transition);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.path-card:hover {
  background: rgba(255,255,255,.09);
  border-color: rgba(59,47,181,.35);
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(15,25,45,.4), 0 0 0 1px rgba(59,47,181,.12);
}

.path-card__icon {
  flex-shrink: 0;
  width: 48px; height: 48px;
  background: rgba(37,99,235,.15);
  border: 1px solid rgba(37,99,235,.25);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue-light);
}

.path-card__body { flex: 1; }
.path-card__body h3 {
  font-size: 16px; font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}
.path-card__body p {
  font-size: 13px;
  color: rgba(255,255,255,.55);
  line-height: 1.5;
}

.path-card__arrow {
  flex-shrink: 0;
  color: rgba(255,255,255,.4);
  transition: var(--transition);
}
.path-card:hover .path-card__arrow {
  color: var(--blue-light);
  transform: translateX(4px);
}

/* ══════════════════════════════════════════
   AUTH / LOGIN
   ══════════════════════════════════════════ */
.auth {
  padding: 56px 0 80px;
  min-height: calc(100vh - 64px - 100px);
  background: var(--navy);
  background-image: url('desing.system/fundos/background-8.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
}
.auth::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(15,25,45,.82);
  pointer-events: none;
}
.auth__inner { position: relative; z-index: 1; }

.auth__inner {
  max-width: 480px;
  margin: 0 auto;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  color: var(--gray-600);
  font-family: var(--ff-body);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  padding: 8px 0;
  margin-bottom: 24px;
  transition: var(--transition);
}
.back-link:hover { color: var(--blue-light); transform: translateX(-2px); }

.auth__card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-xl);
}

.auth__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px; font-weight: 600;
  letter-spacing: .4px;
  color: var(--blue);
  background: rgba(37,99,235,.08);
  border: 1px solid rgba(37,99,235,.15);
  padding: 6px 12px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.auth__card h2 {
  font-family: var(--ff-display);
  font-size: 2rem;
  font-weight: 400;
  color: var(--navy);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.auth__sub {
  font-size: 14px;
  color: var(--gray-600);
  margin-bottom: 28px;
}

.auth__card .booking-form { padding: 0; }

.auth__hint {
  text-align: center;
  font-size: 13px;
  color: var(--gray-600);
  margin-top: 20px;
}
.linklike {
  background: none;
  border: none;
  color: var(--blue);
  font-family: inherit;
  font-size: inherit;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.linklike:hover { color: var(--blue-light); }

/* ══════════════════════════════════════════
   BUTTONS
   ══════════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--ff-body);
  font-size: 15px; font-weight: 600;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  border: none; cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: linear-gradient(135deg, var(--navy-light) 0%, var(--blue) 100%);
  color: var(--white);
  box-shadow: var(--shadow-blue);
}
.btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 56px rgba(37,99,235,.65);
}

.btn--submit {
  width: 100%;
  justify-content: center;
  background: linear-gradient(135deg, var(--navy-light), var(--navy-mid));
  color: var(--white);
  font-size: 15px;
  padding: 15px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.06);
}
.btn--submit::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--blue), var(--navy-light));
  opacity: 0;
  transition: var(--transition);
}
.btn--submit:hover::before { opacity: 1; }
.btn--submit:hover { transform: translateY(-1px); box-shadow: var(--shadow-blue); }
.btn--submit:disabled { opacity: .6; cursor: not-allowed; transform: none; }
.btn-text, .btn-loader { position: relative; }

/* ══════════════════════════════════════════
   SCHEDULING
   ══════════════════════════════════════════ */
.scheduling {
  background: var(--gray-50);
  padding: 64px 0 40px;
}

.section-header { text-align: center; margin-bottom: 48px; }
.section-header--left { text-align: left; margin-bottom: 40px; }

.section-tag {
  display: inline-block;
  font-size: 11px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--blue);
  background: rgba(37,99,235,.08);
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 14px;
}
@keyframes goldPulse {
  0%, 100% { filter: drop-shadow(0 0 0px rgba(96,165,250,0)); }
  50%       { filter: drop-shadow(0 0 8px rgba(96,165,250,.55)); }
}
.section-tag--gold {
  color: var(--blue-glow);
  background: rgba(96,165,250,.12);
  border: 1px solid rgba(96,165,250,.28);
  animation: goldPulse 1.4s cubic-bezier(.4,0,.6,1) infinite;
}

.section-title {
  font-family: var(--ff-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 10px;
}

.section-sub {
  font-size: 15px;
  color: var(--gray-600);
  font-weight: 400;
  max-width: 560px;
  margin: 0 auto;
}
.section-header--left .section-sub { margin: 0; }

/* ── Blocos DATA / HORÁRIOS ── */
.schedule-block {
  max-width: 640px;
  margin: 0 auto 36px;
}

.schedule-block__header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}

.schedule-block__title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gray-400);
  white-space: nowrap;
  padding: 0 2px;
}

.schedule-block__line {
  flex: 1;
  height: 1px;
  background: var(--gray-200);
}

.slots-placeholder {
  text-align: center;
  font-size: 14px;
  color: var(--gray-400);
  padding: 28px 0;
}

/* Week nav */
.week-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 0;
  justify-content: center;
  flex-wrap: wrap;
}

.week-nav__sep {
  width: 1px;
  height: 48px;
  background: var(--gray-200);
  margin: 0 4px;
  flex-shrink: 0;
}

.week-btn {
  display: flex; flex-direction: column; align-items: center;
  gap: 4px;
  padding: 12px 24px;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  cursor: pointer;
  font-family: var(--ff-body);
  transition: var(--transition);
  min-width: 100px;
}
.week-btn:hover { border-color: var(--blue); background: rgba(37,99,235,.03); }
.week-btn.active {
  border-color: var(--blue);
  background: var(--blue);
  box-shadow: 0 4px 14px rgba(37,99,235,.25);
}

.week-btn__day {
  font-size: 12px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray-600);
  transition: var(--transition);
}
.week-btn__date {
  font-size: 20px; font-weight: 600;
  color: var(--navy);
  font-family: var(--ff-display);
  transition: var(--transition);
}
.week-btn.active .week-btn__day,
.week-btn.active .week-btn__date { color: var(--white); }

/* Slots */
.slots-section { margin-bottom: 24px; text-align: center; }
.slots-label {
  font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 2px;
  color: var(--gray-400);
  margin-bottom: 12px;
}

.slots-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}
.slots-grid .slot-btn { flex: 0 0 110px; }

.slot-btn {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 2px;
  padding: 14px 8px;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  cursor: pointer;
  font-family: var(--ff-body);
  transition: var(--transition);
  position: relative;
}
.slot-btn:hover:not(.slot-btn--booked) {
  border-color: var(--blue);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.slot-btn.selected {
  border-color: var(--blue);
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  box-shadow: 0 4px 14px rgba(37,99,235,.3);
}
.slot-btn--booked {
  opacity: .45;
  cursor: not-allowed;
  background: var(--gray-100);
}
.slot-btn--booked::after {
  content: '';
  position: absolute;
  top: 50%; left: 12px; right: 12px;
  height: 1.5px;
  background: var(--gray-400);
  transform: translateY(-50%) rotate(-6deg);
  border-radius: 2px;
}

.slot-time {
  font-size: 17px; font-weight: 700;
  color: var(--navy);
  font-variant-numeric: tabular-nums;
  transition: var(--transition);
}
.slot-label {
  font-size: 11px; font-weight: 500;
  color: var(--gray-400);
  text-transform: uppercase; letter-spacing: .8px;
  transition: var(--transition);
}
.slot-btn.selected .slot-time,
.slot-btn.selected .slot-label { color: var(--white); }

/* ══════════════════════════════════════════
   SLOT SUMMARY — indicador DATA / HORÁRIO
   ══════════════════════════════════════════ */
.slot-summary {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 0;
  background: var(--gray-50);
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
  overflow: hidden;
  transition: var(--transition);
}

.slot-summary--active {
  background: rgba(37,99,235,.04);
  border-color: rgba(37,99,235,.15);
}

.slot-summary--error {
  background: rgba(239,68,68,.04);
  border-color: rgba(239,68,68,.25);
}

.slot-summary__col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 18px 20px;
}

.slot-summary__label {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray-400);
  transition: var(--transition);
}

.slot-summary--active .slot-summary__label {
  color: var(--blue);
}

.slot-summary__value {
  font-family: var(--ff-display);
  font-size: 2rem;
  font-weight: 400;
  color: var(--gray-300);
  letter-spacing: 1px;
  line-height: 1;
  transition: var(--transition);
}

.slot-summary--active .slot-summary__value {
  color: var(--navy);
}

.slot-summary__sub {
  font-size: 12px;
  font-weight: 500;
  color: var(--gray-400);
  transition: var(--transition);
}

.slot-summary--active .slot-summary__sub {
  color: var(--blue);
}

.slot-summary__divider {
  width: 1px;
  height: 48px;
  background: var(--gray-200);
  flex-shrink: 0;
  transition: var(--transition);
}

.slot-summary--active .slot-summary__divider {
  background: rgba(37,99,235,.2);
}

.slot-summary--error .slot-summary__divider {
  background: rgba(239,68,68,.2);
}

/* ══════════════════════════════════════════
   FORM SECTION
   ══════════════════════════════════════════ */
.form-section__inner { max-width: 560px; margin: 40px auto 80px; }

.form-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  border: 1px solid var(--gray-200);
}

.form-card__header {
  background: var(--navy);
  padding: 28px 36px;
}
.form-card__header h3 {
  font-family: var(--ff-display);
  font-size: 1.5rem; font-weight: 400;
  color: var(--white);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.form-card__header p {
  font-size: 13px;
  color: rgba(255,255,255,.55);
}

.booking-form { padding: 36px; }

.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 13px; font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 8px;
  letter-spacing: .2px;
}
.optional { font-weight: 400; color: var(--gray-400); }
.req { color: #EF4444; font-weight: 700; }

.input-wrap { position: relative; }
.input-icon {
  position: absolute;
  left: 14px; top: 50%; transform: translateY(-50%);
  color: var(--gray-400);
  pointer-events: none;
}
.input-wrap:has(textarea) .input-icon { top: 16px; transform: none; }

.input-wrap input,
.input-wrap textarea {
  width: 100%;
  padding: 13px 14px;
  font-family: var(--ff-body);
  font-size: 15px;
  color: var(--gray-800);
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  outline: none;
  transition: var(--transition);
  resize: none;
}
.input-wrap:has(.input-icon) input,
.input-wrap:has(.input-icon) textarea {
  padding-left: 44px;
}
.input-wrap input:focus,
.input-wrap textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(37,99,235,.1);
}
.input-wrap input::placeholder,
.input-wrap textarea::placeholder { color: var(--gray-400); }
.input-wrap input.error,
.input-wrap textarea.error { border-color: #EF4444; }

.form-error {
  display: block;
  font-size: 12px; color: #EF4444;
  margin-top: 5px; min-height: 16px;
}

.form-privacy {
  display: flex; align-items: center; gap: 6px;
  font-size: 12px;
  color: var(--gray-400);
  text-align: center;
  margin-top: 18px;
  justify-content: center;
}

.spin { animation: spin .8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ══════════════════════════════════════════
   DIAGNÓSTICO
   ══════════════════════════════════════════ */
.diagnostic {
  padding: 40px 0 80px;
}

.diagnostic__inner {
  max-width: 640px;
  margin: 0 auto;
}

.diag-form {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}

.diag-block {
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--gray-200);
}
.diag-block:last-of-type {
  border-bottom: none;
  padding-bottom: 8px;
  margin-bottom: 16px;
}

.diag-block__title {
  font-family: var(--ff-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 20px;
}

/* Radio groups */
.radio-group {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 8px;
}

.radio-opt {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-700);
  transition: var(--transition);
  user-select: none;
}
.radio-opt:hover {
  border-color: var(--gray-300);
  background: var(--gray-50);
}
.radio-opt input[type="radio"] {
  appearance: none;
  width: 16px; height: 16px;
  border: 1.5px solid var(--gray-300);
  border-radius: 50%;
  cursor: pointer;
  flex-shrink: 0;
  transition: var(--transition);
  position: relative;
}
.radio-opt input[type="radio"]:checked {
  border-color: var(--blue);
  border-width: 5px;
}
.radio-opt:has(input:checked) {
  border-color: var(--blue);
  background: rgba(37,99,235,.05);
  color: var(--navy);
}
.radio-group.error-group .radio-opt { border-color: #FCA5A5; }

/* Single-column layout for long radio options */
.radio-group--col {
  grid-template-columns: 1fr;
}

/* Checkbox groups */
.checkbox-group {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 8px;
}

.checkbox-opt {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-700);
  transition: var(--transition);
  user-select: none;
}
.checkbox-opt:hover {
  border-color: var(--gray-300);
  background: var(--gray-50);
}
.checkbox-opt input[type="checkbox"] {
  appearance: none;
  width: 16px; height: 16px;
  border: 1.5px solid var(--gray-300);
  border-radius: 4px;
  cursor: pointer;
  flex-shrink: 0;
  transition: var(--transition);
  position: relative;
}
.checkbox-opt input[type="checkbox"]:checked {
  border-color: var(--blue);
  background: var(--blue);
}
.checkbox-opt input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='white'%3E%3Cpath d='M13.5 4.5l-7 7L3 8'/%3E%3C/svg%3E") center / 12px no-repeat;
}
.checkbox-opt:has(input:checked) {
  border-color: var(--blue);
  background: rgba(37,99,235,.05);
  color: var(--navy);
}

/* Optional section label */
.diag-optional {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.5px;
  text-transform: none;
  color: var(--gray-400);
  margin-left: 4px;
}

/* ══════════════════════════════════════════
   APRESENTAÇÃO DA MENTORIA
   ══════════════════════════════════════════ */

/* ── Scroll-reveal (spring easing do Remotion: cubic-bezier 0.16,1,0.3,1) ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 620ms cubic-bezier(0.16, 1, 0.3, 1) var(--delay, 0ms),
    transform 620ms cubic-bezier(0.16, 1, 0.3, 1) var(--delay, 0ms);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ── Hero ── */
@keyframes heroZoom {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.07); }
}
.pres-hero {
  background: var(--navy);
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 56px 0 56px;
  position: relative;
  overflow: hidden;
}
.pres-hero::after {
  content: '';
  position: absolute; inset: -8%;
  background-image: url('desing.system/fundos/background-4.png');
  background-size: cover;
  background-position: center top;
  animation: heroZoom 12s ease-in-out infinite;
  z-index: 0;
}
.pres-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(15,25,45,.70) 0%, rgba(15,25,45,.94) 100%);
  pointer-events: none;
  z-index: 1;
}
.pres-hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-left: 120px;
  padding-right: 120px;
  text-align: left;
}

.back-link--light { color: rgba(255,255,255,.45); margin-right: 24px; }
.back-link--light:hover { color: var(--white); }

.pres-hero__tag { margin-bottom: 24px; }

.pres-hero__title {
  font-family: var(--ff-display);
  font-size: clamp(2.6rem, 5.5vw, 4.4rem);
  font-weight: 400;
  line-height: 1.06;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: linear-gradient(
    135deg,
    #c8cdd4 0%,
    #ffffff 28%,
    #9ba4b0 50%,
    #f0f2f5 72%,
    #c0c7d0 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0 0 24px;
}
.pres-hero__sub {
  font-size: 18px;
  background: linear-gradient(
    135deg,
    #a8b0bc 0%,
    #dde2e8 40%,
    #8e97a4 65%,
    #cdd2d8 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.72;
  max-width: 520px;
  font-weight: 300;
}
.pres-hero__emphasis {
  font-family: var(--ff-body);
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  font-weight: 600;
  margin-top: 20px;
  letter-spacing: 0.2px;
  text-transform: none;
  color: rgba(255,255,255,.88);
  border-left: 3px solid var(--blue-light);
  padding-left: 16px;
  line-height: 1.55;
  background: none;
  -webkit-text-fill-color: unset;
}

/* ── Corpo ── */
.pres-body { background: var(--gray-50); }
.pres-section { padding: 88px 0; }
.pres-section + .pres-section { border-top: 1px solid var(--gray-200); }

.pres-section__title {
  font-family: var(--ff-display);
  font-size: clamp(1.9rem, 3.2vw, 2.8rem);
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 32px;
  line-height: 1.1;
}
.pres-section__title--light { color: var(--white); }

/* ── Quem sou eu ── */
.pres-text { max-width: 640px; }
.pres-text p {
  font-size: 16px;
  line-height: 1.82;
  color: var(--gray-600);
  margin-bottom: 18px;
}
.pres-text p:last-child { margin-bottom: 0; }
.pres-text__highlight {
  font-family: var(--ff-display);
  font-size: 1.5rem !important;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--navy) !important;
  border-left: 3px solid var(--blue);
  padding: 4px 0 4px 20px;
  margin: 28px 0 !important;
  line-height: 1.35 !important;
}

/* ── Seção Quem sou eu ── */
.pres-section--who {
  padding: 80px 0;
  background: var(--navy);
  background-image: url('desing.system/fundos/background-3.png');
  background-size: cover;
  background-position: center;
  border-top: none;
  position: relative;
  overflow: hidden;
}
.pres-section--who::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(15,25,45,.90);
  pointer-events: none;
  z-index: 0;
}
.pres-section--who .pres-who__grid,
.pres-section--who .pres-section__title { position: relative; z-index: 1; }
.pres-section--who .pres-section__title { color: var(--white); }
.pres-section--who .pres-text p { color: var(--sky); }
.pres-section--who .pres-text__highlight {
  color: var(--white) !important;
  border-left-color: var(--blue-glow);
}
.pres-who__grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 56px;
  align-items: center;
}
.pres-who__photo-col {
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.pres-photo { width: 100%; height: auto; display: block; }
.pres-achievements {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-top: 28px;
}
.pres-achievement {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 12px; font-weight: 600;
  color: var(--blue-glow);
  background: rgba(96,165,250,.10);
  border: 1px solid rgba(96,165,250,.28);
  border-radius: 100px;
  padding: 7px 14px;
  width: fit-content;
  letter-spacing: .2px;
}

/* ── Seção alt (O que é a mentoria) ── */
.pres-section--alt {
  background: var(--white);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}
.pres-section--alt + .pres-section { border-top: none; }

.pres-lead {
  font-size: 19px;
  color: var(--gray-500);
  line-height: 1.65;
  max-width: 580px;
  font-weight: 300;
}
.pres-lead--strong {
  font-family: var(--ff-display);
  font-size: clamp(1.7rem, 2.6vw, 2.2rem);
  font-weight: 400;
  color: var(--navy);
  margin-top: 6px;
  margin-bottom: 24px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.pres-intro {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.8;
  max-width: 680px;
  margin-bottom: 40px;
}

/* ── Feature cards ── */
.pres-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 36px;
}
.pres-feature {
  position: relative;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-left: 3px solid transparent;
  border-radius: var(--radius-lg);
  padding: 28px 24px 28px 22px;
  transition:
    border-color 240ms ease,
    background 240ms ease,
    box-shadow 240ms ease,
    transform 360ms cubic-bezier(0.16, 1, 0.3, 1);
}
.pres-feature:hover {
  border-color: var(--blue);
  background: var(--white);
  box-shadow: 0 32px 90px rgba(37,99,235,.18), 0 0 0 1px rgba(59,130,246,.12);
  transform: translateY(-6px);
}
.pres-feature__num {
  position: absolute;
  top: 18px; right: 20px;
  font-family: var(--ff-display);
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--gray-200);
  line-height: 1;
  letter-spacing: -1px;
  transition: color 240ms ease;
  user-select: none;
}
.pres-feature:hover .pres-feature__num { color: rgba(37,99,235,.12); }
.pres-feature__icon {
  width: 44px; height: 44px;
  background: rgba(37,99,235,.07);
  border: 1px solid rgba(37,99,235,.14);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue);
  margin-bottom: 16px;
  transition: background 240ms ease, border-color 240ms ease;
}
.pres-feature:hover .pres-feature__icon {
  background: rgba(37,99,235,.14);
  border-color: rgba(37,99,235,.28);
}
.pres-feature__title {
  font-size: 15px; font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  letter-spacing: -.1px;
}
.pres-feature__text {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.72;
}
.pres-closing {
  font-size: 15px;
  color: var(--gray-700);
  line-height: 1.78;
  max-width: 620px;
  padding: 22px 28px;
  background: rgba(37,99,235,.04);
  border-left: 3px solid var(--blue);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-style: italic;
}

/* ── Para quem é (dark) ── */
.pres-section--dark {
  background: var(--navy-mid);
  background-image: url('desing.system/fundos/background-5.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  border-top: none !important;
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}
.pres-section--dark::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(12,21,36,.88);
  pointer-events: none;
  z-index: 0;
}
.pres-section--dark .pres-dark__inner,
.pres-section--dark .pres-dark__deco { z-index: 1; }
.pres-dark__inner { position: relative; z-index: 1; max-width: 820px; margin: 0 auto; text-align: center; }
.pres-dark__deco {
  position: absolute;
  top: -40px; left: -16px;
  font-family: var(--ff-display);
  font-size: 20rem;
  font-weight: 700;
  color: rgba(255,255,255,.022);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.pres-dark__text {
  font-size: 18px;
  color: rgba(255,255,255,.70);
  line-height: 1.78;
  margin-bottom: 18px;
  font-weight: 300;
}
.pres-dark__text--muted { color: rgba(255,255,255,.40); font-size: 16px; }
.pres-dark__list {
  list-style: none;
  padding: 0; margin: 32px 0 0;
  display: flex; flex-direction: column; gap: 0;
  width: 100%;
  max-width: 680px;
}
.pres-dark__item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(192,199,213,.10);
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  color: rgba(255,255,255,.85);
  line-height: 1.5;
  font-weight: 400;
  font-family: var(--ff-body);
}
.pres-dark__item:first-child { border-top: 1px solid rgba(192,199,213,.10); }
.pres-dark__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 40px;
  width: 100%;
  max-width: 760px;
}
.pres-dark__card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(192,199,213,.12);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: background 280ms ease, border-color 280ms ease, transform 280ms ease;
}
.pres-dark__card:hover {
  background: rgba(96,165,250,.07);
  border-color: rgba(96,165,250,.28);
  transform: translateY(-4px);
}
.pres-dark__item-title {
  display: block;
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
  font-family: var(--ff-body);
}
.pres-dark__item-desc {
  font-size: clamp(.9rem, 1.4vw, 1rem);
  color: rgba(255,255,255,.60);
  line-height: 1.6;
  font-weight: 300;
  margin: 0;
}
.pres-dark__not-for {
  margin-top: 52px;
  padding: 36px 40px;
  border: 1px solid rgba(239,68,68,.20);
  border-radius: var(--radius-lg);
  background: rgba(239,68,68,.05);
  max-width: 680px;
}
.pres-dark__not-title {
  font-family: var(--ff-display);
  font-size: clamp(1rem, 1.8vw, 1.3rem);
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(239,68,68,.80);
  margin-bottom: 20px;
}
.pres-dark__not-list {
  list-style: none;
  padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 12px;
}
.pres-dark__not-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: clamp(.95rem, 1.5vw, 1.05rem);
  color: rgba(255,255,255,.55);
  font-weight: 300;
  line-height: 1.5;
}
.pres-dark__x {
  color: rgba(239,68,68,.70);
  font-size: 1.2rem;
  font-weight: 700;
  flex-shrink: 0;
  line-height: 1.4;
}
.pres-dark__arrow {
  font-size: clamp(1.4rem, 2.4vw, 1.8rem);
  color: var(--blue-glow);
  font-weight: 700;
  line-height: 1.4;
  flex-shrink: 0;
  animation: goldPulse 1.4s cubic-bezier(.4,0,.6,1) infinite;
}
.pres-dark__divider {
  width: 40px; height: 2px;
  background: var(--blue);
  border-radius: 2px;
  margin: 32px 0;
}
.pres-dark__cta-line {
  font-family: var(--ff-display);
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  font-weight: 400;
  color: var(--white);
  max-width: 580px;
  line-height: 1.38;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ── CTA ── */
.pres-cta {
  text-align: center;
  border-top: none !important;
  background: var(--navy);
  background-image: url('desing.system/fundos/background-8.png');
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}
.pres-cta::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(15,25,45,.88);
  pointer-events: none;
  z-index: 0;
}
.pres-cta .container { position: relative; z-index: 1; }
.pres-cta__title {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white);
  margin: 14px 0 12px;
  line-height: 1.08;
}
.pres-cta__sub {
  font-size: 16px;
  color: var(--sky);
  max-width: 420px;
  margin: 0 auto 36px;
  line-height: 1.72;
  font-weight: 300;
}
.pres-cta__btn {
  font-size: 19px;
  padding: 22px 56px;
  gap: 12px;
  background: linear-gradient(135deg, var(--navy-light) 0%, var(--blue) 100%);
  box-shadow: 0 12px 40px rgba(37,99,235,.40);
  border-radius: var(--radius-sm);
}
.pres-cta__btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 56px rgba(37,99,235,.65);
}

/* ── Responsive ── */
@media (max-width: 860px) {
  .pres-who__grid { grid-template-columns: 1fr; gap: 40px; }
  .pres-who__photo-col { max-width: 300px; margin: 0 auto; }
  .pres-section { padding: 64px 0; }
}
@media (max-width: 640px) {
  .pres-hero { padding: 56px 0 72px; }
  .pres-hero__inner { padding-left: 20px; padding-right: 20px; }
  .pres-section { padding: 48px 0; }
  .pres-features { grid-template-columns: 1fr; }
  .pres-dark__cards { grid-template-columns: 1fr; }
  .pres-cta__btn { width: 100%; justify-content: center; }
  .pres-who__photo-col { max-width: 260px; }
  .pres-dark__deco { font-size: 10rem; }
}

/* ══════════════════════════════════════════
   MODAL
   ══════════════════════════════════════════ */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(15,25,45,.6);
  backdrop-filter: blur(6px);
  z-index: 200;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  animation: overlayIn .25s ease;
}
@keyframes overlayIn { from { opacity: 0; } to { opacity: 1; } }

.modal {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 44px 36px;
  max-width: 440px; width: 100%;
  text-align: center;
  box-shadow: var(--shadow-xl);
  animation: modalIn .35s cubic-bezier(.34,1.56,.64,1) both;
}
@keyframes modalIn {
  from { opacity: 0; transform: scale(.9) translateY(16px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

.modal__icon {
  width: 68px; height: 68px;
  border-radius: 50%;
  background: linear-gradient(135deg, #22C55E, #16A34A);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  color: var(--white);
  box-shadow: 0 8px 20px rgba(34,197,94,.3);
}

.modal__title {
  font-family: var(--ff-display);
  font-size: 1.8rem; font-weight: 400;
  color: var(--navy);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.modal__body {
  font-size: 15px; color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 22px;
}
.modal__whatsapp {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: #F0FDF4;
  border: 1px solid #BBF7D0;
  border-radius: var(--radius-md);
  padding: 12px;
  font-size: 13px; font-weight: 500;
  color: #166534;
  margin-bottom: 22px;
}
.modal__btn { width: 100%; justify-content: center; }

/* ══════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════ */
.footer {
  background: var(--navy);
  background-image: url('desing.system/fundos/background-6.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  padding: 32px 0;
  margin-top: auto;
  border-top: 1px solid rgba(255,255,255,.05);
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(15,25,45,.92);
  pointer-events: none;
  z-index: 0;
}
.footer__inner { position: relative; z-index: 1; }
.footer__inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
}
.footer__copy {
  font-size: 12px; color: rgba(255,255,255,.4);
}
.footer__social {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer__social-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.50);
  font-size: 13px;
  font-weight: 500;
  transition: var(--transition);
}
.footer__social-link:hover {
  color: var(--white);
  border-color: rgba(255,255,255,.30);
  background: rgba(255,255,255,.08);
}
.logo--light .logo__text { color: rgba(255,255,255,.7); }
.logo--light .logo__text strong { color: var(--white); }

/* ══════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════ */
@media (max-width: 640px) {
  .gateway { padding: 56px 0; }
  .gateway__cards { grid-template-columns: 1fr; }
  .logo__mark-img { height: 44px; }
  .logo--light .logo__full-img { height: 44px; }
  .scheduling { padding: 48px 0 32px; }
  .week-btn { padding: 10px 16px; min-width: 80px; }
  .week-nav__sep { display: none; }
  .form-card__header { padding: 24px; }
  .booking-form { padding: 24px; }
  .auth__card { padding: 28px 24px; }
  .diag-form { padding: 24px; }
  .slots-grid .slot-btn { flex: 0 0 90px; }
  .radio-group { grid-template-columns: 1fr 1fr; }
  .radio-group--col { grid-template-columns: 1fr; }
  .checkbox-group { grid-template-columns: 1fr 1fr; }
  .footer__inner { justify-content: center; text-align: center; }
  .path-card { padding: 20px; }
}

@media (max-width: 400px) {
  .radio-group { grid-template-columns: 1fr; }
  .checkbox-group { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════
   MEUS AGENDAMENTOS
   ══════════════════════════════════════════ */
.my-bookings { margin-bottom: 8px; }

.booking-item {
  display: flex; align-items: center; justify-content: space-between;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  margin-bottom: 10px;
  gap: 12px;
  box-shadow: var(--shadow-sm);
}
.booking-item__info {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; color: var(--gray-700);
}
.booking-item__info svg { color: var(--blue); flex-shrink: 0; }

.booking-item__cancel-btn {
  flex-shrink: 0;
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid #FCA5A5;
  background: #FFF5F5;
  color: #DC2626;
  font-size: 13px; font-weight: 500;
  cursor: pointer;
  font-family: var(--ff-body);
  transition: var(--transition);
}
.booking-item__cancel-btn:hover {
  background: #FEE2E2;
  border-color: #DC2626;
}
.booking-item__no-cancel {
  font-size: 12px; color: var(--gray-400); flex-shrink: 0;
}

/* ══════════════════════════════════════════
   MODAL — variantes
   ══════════════════════════════════════════ */
.modal__icon--warn {
  background: #FFF5F5;
  color: #DC2626;
}
.modal__actions {
  display: flex; flex-direction: column; gap: 10px; width: 100%;
}
.modal__actions .btn { width: 100%; justify-content: center; }

.btn--ghost {
  background: transparent;
  border: 1px solid var(--gray-300);
  color: var(--gray-600);
}
.btn--ghost:hover { border-color: var(--gray-400); background: var(--gray-100); }

.btn--danger {
  background: #DC2626;
  color: var(--white);
}
.btn--danger:hover { background: #B91C1C; }
