@font-face {
  font-family: "Mangueira";
  src: url("/fonts/FONTS-MANGUEIRA/fonnts.com-Mangueira_Thin.ttf") format("truetype");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Mangueira";
  src: url("/fonts/FONTS-MANGUEIRA/fonnts.com-Mangueira_Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Mangueira";
  src: url("/fonts/FONTS-MANGUEIRA/fonnts.com-Mangueira_Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Mangueira";
  src: url("/fonts/FONTS-MANGUEIRA/fonnts.com-Mangueira_Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Mangueira";
  src: url("/fonts/FONTS-MANGUEIRA/fonnts.com-Mangueira_Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

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

html,
body {
  height: 100%;
  width: 100%;
}

html {
  font-size: 16px;
  font-family: 'Inter', 'Roboto', 'Inter', 'Poppins', sans-serif;
}


:root {
  font-family: 'Inter', 'Roboto', 'Inter', 'Poppins', sans-serif;
}

body.public-layout {
  background: radial-gradient(circle at 20% -20%, rgba(138, 75, 248, 1) 0%, rgba(74, 26, 222, 0.85) 35%, rgba(19, 0, 67, 1) 70%, #0c002f 100%);
  min-height: 100vh;
}

body.public-layout main {
  width: 100%;
  margin: 0;
}


body {
  margin: 0;
  background: #f5f6f8;
  color: #79747e;
  /* material-theme.sys.light.outline (Figma) */
  font-family: 'Inter', 'Roboto', 'Inter', 'Poppins', sans-serif;
  line-height: 24px;
  /* token más cercano */
}


h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
label,
a,
nav,
li,
button,
input,
textarea,
select {
  font-family: 'Inter', 'Roboto', 'Inter', 'Poppins', sans-serif;
}


::placeholder {
  font-family: 'Inter', 'Roboto', 'Inter', 'Poppins', sans-serif;
  font-weight: 400;
}

a {
  color: inherit;
}

.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 16px;
}

.header {
  border-bottom: 1px solid var(--color-border);
  background: var(--color-surface);
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  /* token */
}

.brand {
  font-weight: 600;
}

.nav {
  display: flex;
  gap: 12px;
  /* token */
  align-items: center;
}

.nav-link {
  text-decoration: none;
  padding: 10px;
  /* token */
  border: 1px solid var(--color-border);
  background: #f7f7f7;
}

.link-button {
  background: transparent;
  border: 1px solid var(--color-border);
  padding: 10px;
  /* token */
  cursor: pointer;
}

.admin-account-menu {
  position: relative;
}

.admin-account {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 40px;
  padding: 0 8px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #130043;
  cursor: pointer;
}

.admin-account:hover {
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.admin-account:focus-visible {
  outline: 2px solid rgba(124, 58, 237, 0.45);
  outline-offset: 2px;
}

.admin-account__icon {
  width: 21px;
  height: 21px;
  display: block;
  flex: 0 0 21px;
}

.admin-account__chev {
  width: 11px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  flex: 0 0 11px;
  transition: transform 0.16s ease;
}

.admin-account__chev-img {
  width: 34px;
  height: 18px;
  max-width: none;
  display: block;
  transform: translateX(-24px);
}

.admin-account-menu.is-open .admin-account__chev {
  transform: rotate(180deg);
}

.admin-account-menu__dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 30;
  min-width: 168px;
  border-radius: 14px;
  border: 1px solid rgba(19, 0, 67, 0.08);
  background: #ffffff;
  box-shadow: 0 16px 36px rgba(19, 0, 67, 0.14);
  padding: 8px;
}

.admin-account-menu__item {
  width: 100%;
  min-height: 42px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: #1f1338;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  text-align: left;
  padding: 10px 12px;
  cursor: pointer;
  box-shadow: none;
}

.admin-account-menu__item:hover {
  background: #f5f3ff;
  color: #6d28d9;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  border: 1px solid var(--color-border);
  padding: 10px;
  /* token más cercano */
  vertical-align: top;
}

th {
  background: #f7f7f7;
  font-weight: 600;
}

input,
button {
  font: inherit;
}

button {
  border: 1px solid var(--color-text);
  background: var(--color-surface);
  padding: 10px;
  /* token */
}

.auth-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  /* token */
  background: linear-gradient(180deg, #310244 0%, #1b0666 45%, #310244 100%);
}

.card {
  width: 100%;
  max-width: 420px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  /* token */
  box-shadow: var(--shadow-card);
  padding: 20px;
  /* token */
}

.card-title {
  margin: 0 0 16px 0;
  font-size: 20px;
  /* token más cercano: 22px */
}

.register-card {
  max-width: 720px;
  margin: 24px auto;
}

.register-title {
  text-align: center;
}

.register-subtitle {
  text-align: center;
  color: var(--color-muted);
  margin: -6px 0 16px 0;
  font-size: 16px;
  /* token */
}

.stepper {
  display: flex;
  gap: 10px;
  /* token más cercano */
  justify-content: center;
  margin-bottom: 6px;
}

.step {
  width: 28px;
  height: 28px;
  border-radius: 100px;
  /* token más cercano */
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  /* token */
  color: var(--color-muted);
}

.step.is-active {
  border-color: var(--color-text);
  color: var(--color-text);
  font-weight: 600;
}

.stepper-labels {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  /* token */
  color: var(--color-muted);
  margin: 0 6px 18px 6px;
}

.form-step {
  display: none;
}

.form-step.is-active {
  display: block;
}

.form-step h2 {
  margin: 0 0 12px 0;
  font-size: 16px;
  /* token */
}

.form-actions {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  /* token */
  margin-top: 12px;
}

.helper-text {
  color: var(--color-muted);
  font-size: 14px;
  /* token */
  margin-bottom: 12px;
}

.file-grid {
  display: grid;
  gap: 12px;
  /* token */
}

.dropzone {
  position: relative;
  border: 1px dashed #d6d6d6;
  border-radius: 10px;
  /* token */
  padding: 12px;
  /* token */
  display: flex;
  flex-direction: column;
  gap: 10px;
  /* token más cercano */
  cursor: pointer;
  background: #ffffff;
}

.dropzone input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.dropzone.is-dragging {
  border-color: #111111;
  background: #f7f7f7;
}

.file-status {
  font-size: 12px;
  /* token */
  color: #79747e;
  /* material-theme.sys.light.outline */
}

.login-brand {
  text-align: center;
  font-weight: 600;
  margin-bottom: 12px;
}

.login-title {
  text-align: center;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 10px;
  /* token más cercano */
  margin-bottom: 12px;
}

/* Layout closer to the mockup: two-column form in desktop, full width on mobile */
.form-step {
  width: 100%;
}


input[type="email"],
input[type="password"],
input[type="text"],
input,
select {
  border: 1px solid var(--color-border-strong);
  border-radius: 10px;
  /* token */
  padding: 12px 15px;
  /* token más cercano */
  background: var(--color-surface);
  height: 44px;
  box-sizing: border-box;
  font-size: 16px;
  /* token */
  font-family: 'Inter', 'Roboto', Arial, sans-serif;
  font-variant-ligatures: none;
  font-feature-settings: "liga" 0, "calt" 0;
}

.btn-primary {
  width: 100%;
  border: none;
  background: linear-gradient(90deg, var(--color-primary-2) 0%, var(--color-primary) 100%);
  color: var(--color-primary-contrast);
  border-radius: 100px;
  /* token más cercano */
  padding: 12px 20px;
  /* token más cercano */
  font-weight: 700;
  box-shadow: 0 10px 30px rgba(111, 75, 255, 0.18);
  cursor: pointer;
}

.register-card {
  background: #ffffff;
  border-radius: 32px;
  padding: 36px;
  box-shadow: 0 32px 80px rgba(16, 24, 40, 0.25);
  margin-top: 8px;
}

.register-title {
  font-size: 40px;
  /* token más cercano: 32px o 48px */
  font-weight: 900;
  color: #ffffff;
  /* when used in hero, left title is white */
}

.register-subtitle {
  color: rgba(255, 255, 255, 0.85);
  font-size: 16px;
  /* token */
}

/* Hero layout for register page */
.register-hero {
  width: 100%;
  margin: 24px auto 60px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 520px);
  column-gap: 24px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  max-width: 1260px;
}

.register-grid {
  display: contents;
}

.register-hero-left {
  margin-top: 32px;
  padding-left: 0;
}

.register-hero-right {
  width: 100%;
  max-width: 520px;
}

.register-hero--full {
  max-width: none;
  margin: 0;
  padding: 0;
}

.hero-title {
  font-size: 48px;
  margin: 0 0 6px 0;
  color: #ffffff;
  font-family: 'Mangueira', 'Inter', system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.1;
}

.hero-subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  margin: 0 0 18px 0;
  font-weight: 500;
}

@media (max-width: 900px) {
  .register-grid {
    flex-direction: column-reverse;
    gap: 18px;
    /* token */
  }

  .register-hero-right {
    width: 100%;
  }

  .hero-title {
    font-size: 28px;
    /* token */
  }
}

/* Stepper adjustments to match mockup */
.stepper {
  margin: 0 0 10px;
  display: flex;
  align-items: center;
  gap: 22px;
  position: relative;
  justify-content: center;
  padding: 0 30px;
}

.step {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 16px;
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
}

.step.is-active {
  background: #ffffff;
  color: #4b2aff;
  border-color: transparent;
  box-shadow: 0 12px 24px rgba(75, 42, 255, 0.4);
}

.stepper::before,
.stepper::after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: 4px;
  background: rgba(255, 255, 255, 0.45);
  width: calc(50% - 52px);
  border-radius: 999px;
}

.stepper::before {
  left: 0;
}

.stepper::after {
  right: 0;
}

.alert-error {
  margin: 0 0 12px 0;
  padding: 10px 12px;
  border: 1px solid #f2b8b5;
  background: #fff5f5;
  color: #8a1f1a;
  border-radius: 8px;
  /* token */
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(17, 17, 17, 0.55);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
  z-index: 1000;
}

.modal-backdrop.is-visible {
  display: flex;
}

.modal {
  width: 100%;
  max-width: 420px;
  background: #ffffff;
  border-radius: 12px;
  /* token */
  padding: 20px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
  text-align: center;
}

.modal h2 {
  margin: 0 0 8px 0;
  font-size: 16px;
  /* token */
}

.modal p {
  margin: 0;
  color: #79747e;
  /* material-theme.sys.light.outline */
}

.modal-actions {
  margin-top: 16px;
}

.links {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.divider {
  height: 1px;
  background: #e5e5e5;
}

.admin-calendar {
  margin: 16px 0 24px;
}

.calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.calendar-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.calendar-link {
  text-decoration: none;
  border: 1px solid #e5e5e5;
  padding: 6px 10px;
  background: #f7f7f7;
  color: #111111;
}

.calendar-month {
  font-weight: 600;
}

.calendar-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  /* token */
  color: #79747e;
  /* material-theme.sys.light.outline */
  margin-top: 10px;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 8px;
  margin-top: 12px;
}

.calendar-day-name {
  font-size: 12px;
  /* token más cercano: 11px o 12px */
  text-transform: uppercase;
  color: #79747e;
  /* material-theme.sys.light.outline */
}

.calendar-cell {
  display: block;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  /* token */
  padding: 8px;
  background: #ffffff;
  text-decoration: none;
  color: inherit;
  min-height: 70px;
}

.calendar-cell.is-outside {
  opacity: 0.4;
}

.calendar-cell.is-selected {
  border-color: #111111;
  box-shadow: inset 0 0 0 1px #111111;
}

.calendar-date {
  font-weight: 600;
}

.calendar-status {
  margin-top: 4px;
  font-size: 12px;
  /* token más cercano: 11px o 12px */
}

.status-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 100px;
  /* token más cercano */
  margin-right: 6px;
}

.status-available {
  color: #10b981;
}

.status-pending {
  color: #f59e0b;
}

.status-confirmed {
  color: #3b82f6;
}

.status-error {
  color: #ef4444;
}

/* Landing styles */
.landing {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  --landing-accent: #4f378b;
  --landing-ink: #310244;
  background: radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.16), transparent 46%),
    radial-gradient(circle at 90% 30%, rgba(255, 255, 255, 0.12), transparent 44%),
    linear-gradient(180deg, #310244 0%, #1b0666 55%, #310244 100%);
  color: #ffffff;

  font-family: 'Inter', 'Roboto', 'Inter', 'Poppins', sans-serif;
}

.hero {
  position: relative;
  min-height: 0;
  display: block;
  padding: 0;
  overflow: hidden;
  background: transparent;
}

.hero__slides {
  display: none;
}

.hero__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.9s ease;
  filter: saturate(1.05);
}

.hero__slide.is-active {
  opacity: 1;
}

.hero__overlay {
  display: none;
}

