/* Respaldo global para iOS/Safari antiguos cuando Tailwind runtime no aplica estilos. */
html,
body,
#root {
    min-height: 100%;
    margin: 0;
}

html {
    min-height: -webkit-fill-available;
}

body {
    min-height: 100svh;
    -webkit-text-size-adjust: 100%;
    /* --font-brand lo define utils/roma-typography.css (Inter propia). El
       stack de sistema queda como respaldo por si esa hoja no cargara. */
    font-family: var(--font-brand, system-ui), system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background: #f9fafb;
    color: #111827;
}

* {
    box-sizing: border-box;
}

img,
video,
canvas,
svg {
    max-width: 100%;
}

button,
input,
select,
textarea {
    font: inherit;
}

button {
    cursor: pointer;
}

input,
select,
textarea {
    min-height: 44px;
}

.hidden { display: none !important; }
.block { display: block; }
.inline-block { display: inline-block; }
.inline-flex { display: inline-flex; }
.flex { display: flex; }
.grid { display: grid; }
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.sticky { position: sticky; }
.inset-0 { inset: 0; }
.top-0 { top: 0; }
.top-4 { top: 1rem; }
.right-0 { right: 0; }
.right-4 { right: 1rem; }
.bottom-0 { bottom: 0; }
.bottom-4 { bottom: 1rem; }
.bottom-6 { bottom: 1.5rem; }
.left-0 { left: 0; }
.left-4 { left: 1rem; }
.z-0 { z-index: 0; }
.z-10 { z-index: 10; }
.z-20 { z-index: 20; }
.z-30 { z-index: 30; }
.z-40 { z-index: 40; }
.z-50 { z-index: 50; }

