:root {
    --slv-ink: #382745;
    --slv-deep: #250d28;
    --slv-purple: #5b2c6f;
    --slv-pink: #d9407d;
    --slv-pink-soft: #f5dce7;
    --slv-lavender: #eee7f6;
    --slv-cream: #fff9f7;
    --slv-muted: #6c6472;
    --slv-border: rgba(91, 44, 111, 0.14);
    --slv-shadow: 0 24px 70px rgba(56, 39, 69, 0.12);
}

.slv-app,
.slv-app * {
    box-sizing: border-box;
}

.slv-app {
    position: relative;
    width: min(1080px, calc(100% - 28px));
    margin: 42px auto;
    padding: clamp(28px, 4vw, 58px);
    overflow: hidden;
    border: 1px solid var(--slv-border);
    border-radius: 30px;
    background:
        radial-gradient(circle at 92% 8%, rgba(217, 64, 125, 0.09), transparent 28%),
        radial-gradient(circle at 5% 100%, rgba(91, 44, 111, 0.07), transparent 27%),
        #fff;
    box-shadow: var(--slv-shadow);
    color: var(--slv-ink);
    font-family: Montserrat, Arial, sans-serif;
}

.slv-app__ambient {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.55;
    background: linear-gradient(115deg, transparent 35%, rgba(255,255,255,.62) 48%, transparent 61%);
    transform: translateX(-120%);
    animation: slvAmbient 9s ease-in-out infinite;
}

@keyframes slvAmbient {
    0%, 45% { transform: translateX(-120%); }
    70%, 100% { transform: translateX(120%); }
}

.slv-app__header,
.slv-portal__header {
    position: relative;
    z-index: 1;
    max-width: 760px;
    margin-bottom: 34px;
}

.slv-app__eyebrow {
    display: block;
    margin-bottom: 10px;
    color: var(--slv-pink);
    font-size: 11px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: .16em;
}

.slv-app h1,
.slv-app h2,
.slv-app h3,
.slv-app p {
    margin-top: 0;
}

.slv-app h1 {
    margin-bottom: 14px;
    color: var(--slv-ink);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(38px, 5vw, 62px);
    font-weight: 400;
    line-height: 1;
    letter-spacing: -.045em;
}

.slv-app__header p,
.slv-portal__header p {
    max-width: 660px;
    margin-bottom: 0;
    color: var(--slv-muted);
    font-size: 15px;
    line-height: 1.7;
}

.slv-form {
    position: relative;
    z-index: 1;
}

.slv-form__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.slv-field {
    display: grid;
    gap: 9px;
}

.slv-field--wide {
    grid-column: 1 / -1;
}

.slv-field > span,
.slv-admin-label {
    color: var(--slv-ink);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .02em;
}