.hero__rings {
  display: none;
}

.hero__rings::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.14), transparent 48%),
    radial-gradient(circle at 55% 45%, rgba(108, 90, 255, 0.3), transparent 50%);
  mix-blend-mode: screen;
  opacity: 0.7;
}

.hero__header {
  position: relative;
  padding: 28px 56px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 2;
}

.hero__logo img {
  height: 52px;
  width: auto;
  filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.5));
}

.hero__nav {
  display: flex;
  gap: 18px;
  align-items: center;
}

.hero__navtext {
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  font-family: 'Inter', 'Roboto', 'Inter', 'Poppins', sans-serif;
  font-size: 22px;
  line-height: 28px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.hero__cta {
  color: #ffffff;
  text-decoration: none;
  font-family: 'Inter', 'Roboto', 'Inter', 'Poppins', sans-serif;
  font-size: 22px;
  line-height: 28px;
  font-weight: 700;
  padding: 16px 25px;
  border-radius: 16px;
  /* token */
  background: #8a4bf8;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.28);
}

.hero__cta:hover {
  filter: brightness(1.04);
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  color: #ffffff;
  text-shadow: 0 14px 30px rgba(0, 0, 0, 0.35);
}

.hero__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 12px;
}

.hero h1 {
  margin: 0;
  font-size: clamp(38px, 5vw, 68px);
  line-height: 16px;
  /* token más cercano */
  font-weight: 900;
}

.hero__lead {
  margin-top: 18px;
  max-width: 560px;
  font-size: 18px;
  line-height: 28px;
  /* token más cercano */
  color: rgba(255, 255, 255, 0.85);
}

.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 100px;
  /* token más cercano */
  padding: 12px 20px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: transform 0.15s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.btn:focus-visible {
  outline: 2px solid #f0e7ff;
  outline-offset: 2px;
}

.btn--primary {
  background: linear-gradient(90deg, #6f5cf1, #a363ff);
  color: #ffffff;
  box-shadow: 0 12px 28px rgba(105, 76, 241, 0.4);
}

.btn--primary:hover {
  filter: brightness(1.06);
  transform: translateY(-1px);
}

.btn--pill {
  background: linear-gradient(90deg, #6f5cf1, #a363ff);
  color: #ffffff;
  padding: 14px 28px;
  min-width: 190px;
  border-radius: 20px;
  /* token más cercano */
  font-weight: 800;
  box-shadow: 0 18px 48px rgba(92, 43, 214, 0.35), 0 6px 18px rgba(0, 0, 0, 0.12);
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}

.btn--pill:hover {
  filter: brightness(1.05);
  transform: translateY(-2px);
  box-shadow: 0 22px 54px rgba(92, 43, 214, 0.4), 0 10px 22px rgba(0, 0, 0, 0.14);
}

.register {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(360px, 620px);
  gap: 48px;
  padding: 48px 7vw 96px;
  background: transparent;
  align-items: center;
  flex: 1 0 auto;
}

.register__right {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.register__stepper {
  width: 100%;
  max-width: 520px;
  margin: 0 auto 18px;
}

.register__text h2 {
  margin: 0;
  color: #ffffff;
  font-family: 'Mangueira', sans-serif;
  font-size: 57px;
  line-height: 64px;
  margin-top: 0;
  font-weight: 700;
  letter-spacing: -0.25px;
}

.register__text p {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.85);
  font-family: 'Mangueira', sans-serif;
  font-size: 45px;
  line-height: 52px;
  font-weight: 400;
}

.register__card {
  background: #ffffff;
  border-radius: 28px;
  padding: 44px 48px 38px;
  position: relative;
  overflow: visible;
  max-width: 720px;
  margin: 0 auto;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.25);
  color: #2a2a40;
}

.register__steps {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  max-width: 520px;
  margin: 0 auto 16px;
}

.step-dot {
  height: 42px;
  width: 42px;
  border-radius: 50%;
  /* para círculos, se mantiene */
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.65);
  color: #4f55fb;
  font-weight: 800;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease;
}

.dot--active {
  background: #ffffff;
  color: #4f55fb;
  box-shadow: 0 10px 24px rgba(45, 14, 120, 0.22);
}

.step-line {
  height: 2px;
  flex: 1;
  background: rgba(255, 255, 255, 0.55);
}

.register__step-labels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  color: rgba(255, 255, 255, 0.72);
  font-weight: 600;
  font-size: 13px;
  margin: 0 auto;
  text-align: center;
  width: 100%;
  max-width: 480px;
}

.register__form {
  margin-top: 0;
}

.register__card .actions {
  justify-content: center;
  margin-top: 26px;
}

.register__card .btn--primary {
  width: 100%;
  max-width: 588px;
  height: 56px;
  padding: 16px 22px;
  border-radius: 16px;
  /* token */
  background: #8a4bf8;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.22);
  font-family: 'Inter', 'Roboto', 'Inter', 'Poppins', sans-serif;
  font-size: 22px;
  line-height: 28px;
  font-weight: 700;
}

.register__card .btn--primary:hover {
  filter: brightness(1.04);
  transform: none;
}

.landing-footer {
  background: #050014;
  padding: 32px 7vw 40px;
  box-shadow: 0 -20px 40px rgba(0, 0, 0, 0.45);
  width: 100%;
  margin-top: auto;
  position: relative;
}

.landing-footer__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.landing-footer__logo {
  height: 50px;
  width: auto;
  filter: drop-shadow(0 6px 20px rgba(0, 0, 0, 0.6));
}

.landing-footer__copy {
  text-align: center;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 700;
  font-size: 16px;
}

.landing-footer__link {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-weight: 600;
}

.landing-footer__link:hover {
  opacity: 0.88;
}

@media (max-width: 900px) {
  .landing-footer__inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
  }
}

.card-panel {
  background: transparent;
  border-radius: 0;
  /* se mantiene */
  border: none;
  padding: 0;
  position: relative;
  width: 100%;
  box-sizing: border-box;
}

.form-step {
  display: none;
}

.form-step.is-active {
  display: block;
}

.hidden {
  display: none !important;
}

.form-step h3 {
  text-align: center;
  margin: 8px 0 22px;
  color: var(--landing-accent);
  font-family: 'Inter', 'Inter', sans-serif;
  font-size: 28px;
  font-weight: 800;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 24px;
  row-gap: 18px;
  width: 100%;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-weight: 700;
  color: #4d4d60;
  position: relative;
}

.field span {
  font-size: 14px;
  color: var(--landing-accent);
  font-weight: 800;
  font-family: 'Mangueira', sans-serif;
}

.field input {
  border-radius: 8px;
  /* token más cercano */
  border: 1px solid rgba(0, 0, 0, 0.32);
  padding: 12px 44px 12px 14px;
  font-size: 14px;
  line-height: 1.5;
  background: #ffffff;
  transition: border 0.15s ease, box-shadow 0.15s ease;
  width: 100%;
}

.field select {
  border-radius: 8px;
  /* token más cercano */
  border: 1px solid rgba(0, 0, 0, 0.32);
  padding: 12px 44px 12px 14px;
  font-size: 14px;
  line-height: 1.5;
  background: #ffffff;
  color: #211f26;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%236b4cd4' d='M5.5 7.5 10 12l4.5-4.5-.9-.9L10 10.2 6.4 6.6z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  transition: border 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
}

.field select:focus {
  outline: none;
  border-color: #8488ff;
  box-shadow: 0 0 0 3px rgba(132, 136, 255, 0.25);
}

.field input:focus {
  outline: none;
  border-color: #8488ff;
  box-shadow: 0 0 0 3px rgba(132, 136, 255, 0.25);
}

.field select:focus {
  outline: none;
  border-color: #8488ff;
  box-shadow: 0 0 0 3px rgba(132, 136, 255, 0.25);
}

.field input:focus {
  outline: none;
  border-color: #8488ff;
  box-shadow: 0 0 0 3px rgba(132, 136, 255, 0.25);
}

/* Contenedor relativo para posicionar ícono dentro del input */
.field-control {
  position: relative;
  display: flex;
  align-items: center;
}

.field-control input,
.field-control select,
.field-control textarea {
  padding-right: 44px;
}

/* Validación: Ícono de validación dentro del input */
.field-icon {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  pointer-events: none;
  flex-shrink: 0;
}

.field-icon svg {
  width: 18px;
  height: 18px;
}

/* Validación: Bordes verde/rojo en inputs validados */
.field input.border-green-500 {
  border-color: #16a34a;
}

.field input.border-red-500 {
  border-color: #ba1a1a;
}

.field--full {
  grid-column: 1 / -1;
  width: 100%;
}

.field--full input {
  width: 100%;
}

/* Make each step grid self-contained and aligned to the mock */
.form-step .field-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 24px;
  row-gap: 18px;
}

.form-step .field--full {
  grid-column: 1 / -1;
}

.form-step .field--full input,
.form-step .field--full select,
.form-step .field--full textarea {
  width: 100%;
}

/* Step 1 layout: stretch inputs to match mock width and wrap on narrow screens */
/* === GRID DEFINITIVO PARA DATOS EMPRESA === */

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 24px;
  row-gap: 18px;
  width: 100%;
}

/* Dirección no es full-width en el mock */
.field--direccion {
  grid-column: auto;
}

/* Mobile: todo en una columna */
@media (max-width: 768px) {
  .field-grid {
    grid-template-columns: 1fr;
  }

  .field--direccion {
    grid-column: 1;
  }
}


/* Responsive helpers for full-width fields */
@media (max-width: 640px) {
  .field-grid {
    grid-template-columns: 1fr;
  }

  .field--full {
    grid-column: 1;
  }
}

.upload {
  position: relative;
  border-radius: 12px;
  /* token */
  border: 1px dashed #d7cffe;
  background: #fbf9ff;
  padding: 14px;
  color: #6b4cd4;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 120px;
  box-shadow: inset 0 0 0 1px rgba(215, 207, 254, 0.25);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.upload input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.upload:hover {
  transform: translateY(-2px);
  border-color: #ccc3d8;
  box-shadow: 0 10px 26px rgba(92, 43, 214, 0.16), inset 0 0 0 1px rgba(192, 179, 255, 0.4);
}

.upload small,
.upload span {
  font-size: 12px;
  line-height: 24px;
  /* token más cercano */
  text-align: center;
}

.form-step[data-step="3"] .field-grid {
  grid-template-columns: repeat(2, minmax(240px, 1fr));
  column-gap: 60px;
  row-gap: 32px;
  justify-items: center;
  align-items: flex-start;
}

.form-step[data-step="3"] .field {
  width: 100%;
  align-items: flex-start;
  text-align: left;
  gap: 10px;
  color: #3b2a59;
}

.form-step[data-step="3"] .upload {
  width: 160px;
  height: 160px;
}

.form-step[data-step="3"] .actions--split {
  width: 100%;
  margin-top: 26px;
  gap: 24px;
}

.form-step[data-step="3"] .actions--split .btn {
  flex: 1 1 0;
  min-width: 0;
  justify-content: center;
}

.actions {
  margin-top: 18px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 16px;
}

.actions--split {
  justify-content: space-between;
  gap: 16px;
}

/* Hacer que los dos botones compartan el ancho disponible */
.actions--split .btn {
  flex: 1 1 0;
  width: auto;
  min-width: 0;
  justify-content: center;
}

.actions .btn {
  min-width: 170px;
}

/* Step 1: button full width as in the mock */
.form-step[data-step="1"] .actions {
  width: 100%;
  display: block;
  margin-top: 24px;
}

.form-step[data-step="1"] .actions .btn {
  width: 100%;
  min-width: 0;
  justify-content: center;
}

.btn.btn--ghost {
  color: #fbfafa;
  border: 1px solid #d3c7ff;
  background: #0c0c0c;
  padding: 14px 28px;
  font-weight: 800;
  border-radius: 20px;
  /* token más cercano */
}

.btn.btn--ghost:hover {
  background: #ece6ff;
}

.btn.btn--pill {
  /* Match the CTA gradient used in la card (Continuar) */
  background: linear-gradient(90deg, #6f5cf1, #a363ff);
  color: #ffffff;
  padding: 14px 28px;
  min-width: 190px;
  border-radius: 22px;
  font-weight: 800;
  box-shadow: 0 18px 48px rgba(111, 92, 241, 0.35), 0 6px 18px rgba(0, 0, 0, 0.12);
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;

}

.btn.btn--pill:hover {
  filter: brightness(1.05);
  transform: translateY(-2px);
  box-shadow: 0 22px 54px rgba(92, 43, 214, 0.4), 0 10px 22px rgba(0, 0, 0, 0.14);
}

/* Admin: Reserva status (buttons + cards) */
.s13-status-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
  color: #ffffff;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.18);
  transition: filter 120ms ease, background-color 120ms ease, box-shadow 120ms ease;
}

.s13-status-btn:hover {
  filter: brightness(1.06);
}

.s13-status-btn:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 1), 0 0 0 5px rgba(124, 58, 237, 0.35);
}