.min-h-screen { min-height: 100vh; min-height: 100svh; }
.h-full { height: 100%; }
.w-full { width: 100%; }
.w-auto { width: auto; }
.h-auto { height: auto; }
.w-8 { width: 2rem; }
.h-8 { height: 2rem; }
.w-10 { width: 2.5rem; }
.h-10 { height: 2.5rem; }
.w-12 { width: 3rem; }
.h-12 { height: 3rem; }
.w-14 { width: 3.5rem; }
.h-14 { height: 3.5rem; }
.w-16 { width: 4rem; }
.h-16 { height: 4rem; }
.w-20 { width: 5rem; }
.h-20 { height: 5rem; }
.w-24 { width: 6rem; }
.h-24 { height: 6rem; }
.max-w-sm { max-width: 24rem; }
.max-w-md { max-width: 28rem; }
.max-w-lg { max-width: 32rem; }
.max-w-xl { max-width: 36rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-5xl { max-width: 64rem; }
.max-w-6xl { max-width: 72rem; }
.max-h-\[90vh\] { max-height: 90vh; }
.max-h-\[92vh\] { max-height: 92vh; }

.items-start { align-items: flex-start; }
.items-center { align-items: center; }
.items-end { align-items: flex-end; }
.justify-start { justify-content: flex-start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.flex-1 { flex: 1 1 0%; }
.shrink-0 { flex-shrink: 0; }
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.grid-cols-7 { grid-template-columns: repeat(7, minmax(0, 1fr)); }
.gap-1 { gap: .25rem; }
.gap-2 { gap: .5rem; }
.gap-3 { gap: .75rem; }
.gap-4 { gap: 1rem; }
.gap-5 { gap: 1.25rem; }
.gap-6 { gap: 1.5rem; }
.space-y-2 > * + * { margin-top: .5rem; }
.space-y-3 > * + * { margin-top: .75rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-5 > * + * { margin-top: 1.25rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }

.m-0 { margin: 0; }
.mx-auto { margin-left: auto; margin-right: auto; }
.my-auto { margin-top: auto; margin-bottom: auto; }
.mt-1 { margin-top: .25rem; }
.mt-2 { margin-top: .5rem; }
.mt-3 { margin-top: .75rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mb-1 { margin-bottom: .25rem; }
.mb-2 { margin-bottom: .5rem; }
.mb-3 { margin-bottom: .75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.p-1 { padding: .25rem; }
.p-2 { padding: .5rem; }
.p-3 { padding: .75rem; }
.p-4 { padding: 1rem; }
.p-5 { padding: 1.25rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.px-2 { padding-left: .5rem; padding-right: .5rem; }
.px-3 { padding-left: .75rem; padding-right: .75rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-5 { padding-left: 1.25rem; padding-right: 1.25rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.py-1 { padding-top: .25rem; padding-bottom: .25rem; }
.py-2 { padding-top: .5rem; padding-bottom: .5rem; }
.py-3 { padding-top: .75rem; padding-bottom: .75rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.pb-20 { padding-bottom: 5rem; }

.overflow-hidden { overflow: hidden; }
.overflow-y-auto { overflow-y: auto; }
.overflow-x-auto { overflow-x: auto; }
.object-cover { object-fit: cover; }
.object-contain { object-fit: contain; }

.rounded { border-radius: .25rem; }
.rounded-md { border-radius: .375rem; }
.rounded-lg { border-radius: .5rem; }
.rounded-xl { border-radius: .75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-3xl { border-radius: 1.5rem; }
.rounded-full { border-radius: 999px; }
.border { border: 1px solid #e5e7eb; }
.border-2 { border-width: 2px; border-style: solid; }
.border-gray-200 { border-color: #e5e7eb; }
.border-gray-300 { border-color: #d1d5db; }
.border-gray-600 { border-color: #4b5563; }
.border-pink-200, .border-pink-300, .border-pink-400 { border-color: var(--brand-secondary, #FFB5DD); }
.border-amber-700 { border-color: #b45309; }

/* Sombras en dos capas con tinte azul-noche, iguales a las de roma-theme.js.
   El tinte no es el color del salon a proposito: la app es white-label. */
.shadow-sm { box-shadow: 0 1px 2px rgba(17,12,46,.05), 0 2px 6px rgba(17,12,46,.05); }
.shadow { box-shadow: 0 1px 2px rgba(17,12,46,.05), 0 2px 6px rgba(17,12,46,.05); }
.shadow-md { box-shadow: 0 2px 4px rgba(17,12,46,.04), 0 6px 16px rgba(17,12,46,.08); }
.shadow-lg { box-shadow: 0 4px 8px rgba(17,12,46,.04), 0 12px 28px rgba(17,12,46,.10); }
.shadow-xl { box-shadow: 0 8px 16px rgba(17,12,46,.05), 0 20px 44px rgba(17,12,46,.12); }
.shadow-2xl { box-shadow: 0 16px 32px rgba(17,12,46,.08), 0 32px 68px rgba(17,12,46,.16); }

.bg-white { background: #fff; }
.bg-gray-50 { background: #f9fafb; }
.bg-gray-100 { background: #f3f4f6; }
.bg-gray-200 { background: #e5e7eb; }
.bg-gray-700 { background: #374151; }
.bg-gray-800 { background: #1f2937; }
.bg-gray-900 { background: #111827; }
.bg-black\/15 { background: rgba(0,0,0,.15); }
.bg-black\/20 { background: rgba(0,0,0,.2); }
.bg-black\/40 { background: rgba(0,0,0,.4); }
.bg-pink-50 { background: var(--brand-surface, #FFF0F8); }
.bg-pink-100 { background: var(--brand-soft, #FFD9ED); }
.bg-pink-500, .bg-pink-600, .bg-pink-700 { background: var(--brand-primary, #FF1493); color: #fff; }
.bg-green-500, .bg-green-600, .bg-green-700 { background: #16a34a; color: #fff; }
.bg-blue-500, .bg-blue-600, .bg-blue-700 { background: #2563eb; color: #fff; }
.bg-red-500, .bg-red-600, .bg-red-700 { background: #ef4444; color: #fff; }
.bg-amber-500, .bg-amber-600, .bg-amber-700 { background: #d97706; color: #fff; }
.bg-yellow-50 { background: #fefce8; }

.bg-gradient-to-r { background-image: linear-gradient(90deg, var(--tw-gradient-from, #ec4899), var(--tw-gradient-to, #f9a8d4)); }
.bg-gradient-to-br { background-image: linear-gradient(135deg, var(--tw-gradient-from, #ec4899), var(--tw-gradient-to, #f9a8d4)); }
.bg-gradient-to-b { background-image: linear-gradient(180deg, var(--tw-gradient-from, #fdf2f8), var(--tw-gradient-to, #fce7f3)); }
.from-gray-900 { --tw-gradient-from: #111827; }
.to-amber-900 { --tw-gradient-to: #78350f; }
.from-amber-500, .from-amber-600 { --tw-gradient-from: #d97706; }
.to-amber-700, .to-amber-800 { --tw-gradient-to: #b45309; }
.from-pink-50, .from-pink-100 { --tw-gradient-from: var(--brand-surface, #FFF0F8); }
.to-pink-100, .to-pink-200 { --tw-gradient-to: var(--brand-soft, #FFD9ED); }
.from-pink-500, .from-pink-600 { --tw-gradient-from: var(--brand-primary, #FF1493); }
.to-pink-600, .to-pink-700 { --tw-gradient-to: var(--brand-primary, #FF1493); }
.from-green-500, .from-green-600 { --tw-gradient-from: #16a34a; }
.to-green-600, .to-green-700 { --tw-gradient-to: #15803d; }
.from-blue-500, .from-blue-600 { --tw-gradient-from: #2563eb; }
.to-blue-600, .to-blue-700 { --tw-gradient-to: #1d4ed8; }

.text-white { color: #fff; }
.text-black { color: #000; }
.text-gray-400 { color: #9ca3af; }
.text-gray-500 { color: #6b7280; }
.text-gray-600 { color: #4b5563; }
.text-gray-700 { color: #374151; }
.text-gray-800, .text-gray-900 { color: #111827; }
.text-pink-300 { color: var(--brand-secondary, #FFB5DD); }
.text-pink-500, .text-pink-600, .text-pink-700, .text-pink-800 { color: var(--brand-primary, #FF1493); }
.text-green-500, .text-green-600, .text-green-700 { color: #047857; }
.text-red-500, .text-red-600, .text-red-700 { color: #b91c1c; }
.text-blue-500, .text-blue-600, .text-blue-700 { color: #1d4ed8; }
.text-amber-400 { color: #fbbf24; }
.text-amber-500, .text-amber-600, .text-amber-700 { color: #b45309; }

.text-left { text-align: left; }
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-xs { font-size: .75rem; line-height: 1rem; }
.text-sm { font-size: .875rem; line-height: 1.25rem; }
.text-base { font-size: 1rem; line-height: 1.5rem; }
/* El tracking negativo crece con el tamano: las sans-serif se ven sueltas de
   20px para arriba. Los tamanos de cuerpo (xs/sm/base) no se tocan. */
.text-lg { font-size: 1.125rem; line-height: 1.75rem; letter-spacing: -.008em; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; letter-spacing: -.014em; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; letter-spacing: -.021em; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; letter-spacing: -.024em; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; letter-spacing: -.028em; }
.text-5xl { font-size: 3rem; line-height: 1; letter-spacing: -.032em; }
.font-normal { font-weight: 400; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.leading-tight { line-height: 1.2; }
.break-words { overflow-wrap: break-word; }
.whitespace-nowrap { white-space: nowrap; }

.opacity-0 { opacity: 0; }
.opacity-10 { opacity: .1; }
.opacity-20 { opacity: .2; }
.opacity-30 { opacity: .3; }
.opacity-50 { opacity: .5; }
.opacity-70 { opacity: .7; }
.opacity-80 { opacity: .8; }
.transition, .transition-all, .transition-colors { transition: all .2s ease; }
.transform { transform: translateZ(0); }
.cursor-pointer { cursor: pointer; }
.select-none { user-select: none; }
.pointer-events-none { pointer-events: none; }

.outline-none { outline: 2px solid transparent; outline-offset: 2px; }
.disabled\:opacity-50:disabled, .disabled\:opacity-70:disabled { opacity: .55; }
.disabled\:cursor-not-allowed:disabled { cursor: not-allowed; }

input,
select,
textarea {
    width: 100%;
    border: 1px solid #d1d5db;
    border-radius: .5rem;
    padding: .625rem .75rem;
    background: #fff;
    color: #111827;
}

button {
    border: 0;
    border-radius: .75rem;
    min-height: 42px;
    padding: .625rem 1rem;
    font-weight: 700;
}

.client-auth-screen,
.client-welcome-screen {
    min-height: 100vh;
    min-height: 100svh;
}

.client-auth-background,
.client-welcome-background {
    position: fixed;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    background: #111827;
}

.client-auth-background-image,
.client-welcome-background-image {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 100svh;
    object-fit: cover;
    object-position: center;
}

.client-auth-overlay,
.client-welcome-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .46);
}

.client-auth-card,
.client-welcome-card {
    width: 100%;
    background: rgba(0, 0, 0, .22);
    border: 1px solid rgba(249, 168, 212, .42);
    box-shadow: 0 24px 70px rgba(0, 0, 0, .28);
}

.step-active {
    background: #d97706;
    color: #fff;
}

.step-completed {
    background: #22c55e;
    color: #fff;
}

.step-pending {
    background: #e5e7eb;
    color: #4b5563;
}

.animate-spin {
    animation: legacySpin 1s linear infinite;
}

.animate-fade-in {
    animation: legacyFadeIn .35s ease-out forwards;
}

@keyframes legacySpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

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

/* ==================================================================
   Huecos detectados al auditar este respaldo contra components/.
   De las 576 clases que usan los componentes, aqui habia 284: faltaba
   sobre todo geometria, y en iOS antiguo eso no es un matiz, descuadra
   la pantalla entera.

   OJO con la cascada: este archivo va SIN capa y Tailwind mete sus
   utilidades en @layer utilities, asi que lo de aqui GANA a Tailwind en
   TODOS los navegadores, no solo en los viejos. Por eso los valores
   tienen que ser exactamente los de Tailwind, y las reglas de borde de
   abajo fijan ancho y estilo pero NUNCA color: si fijaran color
   pisarian a .border-pink-500 y compania (que es justo el bug que
   tenia .border, ver mas abajo).
   ================================================================== */

/* -- Ritmo vertical. Era el hueco mas grave: space-y se usa 65 veces en
      los componentes y no habia ni una definicion, asi que en iOS
      antiguo cada lista y cada formulario salia apelmazado sin aire.
      Se usa margin-bottom sobre :not(:last-child), la misma propiedad
      que Tailwind (margin-block-end): si usara margin-top sobre los
      hermanos siguientes, las dos reglas se sumarian y el espacio
      saldria doble en los navegadores modernos. */
.space-y-1 > *:not(:last-child) { margin-bottom: .25rem; }
.space-y-2 > *:not(:last-child) { margin-bottom: .5rem; }
.space-y-3 > *:not(:last-child) { margin-bottom: .75rem; }
.space-y-4 > *:not(:last-child) { margin-bottom: 1rem; }
.space-y-5 > *:not(:last-child) { margin-bottom: 1.25rem; }
.space-y-6 > *:not(:last-child) { margin-bottom: 1.5rem; }
.space-y-8 > *:not(:last-child) { margin-bottom: 2rem; }

.gap-1\.5 { gap: .375rem; }
.gap-x-3 { column-gap: .75rem; }
.gap-y-1 { row-gap: .25rem; }

/* -- Margenes y rellenos que faltaban -- */
.ml-1 { margin-left: .25rem; }
.ml-2 { margin-left: .5rem; }
.ml-8 { margin-left: 2rem; }
.mr-1 { margin-right: .25rem; }
.mr-2 { margin-right: .5rem; }
.mr-3 { margin-right: .75rem; }
.-mr-2 { margin-right: -.5rem; }
.mt-0\.5 { margin-top: .125rem; }
.mt-5 { margin-top: 1.25rem; }
.-mt-2 { margin-top: -.5rem; }
.mb-0\.5 { margin-bottom: .125rem; }
.mb-1\.5 { margin-bottom: .375rem; }
.mb-5 { margin-bottom: 1.25rem; }
.-mx-1 { margin-left: -.25rem; margin-right: -.25rem; }
.-mx-2 { margin-left: -.5rem; margin-right: -.5rem; }

.p-10 { padding: 2.5rem; }
.pt-1 { padding-top: .25rem; }
.pt-2 { padding-top: .5rem; }
.pt-4 { padding-top: 1rem; }
.pb-1 { padding-bottom: .25rem; }
.pb-2 { padding-bottom: .5rem; }
.pb-3 { padding-bottom: .75rem; }
.pb-4 { padding-bottom: 1rem; }
.pb-6 { padding-bottom: 1.5rem; }
.pl-3 { padding-left: .75rem; }
.pl-6 { padding-left: 1.5rem; }
.pr-1 { padding-right: .25rem; }
.pr-3 { padding-right: .75rem; }
.px-1 { padding-left: .25rem; padding-right: .25rem; }
.px-2\.5 { padding-left: .625rem; padding-right: .625rem; }
.py-0\.5 { padding-top: .125rem; padding-bottom: .125rem; }
.py-1\.5 { padding-top: .375rem; padding-bottom: .375rem; }
.py-2\.5 { padding-top: .625rem; padding-bottom: .625rem; }
.py-3\.5 { padding-top: .875rem; padding-bottom: .875rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }

/* -- Tamanos. Los w-4/h-4, w-5/h-5 y w-9/h-9 son iconos y avatares:
      sin ellos salen al tamano intrinseco y descolocan la fila. -- */
.w-1 { width: .25rem; }
.w-2 { width: .5rem; }
.w-4 { width: 1rem; }
.w-5 { width: 1.25rem; }
.w-6 { width: 1.5rem; }
.w-9 { width: 2.25rem; }
.w-11 { width: 2.75rem; }
.w-28 { width: 7rem; }
.w-32 { width: 8rem; }
.w-36 { width: 9rem; }
.w-48 { width: 12rem; }
.h-1 { height: .25rem; }
.h-2 { height: .5rem; }
.h-4 { height: 1rem; }
.h-5 { height: 1.25rem; }
.h-6 { height: 1.5rem; }
.h-9 { height: 2.25rem; }
.h-11 { height: 2.75rem; }
.max-w-xs { max-width: 20rem; }
.max-w-full { max-width: 100%; }

/* min-w-0 va siempre de la mano de truncate: sin el, un hijo flex no baja
   de su ancho de contenido y el nombre largo desborda en vez de recortarse. */
.min-w-0 { min-width: 0; }
.truncate { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

.justify-end { justify-content: flex-end; }
.flex-shrink-0 { flex-shrink: 0; }
.col-span-2 { grid-column: span 2 / span 2; }

/* -- Radios parciales (grupos de botones y hojas inferiores) -- */
.rounded-l-lg { border-top-left-radius: .5rem; border-bottom-left-radius: .5rem; }
.rounded-r-lg { border-top-right-radius: .5rem; border-bottom-right-radius: .5rem; }
.rounded-t-xl { border-top-left-radius: .75rem; border-top-right-radius: .75rem; }
.rounded-t-2xl { border-top-left-radius: 1rem; border-top-right-radius: 1rem; }

/* -- Metricas de texto -- */
.uppercase { text-transform: uppercase; }
.tracking-wide { letter-spacing: .025em; }
.tracking-wider { letter-spacing: .05em; }
.leading-none { line-height: 1; }
.leading-snug { line-height: 1.375; }
.leading-relaxed { line-height: 1.625; }
.text-6xl { font-size: 3.75rem; line-height: 1; letter-spacing: -.032em; }
.text-7xl { font-size: 4.5rem; line-height: 1; letter-spacing: -.032em; }

/* -- Anchos de borde: SOLO ancho y estilo, sin color (ver aviso de arriba).
      El border-t-transparent es el del spinner: sin el, el circulo de carga
      se ve como un anillo completo y no parece que gire. -- */
.border-t { border-top-width: 1px; border-top-style: solid; }
.border-b { border-bottom-width: 1px; border-bottom-style: solid; }
.border-b-2 { border-bottom-width: 2px; border-bottom-style: solid; }
.border-r-0 { border-right-width: 0; }
.border-dashed { border-style: dashed; }
.border-t-transparent { border-top-color: transparent; }

/* -- Colores de borde que faltaban.
      .border es una abreviatura (border: 1px solid #e5e7eb) y, al ganar a
      Tailwind por lo de las capas, dejaba GRIS cualquier "border
      border-amber-200", "border border-pink-500", etc. en todos los
      navegadores. Definirlos aqui devuelve el color previsto.
      Los pink apuntan a la variable de marca, no a rosa fijo: la app es
      white-label y ese borde tiene que llevar el color del salon. -- */
.border-pink-500,
.border-pink-600 { border-color: var(--brand-primary, #FF1493); }

/* La franja lateral de las tarjetas de turno usa border-l-pink-N, que es una
   clase DISTINTA de border-pink-N y por eso se quedaba fuera del mapeo: en un
   salon de marca negra las tarjetas seguian con la raya fucsia mientras el
   resto de la pantalla ya iba en su color — incluido el puntito "Reservado"
   de la leyenda, que si esta mapeado (bg-pink-500). Afecta a la lista de
   turnos del panel y a "Mis Citas" de la clienta. */
.border-l-pink-400,
.border-l-pink-500,
.border-l-pink-600 { border-left-color: var(--brand-primary, #FF1493); }
.border-amber-100 { border-color: #fef3c7; }
.border-amber-200 { border-color: #fde68a; }
.border-amber-300 { border-color: #fcd34d; }
.border-amber-400 { border-color: #fbbf24; }
.border-amber-500 { border-color: #f59e0b; }
.border-red-100 { border-color: #fee2e2; }
.border-red-200 { border-color: #fecaca; }
.border-red-300 { border-color: #fca5a5; }
.border-red-400 { border-color: #f87171; }
.border-green-200 { border-color: #bbf7d0; }
.border-green-500 { border-color: #22c55e; }
.border-yellow-200 { border-color: #fef08a; }
.border-yellow-300 { border-color: #fde047; }
.border-orange-100 { border-color: #ffedd5; }
.border-orange-200 { border-color: #fed7aa; }
.border-blue-200 { border-color: #bfdbfe; }
.border-gray-100 { border-color: #f3f4f6; }
.border-white { border-color: #fff; }
.border-t-white { border-top-color: #fff; }

/* Variantes con transparencia. Se declara primero el valor plano por si el
   navegador es demasiado viejo para rgba(var(--x), a), y despues el que
   sigue el color del salon. */
.border-white\/30 { border-color: rgba(255, 255, 255, .30); }
.border-red-500\/30 { border-color: rgba(239, 68, 68, .30); }
.border-pink-200\/70 {
    border-color: rgba(249, 168, 212, .70);
    border-color: rgba(var(--brand-secondary-rgb, 249 168 212), .70);
}
.border-pink-300\/25 {
    border-color: rgba(249, 168, 212, .25);
    border-color: rgba(var(--brand-secondary-rgb, 249 168 212), .25);
}
.border-pink-300\/30 {
    border-color: rgba(249, 168, 212, .30);
    border-color: rgba(var(--brand-secondary-rgb, 249 168 212), .30);
}
.border-pink-300\/40 {
    border-color: rgba(249, 168, 212, .40);
    border-color: rgba(var(--brand-secondary-rgb, 249 168 212), .40);
}
.border-pink-300\/50 {
    border-color: rgba(249, 168, 212, .50);
    border-color: rgba(var(--brand-secondary-rgb, 249 168 212), .50);
}

@media (min-width: 640px) {
    .sm\:p-6 { padding: 1.5rem; }
    .sm\:p-10 { padding: 2.5rem; }
    .sm\:text-lg { font-size: 1.125rem; line-height: 1.75rem; }
    .sm\:text-xl { font-size: 1.25rem; line-height: 1.75rem; }
    .sm\:text-2xl { font-size: 1.5rem; line-height: 2rem; }
    .sm\:text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
    .sm\:w-auto { width: auto; }
    .sm\:w-14 { width: 3.5rem; }
    .sm\:h-14 { height: 3.5rem; }
    .sm\:w-24 { width: 6rem; }
    .sm\:h-24 { height: 6rem; }
    .sm\:rounded-2xl { border-radius: 1rem; }
}

@media (max-width: 640px) {
    body { font-size: 16px; }
    .grid-cols-3,
    .grid-cols-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .p-8 { padding: 1.5rem; }
}

@supports (-webkit-touch-callout: none) {
    .min-h-screen,
    .client-auth-screen,
    .client-welcome-screen {
        min-height: -webkit-fill-available;
    }
}