.slv-field input,
.slv-field select,
.slv-login input[type="text"],
.slv-login input[type="password"] {
    width: 100%;
    min-height: 52px;
    padding: 0 15px;
    border: 1px solid rgba(91, 44, 111, 0.16);
    border-radius: 14px;
    outline: none;
    background: rgba(255, 255, 255, .92);
    color: var(--slv-ink);
    font-family: inherit;
    font-size: 14px;
    transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.slv-field input:focus,
.slv-field select:focus,
.slv-login input[type="text"]:focus,
.slv-login input[type="password"]:focus {
    border-color: rgba(217, 64, 125, .72);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(217, 64, 125, .10);
}

.slv-field select:disabled {
    cursor: not-allowed;
    opacity: .65;
}

.slv-field small {
    color: var(--slv-muted);
    font-size: 11px;
}

.slv-consent {
    display: flex;
    gap: 11px;
    margin: 24px 0;
    align-items: flex-start;
    color: var(--slv-muted);
    font-size: 12px;
    line-height: 1.55;
}

.slv-consent input {
    width: 18px;
    height: 18px;
    margin: 1px 0 0;
    accent-color: var(--slv-pink);
}

.slv-honeypot {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

.slv-button {
    position: relative;
    display: inline-flex;
    min-height: 54px;
    padding: 0 24px;
    align-items: center;
    justify-content: center;
    gap: 18px;
    overflow: hidden;
    border: 0;
    border-radius: 15px;
    color: #fff;
    background: linear-gradient(135deg, #7a236c, var(--slv-pink));
    box-shadow: 0 14px 32px rgba(217, 64, 125, .24);
    font-family: inherit;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}

.slv-button::before {
    content: "";
    position: absolute;
    inset: -60%;
    background: linear-gradient(115deg, transparent 42%, rgba(255,255,255,.55) 50%, transparent 58%);
    transform: translateX(-120%) rotate(8deg);
    transition: transform .7s ease;
}

.slv-button > * {
    position: relative;
    z-index: 1;
}

.slv-button strong {
    font-size: 21px;
    font-weight: 400;
    transition: transform .2s ease;
}

.slv-button:hover {
    color: #fff;
    filter: brightness(1.03);
    transform: translateY(-2px);
    box-shadow: 0 18px 38px rgba(217, 64, 125, .30);
}

.slv-button:hover::before {
    transform: translateX(120%) rotate(8deg);
}

.slv-button:hover strong {
    transform: translateX(4px);
}

.slv-button:disabled,
.slv-button.is-loading {
    cursor: wait;
    opacity: .66;
    transform: none;
}

.slv-button--inline {
    min-height: 48px;
}

.slv-form__message {
    display: none;
    margin: 0 0 18px;
    padding: 13px 15px;
    border-radius: 13px;
    font-size: 12px;
    line-height: 1.55;
}

.slv-form__message.is-visible {
    display: block;
}

.slv-form__message.is-info {
    color: #574267;
    background: #f1eafa;
}

.slv-form__message.is-success {
    color: #185d43;
    background: #e8f7f0;
}

.slv-form__message.is-error {
    color: #8b2847;
    background: #fdebf1;
}

.slv-notice {
    position: relative;
    z-index: 1;
    padding: 16px 18px;
    border-radius: 15px;
    font-size: 13px;
    line-height: 1.6;
}

.slv-notice--warning {
    color: #744d1f;
    background: #fff3d7;
}

.slv-login {
    max-width: 720px;
}

.slv-login__form {
    max-width: 520px;
}

.slv-login__form p {
    margin-bottom: 18px;
}

.slv-login__form label {
    display: block;
    margin-bottom: 7px;
    color: var(--slv-ink);
    font-size: 12px;
    font-weight: 700;
}

.slv-login .login-remember label {
    display: flex;
    gap: 9px;
    align-items: center;
    color: var(--slv-muted);
    font-weight: 500;
}

.slv-login input[type="checkbox"] {
    accent-color: var(--slv-pink);
}

.slv-login input[type="submit"] {
    min-height: 50px;
    padding: 0 25px;
    border: 0;
    border-radius: 14px;
    background: linear-gradient(135deg, #7a236c, var(--slv-pink));
    color: #fff;
    font-weight: 700;
    cursor: pointer;
}

.slv-login__links {
    display: flex;
    max-width: 520px;
    margin-top: 24px;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.slv-login__register {
    margin: 0;
    color: var(--slv-muted);
    font-size: 13px;
}

.slv-login__register a,
.slv-login__forgot,
.slv-link {
    color: var(--slv-pink);
    font-weight: 700;
    text-decoration: none;
}

.slv-simple-card {
    max-width: 720px;
}

.slv-simple-card h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 36px;
    font-weight: 400;
}

.slv-portal {
    width: min(1180px, calc(100% - 28px));
}

.slv-portal__header {
    display: flex;
    max-width: none;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.slv-avatar {
    display: grid;
    width: 74px;
    height: 74px;
    flex: 0 0 auto;
    place-items: center;
    border: 1px solid rgba(217, 64, 125, .22);
    border-radius: 50%;
    color: var(--slv-pink);
    background: #fff6fa;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 31px;
    box-shadow: 0 13px 30px rgba(56,39,69,.10);
}

.slv-portal__actions {
    display: flex;
    margin-bottom: 28px;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.slv-appointments {
    display: grid;
    gap: 14px;
}

.slv-appointment {
    display: grid;
    grid-template-columns: 74px minmax(0, 1fr) auto;
    gap: 18px;
    padding: 18px;
    align-items: center;
    border: 1px solid rgba(91,44,111,.12);
    border-radius: 20px;
    background: rgba(255,255,255,.84);
    box-shadow: 0 12px 32px rgba(56,39,69,.07);
}

.slv-appointment__date {
    display: grid;
    min-height: 74px;
    place-items: center;
    align-content: center;
    border-radius: 17px;
    color: #fff;
    background: linear-gradient(145deg, #6b2c7c, var(--slv-pink));
}

.slv-appointment__date strong {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 27px;
    font-weight: 400;
    line-height: 1;
}

.slv-appointment__date span {
    margin-top: 3px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .10em;
    text-transform: uppercase;
}

.slv-appointment__topline {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 15px;
}

.slv-appointment h3 {
    margin-bottom: 7px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 22px;
    font-weight: 400;
    line-height: 1.15;
}

.slv-appointment p,
.slv-appointment small {
    margin: 0;
    color: var(--slv-muted);
    font-size: 12px;
    line-height: 1.55;
}

.slv-status {
    display: inline-flex;
    min-height: 27px;
    padding: 0 10px;
    align-items: center;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 700;
    white-space: nowrap;
}

.slv-status--pending { color: #8b6515; background: #fff2c8; }
.slv-status--confirmed { color: #186249; background: #ddf5eb; }
.slv-status--completed { color: #36598a; background: #e5eefc; }
.slv-status--cancelled,
.slv-status--no_show { color: #8d3550; background: #fde7ee; }

.slv-cancel {
    min-height: 37px;
    padding: 0 13px;
    border: 1px solid rgba(217,64,125,.28);
    border-radius: 11px;
    color: var(--slv-pink);
    background: #fff;
    font-family: inherit;
    font-size: 11px;
    font-weight: 700;
    cursor: pointer;
}

.slv-cancel:hover {
    color: #fff;
    background: var(--slv-pink);
}

.slv-empty {
    display: grid;
    gap: 7px;
    padding: 34px;
    border: 1px dashed rgba(91,44,111,.20);
    border-radius: 20px;
    text-align: center;
    color: var(--slv-muted);
}

.slv-empty strong {
    color: var(--slv-ink);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 24px;
    font-weight: 400;
}

.slv-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin: 28px 0;
}

.slv-metrics article {
    display: grid;
    gap: 5px;
    padding: 22px;
    border: 1px solid rgba(91,44,111,.12);
    border-radius: 19px;
    background: #fff;
}

.slv-metrics strong {
    color: var(--slv-pink);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 38px;
    font-weight: 400;
}

.slv-metrics span {
    color: var(--slv-muted);
    font-size: 12px;
}

@media (max-width: 760px) {
    .slv-app {
        width: calc(100% - 16px);
        margin: 18px auto;
        padding: 26px 18px;
        border-radius: 23px;
    }

    .slv-app h1 {
        font-size: 39px;
    }

    .slv-form__grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .slv-field--wide {
        grid-column: auto;
    }

    .slv-button {
        width: 100%;
    }

    .slv-portal__header {
        align-items: flex-start;
    }

    .slv-avatar {
        width: 54px;
        height: 54px;
        font-size: 24px;
    }

    .slv-portal__actions {
        display: grid;
        justify-items: stretch;
    }

    .slv-portal__actions .slv-link {
        text-align: center;
    }

    .slv-appointment {
        grid-template-columns: 58px minmax(0, 1fr);
        gap: 12px;
        padding: 13px;
    }

    .slv-appointment__date {
        min-height: 60px;
        border-radius: 14px;
    }

    .slv-appointment__topline {
        display: block;
    }

    .slv-status {
        margin-bottom: 7px;
    }

    .slv-cancel {
        grid-column: 1 / -1;
        width: 100%;
    }

    .slv-metrics {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    .slv-app *,
    .slv-app *::before,
    .slv-app *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
        scroll-behavior: auto !important;
    }
}

/* ========================================================================== 
   AGENDA PUBLICA - MODO MUY PRONTO
   ========================================================================== */


.slv-launch {
    --slv-ink: #33213f;
    --slv-muted: #766e7b;
    --slv-purple: #67338b;
    --slv-deep: #24102c;
    --slv-pink: #d9407d;
    --slv-pink-soft: #fff0f6;
    --slv-line: rgba(72, 38, 82, .10);
    --slv-card: rgba(255, 255, 255, .92);

    position: relative;
    width: 100vw;
    max-width: none;
    margin: 0 0 0 calc(50% - 50vw);
    padding: clamp(12px, 1.4vw, 24px);
    overflow: hidden;
    color: var(--slv-ink);
    background:
        radial-gradient(circle at 8% 10%, rgba(116, 67, 151, .09), transparent 23%),
        radial-gradient(circle at 92% 3%, rgba(217, 64, 125, .11), transparent 27%),
        linear-gradient(145deg, #f8f5fa 0%, #fff 48%, #fff7fa 100%);
    isolation: isolate;
}

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

.slv-launch__ambient {
    position: absolute;
    inset: 0;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.slv-launch__ambient span {
    position: absolute;
    border: 1px solid rgba(217, 64, 125, .09);
    border-radius: 50%;
}

.slv-launch__ambient span:nth-child(1) {
    top: -280px;
    right: -120px;
    width: 620px;
    height: 620px;
}

.slv-launch__ambient span:nth-child(2) {
    bottom: -390px;
    left: -210px;
    width: 760px;
    height: 760px;
    border-color: rgba(103, 51, 139, .07);
}

.slv-launch__ambient span:nth-child(3) {
    top: 30%;
    right: 28%;
    width: 170px;
    height: 520px;
    border-radius: 999px;
    border-color: rgba(217, 64, 125, .05);
    transform: rotate(52deg);
}

.slv-launch__frame {
    width: min(1760px, 100%);
    margin: 0 auto;
}

.slv-launch__appbar {
    display: grid;
    grid-template-columns: minmax(180px, 1fr) auto minmax(220px, 1fr);
    min-height: 68px;
    padding: 10px 16px;
    align-items: center;
    gap: 18px;
    border: 1px solid var(--slv-line);
    border-radius: 22px;
    background: rgba(255, 255, 255, .82);
    box-shadow: 0 14px 45px rgba(48, 27, 56, .08);
    backdrop-filter: blur(18px);
}

.slv-launch__brand {
    display: inline-flex;
    width: 180px;
    max-width: 100%;
}

.slv-launch__brand img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
}

.slv-launch__app-title {
    text-align: center;
}

.slv-launch__app-title span,
.slv-launch__app-title small {
    display: block;
}

.slv-launch__app-title span {
    color: var(--slv-ink);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 19px;
    line-height: 1.1;
}

.slv-launch__app-title small {
    margin-top: 4px;
    color: var(--slv-muted);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.slv-launch__app-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}

.slv-launch__app-actions > a,
.slv-launch__status {
    display: inline-flex;
    min-height: 38px;
    padding: 0 14px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid rgba(76, 41, 84, .11);
    border-radius: 999px;
    color: #62586a;
    background: rgba(255,255,255,.84);
    font-size: 10px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
}

.slv-launch__app-actions svg {
    width: 17px;
    height: 17px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.slv-launch__status {
    border-color: rgba(217, 64, 125, .20);
    color: #a52f68;
    background: #fff5f9;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.slv-launch__status i {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--slv-pink);
    box-shadow: 0 0 0 5px rgba(217,64,125,.10);
    animation: slvAppPulse 2s ease-in-out infinite;
}

@keyframes slvAppPulse {
    0%, 100% { transform: scale(.78); opacity: .65; }
    50% { transform: scale(1); opacity: 1; }
}

.slv-launch__intro {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(320px, .55fr);
    gap: clamp(28px, 4vw, 72px);
    padding: clamp(34px, 4vw, 64px) clamp(10px, 2vw, 30px) 32px;
    align-items: center;
}

.slv-launch__intro-copy h1 {
    max-width: 880px;
    margin: 10px 0 17px;
    color: var(--slv-ink);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(43px, 5.4vw, 76px);
    font-weight: 400;
    line-height: .98;
    letter-spacing: -.045em;
}

.slv-launch__intro-copy h1 em {
    display: block;
    margin-top: 5px;
    color: var(--slv-pink);
    font-weight: 400;
}

.slv-launch__intro-copy p {
    max-width: 720px;
    margin: 0;
    color: var(--slv-muted);
    font-size: 14px;
    line-height: 1.7;
}

.slv-launch__release-card {
    position: relative;
    padding: 24px;
    overflow: hidden;
    border: 1px solid rgba(217, 64, 125, .18);
    border-radius: 24px;
    background: linear-gradient(145deg, rgba(255,255,255,.94), rgba(255,243,248,.88));
    box-shadow: 0 18px 48px rgba(71, 35, 72, .10);
}

.slv-launch__release-card::after,
.slv-launch__app-panel::after,
.slv-launch__selected-doctor::after,
.slv-launch__calendar-app::after,
.slv-launch__summary::after {
    content: "";
    position: absolute;
    inset: -70%;
    z-index: 0;
    pointer-events: none;
    background: linear-gradient(115deg, transparent 43%, rgba(255,255,255,.70) 50%, transparent 57%);
    transform: translateX(-125%) rotate(8deg);
    animation: slvAppGlare 9s ease-in-out infinite;
}

@keyframes slvAppGlare {
    0%, 42% { transform: translateX(-125%) rotate(8deg); }
    70%, 100% { transform: translateX(125%) rotate(8deg); }
}

.slv-launch__release-card > *,
.slv-launch__app-panel > *,
.slv-launch__selected-doctor > *,
.slv-launch__calendar-app > *,
.slv-launch__summary > * {
    position: relative;
    z-index: 1;
}

.slv-launch__release-card > div:first-child {
    padding-right: 74px;
}

.slv-launch__release-card span {
    display: block;
    margin-bottom: 6px;
    color: var(--slv-pink);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .15em;
}

.slv-launch__release-card strong {
    display: block;
    color: var(--slv-ink);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 21px;
    font-weight: 400;
    line-height: 1.2;
}

.slv-launch__release-card > b {
    position: absolute;
    top: 22px;
    right: 22px;
    color: var(--slv-purple);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 24px;
    font-weight: 400;
}

.slv-launch__release-track {
    height: 8px;
    margin: 21px 0 14px;
    overflow: hidden;
    border-radius: 99px;
    background: #eee8f0;
}

.slv-launch__release-track i {
    display: block;
    width: 92%;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--slv-purple), var(--slv-pink));
    box-shadow: 0 0 17px rgba(217,64,125,.28);
}

.slv-launch__release-card p {
    margin: 0;
    color: var(--slv-muted);
    font-size: 11px;
    line-height: 1.6;
}

.slv-launch__stepper {
    display: grid;
    grid-template-columns: repeat(4, minmax(190px, 1fr));
    margin-bottom: 18px;
    overflow-x: auto;
    border: 1px solid var(--slv-line);
    border-radius: 21px;
    background: rgba(255,255,255,.79);
    box-shadow: 0 12px 35px rgba(48,27,56,.06);
    scrollbar-width: none;
}

.slv-launch__stepper::-webkit-scrollbar {
    display: none;
}

.slv-launch__stepper > span {
    position: relative;
    display: grid;
    grid-template-columns: 36px minmax(0, 1fr);
    min-height: 74px;
    padding: 14px 18px;
    align-content: center;
    column-gap: 11px;
    border-right: 1px solid var(--slv-line);
}

.slv-launch__stepper > span:last-child {
    border-right: 0;
}

.slv-launch__stepper i {
    grid-row: 1 / 3;
    display: grid;
    width: 36px;
    height: 36px;
    place-items: center;
    border: 1px solid rgba(83,47,94,.15);
    border-radius: 12px;
    color: #756b79;
    background: #fff;
    font-style: normal;
    font-size: 11px;
    font-weight: 800;
}

.slv-launch__stepper .is-current i {
    border-color: transparent;
    color: #fff;
    background: linear-gradient(135deg, var(--slv-purple), var(--slv-pink));
    box-shadow: 0 9px 20px rgba(117,51,131,.20);
}

.slv-launch__stepper svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.slv-launch__stepper b,
.slv-launch__stepper small {
    display: block;
}

.slv-launch__stepper b {
    color: var(--slv-ink);
    font-size: 11px;
    line-height: 1.25;
}

.slv-launch__stepper small {
    margin-top: 4px;
    color: #938a96;
    font-size: 8.5px;
    line-height: 1.3;
}

.slv-launch__stepper .is-locked {
    background: rgba(248,245,248,.70);
}

.slv-launch__workspace {
    display: grid;
    grid-template-columns: minmax(245px, 285px) minmax(0, 1fr) minmax(315px, 350px);
    gap: 18px;
    align-items: start;
}

.slv-launch__sidebar {
    display: grid;
    gap: 15px;
}

.slv-launch__app-panel,
.slv-launch__selected-doctor,
.slv-launch__calendar-app,
.slv-launch__summary {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--slv-line);
    border-radius: 23px;
    background: var(--slv-card);
    box-shadow: 0 17px 45px rgba(48,27,56,.07);
}

.slv-launch__app-panel {
    padding: 18px;
}

.slv-launch__app-panel::after,
.slv-launch__selected-doctor::after,
.slv-launch__calendar-app::after {
    opacity: .26;
    animation-delay: 1.6s;
}

.slv-launch__panel-title {
    display: grid;
    grid-template-columns: 35px minmax(0,1fr);
    gap: 10px;
    margin-bottom: 15px;
    align-items: center;
}

.slv-launch__panel-title > span {
    display: grid;
    width: 35px;
    height: 35px;
    place-items: center;
    border-radius: 11px;
    color: var(--slv-pink);
    background: var(--slv-pink-soft);
    font-size: 10px;
    font-weight: 800;
}

.slv-launch__panel-title strong,
.slv-launch__panel-title small {
    display: block;
}

.slv-launch__panel-title strong {
    color: var(--slv-ink);
    font-size: 12px;
    line-height: 1.2;
}

.slv-launch__panel-title small {
    margin-top: 3px;
    color: #948a97;
    font-size: 8.5px;
}

.slv-launch__doctor-tabs,
.slv-launch__service-list {
    display: grid;
    gap: 9px;
}

.slv-launch__doctor-tab {
    position: relative;
    display: grid;
    grid-template-columns: 48px minmax(0,1fr) 12px;
    min-height: 70px;
    padding: 9px 10px;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(72,38,82,.10);
    border-radius: 15px;
    color: #625969;
    background: #fff;
    font-family: inherit;
    text-align: left;
    cursor: pointer;
    transition: transform .22s ease, border-color .22s ease, background .22s ease, box-shadow .22s ease;
}

.slv-launch__doctor-tab:hover,
.slv-launch__doctor-tab.is-active {
    border-color: rgba(217,64,125,.38);
    background: linear-gradient(135deg, #fff, #fff4f8);
    box-shadow: 0 10px 22px rgba(217,64,125,.10);
    transform: translateY(-1px);
}

.slv-launch__doctor-tab img {
    width: 48px;
    height: 48px;
    border: 2px solid #fff;
    border-radius: 14px;
    object-fit: cover;
    box-shadow: 0 5px 13px rgba(48,27,56,.13);
}

.slv-launch__doctor-tab strong,
.slv-launch__doctor-tab small {
    display: block;
}

.slv-launch__doctor-tab strong {
    margin-bottom: 3px;
    color: var(--slv-ink);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 14px;
    line-height: 1.05;
}

.slv-launch__doctor-tab small {
    color: #8b818e;
    font-size: 8.5px;
    line-height: 1.3;
}

.slv-launch__doctor-tab > i,
.slv-launch__service > i {
    width: 10px;
    height: 10px;
    border: 2px solid #d8d1da;
    border-radius: 50%;
    transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}

.slv-launch__doctor-tab.is-active > i,
.slv-launch__service.is-active > i {
    border-color: var(--slv-pink);
    background: var(--slv-pink);
    box-shadow: 0 0 0 4px rgba(217,64,125,.10);
}

.slv-launch__service {
    display: grid;
    grid-template-columns: 28px minmax(0,1fr) 12px;
    min-height: 53px;
    padding: 9px 10px;
    align-items: center;
    gap: 9px;
    border: 1px solid rgba(72,38,82,.09);
    border-radius: 13px;
    color: var(--slv-ink);
    background: #fff;
    font-family: inherit;
    text-align: left;
    cursor: pointer;
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.slv-launch__service:hover,
.slv-launch__service.is-active {
    border-color: rgba(217,64,125,.36);
    box-shadow: 0 8px 20px rgba(74,41,79,.07);
    transform: translateX(2px);
}

.slv-launch__service > span {
    display: grid;
    width: 27px;
    height: 27px;
    place-items: center;
    border-radius: 9px;
    color: var(--slv-pink);
    background: #fff1f6;
    font-size: 8px;
    font-weight: 800;
}

.slv-launch__service strong {
    color: inherit;
    font-size: 10px;
    font-weight: 650;
    line-height: 1.3;
}

.slv-launch__stage {
    display: grid;
    gap: 15px;
}

.slv-launch__selected-doctor {
    display: grid;
    grid-template-columns: 136px minmax(0,1fr);
    min-height: 164px;
    background: linear-gradient(145deg, #fff, #fff8fb);
}

.slv-launch__selected-photo {
    position: relative;
    min-height: 164px;
    overflow: hidden;
    background: #f2e9ee;
}

.slv-launch__selected-photo::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 58%, rgba(31,12,39,.48));
}

.slv-launch__selected-photo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity .25s ease, transform .55s cubic-bezier(.2,.8,.2,1);
}

.slv-launch__selected-doctor:hover .slv-launch__selected-photo img {
    transform: scale(1.035);
}

.slv-launch__selected-photo > span {
    position: absolute;
    right: 9px;
    bottom: 9px;
    left: 9px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #fff;
    font-size: 7.5px;
    font-weight: 750;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.slv-launch__selected-photo > span i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #8ee0ae;
    box-shadow: 0 0 0 4px rgba(142,224,174,.15);
}

.slv-launch__selected-copy {
    padding: 22px 24px;
    align-self: center;
}

.slv-launch__selected-copy > span {
    display: block;
    margin-bottom: 5px;
    color: var(--slv-pink);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: .13em;
}

.slv-launch__selected-copy h2 {
    margin: 0 0 5px;
    color: var(--slv-ink);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(24px, 2.5vw, 34px);
    font-weight: 400;
    line-height: 1;
    letter-spacing: -.025em;
}

.slv-launch__selected-copy > p {
    margin: 0 0 13px;
    color: #a52f68;
    font-size: 10px;
    font-weight: 700;
}

.slv-launch__doctor-badges {
    display: flex;
    gap: 7px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.slv-launch__doctor-badges small {
    display: inline-flex;
    min-height: 27px;
    padding: 0 9px;
    align-items: center;
    border: 1px solid rgba(103,51,139,.10);
    border-radius: 999px;
    color: #766b7a;
    background: #faf8fb;
    font-size: 7.5px;
    line-height: 1.2;
}

.slv-launch__selected-copy a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--slv-pink);
    font-size: 9px;
    font-weight: 750;
    text-decoration: none;
}

.slv-launch__selected-copy a span {
    font-size: 16px;
    transition: transform .2s ease;
}

.slv-launch__selected-copy a:hover span {
    transform: translateX(4px);
}

.slv-launch__calendar-app {
    padding: 22px;
}

.slv-launch__calendar-toolbar {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 17px;
}

.slv-launch__calendar-toolbar > div:first-child span {
    display: block;
    margin-bottom: 4px;
    color: var(--slv-pink);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: .13em;
}

.slv-launch__calendar-toolbar h2 {
    margin: 0;
    color: var(--slv-ink);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(25px, 2.8vw, 37px);
    font-weight: 400;
    line-height: 1.02;
    letter-spacing: -.03em;
}

.slv-launch__calendar-actions {
    display: flex;
    align-items: center;
    gap: 7px;
}

.slv-launch__calendar-actions button {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border: 1px solid var(--slv-line);
    border-radius: 11px;
    color: #a39aa6;
    background: #f7f5f8;
}

.slv-launch__calendar-actions strong {
    min-width: 112px;
    color: #62586a;
    font-size: 9px;
    text-align: center;
    text-transform: capitalize;
}

.slv-launch__date-rail {
    display: grid;
    grid-template-columns: repeat(5, minmax(100px,1fr));
    gap: 8px;
    overflow-x: auto;
    padding: 2px 1px 10px;
    scrollbar-width: thin;
}

.slv-launch__date {
    min-width: 100px;
    min-height: 82px;
    padding: 11px 8px;
    border: 1px solid rgba(72,38,82,.09);
    border-radius: 14px;
    color: #6f6674;
    background: #fff;
    font-family: inherit;
    text-align: center;
    cursor: not-allowed;
}

.slv-launch__date.is-active {
    border-color: rgba(217,64,125,.38);
    background: linear-gradient(145deg, #fff, #fff2f7);
    box-shadow: 0 11px 24px rgba(217,64,125,.10);
}

.slv-launch__date span,
.slv-launch__date strong,
.slv-launch__date i {
    display: block;
}

.slv-launch__date span {
    color: #a097a3;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: .10em;
    text-transform: uppercase;
}

.slv-launch__date strong {
    margin: 6px 0;
    color: var(--slv-ink);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
}

.slv-launch__date i {
    color: #b1a8b3;
    font-size: 7px;
    font-style: normal;
}

.slv-launch__schedule-area {
    position: relative;
    margin-top: 6px;
    padding: 17px;
    overflow: hidden;
    border: 1px solid rgba(72,38,82,.08);
    border-radius: 18px;
    background: #faf8fb;
}

.slv-launch__schedule-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 13px;
}

.slv-launch__schedule-heading strong,
.slv-launch__schedule-heading small {
    display: block;
}

.slv-launch__schedule-heading strong {
    color: var(--slv-ink);
    font-size: 10px;
}

.slv-launch__schedule-heading small {
    margin-top: 3px;
    color: #9a909d;
    font-size: 7.5px;
}

.slv-launch__schedule-heading > span {
    display: inline-flex;
    min-height: 27px;
    padding: 0 9px;
    align-items: center;
    border-radius: 999px;
    color: #a52f68;
    background: #ffeaf3;
    font-size: 7px;
    font-weight: 800;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.slv-launch__slots {
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: 8px;
}

.slv-launch__slots button {
    min-height: 50px;
    padding: 8px 9px;
    border: 1px solid #e6e1e8;
    border-radius: 12px;
    color: #9e96a1;
    background: #fff;
    font-family: inherit;
    cursor: not-allowed;
}

.slv-launch__slots button.is-preview {
    border-color: rgba(217,64,125,.24);
    background: #fff5f9;
}

.slv-launch__slots span,
.slv-launch__slots small {
    display: block;
}

.slv-launch__slots span {
    color: #6e6572;
    font-size: 9px;
    font-weight: 700;
}

.slv-launch__slots small {
    margin-top: 4px;
    color: #b4abb6;
    font-size: 6.8px;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.slv-launch__coming-overlay {
    display: grid;
    grid-template-columns: 38px minmax(0,1fr);
    gap: 12px;
    margin-top: 14px;
    padding: 13px;
    align-items: center;
    border: 1px solid rgba(217,64,125,.18);
    border-radius: 14px;
    background: linear-gradient(135deg, #fff, #fff2f7);
}

.slv-launch__coming-overlay > span {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border-radius: 12px;
    color: var(--slv-pink);
    background: #ffe5f0;
}

.slv-launch__coming-overlay svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.slv-launch__coming-overlay strong {
    display: block;
    color: var(--slv-ink);
    font-size: 9px;
    line-height: 1.35;
}

.slv-launch__coming-overlay p {
    margin: 3px 0 0;
    color: #8c828f;
    font-size: 7.8px;
    line-height: 1.45;
}

.slv-launch__summary {
    position: sticky;
    top: 18px;
    padding: 24px 22px;
    color: #fff;
    background:
        radial-gradient(circle at 90% 7%, rgba(231,90,149,.30), transparent 29%),
        linear-gradient(145deg, #24102c, #3c1745 62%, #4a1a4b);
    box-shadow: 0 26px 65px rgba(30,10,35,.24);
}

.slv-launch__summary::after {
    opacity: .12;
    animation-delay: 3s;
}

.slv-launch__summary-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.slv-launch__summary-top > span {
    color: #f28cb6;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: .13em;
}

.slv-launch__summary-top > i {
    display: inline-flex;
    min-height: 24px;
    padding: 0 9px;
    align-items: center;
    border: 1px solid rgba(255,255,255,.13);
    border-radius: 999px;
    color: rgba(255,255,255,.70);
    background: rgba(255,255,255,.06);
    font-size: 7px;
    font-style: normal;
    text-transform: uppercase;
}

.slv-launch__summary h2 {
    margin: 18px 0 8px;
    color: #fff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 31px;
    font-weight: 400;
    line-height: 1.02;
    letter-spacing: -.03em;
}

.slv-launch__summary > p {
    margin: 0 0 19px;
    color: rgba(255,255,255,.65);
    font-size: 10px;
    line-height: 1.55;
}

.slv-launch__summary-doctor {
    display: grid;
    grid-template-columns: 50px minmax(0,1fr);
    gap: 11px;
    padding: 11px;
    align-items: center;
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 15px;
    background: rgba(255,255,255,.055);
}

.slv-launch__summary-doctor img {
    width: 50px;
    height: 50px;
    border: 2px solid rgba(255,255,255,.85);
    border-radius: 13px;
    object-fit: cover;
}

.slv-launch__summary-doctor small,
.slv-launch__summary-doctor strong {
    display: block;
}

.slv-launch__summary-doctor small {
    margin-bottom: 4px;
    color: rgba(255,255,255,.48);
    font-size: 7px;
    font-weight: 700;
    text-transform: uppercase;
}

.slv-launch__summary-doctor strong {
    color: #fff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 15px;
    line-height: 1.1;
}

.slv-launch__summary dl {
    margin: 14px 0 17px;
}

.slv-launch__summary dl > div {
    display: grid;
    grid-template-columns: 82px minmax(0,1fr);
    gap: 10px;
    padding: 11px 0;
    border-bottom: 1px solid rgba(255,255,255,.09);
}

.slv-launch__summary dt,
.slv-launch__summary dd {
    margin: 0;
}

.slv-launch__summary dt {
    color: rgba(255,255,255,.43);
    font-size: 7px;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.slv-launch__summary dd {
    color: #fff;
    font-size: 9px;
    font-weight: 650;
    line-height: 1.4;
}

.slv-launch__disabled-cta {
    display: flex;
    width: 100%;
    min-height: 57px;
    padding: 0 15px;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 15px;
    color: #777178;
    background: #d8d5d9;
    font-family: inherit;
    text-align: left;
    cursor: not-allowed;
}

.slv-launch__disabled-cta span,
.slv-launch__disabled-cta small {
    display: block;
}

.slv-launch__disabled-cta small {
    margin-bottom: 4px;
    color: #a19ba3;
    font-size: 6.5px;
    font-weight: 800;
    letter-spacing: .10em;
}

.slv-launch__disabled-cta span {
    font-size: 9px;
    font-weight: 750;
    line-height: 1.2;
}

.slv-launch__disabled-cta svg {
    width: 19px;
    height: 19px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.slv-launch__whatsapp {
    display: grid;
    grid-template-columns: 20px minmax(0,1fr) 20px;
    min-height: 46px;
    margin-top: 10px;
    padding: 0 12px;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(242,140,182,.34);
    border-radius: 14px;
    color: #f3a0c1;
    font-size: 8px;
    font-weight: 700;
    text-decoration: none;
    transition: color .2s ease, background .2s ease, transform .2s ease;
}

.slv-launch__whatsapp:hover {
    color: #fff;
    background: rgba(255,255,255,.06);
    transform: translateY(-1px);
}

.slv-launch__whatsapp svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.slv-launch__whatsapp b {
    font-size: 16px;
    font-weight: 400;
    transition: transform .2s ease;
}

.slv-launch__whatsapp:hover b {
    transform: translateX(3px);
}

.slv-launch__secure {
    display: grid;
    grid-template-columns: 26px minmax(0,1fr);
    gap: 9px;
    margin-top: 17px;
    padding-top: 15px;
    align-items: start;
    border-top: 1px solid rgba(255,255,255,.09);
}

.slv-launch__secure svg {
    width: 23px;
    height: 23px;
    fill: none;
    stroke: #f28cb6;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.slv-launch__secure p {
    margin: 0;
    color: rgba(255,255,255,.48);
    font-size: 7.5px;
    line-height: 1.5;
}

.slv-launch__features {
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: 12px;
    margin-top: 18px;
}

.slv-launch__features > div {
    display: grid;
    grid-template-columns: 40px minmax(0,1fr);
    min-height: 88px;
    padding: 15px;
    align-items: center;
    gap: 12px;
    border: 1px solid var(--slv-line);
    border-radius: 18px;
    background: rgba(255,255,255,.78);
    box-shadow: 0 12px 32px rgba(48,27,56,.05);
}

.slv-launch__features > div > span {
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
    border-radius: 13px;
    color: var(--slv-pink);
    background: var(--slv-pink-soft);
}

.slv-launch__features svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.slv-launch__features strong {
    display: block;
    margin-bottom: 4px;
    color: var(--slv-ink);
    font-size: 10px;
}

.slv-launch__features p {
    margin: 0;
    color: var(--slv-muted);
    font-size: 8px;
    line-height: 1.45;
}

.slv-launch__mobile-dock {
    display: none;
}

@media (max-width: 1320px) {
    .slv-launch__workspace {
        grid-template-columns: 260px minmax(0,1fr);
    }

    .slv-launch__summary {
        position: relative;
        top: auto;
        grid-column: 1 / -1;
        display: grid;
        grid-template-columns: minmax(240px,.75fr) minmax(0,1.25fr);
        column-gap: 28px;
    }

    .slv-launch__summary-top,
    .slv-launch__summary h2,
    .slv-launch__summary > p,
    .slv-launch__summary-doctor {
        grid-column: 1;
    }

    .slv-launch__summary dl,
    .slv-launch__disabled-cta,
    .slv-launch__whatsapp,
    .slv-launch__secure {
        grid-column: 2;
    }

    .slv-launch__summary dl {
        grid-row: 1 / 4;
        margin-top: 0;
    }
}

@media (max-width: 980px) {
    .slv-launch__appbar {
        grid-template-columns: 1fr auto;
    }

    .slv-launch__app-title {
        display: none;
    }

    .slv-launch__intro {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .slv-launch__release-card {
        max-width: 620px;
    }

    .slv-launch__stepper {
        grid-template-columns: repeat(4, 210px);
    }

    .slv-launch__workspace {
        grid-template-columns: 1fr;
    }

    .slv-launch__sidebar {
        grid-template-columns: repeat(2, minmax(0,1fr));
    }

    .slv-launch__summary {
        display: block;
        grid-column: auto;
    }

    .slv-launch__summary dl {
        display: grid;
        grid-template-columns: repeat(2,minmax(0,1fr));
        gap: 0 20px;
    }
}

@media (max-width: 720px) {
    .slv-launch {
        padding: 6px 6px 88px;
    }

    .slv-launch__frame {
        width: 100%;
    }

    .slv-launch__appbar {
        min-height: 62px;
        padding: 9px 11px;
        border-radius: 18px;
    }

    .slv-launch__brand {
        width: 148px;
    }

    .slv-launch__app-actions > a {
        width: 38px;
        padding: 0;
    }

    .slv-launch__app-actions > a span {
        display: none;
    }

    .slv-launch__status {
        min-height: 34px;
        padding: 0 10px;
        font-size: 7.5px;
    }

    .slv-launch__intro {
        padding: 31px 12px 24px;
    }

    .slv-launch__intro-copy h1 {
        max-width: 430px;
        font-size: clamp(38px, 12vw, 53px);
    }

    .slv-launch__intro-copy p {
        font-size: 12.5px;
    }

    .slv-launch__release-card {
        padding: 19px;
        border-radius: 19px;
    }

    .slv-launch__release-card strong {
        font-size: 18px;
    }

    .slv-launch__stepper {
        grid-template-columns: repeat(4, 185px);
        margin-right: -6px;
        border-radius: 17px 0 0 17px;
    }

    .slv-launch__stepper > span {
        min-height: 66px;
        padding: 12px 14px;
    }

    .slv-launch__sidebar {
        grid-template-columns: 1fr;
    }

    .slv-launch__app-panel,
    .slv-launch__selected-doctor,
    .slv-launch__calendar-app,
    .slv-launch__summary {
        border-radius: 19px;
    }

    .slv-launch__doctor-tabs {
        grid-template-columns: repeat(2, minmax(220px,1fr));
        overflow-x: auto;
        margin-right: -18px;
        padding-right: 18px;
        scrollbar-width: none;
    }

    .slv-launch__doctor-tabs::-webkit-scrollbar {
        display: none;
    }

    .slv-launch__service-list {
        grid-template-columns: repeat(5, minmax(210px,1fr));
        overflow-x: auto;
        margin-right: -18px;
        padding-right: 18px;
        scrollbar-width: none;
    }

    .slv-launch__service-list::-webkit-scrollbar {
        display: none;
    }

    .slv-launch__selected-doctor {
        grid-template-columns: 105px minmax(0,1fr);
        min-height: 145px;
    }

    .slv-launch__selected-photo {
        min-height: 145px;
    }

    .slv-launch__selected-copy {
        padding: 18px 15px;
    }

    .slv-launch__selected-copy h2 {
        font-size: 24px;
    }

    .slv-launch__doctor-badges {
        display: none;
    }

    .slv-launch__calendar-app {
        padding: 18px 14px;
    }

    .slv-launch__calendar-toolbar {
        display: block;
    }

    .slv-launch__calendar-actions {
        margin-top: 13px;
        justify-content: space-between;
    }

    .slv-launch__date-rail {
        grid-template-columns: repeat(5, 104px);
        margin-right: -14px;
        padding-right: 14px;
    }

    .slv-launch__slots {
        grid-template-columns: repeat(2,minmax(0,1fr));
    }

    .slv-launch__summary {
        padding: 23px 18px;
    }

    .slv-launch__summary h2 {
        font-size: 28px;
    }

    .slv-launch__summary dl {
        grid-template-columns: 1fr;
    }

    .slv-launch__features {
        grid-template-columns: 1fr;
    }

    .slv-launch__features > div {
        min-height: 75px;
    }

    .slv-launch__mobile-dock {
        position: fixed;
        right: 8px;
        bottom: 8px;
        left: 8px;
        z-index: 9998;
        display: grid;
        grid-template-columns: minmax(0,1fr) auto;
        min-height: 66px;
        padding: 10px 11px 10px 15px;
        align-items: center;
        gap: 10px;
        border: 1px solid rgba(255,255,255,.13);
        border-radius: 20px;
        color: #fff;
        background: rgba(36,16,44,.94);
        box-shadow: 0 18px 45px rgba(18,6,23,.35);
        backdrop-filter: blur(18px);
    }

    .slv-launch__mobile-dock small,
    .slv-launch__mobile-dock strong {
        display: block;
    }

    .slv-launch__mobile-dock small {
        margin-bottom: 3px;
        color: #f28cb6;
        font-size: 7px;
        font-weight: 800;
        letter-spacing: .09em;
        text-transform: uppercase;
    }

    .slv-launch__mobile-dock strong {
        font-size: 10px;
    }

    .slv-launch__mobile-dock a {
        display: inline-flex;
        min-height: 42px;
        padding: 0 15px;
        align-items: center;
        justify-content: center;
        border-radius: 13px;
        color: #fff;
        background: linear-gradient(135deg, #8c326d, var(--slv-pink));
        font-size: 9px;
        font-weight: 750;
        text-decoration: none;
    }
}

@media (max-width: 430px) {
    .slv-launch__brand {
        width: 132px;
    }

    .slv-launch__status {
        padding: 0 8px;
    }

    .slv-launch__status i {
        display: none;
    }

    .slv-launch__selected-doctor {
        grid-template-columns: 88px minmax(0,1fr);
    }

    .slv-launch__selected-copy h2 {
        font-size: 21px;
    }

    .slv-launch__selected-copy > p {
        font-size: 8.5px;
    }

    .slv-launch__selected-photo > span {
        display: none;
    }

    .slv-launch__calendar-toolbar h2 {
        font-size: 27px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .slv-launch__status i,
    .slv-launch__release-card::after,
    .slv-launch__app-panel::after,
    .slv-launch__selected-doctor::after,
    .slv-launch__calendar-app::after,
    .slv-launch__summary::after {
        animation: none !important;
    }
}

/*
===============================================================================
SOLLIEVO AGENDA V0.4.0 - EXPERIENCIA TIPO APP
===============================================================================
*/

.slv-scheduler {
    --slv-scheduler-ink: #34233f;
    --slv-scheduler-muted: #706779;
    --slv-scheduler-purple: #6a2d7d;
    --slv-scheduler-purple-deep: #35143f;
    --slv-scheduler-pink: #d9407d;
    --slv-scheduler-pink-soft: #f8e5ed;
    --slv-scheduler-lavender: #f3edf8;
    --slv-scheduler-green: #1f9d73;
    --slv-scheduler-border: rgba(82, 48, 92, .12);
    --slv-scheduler-shadow: 0 22px 60px rgba(48, 27, 57, .10);

    position: relative;
    width: 100vw;
    max-width: none;
    margin-left: calc(50% - 50vw);
    padding: 14px;
    overflow: hidden;
    color: var(--slv-scheduler-ink);
    background:
        radial-gradient(circle at 3% 4%, rgba(217, 64, 125, .10), transparent 23%),
        radial-gradient(circle at 94% 10%, rgba(106, 45, 125, .10), transparent 25%),
        #f7f5f8;
    font-family: Montserrat, Arial, sans-serif;
}

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

.slv-scheduler button,
.slv-scheduler a {
    -webkit-tap-highlight-color: transparent;
}

.slv-scheduler__ambient {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(125deg, transparent 0 58%, rgba(255, 255, 255, .58) 59%, transparent 60%),
        radial-gradient(circle at 78% 28%, rgba(217, 64, 125, .07), transparent 20%);
    opacity: .8;
}

.slv-scheduler__shell {
    position: relative;
    z-index: 1;
    width: 100%;
    min-height: 760px;
    margin: 0 auto;
    overflow: hidden;
    border: 1px solid rgba(86, 53, 98, .10);
    border-radius: 28px;
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 28px 80px rgba(47, 24, 55, .12);
    backdrop-filter: blur(16px);
}

.slv-scheduler__topbar {
    min-height: 74px;
    padding: 11px clamp(18px, 2.4vw, 38px);
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 22px;
    align-items: center;
    border-bottom: 1px solid var(--slv-scheduler-border);
    background: rgba(255, 255, 255, .92);
}

.slv-scheduler__brand {
    display: inline-flex;
    align-items: center;
    width: clamp(150px, 12vw, 205px);
}

.slv-scheduler__brand img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
}

.slv-scheduler__top-title {
    padding-left: 22px;
    border-left: 1px solid rgba(89, 54, 101, .12);
}

.slv-scheduler__top-title strong,
.slv-scheduler__top-title span {
    display: block;
}

.slv-scheduler__top-title strong {
    color: var(--slv-scheduler-ink);
    font-size: 14px;
    font-weight: 750;
    line-height: 1.2;
}

.slv-scheduler__top-title span {
    margin-top: 4px;
    color: var(--slv-scheduler-muted);
    font-size: 10.5px;
    font-weight: 500;
    letter-spacing: .04em;
}

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

.slv-scheduler__soon-chip {
    display: inline-flex;
    min-height: 38px;
    padding: 0 14px;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(217, 64, 125, .18);
    border-radius: 999px;
    color: #a42f68;
    background: #fff3f7;
    font-size: 11px;
    font-weight: 750;
    line-height: 1;
}

.slv-scheduler__soon-chip i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--slv-scheduler-pink);
    box-shadow: 0 0 0 5px rgba(217, 64, 125, .10);
    animation: slvSchedulerPulse 2.1s ease-in-out infinite;
}

@keyframes slvSchedulerPulse {
    0%, 100% { transform: scale(.9); opacity: .72; }
    50% { transform: scale(1.12); opacity: 1; }
}

.slv-scheduler__whatsapp-icon {
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
    border-radius: 12px;
    color: #fff;
    background: #25d366;
    box-shadow: 0 10px 22px rgba(37, 211, 102, .20);
    text-decoration: none;
    transition: transform .22s ease, box-shadow .22s ease;
}

.slv-scheduler__whatsapp-icon:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(37, 211, 102, .26);
}

.slv-scheduler__whatsapp-icon svg,
.slv-scheduler__whatsapp-button svg,
.slv-scheduler__mobile-dock svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
    stroke: none;
}

.slv-scheduler__hero {
    padding: clamp(28px, 3.4vw, 48px) clamp(18px, 3.2vw, 50px) 26px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
    gap: 28px;
    align-items: end;
    background:
        radial-gradient(circle at 93% 10%, rgba(217, 64, 125, .11), transparent 28%),
        linear-gradient(145deg, #fff 0%, #fff9fb 53%, #f6f0f8 100%);
}

.slv-scheduler__hero h1 {
    max-width: 740px;
    margin: 9px 0 0;
    color: var(--slv-scheduler-ink);
    font-size: clamp(31px, 3.5vw, 55px);
    font-weight: 660;
    line-height: 1.02;
    letter-spacing: -.045em;
}

.slv-scheduler__hero h1 em {
    color: var(--slv-scheduler-pink);
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 400;
}

.slv-scheduler__hero p {
    max-width: 690px;
    margin: 16px 0 0;
    color: var(--slv-scheduler-muted);
    font-size: 14px;
    line-height: 1.65;
}

.slv-scheduler__hero-status {
    padding: 17px 18px;
    border: 1px solid rgba(100, 53, 112, .13);
    border-radius: 18px;
    background: rgba(255, 255, 255, .84);
    box-shadow: 0 16px 34px rgba(61, 34, 69, .08);
}

.slv-scheduler__hero-status > span,
.slv-scheduler__hero-status > strong,
.slv-scheduler__hero-status > small {
    display: block;
}

.slv-scheduler__hero-status > span {
    color: var(--slv-scheduler-pink);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.slv-scheduler__hero-status > strong {
    margin-top: 7px;
    color: var(--slv-scheduler-ink);
    font-size: 13px;
    line-height: 1.4;
}

.slv-scheduler__hero-status > div {
    height: 6px;
    margin-top: 13px;
    overflow: hidden;
    border-radius: 999px;
    background: #eee7f2;
}

.slv-scheduler__hero-status > div i {
    display: block;
    width: 92%;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #7a3691, var(--slv-scheduler-pink));
    box-shadow: 0 0 14px rgba(217, 64, 125, .22);
}

.slv-scheduler__hero-status > small {
    margin-top: 9px;
    color: var(--slv-scheduler-muted);
    font-size: 9.5px;
    line-height: 1.45;
}

.slv-scheduler__stepbar {
    min-height: 72px;
    padding: 10px clamp(18px, 3.2vw, 50px);
    display: flex;
    align-items: center;
    border-top: 1px solid var(--slv-scheduler-border);
    border-bottom: 1px solid var(--slv-scheduler-border);
    background: #fff;
}

.slv-scheduler__stepbar > span {
    display: inline-flex;
    min-width: 120px;
    align-items: center;
    gap: 9px;
    color: var(--slv-scheduler-muted);
}

.slv-scheduler__stepbar > span > b {
    display: grid;
    width: 30px;
    height: 30px;
    place-items: center;
    flex: 0 0 auto;
    border: 1px solid rgba(91, 44, 111, .17);
    border-radius: 10px;
    color: #775983;
    background: #faf8fb;
    font-size: 11px;
    font-weight: 800;
}

.slv-scheduler__stepbar > span.is-active > b {
    color: #fff;
    border-color: transparent;
    background: linear-gradient(135deg, var(--slv-scheduler-purple), var(--slv-scheduler-pink));
    box-shadow: 0 8px 18px rgba(151, 45, 121, .18);
}

.slv-scheduler__stepbar > span > small {
    font-size: 10.5px;
    font-weight: 650;
    white-space: nowrap;
}

.slv-scheduler__stepbar > i {
    width: clamp(18px, 3vw, 58px);
    height: 1px;
    margin: 0 10px;
    flex: 1 1 auto;
    background: linear-gradient(90deg, rgba(106, 45, 125, .28), rgba(217, 64, 125, .20));
}

.slv-scheduler__stepbar svg {
    width: 15px;
    height: 15px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.slv-scheduler__layout {
    padding: 20px;
    display: grid;
    grid-template-columns: minmax(250px, .72fr) minmax(530px, 1.7fr) minmax(280px, .78fr);
    gap: 18px;
    align-items: start;
    background: #f7f5f8;
}

.slv-scheduler__choices,
.slv-scheduler__main {
    display: grid;
    gap: 16px;
}

.slv-scheduler__card,
.slv-scheduler__doctor-summary,
.slv-scheduler__calendar-card,
.slv-scheduler__summary {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--slv-scheduler-border);
    border-radius: 20px;
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 14px 34px rgba(48, 27, 57, .07);
}

.slv-scheduler__card {
    padding: 17px;
}

.slv-scheduler__section-title {
    display: flex;
    gap: 11px;
    align-items: center;
}

.slv-scheduler__section-title > span {
    display: grid;
    width: 35px;
    height: 35px;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 11px;
    color: #8c3470;
    background: #f9eaf1;
    font-size: 10px;
    font-weight: 800;
}

.slv-scheduler__section-title strong,
.slv-scheduler__section-title small {
    display: block;
}

.slv-scheduler__section-title strong {
    color: var(--slv-scheduler-ink);
    font-size: 13px;
    line-height: 1.25;
}

.slv-scheduler__section-title small {
    margin-top: 3px;
    color: var(--slv-scheduler-muted);
    font-size: 9.5px;
    line-height: 1.3;
}

.slv-scheduler__doctors,
.slv-scheduler__services {
    display: grid;
    gap: 9px;
    margin-top: 15px;
}

.slv-scheduler__doctor,
.slv-scheduler__service {
    position: relative;
    width: 100%;
    padding: 11px;
    display: grid;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(88, 54, 98, .10);
    border-radius: 15px;
    color: inherit;
    background: #fbfafc;
    font-family: inherit;
    text-align: left;
    cursor: pointer;
    transition: transform .22s ease, border-color .22s ease, background .22s ease, box-shadow .22s ease;
}

.slv-scheduler__doctor {
    grid-template-columns: 48px minmax(0, 1fr) 16px;
}

.slv-scheduler__doctor:hover,
.slv-scheduler__doctor.is-active,
.slv-scheduler__service:hover,
.slv-scheduler__service.is-active {
    border-color: rgba(217, 64, 125, .28);
    background: #fff7fa;
    box-shadow: 0 11px 24px rgba(81, 45, 91, .08);
    transform: translateY(-1px);
}

.slv-scheduler__doctor img {
    width: 48px;
    height: 48px;
    border: 2px solid #fff;
    border-radius: 14px;
    object-fit: cover;
    box-shadow: 0 7px 17px rgba(49, 29, 55, .12);
}

.slv-scheduler__doctor span,
.slv-scheduler__doctor strong,
.slv-scheduler__doctor small {
    display: block;
    min-width: 0;
}

.slv-scheduler__doctor strong {
    overflow: hidden;
    color: var(--slv-scheduler-ink);
    font-size: 11.5px;
    font-weight: 750;
    line-height: 1.3;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.slv-scheduler__doctor small {
    margin-top: 4px;
    overflow: hidden;
    color: var(--slv-scheduler-muted);
    font-size: 8.8px;
    line-height: 1.35;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.slv-scheduler__doctor > i,
.slv-scheduler__service > i {
    width: 14px;
    height: 14px;
    border: 1.5px solid rgba(95, 65, 104, .30);
    border-radius: 50%;
}

.slv-scheduler__doctor.is-active > i,
.slv-scheduler__service.is-active > i {
    border: 4px solid var(--slv-scheduler-pink);
    background: #fff;
}

.slv-scheduler__service {
    grid-template-columns: 31px minmax(0, 1fr) 16px;
    min-height: 49px;
}

.slv-scheduler__service > span {
    display: grid;
    width: 29px;
    height: 29px;
    place-items: center;
    border-radius: 9px;
    color: #84578f;
    background: #f0e8f4;
    font-size: 9px;
    font-weight: 800;
}

.slv-scheduler__service strong {
    color: var(--slv-scheduler-ink);
    font-size: 10.7px;
    font-weight: 650;
    line-height: 1.35;
}

.slv-scheduler__doctor-summary {
    min-height: 150px;
    padding: 18px;
    display: grid;
    grid-template-columns: 116px minmax(0, 1fr);
    gap: 18px;
    align-items: center;
    background:
        radial-gradient(circle at 95% 12%, rgba(217, 64, 125, .09), transparent 28%),
        #fff;
}

.slv-scheduler__doctor-summary > img {
    display: block;
    width: 116px;
    height: 116px;
    border-radius: 19px;
    object-fit: cover;
    object-position: center top;
    box-shadow: 0 13px 28px rgba(44, 26, 50, .16);
    transition: opacity .18s ease;
}

.slv-scheduler__doctor-summary > div > span {
    color: var(--slv-scheduler-pink);
    font-size: 8.5px;
    font-weight: 800;
    letter-spacing: .12em;
}

.slv-scheduler__doctor-summary h2 {
    margin: 5px 0 0;
    color: var(--slv-scheduler-ink);
    font-size: clamp(20px, 2vw, 29px);
    font-weight: 710;
    line-height: 1.12;
    letter-spacing: -.025em;
}

.slv-scheduler__doctor-summary p {
    margin: 6px 0 0;
    color: var(--slv-scheduler-muted);
    font-size: 11.5px;
    line-height: 1.4;
}

.slv-scheduler__doctor-summary > div > div {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.slv-scheduler__doctor-summary > div > div small {
    padding: 5px 8px;
    border-radius: 999px;
    color: #684e70;
    background: #f5f0f7;
    font-size: 8.5px;
    font-weight: 600;
    line-height: 1.15;
}

.slv-scheduler__doctor-summary a {
    display: inline-flex;
    margin-top: 11px;
    align-items: center;
    gap: 8px;
    color: var(--slv-scheduler-pink);
    font-size: 10.5px;
    font-weight: 750;
    text-decoration: none;
}

.slv-scheduler__doctor-summary a span {
    transition: transform .22s ease;
}

.slv-scheduler__doctor-summary a:hover span {
    transform: translateX(4px);
}

.slv-scheduler__calendar-card {
    padding: 20px;
}

.slv-scheduler__calendar-card > header {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: flex-start;
}

.slv-scheduler__calendar-card > header span:not(.slv-scheduler__demo-badge) {
    color: var(--slv-scheduler-pink);
    font-size: 8.5px;
    font-weight: 800;
    letter-spacing: .12em;
}

.slv-scheduler__calendar-card > header h2 {
    margin: 5px 0 0;
    color: var(--slv-scheduler-ink);
    font-size: 22px;
    line-height: 1.2;
}

.slv-scheduler__calendar-card > header p {
    margin: 6px 0 0;
    color: var(--slv-scheduler-muted);
    font-size: 10.5px;
    line-height: 1.45;
}

.slv-scheduler__demo-badge {
    padding: 7px 10px;
    flex: 0 0 auto;
    border-radius: 999px;
    color: #775783;
    background: #f0e8f4;
    font-size: 8.5px;
    font-weight: 750;
}

.slv-scheduler__week {
    display: grid;
    grid-template-columns: repeat(6, minmax(80px, 1fr));
    gap: 9px;
    margin-top: 17px;
}

.slv-scheduler__day {
    min-height: 112px;
    padding: 12px 8px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid rgba(88, 54, 98, .11);
    border-radius: 16px;
    color: inherit;
    background: #fbfafc;
    font-family: inherit;
    cursor: pointer;
    transition: transform .22s ease, border-color .22s ease, background .22s ease, box-shadow .22s ease;
}

.slv-scheduler__day:hover:not(:disabled),
.slv-scheduler__day.is-active {
    border-color: rgba(217, 64, 125, .36);
    background: #fff5f9;
    box-shadow: 0 12px 24px rgba(80, 42, 88, .09);
    transform: translateY(-2px);
}

.slv-scheduler__day > span {
    color: var(--slv-scheduler-muted);
    font-size: 8.5px;
    font-weight: 800;
    letter-spacing: .08em;
}

.slv-scheduler__day > strong {
    margin-top: 6px;
    color: var(--slv-scheduler-ink);
    font-size: 25px;
    line-height: 1;
}

.slv-scheduler__day > small {
    margin-top: 4px;
    color: #8b7f91;
    font-size: 8px;
    font-weight: 700;
}

.slv-scheduler__day > i {
    min-height: 22px;
    margin-top: auto;
    padding: 5px 7px;
    border-radius: 999px;
    color: #477c69;
    background: #e9f7f1;
    font-size: 7.7px;
    font-style: normal;
    font-weight: 750;
    line-height: 1.1;
    text-align: center;
}

.slv-scheduler__day.is-active > i {
    color: #9d3267;
    background: #fbe4ee;
}

.slv-scheduler__day.is-full {
    border-color: rgba(150, 93, 113, .16);
    background: #f5f2f4;
    cursor: not-allowed;
    opacity: .82;
}

.slv-scheduler__day.is-full > strong,
.slv-scheduler__day.is-full > span,
.slv-scheduler__day.is-full > small {
    color: #8c838d;
}

.slv-scheduler__day.is-full > i {
    color: #96546c;
    background: #f0dfe5;
}

.slv-scheduler__availability {
    margin-top: 18px;
    padding-top: 17px;
    border-top: 1px solid var(--slv-scheduler-border);
}

.slv-scheduler__availability-head {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: flex-end;
}

.slv-scheduler__availability-head span,
.slv-scheduler__availability-head strong,
.slv-scheduler__availability-head small {
    display: block;
}

.slv-scheduler__availability-head span {
    color: var(--slv-scheduler-muted);
    font-size: 8.5px;
    font-weight: 650;
}

.slv-scheduler__availability-head strong {
    margin-top: 4px;
    color: var(--slv-scheduler-ink);
    font-size: 13px;
    line-height: 1.3;
}

.slv-scheduler__availability-head > small {
    color: #8a7f90;
    font-size: 8.5px;
}

.slv-scheduler__slots {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 9px;
    margin-top: 13px;
}

.slv-scheduler__slots button {
    min-height: 57px;
    padding: 8px;
    border: 1px solid rgba(92, 58, 101, .10);
    border-radius: 13px;
    color: #786f7c;
    background: #f7f5f8;
    font-family: inherit;
    cursor: not-allowed;
}

.slv-scheduler__slots span,
.slv-scheduler__slots small {
    display: block;
}

.slv-scheduler__slots span {
    font-size: 11px;
    font-weight: 750;
}

.slv-scheduler__slots small {
    margin-top: 4px;
    font-size: 7.5px;
    font-weight: 650;
}

.slv-scheduler__slots button.is-highlighted {
    border-color: rgba(217, 64, 125, .24);
    color: #9d3267;
    background: #fff2f7;
}

.slv-scheduler__locked-note {
    margin-top: 14px;
    padding: 13px 14px;
    display: grid;
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 11px;
    align-items: center;
    border-radius: 15px;
    background: linear-gradient(135deg, #f3ecf7, #fff4f8);
}

.slv-scheduler__locked-note > span {
    display: grid;
    width: 36px;
    height: 36px;
    place-items: center;
    border-radius: 11px;
    color: var(--slv-scheduler-purple);
    background: rgba(255, 255, 255, .78);
}

.slv-scheduler__locked-note svg,
.slv-scheduler__disabled-button svg,
.slv-scheduler__privacy-note svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.slv-scheduler__locked-note strong,
.slv-scheduler__locked-note p {
    display: block;
}

.slv-scheduler__locked-note strong {
    color: var(--slv-scheduler-ink);
    font-size: 10.5px;
}

.slv-scheduler__locked-note p {
    margin: 4px 0 0;
    color: var(--slv-scheduler-muted);
    font-size: 8.8px;
    line-height: 1.45;
}

.slv-scheduler__summary {
    position: sticky;
    top: 18px;
    padding: 19px;
    background:
        radial-gradient(circle at 88% 5%, rgba(217, 64, 125, .11), transparent 26%),
        #fff;
}

.slv-scheduler__summary-label {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: center;
}

.slv-scheduler__summary-label span {
    color: var(--slv-scheduler-ink);
    font-size: 15px;
    font-weight: 800;
}

.slv-scheduler__summary-label i {
    padding: 5px 8px;
    border-radius: 999px;
    color: #98436e;
    background: #f9e6ee;
    font-size: 7.5px;
    font-style: normal;
    font-weight: 800;
    text-transform: uppercase;
}

.slv-scheduler__summary-person {
    margin-top: 18px;
    padding: 12px;
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 11px;
    align-items: center;
    border: 1px solid rgba(86, 53, 98, .08);
    border-radius: 15px;
    background: #faf8fb;
}

.slv-scheduler__summary-person img {
    width: 52px;
    height: 52px;
    border-radius: 13px;
    object-fit: cover;
    object-position: center top;
}

.slv-scheduler__summary-person small,
.slv-scheduler__summary-person strong {
    display: block;
}

.slv-scheduler__summary-person small {
    color: var(--slv-scheduler-muted);
    font-size: 8px;
}

.slv-scheduler__summary-person strong {
    margin-top: 4px;
    color: var(--slv-scheduler-ink);
    font-size: 10.5px;
    line-height: 1.35;
}

.slv-scheduler__summary dl {
    margin: 16px 0 0;
}

.slv-scheduler__summary dl > div {
    padding: 11px 0;
    display: grid;
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 10px;
    border-bottom: 1px solid rgba(85, 55, 94, .09);
}

.slv-scheduler__summary dt,
.slv-scheduler__summary dd {
    margin: 0;
}

.slv-scheduler__summary dt {
    color: var(--slv-scheduler-muted);
    font-size: 8.5px;
    font-weight: 650;
}

.slv-scheduler__summary dd {
    color: var(--slv-scheduler-ink);
    font-size: 9px;
    font-weight: 700;
    line-height: 1.4;
    text-align: right;
}

.slv-scheduler__pending-dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    margin-right: 4px;
    border-radius: 50%;
    background: var(--slv-scheduler-pink);
}

.slv-scheduler__disabled-button {
    width: 100%;
    min-height: 54px;
    margin-top: 16px;
    padding: 0 14px;
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: center;
    border: 0;
    border-radius: 15px;
    color: #fff;
    background: linear-gradient(135deg, #8b7c91, #b6abb9);
    font-family: inherit;
    font-size: 10px;
    font-weight: 750;
    text-align: left;
    cursor: not-allowed;
    opacity: .84;
}

.slv-scheduler__whatsapp-button {
    width: 100%;
    min-height: 51px;
    margin-top: 10px;
    padding: 0 14px;
    display: grid;
    grid-template-columns: 20px minmax(0, 1fr) 18px;
    gap: 10px;
    align-items: center;
    border: 1px solid rgba(37, 211, 102, .28);
    border-radius: 15px;
    color: #16794b;
    background: #effcf5;
    font-size: 9.5px;
    font-weight: 750;
    text-decoration: none;
    transition: transform .22s ease, background .22s ease, box-shadow .22s ease;
}

.slv-scheduler__whatsapp-button:hover {
    color: #fff;
    background: #25d366;
    box-shadow: 0 12px 24px rgba(37, 211, 102, .20);
    transform: translateY(-2px);
}

.slv-scheduler__whatsapp-button b {
    font-size: 18px;
    font-weight: 400;
}

.slv-scheduler__privacy-note {
    margin: 13px 0 0;
    display: flex;
    gap: 8px;
    align-items: flex-start;
    color: #84798a;
    font-size: 8px;
    line-height: 1.45;
}

.slv-scheduler__privacy-note svg {
    width: 15px;
    height: 15px;
    flex: 0 0 auto;
    color: var(--slv-scheduler-purple);
}

.slv-scheduler__app-footer {
    min-height: 48px;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
    border-top: 1px solid var(--slv-scheduler-border);
    color: #817688;
    background: #fff;
    font-size: 8.5px;
}

.slv-scheduler__app-footer strong {
    color: #755781;
    font-size: 8px;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.slv-scheduler__mobile-dock {
    display: none;
}

@media (max-width: 1280px) {
    .slv-scheduler__layout {
        grid-template-columns: minmax(240px, .72fr) minmax(500px, 1.55fr);
    }

    .slv-scheduler__summary {
        position: static;
        grid-column: 1 / -1;
        display: grid;
        grid-template-columns: minmax(220px, .8fr) minmax(300px, 1.2fr) minmax(260px, .8fr);
        gap: 16px;
        align-items: center;
    }

    .slv-scheduler__summary-label {
        display: none;
    }

    .slv-scheduler__summary-person {
        margin-top: 0;
    }

    .slv-scheduler__summary dl {
        margin-top: 0;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0 16px;
    }

    .slv-scheduler__summary dl > div {
        padding: 8px 0;
    }

    .slv-scheduler__summary > .slv-scheduler__disabled-button,
    .slv-scheduler__summary > .slv-scheduler__whatsapp-button,
    .slv-scheduler__summary > .slv-scheduler__privacy-note {
        grid-column: 3;
    }

    .slv-scheduler__summary > .slv-scheduler__disabled-button {
        grid-row: 1;
        margin-top: 0;
    }

    .slv-scheduler__summary > .slv-scheduler__whatsapp-button {
        grid-row: 2;
    }

    .slv-scheduler__summary > .slv-scheduler__privacy-note {
        grid-row: 3;
    }
}

@media (max-width: 980px) {
    .slv-scheduler {
        padding: 8px;
    }

    .slv-scheduler__shell {
        border-radius: 22px;
    }

    .slv-scheduler__hero {
        grid-template-columns: 1fr;
    }

    .slv-scheduler__hero-status {
        max-width: 560px;
    }

    .slv-scheduler__stepbar {
        overflow-x: auto;
        scrollbar-width: none;
    }

    .slv-scheduler__stepbar::-webkit-scrollbar {
        display: none;
    }

    .slv-scheduler__stepbar > span {
        min-width: 118px;
    }

    .slv-scheduler__layout {
        grid-template-columns: 1fr;
        padding: 14px;
    }

    .slv-scheduler__choices {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .slv-scheduler__summary {
        display: block;
    }

    .slv-scheduler__summary-label {
        display: flex;
    }

    .slv-scheduler__summary-person {
        margin-top: 16px;
    }

    .slv-scheduler__summary dl {
        margin-top: 16px;
        display: block;
    }

    .slv-scheduler__summary > .slv-scheduler__disabled-button,
    .slv-scheduler__summary > .slv-scheduler__whatsapp-button,
    .slv-scheduler__summary > .slv-scheduler__privacy-note {
        grid-column: auto;
        grid-row: auto;
    }
}

@media (max-width: 720px) {
    .slv-scheduler {
        padding: 0;
        padding-bottom: 72px;
        background: #f7f5f8;
    }

    .slv-scheduler__shell {
        min-height: 100vh;
        border: 0;
        border-radius: 0;
        box-shadow: none;
    }

    .slv-scheduler__topbar {
        min-height: 64px;
        padding: 9px 13px;
        gap: 10px;
        position: sticky;
        top: 0;
        z-index: 20;
        backdrop-filter: blur(16px);
    }

    .slv-scheduler__brand {
        width: 132px;
    }

    .slv-scheduler__top-title {
        display: none;
    }

    .slv-scheduler__soon-chip {
        min-height: 34px;
        padding: 0 11px;
        font-size: 9px;
    }

    .slv-scheduler__whatsapp-icon {
        width: 36px;
        height: 36px;
        border-radius: 11px;
    }

    .slv-scheduler__hero {
        padding: 27px 16px 22px;
        gap: 17px;
    }

    .slv-scheduler__hero h1 {
        font-size: clamp(31px, 9vw, 41px);
    }

    .slv-scheduler__hero p {
        font-size: 12.5px;
    }

    .slv-scheduler__hero-status {
        padding: 14px;
        border-radius: 15px;
    }

    .slv-scheduler__stepbar {
        min-height: 61px;
        padding: 9px 14px;
    }

    .slv-scheduler__stepbar > span {
        min-width: 100px;
        gap: 7px;
    }

    .slv-scheduler__stepbar > span > b {
        width: 27px;
        height: 27px;
        border-radius: 9px;
    }

    .slv-scheduler__stepbar > span > small {
        font-size: 9px;
    }

    .slv-scheduler__stepbar > i {
        width: 18px;
        min-width: 18px;
        flex: 0 0 18px;
        margin: 0 5px;
    }

    .slv-scheduler__layout {
        padding: 10px;
        gap: 10px;
    }

    .slv-scheduler__choices {
        display: block;
    }

    .slv-scheduler__choices > * + * {
        margin-top: 10px;
    }

    .slv-scheduler__card,
    .slv-scheduler__doctor-summary,
    .slv-scheduler__calendar-card,
    .slv-scheduler__summary {
        border-radius: 17px;
    }

    .slv-scheduler__card {
        padding: 14px;
    }

    .slv-scheduler__doctors {
        grid-template-columns: repeat(2, minmax(205px, 1fr));
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }

    .slv-scheduler__doctors::-webkit-scrollbar,
    .slv-scheduler__services::-webkit-scrollbar,
    .slv-scheduler__week::-webkit-scrollbar {
        display: none;
    }

    .slv-scheduler__doctor {
        scroll-snap-align: start;
    }

    .slv-scheduler__services {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }

    .slv-scheduler__service {
        min-width: 210px;
        flex: 0 0 210px;
        scroll-snap-align: start;
    }

    .slv-scheduler__doctor-summary {
        min-height: 0;
        padding: 14px;
        grid-template-columns: 86px minmax(0, 1fr);
        gap: 13px;
    }

    .slv-scheduler__doctor-summary > img {
        width: 86px;
        height: 104px;
        border-radius: 15px;
    }

    .slv-scheduler__doctor-summary h2 {
        font-size: 19px;
    }

    .slv-scheduler__doctor-summary > div > div {
        gap: 4px;
    }

    .slv-scheduler__doctor-summary > div > div small {
        padding: 4px 6px;
        font-size: 7.4px;
    }

    .slv-scheduler__calendar-card {
        padding: 15px;
    }

    .slv-scheduler__calendar-card > header {
        display: block;
    }

    .slv-scheduler__demo-badge {
        display: inline-flex;
        margin-top: 10px;
    }

    .slv-scheduler__week {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }

    .slv-scheduler__day {
        min-width: 88px;
        flex: 0 0 88px;
        scroll-snap-align: start;
    }

    .slv-scheduler__slots {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .slv-scheduler__summary {
        padding: 16px;
    }

    .slv-scheduler__app-footer {
        padding: 14px 15px;
        display: block;
        min-height: auto;
        line-height: 1.5;
    }

    .slv-scheduler__app-footer strong {
        display: block;
        margin-top: 4px;
    }

    .slv-scheduler__mobile-dock {
        position: fixed;
        right: 8px;
        bottom: 8px;
        left: 8px;
        z-index: 999;
        min-height: 58px;
        padding: 8px 9px 8px 15px;
        display: grid;
        grid-template-columns: minmax(0, 1fr) 44px;
        gap: 10px;
        align-items: center;
        border: 1px solid rgba(255, 255, 255, .14);
        border-radius: 18px;
        color: #fff;
        background: rgba(47, 18, 56, .94);
        box-shadow: 0 18px 42px rgba(31, 10, 37, .32);
        backdrop-filter: blur(16px);
    }

    .slv-scheduler__mobile-dock small,
    .slv-scheduler__mobile-dock strong {
        display: block;
    }

    .slv-scheduler__mobile-dock small {
        color: #e7c9dc;
        font-size: 8px;
    }

    .slv-scheduler__mobile-dock strong {
        margin-top: 3px;
        font-size: 11px;
    }

    .slv-scheduler__mobile-dock a {
        display: grid;
        width: 42px;
        height: 42px;
        place-items: center;
        border-radius: 13px;
        color: #fff;
        background: #25d366;
    }
}

@media (max-width: 430px) {
    .slv-scheduler__brand {
        width: 116px;
    }

    .slv-scheduler__soon-chip {
        padding: 0 9px;
    }

    .slv-scheduler__hero h1 {
        font-size: 32px;
    }

    .slv-scheduler__doctor-summary {
        grid-template-columns: 78px minmax(0, 1fr);
    }

    .slv-scheduler__doctor-summary > img {
        width: 78px;
        height: 98px;
    }

    .slv-scheduler__doctor-summary h2 {
        font-size: 17px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .slv-scheduler *,
    .slv-scheduler *::before,
    .slv-scheduler *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
    }
}


/* ==========================================================================\n   SOLLIEVO BOOKING DEMO V0.5 - APP DE CITAS\n   ========================================================================== */

.slv-booking-demo {
    --slv-demo-purple: #6b2a81;
    --slv-demo-purple-dark: #3f1d4d;
    --slv-demo-pink: #d83f80;
    --slv-demo-pink-soft: #fff0f6;
    --slv-demo-lilac: #f6f1fa;
    --slv-demo-ink: #31223d;
    --slv-demo-muted: #7b7282;
    --slv-demo-line: rgba(80, 47, 91, .12);
    --slv-demo-shadow: 0 18px 50px rgba(58, 35, 65, .09);

    width: 100vw;
    max-width: none;
    margin-left: calc(50% - 50vw);
    padding: 18px;
    color: var(--slv-demo-ink);
    background:
        radial-gradient(circle at 3% 3%, rgba(216, 63, 128, .07), transparent 22%),
        radial-gradient(circle at 96% 12%, rgba(107, 42, 129, .07), transparent 24%),
        #f8f6fa;
    font-family: Montserrat, Arial, sans-serif;
}

.slv-booking-demo *,
.slv-booking-demo *::before,
.slv-booking-demo *::after {
    box-sizing: border-box;
}

.slv-booking-demo button,
.slv-booking-demo a {
    font: inherit;
}

.slv-booking-demo__app {
    width: min(1800px, 100%);
    margin: 0 auto;
    overflow: hidden;
    border: 1px solid rgba(80, 47, 91, .08);
    border-radius: 28px;
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 28px 80px rgba(54, 34, 63, .10);
}

.slv-booking-demo__header {
    min-height: 106px;
    padding: 22px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    border-bottom: 1px solid var(--slv-demo-line);
    background: rgba(255,255,255,.96);
}

.slv-booking-demo__eyebrow {
    display: block;
    margin-bottom: 5px;
    color: var(--slv-demo-pink);
    font-size: 10px;
    font-weight: 750;
    letter-spacing: .16em;
}

.slv-booking-demo__header h1 {
    margin: 0;
    color: var(--slv-demo-ink);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(30px, 2.4vw, 45px);
    font-weight: 400;
    line-height: 1;
    letter-spacing: -.035em;
}

.slv-booking-demo__header p {
    margin: 8px 0 0;
    color: var(--slv-demo-muted);
    font-size: 13px;
}

.slv-booking-demo__header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.slv-booking-demo__notice {
    display: inline-flex;
    min-height: 38px;
    padding: 0 14px;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(216, 63, 128, .20);
    border-radius: 999px;
    color: #a52b64;
    background: #fff4f8;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.slv-booking-demo__notice i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--slv-demo-pink);
    box-shadow: 0 0 0 5px rgba(216,63,128,.10);
}

.slv-booking-demo__wa-icon {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 13px;
    color: #fff;
    background: #25d366;
    box-shadow: 0 10px 24px rgba(37, 211, 102, .22);
    transition: transform .2s ease, box-shadow .2s ease;
}

.slv-booking-demo__wa-icon:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(37, 211, 102, .30);
}

.slv-booking-demo__wa-icon svg {
    width: 21px;
    height: 21px;
    fill: currentColor;
}

.slv-booking-demo__steps {
    min-height: 94px;
    padding: 18px 34px 14px;
    display: grid;
    grid-template-columns: auto 1fr auto 1fr auto 1fr auto 1fr auto;
    align-items: start;
    gap: 10px;
    background: linear-gradient(180deg, #fcf9fd 0%, #fff 100%);
    border-bottom: 1px solid var(--slv-demo-line);
}

.slv-booking-demo__steps > span {
    min-width: 138px;
    display: grid;
    grid-template-columns: 38px 1fr;
    grid-template-rows: 19px 20px;
    column-gap: 10px;
    align-items: center;
    color: #9b94a0;
}

.slv-booking-demo__steps > span b {
    grid-row: 1 / 3;
    position: relative;
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border: 1px solid rgba(107, 42, 129, .14);
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 7px 18px rgba(70, 39, 79, .06);
}

.slv-booking-demo__steps > span b svg {
    width: 17px;
    height: 17px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.slv-booking-demo__steps > span i {
    font-size: 10px;
    font-style: normal;
    font-weight: 650;
}

.slv-booking-demo__steps > span small {
    font-size: 10px;
    font-weight: 600;
    line-height: 1.2;
}

.slv-booking-demo__steps > span.is-active {
    color: var(--slv-demo-purple);
}

.slv-booking-demo__steps > span.is-active b {
    color: #fff;
    border-color: transparent;
    background: linear-gradient(135deg, var(--slv-demo-purple), var(--slv-demo-pink));
    box-shadow: 0 10px 22px rgba(107,42,129,.22);
}

.slv-booking-demo__steps > em {
    height: 1px;
    margin-top: 19px;
    background: linear-gradient(90deg, rgba(107,42,129,.18), rgba(216,63,128,.12));
}

.slv-booking-demo__workspace {
    padding: 20px;
    display: grid;
    grid-template-columns: minmax(300px, .92fr) minmax(500px, 1.35fr) minmax(310px, .86fr);
    gap: 18px;
    align-items: start;
}

.slv-booking-demo__left,
.slv-booking-demo__center {
    display: grid;
    gap: 18px;
}

.slv-booking-demo__panel,
.slv-booking-demo__summary {
    border: 1px solid var(--slv-demo-line);
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(58, 35, 65, .055);
}

.slv-booking-demo__panel {
    padding: 18px;
}

.slv-booking-demo__panel h2,
.slv-booking-demo__summary h2 {
    margin: 0;
    color: var(--slv-demo-ink);
    font-size: 12px;
    font-weight: 750;
    line-height: 1.35;
}

.slv-booking-demo__panel hr {
    height: 1px;
    margin: 18px 0;
    border: 0;
    background: var(--slv-demo-line);
}

.slv-booking-demo__types {
    margin-top: 14px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.slv-booking-demo__types button {
    position: relative;
    min-height: 122px;
    padding: 15px 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--slv-demo-line);
    border-radius: 15px;
    color: var(--slv-demo-ink);
    background: #fff;
    cursor: pointer;
    transition: border-color .2s ease, background .2s ease, transform .2s ease, box-shadow .2s ease;
}

.slv-booking-demo__types button:hover,
.slv-booking-demo__types button.is-active {
    border-color: rgba(216,63,128,.46);
    background: #fff8fb;
    box-shadow: 0 12px 25px rgba(216,63,128,.08);
    transform: translateY(-2px);
}

.slv-booking-demo__types button > i {
    display: grid;
    width: 42px;
    height: 42px;
    margin-bottom: 10px;
    place-items: center;
    border-radius: 50%;
    color: var(--slv-demo-purple);
    background: var(--slv-demo-lilac);
}

.slv-booking-demo__types button > i svg,
.slv-booking-demo__selected-service > div > i svg,
.slv-booking-demo__summary-list i svg,
.slv-booking-demo__secure i svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.slv-booking-demo__types strong,
.slv-booking-demo__types small {
    display: block;
    text-align: center;
}

.slv-booking-demo__types strong {
    font-size: 11px;
}

.slv-booking-demo__types small {
    margin-top: 5px;
    color: var(--slv-demo-muted);
    font-size: 9px;
}

.slv-booking-demo__types button > span,
.slv-booking-demo__doctors button > i {
    position: absolute;
    top: 12px;
    left: 12px;
    width: 14px;
    height: 14px;
    border: 1px solid rgba(104, 75, 113, .28);
    border-radius: 50%;
    background: #fff;
}

.slv-booking-demo__types button.is-active > span,
.slv-booking-demo__doctors button.is-active > i {
    border: 4px solid var(--slv-demo-pink);
}

.slv-booking-demo__specialties {
    margin-top: 13px;
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 7px;
}

.slv-booking-demo__specialties button {
    min-width: 0;
    padding: 9px 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    border: 0;
    border-radius: 12px;
    color: var(--slv-demo-muted);
    background: transparent;
    cursor: pointer;
    transition: color .2s ease, background .2s ease, transform .2s ease;
}

.slv-booking-demo__specialties button:hover,
.slv-booking-demo__specialties button.is-active {
    color: var(--slv-demo-purple);
    background: #fff3f8;
    transform: translateY(-2px);
}

.slv-booking-demo__specialties i {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border-radius: 50%;
    color: var(--slv-demo-purple);
    background: var(--slv-demo-lilac);
    font-size: 9px;
    font-style: normal;
    font-weight: 750;
}

.slv-booking-demo__specialties span {
    width: 100%;
    overflow: hidden;
    font-size: 8px;
    font-weight: 600;
    line-height: 1.25;
    text-align: center;
    text-overflow: ellipsis;
}

.slv-booking-demo__selected-service > div {
    margin-top: 12px;
    padding: 13px;
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr) auto;
    gap: 12px;
    align-items: center;
    border: 1px solid rgba(107,42,129,.10);
    border-radius: 15px;
    background: linear-gradient(135deg, #fff, #fcf8fd);
}

.slv-booking-demo__selected-service > div > i {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: linear-gradient(135deg, var(--slv-demo-purple), var(--slv-demo-pink));
}

.slv-booking-demo__selected-service span strong,
.slv-booking-demo__selected-service span small {
    display: block;
}

.slv-booking-demo__selected-service span strong {
    font-size: 10.5px;
}

.slv-booking-demo__selected-service span small {
    margin-top: 4px;
    color: var(--slv-demo-muted);
    font-size: 8.5px;
    line-height: 1.45;
}

.slv-booking-demo__selected-service button {
    border: 0;
    color: var(--slv-demo-pink);
    background: transparent;
    font-size: 9px;
    font-weight: 650;
    cursor: pointer;
}

.slv-booking-demo__doctors {
    margin-top: 13px;
    display: grid;
    gap: 9px;
}

.slv-booking-demo__doctors button {
    position: relative;
    min-height: 82px;
    padding: 10px 42px 10px 10px;
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    border: 1px solid var(--slv-demo-line);
    border-radius: 15px;
    color: var(--slv-demo-ink);
    background: #fff;
    text-align: left;
    cursor: pointer;
    transition: border-color .2s ease, background .2s ease, transform .2s ease, box-shadow .2s ease;
}

.slv-booking-demo__doctors button:hover,
.slv-booking-demo__doctors button.is-active {
    border-color: rgba(216,63,128,.42);
    background: #fff8fb;
    box-shadow: 0 10px 24px rgba(216,63,128,.07);
    transform: translateY(-1px);
}

.slv-booking-demo__doctors img {
    width: 58px;
    height: 58px;
    border-radius: 13px;
    object-fit: cover;
    object-position: center top;
}

.slv-booking-demo__doctors span strong,
.slv-booking-demo__doctors span small,
.slv-booking-demo__doctors span em {
    display: block;
}

.slv-booking-demo__doctors span strong {
    font-size: 11px;
}

.slv-booking-demo__doctors span small {
    margin-top: 4px;
    color: var(--slv-demo-muted);
    font-size: 9px;
}

.slv-booking-demo__doctors span em {
    margin-top: 5px;
    color: var(--slv-demo-purple);
    font-size: 9px;
    font-style: normal;
    font-weight: 700;
}

.slv-booking-demo__doctors button > i {
    top: 50%;
    right: 15px;
    left: auto;
    transform: translateY(-50%);
}

.slv-booking-demo__calendar-layout {
    margin-top: 13px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 112px;
    gap: 14px;
}

.slv-booking-demo__calendar header {
    min-height: 34px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.slv-booking-demo__calendar header strong {
    font-size: 11px;
}

.slv-booking-demo__calendar header button {
    display: grid;
    width: 28px;
    height: 28px;
    place-items: center;
    border: 0;
    border-radius: 9px;
    color: var(--slv-demo-purple);
    background: var(--slv-demo-lilac);
    cursor: pointer;
}

.slv-booking-demo__weekdays,
.slv-booking-demo__days {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 3px;
}

.slv-booking-demo__weekdays {
    margin-top: 5px;
}

.slv-booking-demo__weekdays span {
    padding: 4px 0;
    color: #9b94a0;
    font-size: 7px;
    font-weight: 700;
    text-align: center;
}

.slv-booking-demo__day {
    position: relative;
    aspect-ratio: 1;
    min-width: 0;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 50%;
    color: #51485a;
    background: transparent;
    font-size: 9px;
    font-weight: 600;
    cursor: pointer;
    transition: color .2s ease, background .2s ease, transform .2s ease;
}

.slv-booking-demo__day:hover:not(:disabled),
.slv-booking-demo__day.is-active {
    color: #fff;
    background: var(--slv-demo-purple);
    transform: scale(1.03);
}

.slv-booking-demo__day.is-muted {
    color: #c5bec8;
    cursor: default;
}

.slv-booking-demo__day.is-full {
    color: #a19aa5;
    background: #f3eff3;
}

.slv-booking-demo__day.is-full:hover {
    color: #9a355f;
    background: #fdeaf2;
}

.slv-booking-demo__day > span {
    position: absolute;
    right: -7px;
    bottom: -2px;
    padding: 2px 4px;
    border-radius: 999px;
    color: #a32e63;
    background: #fde7f0;
    font-size: 5px;
    font-weight: 750;
}

.slv-booking-demo__times > span {
    display: block;
    margin-bottom: 8px;
    color: var(--slv-demo-muted);
    font-size: 8px;
    font-weight: 650;
}

.slv-booking-demo__times > div:first-of-type {
    display: grid;
    gap: 6px;
}

.slv-booking-demo__times [data-demo-time] {
    min-height: 31px;
    border: 1px solid var(--slv-demo-line);
    border-radius: 9px;
    color: var(--slv-demo-ink);
    background: #fff;
    font-size: 8px;
    font-weight: 650;
    cursor: pointer;
    transition: color .2s ease, border-color .2s ease, background .2s ease;
}

.slv-booking-demo__times [data-demo-time]:hover,
.slv-booking-demo__times [data-demo-time].is-active {
    color: #fff;
    border-color: var(--slv-demo-purple);
    background: var(--slv-demo-purple);
}

.slv-booking-demo__more-times {
    width: 100%;
    margin-top: 8px;
    border: 0;
    color: var(--slv-demo-pink);
    background: transparent;
    font-size: 7.5px;
    font-weight: 650;
    cursor: pointer;
}

.slv-booking-demo__full-day {
    padding: 13px 10px;
    border-radius: 12px;
    color: #8f2a59;
    background: #fff1f6;
    text-align: center;
}

.slv-booking-demo__full-day strong {
    display: block;
    font-size: 10px;
}

.slv-booking-demo__full-day p {
    margin: 5px 0 0;
    font-size: 8px;
    line-height: 1.45;
}

.slv-booking-demo__full-day button {
    margin-top: 8px;
    border: 0;
    color: var(--slv-demo-purple);
    background: transparent;
    font-size: 8px;
    font-weight: 700;
    cursor: pointer;
}

.slv-booking-demo__summary {
    position: sticky;
    top: 22px;
    padding: 19px;
    background:
        radial-gradient(circle at 95% 6%, rgba(216,63,128,.08), transparent 26%),
        linear-gradient(180deg, #fff 0%, #fffafd 100%);
}

.slv-booking-demo__summary-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.slv-booking-demo__summary-head span {
    padding: 5px 8px;
    border-radius: 999px;
    color: #a83467;
    background: #fff0f6;
    font-size: 7px;
    font-weight: 750;
    letter-spacing: .08em;
}

.slv-booking-demo__summary-list {
    margin-top: 15px;
    display: grid;
}

.slv-booking-demo__summary-list > div {
    padding: 13px 0;
    display: grid;
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 10px;
    align-items: start;
    border-bottom: 1px solid var(--slv-demo-line);
}

.slv-booking-demo__summary-list i {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border-radius: 50%;
    color: var(--slv-demo-purple);
    background: var(--slv-demo-lilac);
}

.slv-booking-demo__summary-list small,
.slv-booking-demo__summary-list strong,
.slv-booking-demo__summary-list em {
    display: block;
}

.slv-booking-demo__summary-list small {
    color: var(--slv-demo-muted);
    font-size: 8px;
}

.slv-booking-demo__summary-list strong,
.slv-booking-demo__summary-list em {
    margin-top: 3px;
    color: var(--slv-demo-ink);
    font-size: 9.5px;
    font-style: normal;
    line-height: 1.4;
}

.slv-booking-demo__secure {
    margin-top: 15px;
    padding: 12px;
    display: grid;
    grid-template-columns: 30px minmax(0, 1fr);
    gap: 10px;
    border-radius: 13px;
    color: var(--slv-demo-purple);
    background: #fff2f7;
}

.slv-booking-demo__secure i {
    display: grid;
    width: 28px;
    height: 28px;
    place-items: center;
}

.slv-booking-demo__secure strong,
.slv-booking-demo__secure small {
    display: block;
}

.slv-booking-demo__secure strong {
    font-size: 8.5px;
}

.slv-booking-demo__secure small {
    margin-top: 4px;
    color: var(--slv-demo-muted);
    font-size: 7.5px;
    line-height: 1.45;
}

.slv-booking-demo__profile-link {
    display: inline-flex;
    margin-top: 14px;
    align-items: center;
    gap: 7px;
    color: var(--slv-demo-pink);
    font-size: 9px;
    font-weight: 700;
    text-decoration: none;
}

.slv-booking-demo__profile-link:hover {
    color: var(--slv-demo-purple);
}

.slv-booking-demo__disabled,
.slv-booking-demo__whatsapp {
    width: 100%;
    min-height: 46px;
    margin-top: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border-radius: 13px;
    font-size: 9.5px;
    font-weight: 700;
}

.slv-booking-demo__disabled {
    border: 0;
    color: #fff;
    background: #b7aebb;
    cursor: not-allowed;
}

.slv-booking-demo__whatsapp {
    border: 1px solid rgba(37,211,102,.34);
    color: #168b48;
    background: #effcf4;
    text-decoration: none;
}

.slv-booking-demo__whatsapp:hover {
    color: #fff;
    background: #25d366;
}

.slv-booking-demo__whatsapp svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.slv-booking-demo__footer {
    min-height: 50px;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border-top: 1px solid var(--slv-demo-line);
    color: var(--slv-demo-muted);
    background: #fcfafd;
    font-size: 9px;
}

.slv-booking-demo__footer strong {
    color: var(--slv-demo-purple);
    font-weight: 650;
}

.slv-booking-demo__mobile-bar {
    display: none;
}

@media (max-width: 1280px) {
    .slv-booking-demo__steps {
        overflow-x: auto;
        grid-template-columns: repeat(9, max-content);
        scrollbar-width: none;
    }

    .slv-booking-demo__steps::-webkit-scrollbar {
        display: none;
    }

    .slv-booking-demo__steps > em {
        width: 62px;
    }

    .slv-booking-demo__workspace {
        grid-template-columns: minmax(300px, .9fr) minmax(460px, 1.25fr);
    }

    .slv-booking-demo__summary {
        position: static;
        grid-column: 1 / -1;
    }

    .slv-booking-demo__summary-list {
        grid-template-columns: repeat(5, minmax(0, 1fr));
        gap: 12px;
    }

    .slv-booking-demo__summary-list > div {
        border: 0;
        padding: 10px;
        border-radius: 13px;
        background: #fff;
    }
}

@media (max-width: 900px) {
    .slv-booking-demo {
        padding: 8px;
    }

    .slv-booking-demo__app {
        border-radius: 20px;
    }

    .slv-booking-demo__header {
        padding: 18px;
    }

    .slv-booking-demo__workspace {
        grid-template-columns: 1fr;
        padding: 12px;
    }

    .slv-booking-demo__summary {
        grid-column: auto;
    }

    .slv-booking-demo__summary-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 620px) {
    .slv-booking-demo {
        padding: 0 0 76px;
        background: #f8f6fa;
    }

    .slv-booking-demo__app {
        border: 0;
        border-radius: 0;
        box-shadow: none;
    }

    .slv-booking-demo__header {
        min-height: 92px;
        padding: 15px 14px;
    }

    .slv-booking-demo__header h1 {
        font-size: 29px;
    }

    .slv-booking-demo__header p {
        max-width: 240px;
        font-size: 10px;
        line-height: 1.4;
    }

    .slv-booking-demo__notice {
        display: none;
    }

    .slv-booking-demo__steps {
        min-height: 76px;
        padding: 13px 14px 10px;
    }

    .slv-booking-demo__steps > span {
        min-width: 105px;
        grid-template-columns: 31px 1fr;
        grid-template-rows: 15px 16px;
        column-gap: 7px;
    }

    .slv-booking-demo__steps > span b {
        width: 31px;
        height: 31px;
    }

    .slv-booking-demo__steps > span b svg {
        width: 14px;
        height: 14px;
    }

    .slv-booking-demo__steps > span small {
        font-size: 8px;
    }

    .slv-booking-demo__steps > em {
        width: 28px;
        margin-top: 15px;
    }

    .slv-booking-demo__workspace {
        gap: 12px;
    }

    .slv-booking-demo__left,
    .slv-booking-demo__center {
        gap: 12px;
    }

    .slv-booking-demo__panel,
    .slv-booking-demo__summary {
        border-radius: 17px;
    }

    .slv-booking-demo__panel {
        padding: 14px;
    }

    .slv-booking-demo__types button {
        min-height: 108px;
    }

    .slv-booking-demo__specialties {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .slv-booking-demo__selected-service > div {
        grid-template-columns: 40px minmax(0, 1fr);
    }

    .slv-booking-demo__selected-service button {
        grid-column: 2;
        justify-self: start;
        padding: 0;
    }

    .slv-booking-demo__calendar-layout {
        grid-template-columns: 1fr;
    }

    .slv-booking-demo__times > div:first-of-type {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .slv-booking-demo__summary-list {
        grid-template-columns: 1fr;
    }

    .slv-booking-demo__summary-list > div {
        grid-template-columns: 35px minmax(0, 1fr);
        border-bottom: 1px solid var(--slv-demo-line);
        border-radius: 0;
        background: transparent;
    }

    .slv-booking-demo__footer {
        display: none;
    }

    .slv-booking-demo__mobile-bar {
        position: fixed;
        right: 8px;
        bottom: 8px;
        left: 8px;
        z-index: 9999;
        min-height: 60px;
        padding: 8px 9px 8px 15px;
        display: grid;
        grid-template-columns: minmax(0, 1fr) 44px;
        gap: 10px;
        align-items: center;
        border: 1px solid rgba(255,255,255,.14);
        border-radius: 18px;
        color: #fff;
        background: rgba(52, 25, 64, .95);
        box-shadow: 0 18px 44px rgba(43,18,51,.30);
        backdrop-filter: blur(16px);
    }

    .slv-booking-demo__mobile-bar small,
    .slv-booking-demo__mobile-bar strong {
        display: block;
    }

    .slv-booking-demo__mobile-bar small {
        color: #e7cede;
        font-size: 8px;
    }

    .slv-booking-demo__mobile-bar strong {
        margin-top: 3px;
        font-size: 11px;
    }

    .slv-booking-demo__mobile-bar a {
        display: grid;
        width: 42px;
        height: 42px;
        place-items: center;
        border-radius: 13px;
        color: #fff;
        background: #25d366;
    }

    .slv-booking-demo__mobile-bar svg {
        width: 20px;
        height: 20px;
        fill: currentColor;
    }
}

@media (prefers-reduced-motion: reduce) {
    .slv-booking-demo *,
    .slv-booking-demo *::before,
    .slv-booking-demo *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
    }
}

/* ========================================================================
   SOLLIEVO SCHEDULE APP 0.6.0
   Public launch preview rebuilt from zero.
   ======================================================================== */

.slv-schedule-app,
.slv-schedule-app * {
    box-sizing: border-box;
}

.slv-schedule-app {
    --slv-app-ink: #2f1d3d;
    --slv-app-ink-soft: #62586b;
    --slv-app-purple: #6f2d88;
    --slv-app-purple-dark: #4c1f64;
    --slv-app-pink: #dc407f;
    --slv-app-pink-soft: #fff0f6;
    --slv-app-lilac: #f4eff8;
    --slv-app-green: #15945e;
    --slv-app-green-soft: #ecfbf4;
    --slv-app-line: rgba(69, 39, 78, .11);
    --slv-app-card: #ffffff;
    --slv-app-shadow: 0 18px 54px rgba(52, 29, 60, .09);
    --slv-app-shadow-soft: 0 9px 28px rgba(52, 29, 60, .065);

    width: 100vw;
    max-width: none;
    margin: 0 0 0 calc(50% - 50vw);
    padding: 22px;
    overflow: clip;
    color: var(--slv-app-ink);
    background:
        radial-gradient(circle at 8% 10%, rgba(220, 64, 127, .075), transparent 25%),
        radial-gradient(circle at 92% 9%, rgba(111, 45, 136, .075), transparent 27%),
        #f8f6fa;
    font-family: Montserrat, Arial, sans-serif;
}

.slv-schedule-app button,
.slv-schedule-app a {
    font: inherit;
}

.slv-schedule-app [hidden] {
    display: none !important;
}

.slv-schedule-app button:focus-visible,
.slv-schedule-app a:focus-visible {
    outline: 3px solid rgba(220, 64, 127, .25);
    outline-offset: 3px;
}

.slv-schedule-app__frame {
    width: min(1660px, 100%);
    margin: 0 auto;
    overflow: hidden;
    border: 1px solid rgba(76, 31, 100, .09);
    border-radius: 30px;
    background: rgba(255, 255, 255, .82);
    box-shadow: 0 28px 80px rgba(45, 24, 55, .10);
    backdrop-filter: blur(20px);
}

.slv-schedule-app__topbar {
    position: relative;
    display: flex;
    min-width: 0;
    padding: 28px 32px 24px;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    border-bottom: 1px solid var(--slv-app-line);
    background:
        linear-gradient(110deg, rgba(255,255,255,.98), rgba(255,246,250,.94)),
        #fff;
}

.slv-schedule-app__topbar::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--slv-app-pink), var(--slv-app-purple), transparent);
    opacity: .45;
}

.slv-schedule-app__intro {
    min-width: 0;
}

.slv-schedule-app__eyebrow {
    display: block;
    margin-bottom: 7px;
    color: var(--slv-app-pink);
    font-size: 10px;
    font-weight: 750;
    line-height: 1.2;
    letter-spacing: .17em;
}

.slv-schedule-app__intro h1 {
    margin: 0;
    color: var(--slv-app-ink);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(32px, 3.3vw, 52px);
    font-weight: 400;
    line-height: .98;
    letter-spacing: -.035em;
}

.slv-schedule-app__intro p {
    margin: 10px 0 0;
    color: var(--slv-app-ink-soft);
    font-size: 13px;
    line-height: 1.55;
}

.slv-schedule-app__top-actions {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 12px;
}

.slv-schedule-app__status {
    display: inline-flex;
    min-height: 42px;
    padding: 0 16px;
    align-items: center;
    gap: 9px;
    border: 1px solid rgba(220, 64, 127, .17);
    border-radius: 999px;
    color: #8d3468;
    background: #fff4f8;
    font-size: 11px;
    font-weight: 700;
    white-space: nowrap;
}

.slv-schedule-app__status i {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--slv-app-pink);
    box-shadow: 0 0 0 5px rgba(220, 64, 127, .10);
    animation: slvSchedulePulse 2.4s ease-in-out infinite;
}

@keyframes slvSchedulePulse {
    0%, 100% { transform: scale(.88); opacity: .72; }
    50% { transform: scale(1.12); opacity: 1; }
}

.slv-schedule-app__top-whatsapp {
    display: inline-flex;
    min-height: 42px;
    padding: 0 16px;
    align-items: center;
    gap: 9px;
    border: 1px solid rgba(21, 148, 94, .24);
    border-radius: 999px;
    color: #0b7748;
    background: var(--slv-app-green-soft);
    font-size: 11px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
}

.slv-schedule-app__top-whatsapp:hover {
    color: #fff;
    background: var(--slv-app-green);
    box-shadow: 0 12px 25px rgba(21, 148, 94, .22);
    transform: translateY(-2px);
}

.slv-schedule-app .slv-brand-svg {
    display: block;
    width: 18px;
    height: 18px;
    fill: currentColor;
}

/* Stepper */
.slv-schedule-app__steps {
    position: relative;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    min-width: 0;
    padding: 18px 32px;
    gap: 10px;
    border-bottom: 1px solid var(--slv-app-line);
    background: rgba(255, 255, 255, .94);
}

.slv-schedule-app__step {
    position: relative;
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 10px;
    color: #9a909f;
}

.slv-schedule-app__step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 7px;
    left: 50px;
    height: 1px;
    background: #e6dfe9;
    transform: translateY(-50%);
}

.slv-schedule-app__step span {
    position: relative;
    z-index: 2;
    display: grid;
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    place-items: center;
    border: 1px solid #e1d9e5;
    border-radius: 50%;
    background: #fff;
    font-size: 10px;
    font-weight: 750;
}

.slv-schedule-app__step strong {
    position: relative;
    z-index: 2;
    padding-right: 8px;
    overflow: hidden;
    background: #fff;
    font-size: 11px;
    font-weight: 650;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.slv-schedule-app__step.is-complete {
    color: var(--slv-app-purple);
}

.slv-schedule-app__step.is-complete span {
    color: #fff;
    border-color: transparent;
    background: linear-gradient(135deg, var(--slv-app-purple), var(--slv-app-pink));
    box-shadow: 0 9px 19px rgba(111, 45, 136, .19);
}

.slv-schedule-app__step.is-complete:not(:last-child)::after {
    background: linear-gradient(90deg, rgba(111,45,136,.48), rgba(220,64,127,.42));
}

/* Main workspace */
.slv-schedule-app__workspace {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 350px);
    min-width: 0;
    gap: 22px;
    padding: 22px;
    align-items: start;
}

.slv-schedule-app__main,
.slv-schedule-app__choice-grid,
.slv-schedule-card,
.slv-schedule-app__summary {
    min-width: 0;
}

.slv-schedule-app__main {
    display: grid;
    gap: 22px;
}

.slv-schedule-app__choice-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.14fr) minmax(330px, .86fr);
    gap: 22px;
}

.slv-schedule-card,
.slv-schedule-app__summary {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--slv-app-line);
    border-radius: 24px;
    background: var(--slv-app-card);
    box-shadow: var(--slv-app-shadow-soft);
}

.slv-schedule-card {
    padding: 22px;
}

.slv-schedule-card::after {
    content: "";
    position: absolute;
    inset: -50%;
    z-index: 0;
    background: linear-gradient(112deg, transparent 43%, rgba(255,255,255,.68) 50%, transparent 57%);
    opacity: 0;
    pointer-events: none;
    transform: translateX(-85%) rotate(8deg);
    transition: opacity .2s ease, transform .85s ease;
}

.slv-schedule-card:hover::after {
    opacity: .42;
    transform: translateX(85%) rotate(8deg);
}

.slv-schedule-card > * {
    position: relative;
    z-index: 1;
}

.slv-schedule-card__heading {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    align-items: start;
    gap: 12px;
    margin-bottom: 18px;
}

.slv-schedule-card__heading > span,
.slv-schedule-app__summary-title > span {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 13px;
    color: #993567;
    background: #fdebf3;
    font-size: 11px;
    font-weight: 800;
}

.slv-schedule-card__heading h2,
.slv-schedule-app__summary-title h2 {
    margin: 1px 0 0;
    color: var(--slv-app-ink);
    font-size: 16px;
    font-weight: 750;
    line-height: 1.25;
}

.slv-schedule-card__heading p,
.slv-schedule-app__summary-title p {
    margin: 5px 0 0;
    color: var(--slv-app-ink-soft);
    font-size: 11px;
    line-height: 1.5;
}

/* Mode */
.slv-schedule-app__mode-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.slv-schedule-app__mode {
    position: relative;
    display: grid;
    min-width: 0;
    min-height: 78px;
    padding: 14px 38px 14px 14px;
    grid-template-columns: 38px minmax(0, 1fr);
    align-items: center;
    gap: 10px;
    border: 1px solid #e6dfe8;
    border-radius: 17px;
    color: var(--slv-app-ink);
    background: #fff;
    text-align: left;
    cursor: pointer;
    transition: border-color .22s ease, background .22s ease, transform .22s ease, box-shadow .22s ease;
}

.slv-schedule-app__mode:hover,
.slv-schedule-app__mode.is-active {
    border-color: rgba(220, 64, 127, .40);
    background: #fff8fb;
    box-shadow: 0 12px 26px rgba(220, 64, 127, .08);
    transform: translateY(-2px);
}

.slv-schedule-app__mode i {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border-radius: 12px;
    color: var(--slv-app-purple);
    background: var(--slv-app-lilac);
}

.slv-schedule-app__mode i svg,
.slv-schedule-app__summary-list i svg,
.slv-schedule-app__doctor-note > svg,
.slv-schedule-app__selected-service i svg,
.slv-schedule-app__secure i svg,
.slv-schedule-app__server-note svg,
.slv-schedule-app__full-message i svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.slv-schedule-app__mode span {
    min-width: 0;
}

.slv-schedule-app__mode strong,
.slv-schedule-app__mode small {
    display: block;
}

.slv-schedule-app__mode strong {
    font-size: 12px;
    font-weight: 700;
    line-height: 1.3;
}

.slv-schedule-app__mode small {
    margin-top: 4px;
    color: var(--slv-app-ink-soft);
    font-size: 9.5px;
    line-height: 1.35;
}

.slv-schedule-app__mode b,
.slv-schedule-app__service b,
.slv-schedule-app__doctor b {
    position: absolute;
    top: 50%;
    right: 14px;
    width: 15px;
    height: 15px;
    border: 1.5px solid #cfc4d3;
    border-radius: 50%;
    transform: translateY(-50%);
}

.slv-schedule-app__mode.is-active b,
.slv-schedule-app__service.is-active b,
.slv-schedule-app__doctor.is-active b {
    border: 4px solid var(--slv-app-pink);
    background: #fff;
}

.slv-schedule-app__section-label {
    display: flex;
    margin: 20px 0 11px;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.slv-schedule-app__section-label strong {
    font-size: 12px;
    font-weight: 750;
}

.slv-schedule-app__section-label span {
    color: var(--slv-app-ink-soft);
    font-size: 9px;
}

/* Services */
.slv-schedule-app__service-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.slv-schedule-app__service {
    position: relative;
    display: grid;
    min-width: 0;
    min-height: 92px;
    padding: 12px 29px 12px 11px;
    grid-template-columns: 34px minmax(0, 1fr);
    align-items: center;
    gap: 9px;
    border: 1px solid #e7e0e9;
    border-radius: 15px;
    color: var(--slv-app-ink);
    background: #fff;
    text-align: left;
    cursor: pointer;
    transition: border-color .22s ease, background .22s ease, transform .22s ease, box-shadow .22s ease;
}

.slv-schedule-app__service:hover,
.slv-schedule-app__service.is-active {
    border-color: rgba(220, 64, 127, .38);
    background: #fff7fa;
    box-shadow: 0 10px 24px rgba(220, 64, 127, .07);
    transform: translateY(-2px);
}

.slv-schedule-app__service i {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border-radius: 11px;
    color: var(--slv-app-purple);
    background: var(--slv-app-lilac);
}

.slv-schedule-app__service i svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.65;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.slv-schedule-app__service > span {
    min-width: 0;
    overflow-wrap: anywhere;
    font-size: 9.4px;
    font-weight: 650;
    line-height: 1.35;
}

.slv-schedule-app__service b {
    right: 10px;
    width: 13px;
    height: 13px;
}

.slv-schedule-app__selected-service {
    display: grid;
    min-width: 0;
    margin-top: 14px;
    padding: 13px;
    grid-template-columns: 42px minmax(0, 1fr);
    align-items: center;
    gap: 11px;
    border: 1px solid rgba(111, 45, 136, .12);
    border-radius: 16px;
    background: linear-gradient(135deg, #f8f3fb, #fff7fa);
}

.slv-schedule-app__selected-service > i {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: linear-gradient(135deg, var(--slv-app-purple), var(--slv-app-pink));
}

.slv-schedule-app__selected-service span,
.slv-schedule-app__selected-service small,
.slv-schedule-app__selected-service strong,
.slv-schedule-app__selected-service em {
    display: block;
    min-width: 0;
}

.slv-schedule-app__selected-service small {
    color: var(--slv-app-pink);
    font-size: 8.5px;
    font-weight: 750;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.slv-schedule-app__selected-service strong {
    margin-top: 3px;
    font-size: 11.5px;
    line-height: 1.35;
}

.slv-schedule-app__selected-service em {
    margin-top: 3px;
    color: var(--slv-app-ink-soft);
    font-size: 9.4px;
    font-style: normal;
    line-height: 1.4;
}

/* Doctors */
.slv-schedule-app__doctor-list {
    display: grid;
    gap: 11px;
}

.slv-schedule-app__doctor {
    position: relative;
    display: grid;
    min-width: 0;
    min-height: 96px;
    padding: 11px 42px 11px 11px;
    grid-template-columns: 72px minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    border: 1px solid #e5dee8;
    border-radius: 18px;
    color: var(--slv-app-ink);
    background: #fff;
    text-align: left;
    cursor: pointer;
    transition: border-color .22s ease, background .22s ease, transform .22s ease, box-shadow .22s ease;
}

.slv-schedule-app__doctor:hover,
.slv-schedule-app__doctor.is-active {
    border-color: rgba(220, 64, 127, .42);
    background: #fff8fb;
    box-shadow: 0 12px 28px rgba(220, 64, 127, .08);
    transform: translateY(-2px);
}

.slv-schedule-app__doctor img,
.slv-schedule-app__doctor-summary img {
    display: block;
    width: 72px;
    height: 72px;
    border-radius: 17px;
    object-fit: cover;
    object-position: center 28%;
    box-shadow: 0 8px 20px rgba(54, 30, 62, .11);
}

.slv-schedule-app__doctor span {
    min-width: 0;
}

.slv-schedule-app__doctor strong,
.slv-schedule-app__doctor small,
.slv-schedule-app__doctor em {
    display: block;
}

.slv-schedule-app__doctor strong {
    font-size: 12px;
    font-weight: 750;
    line-height: 1.3;
}

.slv-schedule-app__doctor small {
    margin-top: 5px;
    color: var(--slv-app-ink-soft);
    font-size: 9.4px;
    line-height: 1.35;
}

.slv-schedule-app__doctor em {
    margin-top: 6px;
    color: var(--slv-app-purple);
    font-size: 9px;
    font-style: normal;
    font-weight: 750;
}

.slv-schedule-app__profile-link {
    display: inline-flex;
    margin-top: 14px;
    align-items: center;
    gap: 9px;
    color: var(--slv-app-pink);
    font-size: 10.5px;
    font-weight: 700;
    text-decoration: none;
}

.slv-schedule-app__profile-link span {
    transition: transform .22s ease;
}

.slv-schedule-app__profile-link:hover span {
    transform: translateX(4px);
}

.slv-schedule-app__doctor-note {
    display: grid;
    margin-top: 15px;
    padding: 12px;
    grid-template-columns: 32px minmax(0, 1fr);
    align-items: center;
    gap: 10px;
    border-radius: 14px;
    color: #72415e;
    background: #fff3f8;
}

.slv-schedule-app__doctor-note > svg {
    width: 24px;
    height: 24px;
}

.slv-schedule-app__doctor-note strong,
.slv-schedule-app__doctor-note small {
    display: block;
}

.slv-schedule-app__doctor-note strong {
    font-size: 10px;
}

.slv-schedule-app__doctor-note small {
    margin-top: 2px;
    font-size: 8.7px;
    line-height: 1.35;
}

/* Calendar */
.slv-schedule-card__heading--calendar {
    grid-template-columns: 42px minmax(0, 1fr) auto;
    align-items: center;
}

.slv-schedule-app__legend {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--slv-app-ink-soft);
    font-size: 8.5px;
    white-space: nowrap;
}

.slv-schedule-app__legend span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.slv-schedule-app__legend i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
}

.slv-schedule-app__legend .is-available {
    background: var(--slv-app-green);
}

.slv-schedule-app__legend .is-full {
    background: var(--slv-app-pink);
}

.slv-schedule-app__calendar-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(220px, 250px);
    min-width: 0;
    gap: 20px;
    align-items: stretch;
}

.slv-schedule-app__calendar,
.slv-schedule-app__times {
    min-width: 0;
    border: 1px solid #e9e2eb;
    border-radius: 19px;
    background: #fcfbfd;
}

.slv-schedule-app__calendar {
    padding: 16px;
}

.slv-schedule-app__calendar-head {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr) 34px;
    align-items: center;
    gap: 10px;
}

.slv-schedule-app__calendar-head button {
    display: grid;
    width: 34px;
    height: 34px;
    padding: 0;
    place-items: center;
    border: 0;
    border-radius: 11px;
    color: var(--slv-app-purple);
    background: var(--slv-app-lilac);
    font-size: 18px;
}

.slv-schedule-app__calendar-head strong {
    text-align: center;
    font-size: 13px;
}

.slv-schedule-app__weekday-row,
.slv-schedule-app__day-grid {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
}

.slv-schedule-app__weekday-row {
    margin-top: 14px;
    color: #9d929f;
    font-size: 8px;
    font-weight: 750;
    text-align: center;
}

.slv-schedule-app__day-grid {
    margin-top: 7px;
    gap: 4px;
}

.slv-schedule-app__day {
    position: relative;
    display: grid;
    min-width: 0;
    min-height: 48px;
    padding: 3px;
    place-items: center;
    border: 0;
    border-radius: 14px;
    color: var(--slv-app-ink);
    background: transparent;
    cursor: pointer;
    transition: color .2s ease, background .2s ease, transform .2s ease, box-shadow .2s ease;
}

.slv-schedule-app__day > span {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 17px;
}

.slv-schedule-app__day > i {
    position: absolute;
    bottom: 6px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--slv-app-green);
}

.slv-schedule-app__day:hover:not(:disabled),
.slv-schedule-app__day.is-selected,
.slv-schedule-app__day.is-selected:hover,
.slv-schedule-app__day.is-selected:focus {
    color: #fff;
    background: linear-gradient(135deg, var(--slv-app-purple), #8f3fa3);
    box-shadow: 0 9px 18px rgba(111, 45, 136, .20);
    transform: translateY(-1px);
}

.slv-schedule-app__day.is-selected > i {
    background: #fff;
}

.slv-schedule-app__day.is-muted {
    color: #c8c0ca;
    cursor: default;
}

.slv-schedule-app__day.is-full {
    color: #9c8491;
    background: #f5eef2;
}

.slv-schedule-app__day.is-full:hover {
    color: #8a6579;
    background: #f2e5ec;
    box-shadow: none;
}

.slv-schedule-app__day em {
    position: absolute;
    right: 3px;
    bottom: 2px;
    left: 3px;
    overflow: hidden;
    color: var(--slv-app-pink);
    font-size: 5.8px;
    font-style: normal;
    font-weight: 800;
    text-align: center;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.slv-schedule-app__times {
    display: flex;
    padding: 15px;
    flex-direction: column;
}

.slv-schedule-app__times-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.slv-schedule-app__times-head span {
    font-size: 10px;
    font-weight: 750;
}

.slv-schedule-app__times-head small {
    color: var(--slv-app-ink-soft);
    font-size: 7.8px;
}

.slv-schedule-app__time-grid {
    display: grid;
    margin-top: 12px;
    gap: 8px;
}

.slv-schedule-app__time-grid button {
    min-height: 38px;
    padding: 0 10px;
    border: 1px solid #e2dbe5;
    border-radius: 11px;
    color: var(--slv-app-ink);
    background: #fff;
    font-size: 9px;
    font-weight: 650;
    cursor: pointer;
    transition: color .2s ease, border-color .2s ease, background .2s ease, transform .2s ease;
}

.slv-schedule-app__time-grid button:hover,
.slv-schedule-app__time-grid button.is-active {
    color: #fff;
    border-color: var(--slv-app-purple);
    background: var(--slv-app-purple);
    transform: translateY(-1px);
}

.slv-schedule-app__time-grid button.is-extra {
    display: none;
}

.slv-schedule-app__time-grid.is-expanded button.is-extra {
    display: block;
}

.slv-schedule-app__more-times {
    margin-top: 10px;
    padding: 7px 0 0;
    border: 0;
    color: var(--slv-app-pink);
    background: transparent;
    font-size: 9px;
    font-weight: 700;
    cursor: pointer;
}

.slv-schedule-app__more-times span {
    display: inline-block;
    transition: transform .2s ease;
}

.slv-schedule-app__more-times.is-open span {
    transform: rotate(180deg);
}

.slv-schedule-app__full-message {
    margin-top: 12px;
    padding: 18px 13px;
    border: 1px solid rgba(220, 64, 127, .20);
    border-radius: 15px;
    color: #7a3b5c;
    background: #fff2f7;
    text-align: center;
}

.slv-schedule-app__full-message i {
    display: grid;
    width: 40px;
    height: 40px;
    margin: 0 auto 9px;
    place-items: center;
    border-radius: 50%;
    color: var(--slv-app-pink);
    background: #fff;
}

.slv-schedule-app__full-message strong,
.slv-schedule-app__full-message p {
    display: block;
}

.slv-schedule-app__full-message strong {
    font-size: 11px;
}

.slv-schedule-app__full-message p {
    margin: 6px 0 10px;
    font-size: 8.8px;
    line-height: 1.45;
}

.slv-schedule-app__full-message button {
    padding: 0;
    border: 0;
    color: var(--slv-app-pink);
    background: transparent;
    font-size: 8.8px;
    font-weight: 750;
    cursor: pointer;
}

/* Summary */
.slv-schedule-app__summary {
    position: sticky;
    top: 18px;
    padding: 22px;
    box-shadow: var(--slv-app-shadow);
}

.slv-schedule-app__summary::before {
    content: "";
    position: absolute;
    top: -90px;
    right: -70px;
    width: 210px;
    height: 210px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(220,64,127,.13), transparent 68%);
    pointer-events: none;
}

.slv-schedule-app__summary-title {
    position: relative;
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr) auto;
    align-items: start;
    gap: 11px;
}

.slv-schedule-app__summary-title b {
    align-self: start;
    padding: 6px 8px;
    border-radius: 999px;
    color: #9a4171;
    background: #fdebf3;
    font-size: 7px;
    letter-spacing: .08em;
}

.slv-schedule-app__doctor-summary {
    position: relative;
    display: grid;
    min-width: 0;
    margin-top: 18px;
    padding: 12px;
    grid-template-columns: 62px minmax(0, 1fr);
    align-items: center;
    gap: 11px;
    border: 1px solid #e8e1ea;
    border-radius: 17px;
    background: #fcfafc;
}

.slv-schedule-app__doctor-summary img {
    width: 62px;
    height: 62px;
    border-radius: 15px;
}

.slv-schedule-app__doctor-summary span,
.slv-schedule-app__doctor-summary small,
.slv-schedule-app__doctor-summary strong {
    display: block;
    min-width: 0;
}

.slv-schedule-app__doctor-summary small {
    color: var(--slv-app-ink-soft);
    font-size: 8px;
}

.slv-schedule-app__doctor-summary strong {
    margin-top: 4px;
    overflow-wrap: anywhere;
    font-size: 11px;
    line-height: 1.35;
}

.slv-schedule-app__summary-list {
    margin: 17px 0 0;
}

.slv-schedule-app__summary-list > div {
    display: grid;
    min-width: 0;
    padding: 13px 0;
    grid-template-columns: minmax(100px, .8fr) minmax(0, 1.2fr);
    align-items: start;
    gap: 12px;
    border-bottom: 1px solid #ece6ee;
}

.slv-schedule-app__summary-list dt,
.slv-schedule-app__summary-list dd {
    min-width: 0;
    margin: 0;
}

.slv-schedule-app__summary-list dt {
    display: flex;
    align-items: center;
    gap: 7px;
    color: var(--slv-app-ink-soft);
    font-size: 8.5px;
}

.slv-schedule-app__summary-list dt i {
    display: grid;
    width: 26px;
    height: 26px;
    flex: 0 0 26px;
    place-items: center;
    border-radius: 9px;
    color: var(--slv-app-purple);
    background: var(--slv-app-lilac);
}

.slv-schedule-app__summary-list dt i svg {
    width: 15px;
    height: 15px;
}

.slv-schedule-app__summary-list dd {
    overflow-wrap: anywhere;
    font-size: 9.4px;
    font-weight: 650;
    line-height: 1.45;
    text-align: right;
}

.slv-schedule-app__summary-list dd span,
.slv-schedule-app__summary-list dd em {
    display: block;
}

.slv-schedule-app__summary-list dd em {
    margin-top: 3px;
    color: var(--slv-app-pink);
    font-style: normal;
}

.slv-schedule-app__secure {
    display: grid;
    margin-top: 17px;
    padding: 13px;
    grid-template-columns: 31px minmax(0, 1fr);
    align-items: center;
    gap: 10px;
    border-radius: 15px;
    color: #71405a;
    background: #fff2f7;
}

.slv-schedule-app__secure i {
    display: grid;
    width: 31px;
    height: 31px;
    place-items: center;
    border-radius: 10px;
    color: var(--slv-app-purple);
    background: #fff;
}

.slv-schedule-app__secure strong,
.slv-schedule-app__secure small {
    display: block;
}

.slv-schedule-app__secure strong {
    font-size: 9px;
}

.slv-schedule-app__secure small {
    margin-top: 3px;
    font-size: 7.7px;
    line-height: 1.4;
}

.slv-schedule-app__disabled-button,
.slv-schedule-app__whatsapp-button {
    width: 100%;
    min-height: 49px;
    margin-top: 14px;
    border-radius: 14px;
}

.slv-schedule-app__disabled-button {
    border: 0;
    color: #fff;
    background: #b9b0bc;
    font-size: 11px;
    font-weight: 700;
    cursor: not-allowed;
}

.slv-schedule-app__whatsapp-button {
    display: grid;
    padding: 0 15px;
    grid-template-columns: 20px minmax(0, 1fr) 20px;
    align-items: center;
    gap: 9px;
    border: 1px solid rgba(21, 148, 94, .28);
    color: #0b7748;
    background: var(--slv-app-green-soft);
    font-size: 10.5px;
    font-weight: 700;
    text-decoration: none;
    transition: color .22s ease, background .22s ease, transform .22s ease, box-shadow .22s ease;
}

.slv-schedule-app__whatsapp-button:hover {
    color: #fff;
    background: var(--slv-app-green);
    box-shadow: 0 13px 27px rgba(21,148,94,.20);
    transform: translateY(-2px);
}

.slv-schedule-app__whatsapp-button strong {
    font-size: 18px;
    font-weight: 400;
}

.slv-schedule-app__server-note {
    display: flex;
    margin: 10px 0 0;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: #8c838f;
    font-size: 7.6px;
    line-height: 1.35;
    text-align: center;
}

.slv-schedule-app__server-note svg {
    width: 13px;
    height: 13px;
    flex: 0 0 13px;
}

.slv-schedule-app__mobile-bar {
    display: none;
}

/* Tablet */
@media (max-width: 1230px) {
    .slv-schedule-app {
        padding: 14px;
    }

    .slv-schedule-app__workspace {
        grid-template-columns: 1fr;
    }

    .slv-schedule-app__summary {
        position: static;
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(280px, .7fr);
        gap: 18px 24px;
    }

    .slv-schedule-app__summary-title,
    .slv-schedule-app__doctor-summary,
    .slv-schedule-app__summary-list {
        grid-column: 1;
    }

    .slv-schedule-app__secure,
    .slv-schedule-app__disabled-button,
    .slv-schedule-app__whatsapp-button,
    .slv-schedule-app__server-note {
        grid-column: 2;
    }

    .slv-schedule-app__secure {
        margin-top: 0;
        align-self: end;
    }

    .slv-schedule-app__disabled-button,
    .slv-schedule-app__whatsapp-button {
        margin-top: 0;
    }
}

@media (max-width: 980px) {
    .slv-schedule-app__topbar {
        padding: 24px;
    }

    .slv-schedule-app__steps {
        padding-right: 24px;
        padding-left: 24px;
    }

    .slv-schedule-app__workspace {
        padding: 18px;
    }

    .slv-schedule-app__choice-grid {
        grid-template-columns: 1fr;
    }

    .slv-schedule-app__service-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .slv-schedule-app__doctor-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .slv-schedule-app__calendar-layout {
        grid-template-columns: minmax(0, 1fr) 220px;
    }
}

/* Mobile */
@media (max-width: 720px) {
    .slv-schedule-app {
        padding: 5px 5px 86px;
        overflow: visible;
    }

    .slv-schedule-app__frame {
        border-radius: 20px;
    }

    .slv-schedule-app__topbar {
        padding: 21px 17px 18px;
        display: block;
    }

    .slv-schedule-app__intro h1 {
        font-size: 36px;
    }

    .slv-schedule-app__intro p {
        max-width: 290px;
        font-size: 11.5px;
    }

    .slv-schedule-app__top-actions {
        margin-top: 17px;
        justify-content: space-between;
    }

    .slv-schedule-app__status,
    .slv-schedule-app__top-whatsapp {
        min-height: 38px;
        padding: 0 12px;
        font-size: 9.5px;
    }

    .slv-schedule-app__top-whatsapp span {
        display: none;
    }

    .slv-schedule-app__top-whatsapp {
        width: 38px;
        padding: 0;
        justify-content: center;
    }

    .slv-schedule-app__steps {
        display: flex;
        padding: 14px 13px;
        gap: 8px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }

    .slv-schedule-app__steps::-webkit-scrollbar {
        display: none;
    }

    .slv-schedule-app__step {
        min-width: 126px;
        flex: 0 0 126px;
        scroll-snap-align: start;
    }

    .slv-schedule-app__step:not(:last-child)::after {
        display: none;
    }

    .slv-schedule-app__step strong {
        font-size: 9.5px;
    }

    .slv-schedule-app__workspace {
        padding: 10px;
        gap: 12px;
    }

    .slv-schedule-app__main,
    .slv-schedule-app__choice-grid {
        gap: 12px;
    }

    .slv-schedule-card,
    .slv-schedule-app__summary {
        padding: 16px;
        border-radius: 18px;
    }

    .slv-schedule-card__heading,
    .slv-schedule-card__heading--calendar {
        grid-template-columns: 38px minmax(0, 1fr);
        gap: 10px;
        margin-bottom: 14px;
    }

    .slv-schedule-card__heading > span,
    .slv-schedule-app__summary-title > span {
        width: 38px;
        height: 38px;
        border-radius: 12px;
    }

    .slv-schedule-card__heading h2,
    .slv-schedule-app__summary-title h2 {
        font-size: 14px;
    }

    .slv-schedule-card__heading--calendar .slv-schedule-app__legend {
        grid-column: 1 / -1;
        margin-top: -2px;
        justify-content: flex-start;
    }

    .slv-schedule-app__mode-grid {
        grid-template-columns: 1fr;
        gap: 9px;
    }

    .slv-schedule-app__mode {
        min-height: 70px;
    }

    .slv-schedule-app__service-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }

    .slv-schedule-app__service {
        min-height: 84px;
    }

    .slv-schedule-app__doctor-list {
        grid-template-columns: 1fr;
    }

    .slv-schedule-app__calendar-layout {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .slv-schedule-app__calendar {
        padding: 12px 8px;
    }

    .slv-schedule-app__day-grid {
        gap: 2px;
    }

    .slv-schedule-app__day {
        min-height: 44px;
        border-radius: 11px;
    }

    .slv-schedule-app__day > span {
        font-size: 15px;
    }

    .slv-schedule-app__day em {
        font-size: 5px;
    }

    .slv-schedule-app__times {
        padding: 13px;
    }

    .slv-schedule-app__time-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .slv-schedule-app__time-grid.is-expanded button.is-extra {
        display: block;
    }

    .slv-schedule-app__summary {
        display: block;
    }

    .slv-schedule-app__summary-title {
        grid-template-columns: 38px minmax(0, 1fr) auto;
    }

    .slv-schedule-app__summary-list > div {
        grid-template-columns: 1fr;
        gap: 7px;
    }

    .slv-schedule-app__summary-list dd {
        padding-left: 33px;
        text-align: left;
    }

    .slv-schedule-app__secure {
        margin-top: 15px;
    }

    .slv-schedule-app__mobile-bar {
        position: fixed;
        right: 8px;
        bottom: 8px;
        left: 8px;
        z-index: 9996;
        display: flex;
        min-height: 64px;
        padding: 10px 11px 10px 15px;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        border: 1px solid rgba(255,255,255,.18);
        border-radius: 19px;
        color: #fff;
        background: rgba(43, 19, 53, .94);
        box-shadow: 0 20px 45px rgba(29, 11, 37, .34);
        backdrop-filter: blur(18px);
    }

    .slv-schedule-app__mobile-bar small,
    .slv-schedule-app__mobile-bar strong {
        display: block;
    }

    .slv-schedule-app__mobile-bar small {
        color: #efa0c0;
        font-size: 8px;
        font-weight: 750;
        letter-spacing: .08em;
        text-transform: uppercase;
    }

    .slv-schedule-app__mobile-bar strong {
        margin-top: 3px;
        font-size: 11px;
    }

    .slv-schedule-app__mobile-bar a {
        display: grid;
        width: 43px;
        height: 43px;
        flex: 0 0 43px;
        place-items: center;
        border-radius: 14px;
        color: #fff;
        background: var(--slv-app-green);
    }

    .slv-schedule-app__mobile-bar .slv-brand-svg {
        width: 21px;
        height: 21px;
    }
}

@media (max-width: 390px) {
    .slv-schedule-app__service-grid {
        grid-template-columns: 1fr;
    }

    .slv-schedule-app__service {
        min-height: 70px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .slv-schedule-app *,
    .slv-schedule-app *::before,
    .slv-schedule-app *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
    }
}