.s13-status-btn--solicitada {
  background: #f59e0b;
}

.s13-status-btn--enrevision {
  background: #2563eb;
}

.s13-status-btn--autorizada {
  background: #06b6d4;
}

.s13-status-btn--reservada {
  background: #7c3aed;
}

.s13-status-btn--confirmada {
  background: #16a34a;
}

.s13-status-btn--cerrada {
  background: #334155;
}

.s13-status-btn--cancelada {
  background: #ba1a1a;
}

.s13-status-btn--neutral {
  background: #4b5563;
}

.s13-status-card {
  border-left-width: 4px;
  border-left-style: solid;
  border-radius: 12px;
  overflow: hidden;
  max-width: 100%;
  word-break: break-word;
}

.s13-status-card--default {
  border-left-color: rgba(148, 163, 184, 0.9);
  background: rgba(148, 163, 184, 0.08);
}

.s13-status-card--solicitada {
  border-left-color: #f59e0b;
  background: rgba(245, 158, 11, 0.08);
}

.s13-status-card--enrevision {
  border-left-color: #f59e0b;
  background: rgba(245, 158, 11, 0.08);
}

.s13-status-card--autorizada {
  border-left-color: #f59e0b;
  background: rgba(245, 158, 11, 0.08);
}

.s13-status-card--reservada {
  border-left-color: #16a34a;
  background: rgba(22, 163, 74, 0.08);
}

.s13-status-card--confirmada {
  border-left-color: #16a34a;
  background: rgba(22, 163, 74, 0.08);
}

.s13-status-card--cerrada {
  border-left-color: #7c3aed;
  background: rgba(124, 58, 237, 0.08);
}

.s13-status-card--cancelada {
  border-left-color: #ba1a1a;
  background: rgba(220, 38, 38, 0.08);
}

.s13-status-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
}

.s13-status-badge--default {
  background: rgba(148, 163, 184, 0.12);
  border-color: rgba(148, 163, 184, 0.35);
  color: #334155;
}

.s13-status-badge--solicitada {
  background: rgba(245, 158, 11, 0.14);
  border-color: rgba(245, 158, 11, 0.35);
  color: #b45309;
}

.s13-status-badge--enrevision {
  background: rgba(245, 158, 11, 0.14);
  border-color: rgba(245, 158, 11, 0.35);
  color: #b45309;
}

.s13-status-badge--autorizada {
  background: rgba(245, 158, 11, 0.14);
  border-color: rgba(245, 158, 11, 0.35);
  color: #b45309;
}

.s13-status-badge--reservada {
  background: rgba(22, 163, 74, 0.14);
  border-color: rgba(22, 163, 74, 0.35);
  color: #15803d;
}

.s13-status-badge--confirmada {
  background: rgba(22, 163, 74, 0.14);
  border-color: rgba(22, 163, 74, 0.35);
  color: #15803d;
}

.s13-status-badge--cerrada {
  background: rgba(124, 58, 237, 0.14);
  border-color: rgba(124, 58, 237, 0.35);
  color: #6d28d9;
}

.s13-status-badge--cancelada {
  background: rgba(220, 38, 38, 0.14);
  border-color: rgba(220, 38, 38, 0.35);
  color: #b91c1c;
}

.alert {
  border-radius: 12px;
  padding: 12px 14px;
  margin-bottom: 12px;
  font-size: 14px;
  line-height: 24px;
  /* token más cercano */
}

.alert ul {
  margin: 6px 0 0 18px;
}

.alert--error {
  background: #ffecee;
  color: #7a1423;
  border: 1px solid #ffc2ca;
}

.alert--success {
  background: #ecfdf3;
  color: #0f5e37;
  border: 1px solid #b6efcc;
}

.auth-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-color: #330d7f;
  background-image: var(--bg-official, radial-gradient(56.65% 56.65% at 50% 50%, #8A4BF8 0%, #330D7F 100%));
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center center;
}

.auth-shell__main {
  flex: 1 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 18px;
  width: 100%;
}

.auth-shell__stack {
  width: 100%;
  max-width: 736px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.auth-card {
  width: 100%;
  max-width: 736px;
  border-radius: 28px;
  background: #ccc2dc;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3), 0 1px 3px 1px rgba(0, 0, 0, 0.15);
  border: 0;
}

.auth-card__inner {
  padding: 64px 100px 116px;
  color: #1d1b20;
  text-align: center;
}

.auth-logo {
  display: inline-block;
}

.auth-logo a {
  display: inline-block;
  cursor: pointer;
  transition: transform 0.2s ease, opacity 0.2s ease;
  text-decoration: none;
}

.auth-logo a:hover {
  transform: scale(1.05);
  opacity: 0.9;
}

.auth-logo img {
  height: 62px;
  width: auto;
}

.auth-headings {
  margin-top: 0;
  text-align: center;
}

.auth-headings h1 {
  margin: 0;
  font-family: "Mangueira", "Inter", "Roboto", Arial, sans-serif;
  font-size: clamp(44px, 6vw, 64px);
  font-weight: 700;
  letter-spacing: -0.64px;
  line-height: 1;
  color: #4f378b;
}

.auth-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 700;
  font-size: 12px;
  margin: 0;
}

.auth-form {
  margin-top: 41px;
  display: flex;
  flex-direction: column;
  gap: 41px;
  text-align: left;
  align-items: stretch;
}

.auth-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.auth-field label {
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 20px;
  color: #4f378b;
  display: block;
  text-align: left;
}

.auth-field input {
  height: 48px;
  border-radius: 4px;
  border: 1px solid #79747e;
  padding: 0 16px;
  font-size: 16px;
  font-family: 'Roboto', Arial, sans-serif;
  letter-spacing: 0.5px;
  /* evita glifos alternos en @ */
  background: #ffffff;
  color: #1d1b20;
  width: 100%;
  box-sizing: border-box;
}

.auth-field input::placeholder {
  font-family: 'Roboto', Arial, sans-serif;
  color: #9a94a6;
}

.auth-actions {
  margin-top: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.auth-btn {
  width: 100%;
  height: 48px;
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 20px;
  border-radius: 28px;
  padding: 0 16px;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, filter 0.2s ease;
}

.auth-btn:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
}

.btn--primary.auth-btn {
  background: #6f2be8;
  color: #fff9ff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3), 0 1px 3px 1px rgba(0, 0, 0, 0.15);
}

.auth-google {
  display: flex;
  flex-direction: column;
  gap: 41px;
}

.auth-separator {
  margin-top: 0;
  font-family: "Mangueira", "Roboto", Arial, sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.4px;
  line-height: 16px;
  color: #4f378b;
  text-align: center;
  display: flex;
  align-items: center;
  gap: 14px;
}

.auth-separator::before,
.auth-separator::after {
  content: "";
  height: 2px;
  flex: 1 1 auto;
  background: #6750a4;
  border-radius: 999px;
}

.auth-separator span {
  flex: 0 0 auto;
  white-space: nowrap;
}

.btn--google {
  margin: 8px auto 0;
  width: 100%;
  max-width: 360px;
  border-radius: 12px;
  padding: 10px 14px;
  background: #ffffff;
  color: #111111;
  border: 1px solid #e5e5e5;
  cursor: not-allowed;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

/* Google One Tap style button (gsi-material-button) override to center */
.gsi-material-button {
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 100%;
  border-radius: 28px !important;
}

.google-signin-wrap {
  display: flex;
  justify-content: center;
  margin-top: 0;
}

.google-wrapper {
  height: 48px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.google-wrapper #google-signin-button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.google-fallback {
  display: flex;
  justify-content: center;
  margin-top: 12px;
}

.custom-google {
  margin-top: 8px;
  width: 100%;
  max-width: 360px;
}

.google-icon {
  display: inline-block;
  width: 18px;
  height: 18px;
  border-radius: 4px;
  background: linear-gradient(45deg, #4285f4 0%, #34a853 50%, #fbbc05 75%, #ea4335 100%);
}

.auth-code-block {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
  text-align: left;
}

.code-row {
  display: flex;
  align-items: center;
  height: 48px;
  border-radius: 4px;
  border: 1px solid #938f99;
  background: #ffffff;
  overflow: hidden;
}

.eye-btn {
  width: 48px;
  height: 48px;
  border: 0;
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.code-row input {
  border: 0;
  height: 46px;
  padding: 0 16px;
  flex: 1 1 auto;
  min-width: 0;
}

/* Reuse "código de acceso" field style in Productora register (Index) */
.register__form--code-style .field input,
.register__form--code-style .field select {
  height: 56px;
  border-radius: 4px;
  border: 1px solid #79747e;
  padding: 0 16px;
  font-size: 16px;
  font-family: "Roboto", Arial, sans-serif;
  letter-spacing: 0.5px;
  background: #ffffff;
  color: #1d1b20;
  box-sizing: border-box;
}

.register__form--code-style .field input:focus,
.register__form--code-style .field select:focus {
  border-color: #6f5cf1;
  outline: none;
  box-shadow: 0 0 0 3px rgba(111, 92, 241, 0.18);
}

.hint {
  margin: 6px 0 0 0;
  font-size: 12px;
  color: #c3c0e0;
}

.auth-footer {
  margin-top: 18px;
}

.auth-footer a {
  color: #c3c0e0;
  text-decoration: underline;
}

.auth-alert {
  margin-top: 14px;
  padding: 12px 14px;
  background: #2a1515;
  color: #ffffff;
  border: 1px solid #5e2c2c;
  border-radius: 10px;
  text-align: center;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(12, 9, 25, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  z-index: 2000;
}

.modal-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 24px 28px;
  text-align: center;
  max-width: 360px;
  width: 100%;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.25);
}

.auth-modal-card {
  max-width: 360px;
  border-radius: 16px;
  padding: 28px 24px 24px;
}

.auth-modal-card h2 {
  margin: 0 0 12px 0;
  font-family: 'Inter', sans-serif;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 28px;
  color: #702ade;
}

.auth-modal-card p {
  margin: 16px 0 0 0;
  font-family: 'Inter', 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  color: #6b5b84;
}

.modal-icon--success {
  margin: 10px 0 8px 0;
  color: #20ca9a;
}

.modal-icon--success .modal-icon__svg {
  width: 84px;
  height: 84px;
  display: inline-block;
}

.modal-icon--success .modal-icon__img {
  width: 127px;
  height: 109px;
  display: inline-block;
  object-fit: contain;
  vertical-align: middle;
}

.modal-card h2 {
  margin: 0 0 10px 0;
  color: #7c4dff;
  font-size: 24px;
}

.modal-card p {
  margin: 8px 0 16px 0;
  color: #3a3a4a;
}

.modal-icon {
  font-size: 44px;
  margin: 4px 0 8px 0;
}

.modal-close {
  position: absolute;
  right: 12px;
  top: 10px;
  background: transparent;
  border: none;
  font-size: 22px;
  cursor: pointer;
}

.day-modal-card {
  max-width: 520px;
  position: relative;
  text-align: left;
}

.s13-compact-modal {
  max-width: 360px;
  padding: 28px 24px 24px;
}

.s13-modal-shell {
  width: 100%;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.25);
}

.s13-form-modal {
  font-family: "Inter", "Poppins", sans-serif;
  max-width: 760px;
  padding: 28px 28px 24px;
}

.s13-review-modal {
  font-family: "Inter", "Poppins", sans-serif;
  max-width: 520px;
}

.s13-review-title {
  font-size: 28px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.2px;
  color: #6f3bff;
}

.s13-review-icon {
  width: 90px;
  height: 90px;
  border-width: 6px;
  font-size: 38px;
}

.s13-review-text {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4;
  color: #4a4459;
}

.s13-review-text strong {
  font-weight: 800;
  color: #4c2fa3;
}

.s13-review-modal--figma-approve {
  max-width: 610px;
  border-radius: 10px;
  padding: 32px;
  text-align: center;
}

.s13-review-modal--figma-review,
.s13-review-modal--figma-result {
  max-width: 610px;
  border-radius: 10px;
  padding: 32px;
  text-align: center;
}

.s13-review-modal--figma-approve .s13-review-title,
.s13-review-modal--figma-reject .s13-review-title,
.s13-review-modal--figma-review .s13-review-title,
.s13-review-modal--figma-result .s13-review-title {
  font-family: "Mangueira", "Inter", "Roboto", Arial, sans-serif;
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  letter-spacing: -0.96px;
  color: #702ade;
  text-align: center;
}

.s13-review-modal__icon-img {
  width: 145px;
  height: 145px;
  display: block;
  margin: 0 auto;
}

.s13-review-modal__icon-img--xl {
  width: 180px;
  height: 180px;
}

.s13-review-modal__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 8px;
}

.s13-review-modal--figma-reject {
  max-width: 610px;
  border-radius: 10px;
  padding: 32px;
  text-align: center;
}

.s13-review-modal--figma-approve .s13-review-text,
.s13-review-modal--figma-reject .s13-review-text,
.s13-review-modal--figma-review .s13-review-text,
.s13-review-modal--figma-result .s13-review-text {
  font-family: "Mangueira", "Inter", "Roboto", Arial, sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px;
  color: #4d3a8f;
  text-align: center;
}

.s13-review-modal--figma-approve .s13-review-text strong,
.s13-review-modal--figma-reject .s13-review-text strong,
.s13-review-modal--figma-review .s13-review-text strong,
.s13-review-modal--figma-result .s13-review-text strong {
  font-family: "Mangueira", "Inter", "Roboto", Arial, sans-serif;
  font-weight: 700;
  color: #4d2fa7;
}

.s13-review-modal--figma-approve .s13-review-modal__actions,
.s13-review-modal--figma-reject .s13-review-modal__actions,
.s13-review-modal--figma-review .s13-review-modal__actions {
  margin-top: 32px;
}

.s13-review-modal--figma-result .s13-review-text {
  margin-top: 32px !important;
}

.s13-review-modal--figma-result .mt-6 {
  margin-top: 32px !important;
}

.s13-review-modal__form {
  margin-top: 16px;
  text-align: left;
}

.s13-review-modal__field {
  display: grid;
  gap: 6px;
}

.s13-review-modal__label {
  color: #2f2b43;
  font-size: 12px;
  font-weight: 800;
  line-height: 16px;
}

.s13-review-modal__textarea {
  width: 100%;
  min-height: 84px;
  resize: none;
  border-radius: 4px;
  border: 1px solid #cfc9dc;
  background: #ffffff;
  padding: 12px 14px;
  color: #1f1338;
  font-family: "Inter", "Roboto", Arial, sans-serif;
  font-size: 12px;
  font-weight: 600;
  line-height: 16px;
  outline: none;
}

.s13-review-modal__textarea:focus {
  border-color: rgba(124, 58, 237, 0.6);
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.14);
}

.s13-review-modal__textarea::placeholder {
  color: #b8b0c8;
}

.s13-review-modal__counter {
  color: #8f88a6;
  font-size: 10px;
  font-weight: 500;
  line-height: 12px;
}

.s13-review-modal__actions--form {
  margin-top: 18px;
}

@media (max-width: 640px) {
  .s13-review-modal--figma-approve .s13-review-title,
  .s13-review-modal--figma-reject .s13-review-title,
  .s13-review-modal--figma-review .s13-review-title,
  .s13-review-modal--figma-result .s13-review-title {
    font-size: 34px;
    line-height: 42px;
    letter-spacing: -0.4px;
  }

  .s13-review-modal--figma-approve .s13-review-text,
  .s13-review-modal--figma-reject .s13-review-text,
  .s13-review-modal--figma-review .s13-review-text,
  .s13-review-modal--figma-result .s13-review-text {
    font-size: 20px;
    line-height: 28px;
  }
}

.s13-review-btn {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.2px;
}

.day-modal-list .calendar-item {
  margin-top: 8px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}


.calendar-cell .day-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: #2a2a3d;
  width: 32px;
  height: 32px;
}

.calendar-cell .day-number.is-today {
  background: #6f4bff;
  color: #ffffff;
  border-radius: 50%;
}

.calendar-cell .status {
  font-size: 11px;
  font-weight: 700;
  color: #00a67d;
  text-align: right;
}

.calendar-items {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.calendar-item {
  border-left: 4px solid #dcdce8;
  background: #f6f6fb;
  border-radius: 10px;
  padding: 8px 10px;
  font-size: 11px;
  color: #2f2f3d;
  font-weight: 700;
  opacity: 0.75;
}

.item-approved {
  border-color: #6f4bff;
  background: #f5f1ff;
  color: #4a2cc4;
}

.item-challenged {
  border-color: #ff9f3d;
  background: #fff6eb;
  color: #c15f00;
}

.item-requested {
  border-color: #56b6ff;
  background: #eef7ff;
  color: #0b77c9;
}

.item-paid {
  border-color: #00b894;
  background: #e9fbf5;
  color: #008261;
}

@media (max-width: 900px) {
  .calendar-page {
    padding: 14px;
  }

  .calendar-grid {
    border-radius: 12px;
  }

  .calendar-weekdays div {
    font-size: 11px;
    padding: 10px 6px;
  }

  .calendar-cell {
    min-height: 120px;
    padding: 10px;
  }

  .actions .btn {
    width: 100%;
    min-width: 0;
  }
}

@media (max-width: 980px) {
  .register {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .register__text {
    text-align: center;
  }
}

@media (max-width: 980px) {
  .field-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .field--full {
    grid-column: 1;
  }

  .register__card {
    max-width: 560px;
    padding: 22px;
  }

  .btn {
    padding: 12px 16px;
  }
}


@media (max-width: 768px) {
  .hero__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .promotor-layout-grid>aside {
    display: block !important;
    width: 120px;
    flex: 0 0 120px;
  }

  .promotor-layout-grid>main {
    flex: 1 1 auto;
    min-width: 0;
    /* allow content to shrink within container */
  }
}


.promotor-main {
  flex: 1 1 auto;
  min-width: 0;
}

/* ==============================
   STEP 3 (Documentos) - Mock
   1 columna + inputs full width
   ============================== */

.form-step[data-step="3"] .field-grid {
  grid-template-columns: 1fr !important;
  column-gap: 0 !important;
  row-gap: 14px !important;
  justify-items: stretch !important;
}

/* Labels alineados a la izquierda (no centrados) */
.form-step[data-step="3"] .field {
  align-items: flex-start !important;
  text-align: left !important;
  gap: 8px !important;
  width: 100%;
}

/* Si estás usando .upload (tile cuadrado), lo convertimos en "input largo" */
.form-step[data-step="3"] .upload {
  width: 100% !important;
  height: 46px !important;
  border: 1px solid #d8d8e5 !important;
  border-radius: 12px !important;
  background: #ffffff !important;

  /* layout tipo input */
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: space-between !important;

  padding: 0 14px !important;
  box-shadow: none !important;
  transform: none !important;
}

/* Texto tipo placeholder a la izquierda */
.form-step[data-step="3"] .upload span,
.form-step[data-step="3"] .upload small {
  font-size: 13px !important;
  font-weight: 500 !important;
  color: #9aa0ad !important;
  text-align: left !important;
  margin: 0 !important;
}

/* Evita que el hover haga “salto” */
.form-step[data-step="3"] .upload:hover {
  transform: none !important;
  box-shadow: 0 0 0 3px rgba(139, 108, 242, 0.18) !important;
  border-color: #8488ff !important;
  /* states.on-hold.purple-dark */
}

/* Si estás usando .dropzone en vez de .upload (mismo objetivo) */
.form-step[data-step="3"] .dropzone {
  width: 100%;
  border: 1px solid #d8d8e5 !important;
  border-radius: 12px !important;
  background: #ffffff !important;
  padding: 0 14px !important;
  min-height: 46px !important;

  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 12px !important;
}

.form-step[data-step="3"] .dropzone.is-dragging {
  border-color: #8488ff !important;
  /* states.on-hold.purple-dark */
  background: #ffffff !important;
}

/* Prevent long file names from stretching upload controls in step 3 */
.form-step[data-step="3"] .upload,
.form-step[data-step="3"] .dropzone {
  box-sizing: border-box;
  width: 100% !important;
  min-width: 0 !important;
  max-width: 100% !important;
  overflow: hidden !important;
}

.form-step[data-step="3"] .field,
.form-step[data-step="3"] .file-grid {
  min-width: 0 !important;
  max-width: 100% !important;
  overflow: hidden;
}

.form-step[data-step="3"] .upload [data-file-label],
.form-step[data-step="3"] .dropzone [data-file-label],
.form-step[data-step="3"] .file-status {
  display: block !important;
  width: 100% !important;
  flex: 1 1 auto;
  min-width: 0 !important;
  max-width: 100% !important;
  white-space: nowrap !important;
  overflow-x: auto !important;
  overflow-y: hidden !important;
  text-overflow: clip !important;
}

/* Hide horizontal scrollbar in file name label */
.form-step[data-step="3"] .upload [data-file-label]::-webkit-scrollbar,
.form-step[data-step="3"] .dropzone [data-file-label]::-webkit-scrollbar,
.form-step[data-step="3"] .file-status::-webkit-scrollbar {
  display: none;
}

.form-step[data-step="3"] .upload [data-file-label],
.form-step[data-step="3"] .dropzone [data-file-label],
.form-step[data-step="3"] .file-status {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

/* Mobile: mantiene 1 columna igual */
@media (max-width: 1024px) {
  .form-step[data-step="3"] .field-grid {
    grid-template-columns: 1fr !important;
  }
}

.register__card {
  max-width: 640px;
}

/* =========================
   Register: card más grande
   ========================= */

/* 1) Deja de fijar el ancho chico del contenedor derecho */
.register-hero-right {
  width: min(720px, 100%);
  /* antes 460px */
}

/* 2) Aumenta el ancho del wrapper de la card */
.register__card {
  max-width: 720px;
  /* prueba 720–820 según gusto */
  width: 100%;
  margin: 0 auto;
}

/* 3) Dale más aire al panel blanco interno */
.card-panel {
  padding: 26px 28px;
  /* antes 16px */
}

/* =========================
   Stepper + Labels: FIX definitivo (forzado)
   ========================= */

.register__steps {
  display: grid !important;
  grid-template-columns: 42px 1fr 42px 1fr 42px !important;
  align-items: center !important;

  width: 100% !important;
  max-width: 520px !important;
  margin: 0 auto 10px !important;

  gap: 0 !important;
  /* mata el gap del flex */
  column-gap: 0 !important;
  row-gap: 0 !important;
}

/* Asegura que los círculos queden centrados en su columna */
.register__steps .step-dot {
  justify-self: center !important;
}

/* Las líneas deben comportarse como “bloques” en el grid (no flex items) */
.register__steps .step-line {
  flex: unset !important;
  width: 100% !important;
  height: 4px !important;
}

/* Labels con la misma grilla */
.register__step-labels {
  display: grid !important;
  grid-template-columns: 42px 1fr 42px 1fr 42px !important;

  width: 100% !important;
  max-width: 520px !important;
  margin: 0 auto 12px !important;

  text-align: center !important;
}

/* Cada texto bajo su dot */
.register__step-labels span:nth-child(1) {
  grid-column: 1 !important;
  justify-self: center !important;
}

.register__step-labels span:nth-child(2) {
  grid-column: 3 !important;
  justify-self: center !important;
}

.register__step-labels span:nth-child(3) {
  grid-column: 5 !important;
  justify-self: center !important;
}

/* =========================
   Registro: escala global (más grande)
   ========================= */

:root {
  --reg-scale: 1.20;
  /* 1.10 / 1.15 / 1.20 -> ajusta a gusto */
}

/* 1) Card general más grande */
.register-hero {
  max-width: 1280px;
}

.register-hero-right {
  width: min(calc(820px * var(--reg-scale)), 100%);
}

.register__card {
  max-width: calc(820px * var(--reg-scale));
  padding: calc(26px * var(--reg-scale));
}

/* 2) Panel blanco interno más aireado */
.card-panel {
  padding: calc(26px * var(--reg-scale)) calc(28px * var(--reg-scale));
  border-radius: calc(20px * var(--reg-scale));
}

/* 3) Stepper más grande */
.register__steps {
  max-width: calc(520px * var(--reg-scale));
}

.step-dot {
  width: calc(42px * var(--reg-scale));
  height: calc(42px * var(--reg-scale));
  font-size: calc(15px * var(--reg-scale));
}

.step-line {
  height: calc(4px * var(--reg-scale));
}

.register__step-labels {
  max-width: calc(520px * var(--reg-scale));
  font-size: calc(14px * var(--reg-scale));
}

/* 4) Título y textos */
.form-step h3 {
  font-size: calc(22px * var(--reg-scale));
  margin: calc(8px * var(--reg-scale)) 0 calc(18px * var(--reg-scale));
  font-family: 'Mangueira', sans-serif;
}

/* 5) Inputs y labels */
.field label,
.field span {
  font-size: calc(13px * var(--reg-scale));
  color: var(--landing-accent);
  font-weight: 800;
  margin-bottom: 4px;
}

.auth-field label {
  color: #4f378b;
}

.field input,
.field select,
.field textarea {
  height: calc(44px * var(--reg-scale));
  font-size: calc(14px * var(--reg-scale));
  padding: calc(12px * var(--reg-scale)) calc(14px * var(--reg-scale));
  border-radius: calc(12px * var(--reg-scale));
  font-family: 'Inter', 'Roboto', Arial, sans-serif;
  font-variant-ligatures: none;
  font-feature-settings: "liga" 0, "calt" 0;
}

/* 6) Botones */
.actions .btn,
.btn.btn--pill,
.btn.btn--ghost {
  padding: calc(14px * var(--reg-scale)) calc(22px * var(--reg-scale));
  font-size: calc(14px * var(--reg-scale));
}

/* 7) Separaciones internas */
.field-grid {
  column-gap: calc(24px * var(--reg-scale));
  row-gap: calc(18px * var(--reg-scale));
}

/* Keep login auth fields aligned to Figma after generic .field overrides */
.field.auth-field label {
  margin-bottom: 0;
  color: #4f378b;
}

.field.auth-field input {
  height: 48px;
  border-radius: 4px;
  border: 1px solid #79747e;
  padding: 0 16px;
  font-size: 16px;
  font-family: 'Roboto', Arial, sans-serif;
  letter-spacing: 0.5px;
}

.field.auth-field input::placeholder {
  font-family: 'Roboto', Arial, sans-serif;
  color: #9a94a6;
}

.auth-field .code-row input {
  border: 0;
  height: 46px;
  padding: 0 16px;
}


/* =========================
   GSI Material Button Google
   ========================= */
.gsi-material-button {
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  -webkit-appearance: none;
  background-color: WHITE;
  background-image: none;
  border: 1px solid #e7e0ec;
  -webkit-border-radius: 28px;
  border-radius: 28px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: #1f1f1f;
  cursor: pointer;
  font-family: 'Roboto', arial, sans-serif;
  font-size: 16px;
  height: 48px;
  letter-spacing: 0.25px;
  outline: none;
  overflow: hidden;
  padding: 0 16px;
  position: relative;
  text-align: center;
  -webkit-transition: background-color .218s, border-color .218s, box-shadow .218s;
  transition: background-color .218s, border-color .218s, box-shadow .218s;
  vertical-align: middle;
  white-space: nowrap;
  width: auto;
  max-width: 100%;
  min-width: min-content;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, .30), 0 1px 3px 1px rgba(0, 0, 0, .15);
}

.gsi-material-button .gsi-material-button-icon {
  height: 20px;
  margin-right: 10px;
  min-width: 20px;
  width: 20px;
}

@media (max-width: 640px) {
  .auth-shell__main {
    padding: 28px 12px;
  }

  .auth-shell__stack {
    gap: 14px;
  }

  .auth-card {
    border-radius: 20px;
  }

  .auth-card__inner {
    padding: 32px 18px 44px;
  }

  .auth-logo img {
    height: 46px;
  }

  .auth-headings h1 {
    font-size: 42px;
  }

  .auth-form {
    margin-top: 24px;
    gap: 24px;
  }

  .auth-google {
    gap: 24px;
  }

  .auth-btn {
    font-size: 18px;
  }
}

/* =========================
   Admin Auditoria filters
   ========================= */
.audit-filters {
  gap: 4px;
}

.audit-filters .audit-pill,
.audit-filters .audit-pill__select,
.audit-filters .audit-pill--date {
  height: 32px;
}

.audit-filters .audit-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #d8d4e8;
  background: #ffffff;
  line-height: 1;
  box-shadow: none;
  border-radius: 8px;
  padding: 0 8px;
  color: #4f378b;
  font-family: "Roboto", Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
}

.audit-filters .audit-pill__select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: none !important;
  padding: 0 28px 0 8px;
  height: 100%;
  line-height: 1;
  border: 0;
  outline: 0;
  background: transparent;
  border-radius: 8px;
  font-family: "Roboto", Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #4f378b;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.audit-filters .audit-pill__select::-ms-expand {
  display: none;
}

.audit-filters .audit-pill--date {
  line-height: 1;
  min-width: 96px;
  padding-right: 28px;
}

.audit-filters .audit-pill--select {
  overflow: hidden;
}

.audit-filters .audit-pill--productora {
  width: 126px;
  min-width: 126px;
  max-width: 126px;
}

.audit-filters .audit-pill--usuario {
  width: 104px;
  min-width: 104px;
  max-width: 104px;
}

.audit-filters .audit-pill--accion {
  width: 96px;
  min-width: 96px;
  max-width: 96px;
}

.audit-filters .audit-pill--fecha {
  width: 112px;
  min-width: 112px;
  max-width: 112px;
}

.audit-filters .audit-pill__label {
  white-space: nowrap;
}

.audit-filters .audit-pill__caret {
  width: 12px;
  height: 12px;
}

.audit-filters .audit-pill__date {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: transparent;
  opacity: 0;
  color: transparent;
  caret-color: transparent;
}

.audit-filters .audit-pill__date::-webkit-calendar-picker-indicator {
  opacity: 0;
  width: 0;
  height: 0;
}

.audit-filters .audit-pill__date::-webkit-inner-spin-button {
  display: none;
}

.audit-filters .audit-pill--all {
  gap: 6px;
}

.audit-filters .audit-pill--all.bg-violet-100 {
  background: #eaddff !important;
  border-color: #eaddff !important;
  color: #21005d !important;
}

.audit-filters .audit-pill--all .inline-flex.h-4.w-4 {
  width: 14px !important;
  height: 14px !important;
  border-radius: 999px;
}

/* =========================
   Admin Auditoria - Figma alignment
   ========================= */
.admin-auditoria__panel {
  border-radius: 28px;
  padding: 24px 71px;
  background: #fffbfe;
  border: 0;
}

.admin-auditoria__page-title {
  margin: 0;
  color: #1d1b20;
  font-family: "Roboto", Arial, sans-serif;
  font-size: 28px;
  font-weight: 500;
  line-height: 36px;
  letter-spacing: 0;
}

.admin-auditoria__section-title {
  margin: 0;
  color: #4a4458;
  font-family: "Mangueira", "Inter", "Roboto", Arial, sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 36px;
}

.admin-auditoria__table-wrap {
  border: 0;
  border-radius: 0;
  overflow-x: auto;
}

.admin-auditoria__table {
  width: 100%;
  min-width: 1128px;
  border-collapse: collapse;
  table-layout: fixed;
  background: transparent;
}

.admin-auditoria__table tbody tr {
  border-bottom: 1px solid #e7def8;
}

.admin-auditoria__table tbody td {
  padding: 10px 18px 10px 0;
  vertical-align: top;
}

.admin-auditoria__table tbody td:first-child {
  padding-left: 0;
}

.admin-auditoria__cell-value {
  margin: 0;
  color: #702ade;
  font-family: "Mangueira", "Inter", "Roboto", Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.5px;
  white-space: normal;
  overflow-wrap: anywhere;
}

.admin-auditoria__cell-value--fecha {
  display: flex;
  flex-direction: column;
}

.admin-auditoria__cell-value--detalle {
  max-width: 100%;
}

.admin-auditoria__cell-value--truncate {
  display: block;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.admin-auditoria__col--fecha {
  width: 11%;
}

.admin-auditoria__col--usuario {
  width: 12%;
}

.admin-auditoria__col--accion {
  width: 15%;
}

.admin-auditoria__col--estado-anterior {
  width: 12%;
}

.admin-auditoria__col--productora {
  width: 14%;
}

.admin-auditoria__col--estado-nuevo {
  width: 11%;
}

.admin-auditoria__col--detalle {
  width: 15%;
}

@media (max-width: 1200px) {
  .admin-auditoria__panel {
    padding: 24px 32px;
  }
}

@media (max-width: 900px) {
  .admin-auditoria__panel {
    padding: 18px;
    border-radius: 18px;
  }

  .admin-auditoria__page-title,
  .admin-auditoria__section-title {
    font-size: 24px;
    line-height: 32px;
  }

  .admin-auditoria__table {
    min-width: 980px;
  }
}

.audit-filters .audit-pill:hover,
.audit-filters .audit-pill__select:hover,
.audit-filters .audit-pill--date:hover {
  border-color: #ccc3d8;
}

.audit-filters .audit-pill__select:focus,
.audit-filters .audit-pill--date:focus-within,
.audit-filters .audit-pill--all:focus-visible {
  outline: 2px solid rgba(124, 58, 237, 0.2);
  outline-offset: 1px;
}

/* Document upload (Detalle Productora) */
.doc-upload {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 44px;
  padding: 0 14px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  background: #ffffff;
  color: #9ca3af;
  font-size: 0.7rem;
  font-weight: 600;
}

.doc-upload__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #111827;
  line-height: 0;
}

.doc-upload__ok {
  display: none;
  color: #10b981;
  font-weight: 800;
}

.doc-upload.is-ok .doc-upload__icon {
  display: none;
}

.doc-upload.is-ok .doc-upload__ok {
  display: inline-flex;
}

.doc-upload__input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.doc-upload--disabled {
  opacity: 0.85;
  cursor: not-allowed;
}

.doc-upload--disabled .doc-upload__input {
  cursor: not-allowed;
}

.file-error {
  display: block;
  margin-top: 6px;
  font-size: 0.7rem;
  font-weight: 600;
  color: #ba1a1a;
}

.doc-upload__hint {
  margin-top: 2px;
  font-size: 0.75rem;
  line-height: 1.1;
  color: #6b7280;
}

.producer-action-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}

.producer-new-user-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 169px;
  height: 56px;
  border: 0;
  border-radius: 16px;
  background: #702ade;
  color: #ffffff;
  font-family: "Inter", "Roboto", Arial, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  box-shadow: 0 4px 8px 3px rgba(0, 0, 0, 0.15), 0 1px 3px rgba(0, 0, 0, 0.3);
}

.producer-new-user-btn:hover {
  background: #7f3bf0;
}

.producer-new-user-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.admin-user-modal-overlay {
  align-items: stretch;
  justify-content: flex-end;
}

.admin-user-modal-panel {
  max-width: 713px;
  border-radius: 28px 0 0 28px;
  background: #130043;
  padding: 56px 100px 42px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35);
  overflow-y: auto;
}

.admin-user-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.admin-user-modal__title {
  margin: 0;
  font-family: "Mangueira", "Inter", "Roboto", Arial, sans-serif;
  font-size: 52px;
  font-weight: 700;
  line-height: 1.08;
  color: #ffffff;
}

.admin-user-modal__close {
  color: #d9cfff;
  border: 0;
  background: transparent;
}

.admin-user-modal__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 0;
  padding-bottom: 12px;
}

.admin-user-modal__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.admin-user-modal__label {
  color: #d3c6ff;
  font-family: "Inter", "Roboto", Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 16px;
}

.admin-user-modal__input {
  display: block;
  width: 100%;
  height: 56px;
  min-height: 56px;
  border-radius: 4px;
  border: 1px solid #79747e;
  background: #ffffff !important;
  color: #1d1b20;
  font-family: "Roboto", Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.5px;
  padding: 0 16px;
  box-sizing: border-box;
}

/* Standard reservation field shape used across admin reservation modals. */
.admin-user-modal__input,
.admin-agenda-modal__control,
.dashboard-reserva-detalle__input {
  border-radius: 4px !important;
}

.admin-user-modal__input:focus {
  outline: none;
  border-color: #6f5cf1;
  box-shadow: 0 0 0 3px rgba(111, 92, 241, 0.18);
}

.admin-user-modal__error {
  min-height: 12px;
  color: #fecdd3;
  font-size: 11px;
  line-height: 12px;
}

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

.admin-user-modal__btn {
  height: 40px;
  border: 0;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #ffffff;
  font-family: "Roboto", "Inter", Arial, sans-serif !important;
  font-size: 12px;
  font-weight: 700;
  line-height: 16px;
  box-shadow: 0 4px 8px 3px rgba(0, 0, 0, 0.15), 0 1px 3px rgba(0, 0, 0, 0.3);
}

.admin-user-modal__btn--discard {
  background: #f3557c;
}

.admin-user-modal__btn--discard:hover {
  background: #f46a8a;
}

.admin-user-modal__btn--save {
  background: #20ca9a;
}

.admin-user-modal__btn--save:hover {
  background: #34d3a8;
}

@media (max-width: 980px) {
  .admin-user-modal-panel {
    max-width: 100%;
    border-radius: 0;
    padding: 32px 22px 24px;
  }

  .admin-user-modal__title {
    font-size: 36px;
  }
}

/* Productora detail typography to match mock */
.producer-detail {
  color: #2f2b43;
}

.producer-detail .prod-title,
.producer-detail h1 {
  font-size: 1rem;
  font-weight: 700;
  color: #2f2b43;
}

.producer-detail .text-sm.font-extrabold.text-violet-700 {
  font-size: 0.78rem;
  font-weight: 700;
  color: #4b2aa6;
}

.producer-detail .text-\[0\.7rem\].font-extrabold.text-gray-700 {
  font-size: 0.66rem;
  font-weight: 700;
  color: #3a3651;
}

.producer-detail .font-extrabold.text-violet-600 {
  font-weight: 600;
  color: #6b57d6;
}

.producer-detail .grid-cols-4 > div,
.producer-detail .grid-cols-3 > div {
  min-width: 0;
}

.producer-detail .detail-value-ellipsis {
  display: block;
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.producer-detail .h-\[2px\].bg-violet-200 {
  background-color: #d7cdfc;
}

.gsi-material-button .gsi-material-button-content-wrapper {
  -webkit-align-items: center;
  align-items: center;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  height: 100%;
  justify-content: space-between;
  position: relative;
  width: 100%;
}

.gsi-material-button .gsi-material-button-contents {
  -webkit-flex-grow: 1;
  flex-grow: 1;
  font-family: 'Roboto', arial, sans-serif;
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
  vertical-align: top;
}

.gsi-material-button .gsi-material-button-state {
  -webkit-transition: opacity .218s;
  transition: opacity .218s;
  bottom: 0;
  left: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.gsi-material-button:disabled {
  cursor: default;
  background-color: #ffffff61;
  border-color: #1f1f1f1f;
}

.gsi-material-button:disabled .gsi-material-button-contents {
  opacity: 38%;
}

.gsi-material-button:disabled .gsi-material-button-icon {
  opacity: 38%;
}

.gsi-material-button:not(:disabled):active .gsi-material-button-state,
.gsi-material-button:not(:disabled):focus .gsi-material-button-state {
  background-color: #303030;
  opacity: 12%;
}

.gsi-material-button:not(:disabled):hover {
  -webkit-box-shadow: 0 1px 2px 0 rgba(60, 64, 67, .30), 0 1px 3px 1px rgba(60, 64, 67, .15);
  box-shadow: 0 1px 2px 0 rgba(60, 64, 67, .30), 0 1px 3px 1px rgba(60, 64, 67, .15);
}

.gsi-material-button:not(:disabled):hover .gsi-material-button-state {
  background-color: #303030;
  opacity: 8%;
}

/* ---- Agenda accents (server-generated classes) ---- */
.accent-mine {
  background: #eef2ff;
  border: 1px solid #c7d2fe;
  color: #4338ca;
  box-shadow: 0 4px 12px rgba(67, 56, 202, 0.18);
}

.accent-approved {
  background: #ecfdf3;
  border: 1px solid #bbf7d0;
  color: #166534;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.16);
}

.accent-challenge {
  background: #fef3c7;
  border: 1px solid #fcd34d;
  color: #92400e;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.18);
}

.accent-pendingpay {
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  color: #1d4ed8;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.18);
}

.accent-requested {
  background: #e0f2fe;
  border: 1px solid #bae6fd;
  color: #075985;
  box-shadow: 0 4px 12px rgba(14, 165, 233, 0.14);
}

.accent-rejected {
  background: #ffe4e6;
  border: 1px solid #fecdd3;
  color: #9f1239;
  box-shadow: 0 4px 12px rgba(244, 63, 94, 0.16);
}

.accent-closed {
  background: #f4efff;
  border: 1px solid #d7c8ff;
  color: #5a2fb0;
  box-shadow: 0 4px 10px rgba(112, 42, 222, 0.14);
}

.accent-default {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  color: #334155;
  box-shadow: 0 4px 10px rgba(148, 163, 184, 0.12);
}

.accent-solid-approved {
  background: #20ca9a;
  border: 1px solid #18b387;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(24, 179, 135, 0.28);
}

.accent-solid-challenge {
  background: #f09b58;
  border: 1px solid #dc8746;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(220, 135, 70, 0.28);
}

.accent-solid-pendingpay {
  background: #3b82f6;
  border: 1px solid #2563eb;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.28);
}

.accent-solid-requested {
  background: #06b6d4;
  border: 1px solid #0891b2;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(8, 145, 178, 0.28);
}

.accent-solid-closed {
  background: #6d28d9;
  border: 1px solid #5b21b6;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(91, 33, 182, 0.28);
}

.accent-solid-rejected {
  background: #f3557c;
  border: 1px solid #db3f66;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(219, 63, 102, 0.28);
}

.accent-solid-default {
  background: #64748b;
  border: 1px solid #475569;
  color: #ffffff;
  box-shadow: 0 4px 10px rgba(71, 85, 105, 0.24);
}


.field-error {
  color: #ffffff;
  font-size: 12px;
  margin-top: 0;
  display: none;
  transition: display 0.15s ease, margin-top 0.15s ease;
}

.auth-field [data-error-message] {
  color: #ffffff;
}

.field-error.is-visible {
  display: block;
  margin-top: 4px;
}

.field-error--visible {
  display: block;
  margin-top: 4px;
}

.field-error.field-validation-error {

  display: block;
  margin-top: 4px;
}

/* Banner visible para inicio de sesión exitoso */
.s13-banner {
  margin: 12px 0 16px;
  padding: 12px 16px;
  border-radius: 12px;
  font-family: "Roboto", Arial, sans-serif;
  font-weight: 700;
  text-align: left;
}

.s13-banner--success {
  background: #7c3aed;
  border: 1px solid #7c3aed;
  color: #ffffff;
  box-shadow: 0 16px 32px rgba(124, 58, 237, 0.35);
}

.mt-display-medium {
  font-family: 'Mangueira', sans-serif;
  font-weight: 400;
  font-size: 45px;
  letter-spacing: 0;
}

.mt-headline-medium {
  font-family: 'Mangueira', sans-serif;
  font-weight: 700;
  font-size: 28px;
  letter-spacing: 0;
}

.mt-label-medium {
  font-family: 'Mangueira', sans-serif;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.5px;
}

.mt-body-medium {
  font-family: 'Mangueira', sans-serif;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.25px;
}

.mt-title-medium {
  font-family: 'Mangueira', sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.15px;
}

.mt-display-large {
  font-family: 'Mangueira', sans-serif;
  font-weight: 400;
  font-size: 57px;
  letter-spacing: -0.25px;
}

/* Ensure file names render with a font that supports hyphen glyphs correctly */
.upload [data-file-label],
.doc-upload [data-file-label] {
  font-family: 'Inter', 'Roboto', Arial, sans-serif !important;
  font-variant-ligatures: none;
  font-feature-settings: "liga" 0, "calt" 0;
  display: block;
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.form-step[data-step="3"] .upload {
  overflow: hidden;
}

/* ===== UI FIXES ===== */

:root {
  --font-primary: "Mangueira", Inter, Roboto, Poppins, system-ui;
}

/* UI-003 */
.ui-display-large {
  font-family: var(--font-primary);
  font-size: 57px;
  font-weight: 700;
  line-height: 64px;
  letter-spacing: -0.25px;
}

.hero-title.ui-display-large,
.register__text h2.ui-display-large {
  font-family: var(--font-primary);
  font-size: 57px;
  font-weight: 700;
  line-height: 64px;
  letter-spacing: -0.25px;
}

/* UI-004 */
.ui-title-medium {
  font-family: var(--font-primary);
  font-size: 22px;
  font-weight: 700;
  line-height: 28px;
}

/* UI-005 */
.ui-logo-size {
  width: 172px;
  height: 65px;
  object-fit: contain;
}

img.ui-logo-size {
  width: 172px;
  height: 65px;
  object-fit: contain;
}

/* UI-006 */
.ui-header-padding {
  padding: 20px 24px;
}

@media (min-width: 1280px) {
  .ui-header-padding { padding: 24px 40px; }
}

@media (min-width: 1440px) {
  .ui-header-padding { padding: 30px 80px; }
}

@media (min-width: 1920px) {
  .ui-header-padding { padding: 40px 100px; }
}

/* Dashboard - Ultimos registros de Productoras (layout Figma) */
.dash-prod-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) 262px;
  align-items: center;
  gap: 24px;
  padding: 12px 16px;
}

.dash-prod-main,
.dash-prod-contact {
  min-width: 0;
  overflow: hidden;
}

.dash-prod-company,
.dash-prod-contact-title {
  margin: 0;
  font-family: "Mangueira", "Inter", "Roboto", Arial, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
  color: #4f378b;
}

.dash-prod-company,
.dash-prod-rut,
.dash-prod-contact-name,
.dash-prod-contact-email {
  max-width: 100%;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.dash-prod-status {
  margin-top: 2px;
  font-family: "Inter", "Roboto", Arial, sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 16px;
}

.dash-prod-rut {
  margin-top: 8px;
  font-family: "Mangueira", "Inter", "Roboto", Arial, sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  color: #4f378b;
}

.dash-prod-contact-name,
.dash-prod-contact-email {
  font-family: "Inter", "Roboto", Arial, sans-serif;
  font-size: 12px;
  line-height: 16px;
  color: #4f378b;
}

.dash-prod-contact-email {
  color: #6f6693;
}

.dash-prod-actions {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  white-space: nowrap;
  flex-shrink: 0;
  width: 100%;
}

.s13-bo-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 16px;
  padding: 0 16px;
  min-height: 56px;
  color: #fff;
  text-decoration: none;
  font-family: "Roboto", "Inter", Arial, sans-serif !important;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 0 10px 24px rgba(49, 10, 129, 0.22);
  transition: filter 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

.s13-bo-btn:hover {
  filter: brightness(1.04);
  transform: translateY(-1px);
}

.s13-bo-btn:focus-visible {
  outline: 2px solid rgba(167, 139, 250, 0.9);
  outline-offset: 2px;
}

.s13-bo-btn--lg {
  min-height: 56px;
  padding: 16px;
  border-radius: 16px;
}

.s13-bo-btn--reserva {
  min-width: 236px;
}

.s13-bo-btn--md {
  min-height: 44px;
  padding: 10px 16px;
  border-radius: 14px;
  font-size: 14px;
  line-height: 20px;
}

.s13-bo-btn--sm {
  min-height: 40px;
  padding: 8px 14px;
  border-radius: 12px;
  font-size: 13px;
  line-height: 18px;
}

.s13-bo-btn--primary {
  background: linear-gradient(90deg, #8b5cf6 0%, #7c3aed 100%);
}

.s13-bo-btn--purple {
  background: linear-gradient(90deg, #8b5cf6 0%, #7c3aed 100%);
}

.s13-bo-btn--green {
  background: linear-gradient(90deg, #2fdaa7 0%, #20ca9a 100%);
  box-shadow: 0 10px 24px rgba(6, 120, 88, 0.2);
}

.s13-bo-btn--danger {
  background: linear-gradient(90deg, #ff5a89 0%, #ef4e7b 100%);
  box-shadow: 0 10px 24px rgba(190, 24, 93, 0.2);
}

.s13-bo-btn--dark {
  background: #1f1f1f;
  box-shadow: 0 10px 20px rgba(17, 17, 17, 0.22);
}

.s13-bo-btn--pdf {
  background: linear-gradient(90deg, #fb7185 0%, #ef4444 100%);
  box-shadow: 0 10px 24px rgba(225, 29, 72, 0.18);
}

.s13-bo-btn__icon {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
}

.s13-bo-btn__icon-img {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  display: block;
}

.s13-bo-btn__icon-img--invert {
  filter: brightness(0) invert(1);
}

.s13-ui-icon {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  display: block;
}

.s13-ui-icon--invert {
  filter: brightness(0) invert(1);
}

.s13-sidebar-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  display: block;
}

.s13-sidebar-icon--white-asset-inactive {
  filter: brightness(0) saturate(100%);
}

.s13-sidebar-icon--dark-asset-active {
  filter: brightness(0) invert(1);
}

.dash-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 10px 16px;
  border-radius: 14px;
  border: 0;
  font-family: "Roboto", "Inter", Arial, sans-serif !important;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  text-decoration: none;
  color: #ffffff;
  box-shadow: 0 8px 18px rgba(49, 10, 129, 0.22);
}

.dash-btn--approve {
  background: linear-gradient(90deg, #2fdaa7 0%, #20ca9a 100%);
}

.dash-btn--detail {
  background: #1f1f1f;
}

.dash-btn:hover {
  filter: brightness(1.04);
}

.s13-view-title {
  margin: 0;
  color: #1d1b20;
  font-family: "Roboto", Arial, sans-serif;
  font-size: 28px;
  font-style: normal;
  font-weight: 500;
  line-height: 36px;
  letter-spacing: 0;
}

.s13-view-subtitle {
  margin: 0;
  color: #4a4458;
  font-family: "Mangueira", "Inter", "Roboto", Arial, sans-serif;
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: 36px;
  letter-spacing: 0;
}

.admin-dashboard,
.admin-producers-page,
.admin-agenda-page {
  border-radius: 28px;
  border: 0;
  background: #fffbfe;
  padding: 24px 71px;
}

@media (max-width: 1024px) {
  .admin-dashboard,
  .admin-producers-page,
  .admin-agenda-page {
    padding: 20px 24px;
  }

  .dash-prod-row {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .dash-prod-actions {
    justify-content: flex-start;
  }
}

/* Dashboard typography (Figma-aligned) */
.admin-dashboard__title {
  margin: 0;
  font-family: "Roboto", Arial, sans-serif;
  font-size: 28px;
  font-weight: 500;
  line-height: 36px;
  letter-spacing: 0;
  color: #1d1b20;
}

.admin-dashboard__section-title {
  font-family: "Mangueira", "Inter", "Roboto", Arial, sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 36px;
  letter-spacing: 0;
  color: #4a4458;
}

.admin-dashboard__kpi-label {
  font-family: "Roboto", Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 16px;
  letter-spacing: 0;
  color: #7c3aed;
}

.admin-dashboard__kpi-value {
  margin: 0;
  font-family: "Mangueira", "Inter", "Roboto", Arial, sans-serif;
  font-size: 45px;
  font-weight: 400;
  line-height: 52px;
  letter-spacing: 0;
  color: #6d28d9;
}

.admin-dashboard__kpi-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  min-height: 135px;
  border-radius: 12px;
  background: #fffbfe;
  padding: 16px;
  box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.3),
    0 1px 3px 1px rgba(0, 0, 0, 0.15);
  border: 1px solid #cac4d0;
  text-decoration: none;
  transition: background-color 0.15s ease, box-shadow 0.15s ease;
}

.admin-dashboard__kpi-card:hover {
  background: #ffffff;
  box-shadow:
    0 2px 4px rgba(0, 0, 0, 0.26),
    0 2px 6px 2px rgba(0, 0, 0, 0.12);
}

.admin-dashboard__kpi-card--violet .admin-dashboard__kpi-label,
.admin-dashboard__kpi-card--violet .admin-dashboard__kpi-value {
  color: #6f3ff5;
}

.admin-dashboard__kpi-card--rose .admin-dashboard__kpi-label,
.admin-dashboard__kpi-card--rose .admin-dashboard__kpi-value {
  color: #ef4f83;
}

.admin-dashboard__kpi-card--sky .admin-dashboard__kpi-label,
.admin-dashboard__kpi-card--sky .admin-dashboard__kpi-value {
  color: #2196e8;
}

.admin-dashboard__kpi-card--emerald .admin-dashboard__kpi-label,
.admin-dashboard__kpi-card--emerald .admin-dashboard__kpi-value {
  color: #20bf89;
}

.admin-dashboard__tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 34px;
  padding: 0 16px;
  border-radius: 10px;
  border: 1px solid #d1d5db;
  background: #ffffff;
  color: #4b5563;
  font-family: "Inter", "Roboto", Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  text-decoration: none;
}

.admin-dashboard__tab:hover {
  background: #f9fafb;
}

.admin-dashboard__tab--active {
  border-color: #c4b5fd;
  background: #ede9fe;
  color: #6d28d9;
  font-weight: 800;
}

.admin-dashboard-approve-modal {
  max-width: 610px;
  border-radius: 10px;
  padding: 32px;
}

/* Admin Reportes (Figma-aligned) */
.admin-reportes {
  width: 100%;
}

.admin-reportes__panel {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 24px;
  padding: 24px 71px;
  border-radius: 28px;
  background: #fffbfe;
  border: 0;
}

.admin-reportes__header {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
}

.admin-reportes__back {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #1d1b20;
  text-decoration: none;
}

.admin-reportes__back:hover {
  background: rgba(79, 55, 139, 0.06);
}

.admin-reportes__title {
  margin: 0;
  color: #1d1b20;
  font-family: "Roboto", Arial, sans-serif;
  font-size: 28px;
  font-weight: 500;
  line-height: 36px;
  letter-spacing: 0;
}

.admin-reportes__filters {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.admin-reportes__filters-title {
  color: #4a4458;
  font-family: "Mangueira", "Inter", "Roboto", Arial, sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 36px;
}

.admin-reportes__divider {
  height: 2px;
  width: 100%;
  background: #d0bcff;
}

.admin-reportes__filters-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.admin-reportes__grid {
  display: grid;
  gap: 14px;
}

.admin-reportes__grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.admin-reportes__grid--actions {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: end;
}

.admin-reportes__field {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.admin-reportes__field-label {
  color: #4f378b;
  font-family: "Mangueira", "Inter", "Roboto", Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 16px;
  letter-spacing: 0.5px;
}

.admin-reportes__input {
  width: 100%;
  height: 48px;
  border-radius: 4px;
  border: 1px solid rgba(121, 116, 126, 0.45);
  background: #fffbfe;
  color: #1d1b20;
  padding: 4px 16px;
  font-family: "Roboto", Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.5px;
  outline: none;
}

.admin-reportes__input::placeholder {
  color: #cac4d0;
}

.admin-reportes__input:focus {
  border-color: #8b5cf6;
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.15);
}

.admin-reportes__select-wrap {
  position: relative;
}

.admin-reportes__select-caret {
  position: absolute;
  top: 50%;
  right: 14px;
  transform: translateY(-50%);
  color: #4f378b;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.admin-reportes__input--select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 42px;
  cursor: pointer;
}

.admin-reportes__filter-actions {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  padding-top: 2px;
  width: 100%;
}

.admin-reportes__filter-actions .s13-bo-btn {
  height: 40px;
  min-height: 40px;
  border-radius: 10px;
  padding: 0 14px;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  line-height: 16px;
  letter-spacing: 0.1px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3), 0 1px 3px 1px rgba(0, 0, 0, 0.15);
}

.admin-reportes__tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  height: 48px;
  border-bottom: 1px solid #d0bcff;
}

.admin-reportes__content {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 40px; /* 24 panel gap + 40 = 64px visual separation from filters */
}

.admin-reportes__tab {
  position: relative;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  color: #1d1b20;
  text-decoration: none;
  font-family: "Mangueira", "Inter", "Roboto", Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 16px;
  letter-spacing: 0.5px;
}

.admin-reportes__tab.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 2px;
  background: #8b5cf6;
}

.admin-reportes__report {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.admin-reportes__report-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 48px;
}

.admin-reportes__report-title {
  margin: 0;
  color: #4a4458;
  font-family: "Mangueira", "Inter", "Roboto", Arial, sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 36px;
}

.admin-reportes__export-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.admin-reportes__export-actions .s13-bo-btn {
  height: 40px;
  min-height: 40px;
  border-radius: 12px;
  padding: 0 14px;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  line-height: 16px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3), 0 1px 3px 1px rgba(0, 0, 0, 0.15);
}

.admin-reportes__table-wrap {
  width: 100%;
  overflow-x: auto;
  border-top: 1px solid #d0bcff;
}

.admin-reportes__table {
  width: 100%;
  min-width: 980px;
  border-collapse: collapse;
  table-layout: fixed;
  background: transparent;
}

.admin-reportes__table thead th {
  padding: 4px 16px 4px 0;
  text-align: left;
  color: #4f378b;
  font-family: "Mangueira", "Inter", "Roboto", Arial, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: 0.15px;
  border-bottom: 1px solid #e7def8;
}

.admin-reportes__table thead th:first-child,
.admin-reportes__table tbody td:first-child {
  padding-left: 0;
}

.admin-reportes__table thead th.is-right,
.admin-reportes__table tbody td.is-right {
  text-align: right;
}

.admin-reportes__table tbody tr {
  border-bottom: 1px solid #e7def8;
}

.admin-reportes__table tbody td {
  padding: 4px 16px 4px 0;
  vertical-align: top;
  color: #49454f;
  font-family: "Mangueira", "Inter", "Roboto", Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.5px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.admin-reportes__table tbody td.is-strong {
  color: #4f378b;
  font-family: "Mangueira", "Inter", "Roboto", Arial, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: 0.15px;
}

.admin-reportes__table tbody td.is-muted {
  color: #49454f;
}

.admin-reportes__table tbody td.is-empty {
  padding: 28px 0;
  text-align: center;
  color: #6b6672;
  font-family: "Roboto", Arial, sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
}

.admin-reportes__row--stacked td {
  padding-top: 8px;
  padding-bottom: 8px;
}

.admin-reportes__cell-title {
  color: #4f378b;
  font-family: "Mangueira", "Inter", "Roboto", Arial, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: 0.15px;
  margin: 0;
}

.admin-reportes__cell-value {
  color: #1d1b20;
  font-family: "Mangueira", "Inter", "Roboto", Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.5px;
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.admin-reportes__row--stacked td.is-right {
  text-align: left;
}

.admin-reportes__row--stacked td.is-right .admin-reportes__status-chip {
  margin-top: 2px;
}

.admin-reportes__status-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 24px;
  border-radius: 6px;
  padding: 2px 8px;
  font-family: "Roboto", Arial, sans-serif;
  font-size: 11px;
  font-weight: 500;
  line-height: 16px;
  letter-spacing: 0;
  white-space: nowrap;
}

.admin-reportes__pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
  min-height: 60px;
}

.admin-reportes__page-link {
  min-width: 40px;
  height: 40px;
  padding: 0 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  border: 0;
  background: transparent;
  color: #6750a4;
  text-decoration: none;
  font-family: "Roboto", Arial, sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 0.1px;
}

.admin-reportes__page-link:hover {
  background: rgba(103, 80, 164, 0.08);
}

.admin-reportes__page-link.is-current {
  min-width: 40px;
  width: 40px;
  padding: 0;
  border-radius: 999px;
  background: #702ade;
  color: #ffffff;
  font-weight: 500;
}

.admin-reportes__page-link.is-cta {
  padding: 10px 16px;
  min-width: 0;
  background: #6750a4;
  color: #ffffff;
  border-radius: 100px;
  gap: 8px;
}

.admin-reportes__page-link.is-disabled {
  pointer-events: none;
  opacity: 1;
  background: #d0c5eb;
  color: #6750a4;
}

.admin-reportes__page-ellipsis {
  min-width: 24px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #6750a4;
  font-family: "Roboto", Arial, sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 0.1px;
}

@media (max-width: 1200px) {
  .admin-reportes__panel {
    padding: 24px 32px;
    gap: 20px;
  }

  .admin-reportes__content {
    margin-top: 28px;
  }
}

@media (max-width: 900px) {
  .admin-reportes__panel {
    padding: 18px 18px 24px;
    border-radius: 18px;
    gap: 16px;
  }

  .admin-reportes__content {
    margin-top: 18px;
    gap: 8px;
  }

  .admin-reportes__title,
  .admin-reportes__filters-title {
    font-size: 24px;
    line-height: 32px;
  }

  .admin-reportes__report-title {
    font-size: 20px;
    line-height: 28px;
  }

  .admin-reportes__grid--three,
  .admin-reportes__grid--actions {
    grid-template-columns: 1fr;
  }

  .admin-reportes__filter-actions,
  .admin-reportes__export-actions {
    justify-content: stretch;
    width: 100%;
    flex-wrap: wrap;
  }

  .admin-reportes__filter-actions .s13-bo-btn,
  .admin-reportes__export-actions .s13-bo-btn {
    flex: 1 1 180px;
    justify-content: center;
  }

  .admin-reportes__report-header {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 980px) {
  .admin-dashboard__title,
  .admin-dashboard__section-title {
    font-size: 24px;
    line-height: 32px;
  }

  .admin-dashboard__kpi-value {
    font-size: 38px;
    line-height: 44px;
  }
}

/* Productoras list: prevent long names/emails from breaking row layout */
.pending-prod-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
}

.pending-prod-row__content {
  min-width: 0;
  flex: 1 1 auto;
}

.pending-prod-row__actions {
  flex-shrink: 0;
}

.pending-prod-ellipsis {
  display: block;
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.pending-prod-line {
  display: flex;
  align-items: baseline;
  gap: 4px;
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
}

.pending-prod-line > span:first-child {
  flex: 0 0 auto;
}

.pending-prod-line__value {
  display: block;
  flex: 1 1 auto;
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.pending-prod-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #ffffff;
  text-decoration: none;
  min-height: 44px;
  border-radius: 14px !important;
  padding: 10px 16px !important;
  font-family: "Roboto", "Inter", Arial, sans-serif !important;
  font-size: 14px !important;
  line-height: 20px !important;
  box-shadow: 0 8px 18px rgba(49, 10, 129, 0.22) !important;
}

.pending-prod-btn--detail {
  background: #1f1f1f;
  color: #ffffff;
}

.pending-prod-btn--detail:hover {
  background: #111111;
  color: #ffffff;
}

.pending-prod-btn--approve {
  background: linear-gradient(90deg, #2fdaa7 0%, #20ca9a 100%);
  color: #ffffff;
}

.pending-prod-btn--approve:hover {
  background: #34d399;
  color: #ffffff;
}

/* Admin Productoras - header, modal and controls aligned with Index fields */
.admin-producers-page__header-actions {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.admin-producers-page__action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 170px;
  min-height: 56px;
  border: 0;
  border-radius: 16px;
  padding: 16px;
  text-decoration: none;
  font-family: "Roboto", "Inter", Arial, sans-serif !important;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(49, 10, 129, 0.22);
}

.admin-producers-page__action-btn--violet {
  background: linear-gradient(90deg, #8b5cf6 0%, #7c3aed 100%);
}

.admin-producers-page__action-btn--violet:hover {
  filter: brightness(1.04);
}

.admin-producers-page__action-btn--dark {
  background: #1f1f1f;
}

.admin-producers-page__action-btn--dark:hover {
  background: #111111;
}

.admin-producers-page__action-btn--rose {
  background: linear-gradient(90deg, #ff5a89 0%, #ef4e7b 100%);
}

.admin-producers-page__action-btn--rose:hover {
  filter: brightness(1.04);
}

.admin-producers-page__action-btn--emerald {
  background: linear-gradient(90deg, #2fdaa7 0%, #20ca9a 100%);
}

.admin-producers-page__action-btn--emerald:hover {
  filter: brightness(1.04);
}

.admin-producers-page__create-form .field > span {
  margin-bottom: 4px;
  font-family: "Inter", "Roboto", Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 16px;
  color: #4a4458;
}

.admin-producers-page__create-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.admin-producers-page__create-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 8px;
}

@media (max-width: 980px) {
  .admin-producers-page__header-actions {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .admin-producers-page__action-btn {
    min-width: 0;
  }

  .admin-producers-page__create-grid,
  .admin-producers-page__create-actions {
    grid-template-columns: 1fr;
  }
}

/* Admin - Editar usuarios (Figma aligned) */
.user-edit-page {
  width: 100%;
  max-width: 100%;
}

.user-edit-page__message {
  margin-bottom: 16px;
  border-radius: 12px;
  padding: 12px 16px;
  font-family: "Inter", "Roboto", Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
}

.user-edit-page__message--ok {
  border: 1px solid #86efac;
  background: #f0fdf4;
  color: #166534;
}

.user-edit-page__message--error {
  border: 1px solid #fecaca;
  background: #fef2f2;
  color: #b91c1c;
}

.user-edit-page__card {
  border-radius: 28px;
  border: 0;
  background: #ffffff;
  padding: 24px 71px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
}

.user-edit-page__toolbar {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.user-edit-page__back {
  display: inline-flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: #1f1f1f;
  text-decoration: none;
}

.user-edit-page__back:hover {
  background: #f4f1fb;
}

.user-edit-page__title {
  margin: 0;
  font-family: "Roboto", Arial, sans-serif;
  font-size: 28px;
  font-style: normal;
  font-weight: 500;
  line-height: 36px;
  letter-spacing: 0;
  color: #1d1b20;
}

.user-edit-page__section-title {
  margin: 0;
  font-family: "Mangueira", "Inter", "Roboto", Arial, sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 36px;
  color: #4a4458;
}

.user-edit-page__divider {
  width: 100%;
  height: 2px;
  margin: 8px 0 16px 0;
  background: #cdbdff;
}

.user-edit-page__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.user-edit-page__grid {
  gap: 12px;
}

.user-edit-page__grid--4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.user-edit-page__grid--2 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.user-edit-page .register__form--code-style .field > span:first-child,
.user-edit-page__field > span:first-child {
  margin-bottom: 4px;
  color: #4a4458;
  font-family: "Inter", "Roboto", Arial, sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 16px;
  letter-spacing: 0;
}

.user-edit-page .register__form--code-style .field input,
.user-edit-page .register__form--code-style .field select {
  height: 48px;
  min-height: 48px;
  border-radius: 4px;
  border: 1px solid #c6bfd7;
  background: #ffffff;
  color: #49454f;
  font-family: "Inter", "Roboto", Arial, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 0.1px;
  padding: 4px 16px;
}

.user-edit-page .register__form--code-style .field input[readonly] {
  background: #f3effb;
}

.user-edit-page .register__form--code-style .field input:focus,
.user-edit-page .register__form--code-style .field select:focus {
  border-color: #7f55f9;
  box-shadow: 0 0 0 2px rgba(127, 85, 249, 0.16);
}

.user-edit-page__status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 48px;
  width: 100%;
  border-radius: 4px;
  border: 1px solid #c6bfd7;
  padding: 4px 12px;
  color: #4a4458;
  font-family: "Inter", "Roboto", Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
}

.user-edit-page__checkbox {
  width: 16px;
  height: 16px;
  accent-color: #21c58d;
}

.user-edit-page .field-error {
  margin-top: 4px;
  font-size: 11px;
  line-height: 14px;
}

.user-edit-page__actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  margin-top: 12px;
}

.user-edit-page__btn {
  height: 56px;
  border: 0;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: "Inter", "Roboto", Arial, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px;
  color: #ffffff;
  cursor: pointer;
  box-shadow: 0 4px 8px 3px rgba(0, 0, 0, 0.15), 0 1px 3px rgba(0, 0, 0, 0.3);
}

.user-edit-page__btn--delete {
  background: #f3557c;
}

.user-edit-page__btn--delete:hover {
  background: #f16688;
}

.user-edit-page__btn--save {
  background: #20ca9a;
}

.user-edit-page__btn--save:hover {
  background: #33d3a6;
}

@media (max-width: 1280px) {
  .user-edit-page__card {
    padding: 24px 40px;
  }
}

@media (max-width: 980px) {
  .user-edit-page__card {
    padding: 20px 22px;
    border-radius: 20px;
  }

  .user-edit-page__title {
    font-size: 24px;
    line-height: 32px;
  }

  .user-edit-page__section-title {
    font-size: 26px;
    line-height: 34px;
  }

  .user-edit-page__actions {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .user-edit-page__grid--4,
  .user-edit-page__grid--2 {
    grid-template-columns: 1fr;
  }
}

/* =========================
   Public Register (Index) - Figma alignment (Datos empresa)
   ========================= */
#registro .register__stepper {
  max-width: 420px;
  margin-bottom: 10px;
}

#registro .register__steps {
  display: grid !important;
  grid-template-columns: 48px 91px 48px 91px 48px !important;
  align-items: center !important;
  justify-content: center;
  width: fit-content !important;
  max-width: none !important;
  margin: 0 auto 10px !important;
  gap: 0 !important;
}

#registro .register__steps .step-dot {
  width: 48px;
  height: 48px;
  padding: 10px;
  border-radius: 999px;
  justify-self: center !important;
  font-family: "Roboto", Arial, sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 24px;
  color: #8a4bf8;
  background: #d0bcff;
  border: 0;
  box-shadow: none;
}

#registro .register__steps .step-dot.dot--active {
  background: #ffffff;
  box-shadow: 0 0 0 2px #d0bcff inset;
}

#registro .register__steps .step-line {
  flex: unset !important;
  width: 91px;
  height: 2px;
  background: #d0bcff;
}

#registro .register__step-labels {
  display: grid !important;
  grid-template-columns: 48px 91px 48px 91px 48px !important;
  align-items: start;
  justify-content: center;
  width: fit-content !important;
  max-width: none !important;
  margin: 0 auto !important;
  text-align: center;
}

#registro .register__step-labels span {
  color: #d0bcff;
  font-family: "Mangueira", sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 16px;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

#registro .register__step-labels span.is-active {
  color: #ffffff;
}

#registro .register__step-labels span:nth-child(1) {
  grid-column: 1 !important;
}

#registro .register__step-labels span:nth-child(2) {
  grid-column: 3 !important;
}

#registro .register__step-labels span:nth-child(3) {
  grid-column: 5 !important;
}

#registro .register__card {
  border-radius: 28px;
  max-width: 648px;
  width: 100%;
  padding: 50px 30px;
}

#registro .register__card .card-panel {
  padding: 0;
  border-radius: 0;
}

#registro .register__card .form-step h3 {
  margin: 0 0 24px;
  color: #4a347f;
  text-align: center;
  font-family: "Mangueira", sans-serif;
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: 36px;
}

#registro .register__card .field-grid {
  column-gap: 8px;
  row-gap: 24px;
}

#registro .register__card .field {
  gap: 4px;
}

#registro .register__card .field > span:first-child,
#registro .register__card .field > label:first-child,
#registro .register__card .field label {
  color: #4a347f;
  font-family: "Roboto", Arial, sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 0;
  margin: 0;
}

#registro .register__card .field input,
#registro .register__card .field select,
#registro .register__card .field textarea {
  height: 48px;
  border-radius: 4px;
  border: 1px solid rgba(70, 65, 79, 0.38);
  padding: 12px 16px;
  color: #1f1b20;
  background-color: #fff;
  font-family: "Roboto", Arial, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.5px;
}

#registro .register__card .field input::placeholder,
#registro .register__card .field select {
  color: #cac4d0;
}

#registro .register__card .field select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 44px;
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%237B7580' d='M4.235 6.735 8 10.5l3.765-3.765-1.06-1.06L8 8.379 5.295 5.675z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px 16px;
}

#registro .register__card .field-error {
  font-family: "Roboto", Arial, sans-serif;
}

#registro .register__card .actions {
  margin-top: 24px;
}

#registro .register__card .btn,
#registro .register__card .modal .btn,
#registro .register__card .modal-actions .btn {
  font-family: "Roboto", Arial, sans-serif;
}

#registro .register__card .btn--primary {
  height: 48px;
  border-radius: 12px;
  padding: 10px 24px;
  background: linear-gradient(90deg, #7b42f6 0%, #9c59ff 100%);
  color: #fff9ff;
  box-shadow: 0 4px 8px 3px rgba(0, 0, 0, 0.15), 0 1px 3px rgba(0, 0, 0, 0.3);
  font-family: "Mangueira", sans-serif;
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px;
}

#registro .register__card .btn--primary:hover {
  filter: brightness(1.03);
}

#registro .register__card .modal .btn--primary,
#registro .register__card .modal-actions .btn--primary {
  font-family: "Roboto", Arial, sans-serif;
  font-size: 16px;
  line-height: 20px;
}

@media (max-width: 900px) {
  #registro .register__card {
    padding: 28px 20px 28px;
  }

  #registro .register__stepper {
    max-width: 100%;
  }

  #registro .register__steps {
    grid-template-columns: 36px 1fr 36px 1fr 36px !important;
    width: 100% !important;
    max-width: 320px !important;
  }

  #registro .register__steps .step-dot {
    width: 36px;
    height: 36px;
    font-size: 18px;
    line-height: 18px;
    padding: 8px;
  }

  #registro .register__steps .step-line {
    width: 100%;
  }

  #registro .register__step-labels {
    grid-template-columns: 36px 1fr 36px 1fr 36px !important;
    width: 100% !important;
    max-width: 360px !important;
  }

  #registro .register__card .field > span:first-child,
  #registro .register__card .field > label:first-child,
  #registro .register__card .field label {
    font-size: 16px;
    line-height: 18px;
  }

  #registro .register__card .field input,
  #registro .register__card .field select,
  #registro .register__card .field textarea {
    font-size: 16px;
    line-height: 24px;
  }
}
/* Shared dropdown caret for boxed selects (Admin/Public) */
select:not([multiple]):not([size]):not(.audit-pill__select):not(.admin-reportes__input--select) {
  background-image: url('/icons/Trailing%20icon.svg');
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 18px 18px;
  padding-right: 42px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

input[list].admin-user-modal__input,
input[list].cal-new-control {
  background-image: url('/icons/Trailing%20icon.svg');
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 18px 18px;
  padding-right: 42px;
}

/* Artist picker dropdown (Nueva Reserva) aligned to Auditoria filter style */
.s13-artist-picker {
  position: relative;
}

.s13-artist-picker.is-open .s13-artist-picker__input {
  border-bottom-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}

.s13-artist-picker__menu {
  position: absolute;
  top: calc(100% + 1px);
  left: 0;
  right: 0;
  z-index: 80;
  max-height: 320px;
  overflow-y: auto;
  background: #ffffff;
  border: 1px solid #79747e;
  border-top: 0;
  border-radius: 0 0 4px 4px;
  box-shadow: 0 10px 24px rgba(19, 0, 67, 0.12);
}

.s13-artist-picker__option {
  width: 100%;
  border: 0;
  border-radius: 0;
  background: #ffffff;
  color: #4f378b;
  text-align: left;
  padding: 8px 12px;
  font-family: "Roboto", Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  cursor: pointer;
  box-shadow: none;
}

.s13-artist-picker__option:hover,
.s13-artist-picker__option:focus-visible {
  background: #f4eeff;
  color: #4f378b;
  outline: none;
}

.s13-artist-picker__option.is-active {
  background: #1976d2;
  color: #ffffff;
}
