@media (max-width: 768px) {
    .row-top {
        padding-bottom: 0 !important;
    }
    .row-bottom {
        padding-top: 0 !important;
    }
}
@media (max-width: 992px) {
    .main-title, .container-presentation {
        margin-top: 16px;
    }
}
@media (min-width: 992px) {
    .container-presentation, .main-title {
        display: flex;
        justify-content: center;
    }
    .container-presentation{
        min-height: 42vh;
        align-items: center;
    }
    .main-title {
        min-height: 16vh;
        align-items: end;
    }
    .container-select {
        padding: 16px;
    }
    .main-container {
        max-height: 100vh;
        overflow-y: auto;
    }
}

.presentation-text {
    font-size: larger;
    text-align: justify;
}

.agendar-text {
    margin-top: 20px;
    margin-bottom: 20px;
}

.main-button {
    padding: 16px;
    max-width: 520px;
    width: 100%;
    border-radius: 10px;
    box-shadow: rgba(14, 30, 37, 0.12) 0px 2px 4px 0px,
        rgba(14, 30, 37, 0.32) 0px 2px 16px 0px;
    margin-bottom: 16px;
}

#container-agendamento {
    display: block;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

.main-container {
    min-width: 0;
    overflow-x: hidden;
    background: #eeeae0;
}

.booking-page {
    width: 100%;
    max-width: 1040px;
    box-sizing: border-box;
    min-height: 100vh;
    padding: clamp(42px, 7vh, 82px) clamp(18px, 5vw, 70px) 48px;
}

.booking-intro {
    max-width: 780px;
    margin-bottom: clamp(34px, 6vh, 32px);
}

.booking-eyebrow {
    margin: 0 0 24px;
    color: #68705c;
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .38em;
    text-transform: uppercase;
}

.booking-intro h1,
.booking-intro h2 {
    margin: 0;
    color: #090a08;
    font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
    font-size: clamp(2.8rem, 6vw, 5.7rem);
    font-weight: 400;
    letter-spacing: .01em;
    line-height: .98;
    text-transform: uppercase;
}

.booking-location {
    margin: 14px 0 0;
    color: #68705c;
    font-size: clamp(.82rem, 1.3vw, 1rem);
    font-weight: 600;
    letter-spacing: .2em;
    text-transform: uppercase;
}

.booking-description {
    max-width: 650px;
    margin: 4px 0 0;
    color: #73746d;
    font-size: clamp(1rem, 1.6vw, 1.2rem);
    line-height: 1.6;
}

.booking-panel {
    overflow: hidden;
    border-radius: 8px;
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 14px 40px rgba(42, 39, 30, .07);
}

.booking-confirmation {
    opacity: 1;
    transform: none;
}

.booking-confirmation.is-active {
    animation: booking-view-enter .32s ease forwards;
}

.booking-view-exit {
    animation: booking-view-exit .18s ease forwards;
}

.confirmation-summary {
    margin: 0;
}

.confirmation-summary > div {
    display: grid;
    padding: clamp(20px, 3vw, 28px) clamp(22px, 4vw, 38px);
    grid-template-columns: minmax(130px, .35fr) 1fr;
    gap: 22px;
    border-bottom: 1px solid #e0ddd4;
}

.confirmation-summary dt {
    color: #68705c;
    font-size: .74rem;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.confirmation-summary dd {
    margin: 0;
    color: #171815;
    font-size: 1rem;
    line-height: 1.45;
}

@keyframes booking-view-enter {
    from {
        opacity: 0;
        transform: translateX(28px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes booking-view-exit {
    from {
        opacity: 1;
        transform: translateX(0);
    }
    to {
        opacity: 0;
        transform: translateX(-20px);
    }
}

.booking-section {
    padding: clamp(22px, 4vw, 38px) !important;
    border-bottom: 1px solid #e0ddd4;
}

.booking-section h2,
.booking-section h3 {
    margin: 0 0 20px;
    color: #68705c;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .25em;
    text-transform: uppercase;
}

.booking-section label {
    margin-bottom: 7px;
    color: #353731;
    font-size: .74rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.booking-section .form-control,
.booking-section .form-select {
    min-height: 46px;
    border: 1px solid #d8d5cc;
    border-radius: 2px;
    background-color: white;
}

.customer-auth-copy,
.customer-auth-help,
.customer-auth-feedback {
    margin: 0 0 20px;
    color: #666960;
    font-size: .9rem;
    line-height: 1.55;
}

.customer-auth-help {
    margin: 18px 0 0;
    padding-top: 16px;
    border-top: 1px solid #ece9e0;
    font-size: .8rem;
}

.customer-auth-feedback {
    min-height: 1.4em;
    margin: 14px 0 0;
    font-weight: 600;
}

.customer-auth-feedback.is-error,
.customer-auth-feedback[data-status="error"] {
    color: #9f2d26;
}

.customer-auth-feedback.is-success,
.customer-auth-feedback[data-status="success"] {
    color: #4e6548;
}

#customer-auth-gate {
    width: 100%;
}

.customer-auth-panel {
    padding-top: 4px;
}

.customer-auth-mode {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
    margin: 18px 0 22px;
    padding: 4px;
    border: 1px solid #d8d5cc;
    border-radius: 4px;
    background: #f4f2ec;
}

.customer-auth-mode-button {
    min-height: 42px;
    padding: 8px 12px;
    border: 0;
    border-radius: 2px;
    background: transparent;
    color: #555950;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .04em;
}

.customer-auth-mode-button[data-active="true"] {
    background: #fff;
    color: #090a08;
    box-shadow: 0 1px 5px rgb(39 40 35 / 12%);
}

.customer-auth-mode-button:focus-visible {
    outline: 2px solid #4e6548;
    outline-offset: 2px;
}

.customer-registration-fields {
    margin-top: 18px;
    margin-bottom: 16px;
    padding-top: 18px;
    border-top: 1px solid #ece9e0;
}

.customer-registration-fields[hidden] {
    display: none !important;
}

.customer-code-input {
    max-width: 260px;
    font-size: 1.6rem;
    font-variant-numeric: tabular-nums;
    font-weight: 700;
    letter-spacing: .35em;
    text-align: center;
}

.customer-email-address {
    margin: 0;
    padding: 14px 16px;
    border: 1px solid #d8d5cc;
    border-radius: 3px;
    background: #f7f5ef;
    color: #252720;
    font-size: 1rem;
    overflow-wrap: anywhere;
}

.customer-email-change-address-fields {
    display: grid;
    gap: 10px;
}

.customer-email-change-address-fields[hidden] {
    display: none !important;
}

#email-change-feedback:empty {
    display: none;
}

.customer-email-change-code {
    display: grid;
    gap: 14px;
}

.customer-email-change-code[hidden] {
    display: none !important;
}

.customer-email-change-code .customer-auth-copy {
    margin-bottom: 0;
}

.customer-email-change-actions {
    display: grid;
    justify-items: center;
    gap: 10px;
    margin-top: 6px;
}

.customer-email-change-actions .booking-submit,
.customer-email-change-actions .booking-secondary {
    width: min(100%, 320px);
}

.customer-email-change-actions .booking-submit {
    justify-content: center;
}

.customer-code-actions .customer-auth-link {
    margin-top: 2px;
}

.customer-auth-link {
    padding: 8px 12px;
    border: 0;
    background: transparent;
    color: #555950;
    font-size: .78rem;
    font-weight: 650;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.customer-auth-link:hover,
.customer-auth-link:focus-visible {
    color: #090a08;
}

.customer-session {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.customer-session h3,
.customer-session .customer-auth-copy {
    margin-bottom: 0;
}

.customer-session .customer-auth-copy {
    margin-top: 7px;
}

.booking-submit:disabled,
.booking-secondary:disabled {
    cursor: wait;
    opacity: .55;
}

.booking-date-field {
    position: relative;
}

.booking-date-field .form-control {
    padding-right: 42px;
}

.booking-date-field img {
    position: absolute;
    top: 50%;
    right: 14px;
    width: 16px;
    height: 16px;
    transform: translateY(-50%);
    pointer-events: none;
}

.row-servico {
    padding-bottom: 20px;
}

.service-name-column,
.service-details-column,
.service-checkbox-column {
    display: flex;
    align-items: center;
}

.service-checkbox-column .form-check-input {
    margin-left: auto;
    padding: 14px;
}

.service-meta {
    font-size: 14px;
}

.service-description {
    margin-top: 8px;
}

.service-description-text {
    width: 100%;
    margin: 0;
    white-space: pre-wrap;
}

.service-description-image {
    max-width: 100%;
    padding-top: 8px;
}

.booking-actions {
    margin: 0;
    padding: clamp(22px, 3vw, 30px);
    row-gap: 12px;
}

.booking-submit,
.booking-secondary {
    width: 100%;
    min-height: 58px;
    border-radius: 2px;
    font-size: .82rem;
    font-weight: 600;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.booking-submit {
    display: flex;
    padding: 14px 24px;
    align-items: center;
    justify-content: space-between;
    border-color: #090a08;
    background: #090a08;
    color: white;
}

.booking-submit:hover,
.booking-submit:focus-visible {
    border-color: #090a08;
    background: #090a08;
    color: white;
    opacity: .88;
}

.booking-secondary {
    border: 1px solid #b8b6ae;
    background: transparent;
    color: #353731;
}

.booking-secondary:hover,
.booking-secondary:focus-visible {
    border-color: #353731;
    background: transparent;
    color: #090a08;
}

.schedules-page #meushorarios-view {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    overflow-y: auto;
}

.schedules-empty-state {
    margin: 0;
    padding: clamp(28px, 5vw, 48px);
    color: #666960;
    line-height: 1.6;
    text-align: center;
}

.schedules-page .row-meu-agendamento.schedule-item {
    margin: 0;
    padding: clamp(22px, 3vw, 32px);
    align-items: center;
    border-bottom: 1px solid #e0ddd4;
    border-radius: 0;
    background: white;
}

.schedules-page .schedule-item:last-child {
    border-bottom: 0;
}

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

.schedule-item__heading h3 {
    margin: 0;
    color: #171815;
    font-size: clamp(1.05rem, 2vw, 1.3rem);
    font-weight: 650;
    line-height: 1.25;
}

.schedule-item__status {
    flex: 0 0 auto;
    padding: 6px 9px;
    border-radius: 2px;
    background: #eeeae0;
    color: #68705c;
    font-size: .62rem;
    font-weight: 700;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.schedule-item__status--confirmed {
    background: #e4eadf;
    color: #4e6548;
}

.schedule-item__summary {
    display: grid;
    margin: 0;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px 24px;
}

.schedule-item__summary div {
    min-width: 0;
}

.schedule-item__summary dt {
    margin-bottom: 5px;
    color: #74766e;
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.schedule-item__summary dd {
    margin: 0;
    overflow-wrap: anywhere;
    color: #242520;
    font-size: .92rem;
    line-height: 1.4;
}

.schedule-item__actions {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.schedule-item__button {
    width: 100%;
    min-height: 43px;
    border-radius: 2px;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

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

.schedule-item__button--confirm {
    border-color: #090a08;
    background: #090a08;
    color: white;
}

.schedule-item__button--confirm:hover,
.schedule-item__button--confirm:focus-visible {
    border-color: #090a08;
    background: #090a08;
    color: white;
    opacity: .86;
}

.schedule-item__button--cancel {
    border: 1px solid #b8b6ae;
    background: transparent;
    color: #353731;
}

.schedule-item__button--cancel:hover,
.schedule-item__button--cancel:focus-visible {
    border-color: #353731;
    background: transparent;
    color: #090a08;
}

.cancellation-summary {
    overflow: hidden;
    margin-top: 8px;
    border: 1px solid #e0ddd4;
    border-radius: 4px;
    background: white;
    text-align: left;
}

.cancellation-summary__service {
    display: block;
    padding: 16px 18px;
    background: #eeeae0;
    color: #171815;
    font-size: 1rem;
    line-height: 1.35;
}

.cancellation-summary__detail {
    display: grid;
    padding: 11px 18px;
    grid-template-columns: minmax(90px, .4fr) 1fr;
    gap: 12px;
    border-top: 1px solid #e0ddd4;
    color: #242520;
    font-size: .88rem;
    line-height: 1.4;
}

.cancellation-summary__detail span:first-child {
    color: #68705c;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.schedules-panel.has-results .schedules-actions > div:last-child {
    width: 100%;
}

.schedules-panel.has-results .schedules-actions {
    border-top: 1px solid #e0ddd4;
}

.schedules-panel.has-results .booking-secondary {
    max-width: 320px;
}

@media (max-width: 767.98px) {
    .booking-page {
        min-height: auto;
        padding-top: 38px;
        padding-bottom: 34px;
    }

    .booking-eyebrow {
        margin-bottom: 18px;
        letter-spacing: .25em;
    }

    .booking-intro h1,
    .booking-intro h2 {
        font-size: clamp(2.65rem, 14vw, 4.3rem);
    }

    .confirmation-summary > div {
        grid-template-columns: 1fr;
        gap: 7px;
    }

    .booking-actions {
        padding: 20px;
    }

    .schedule-item__heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }

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

    .schedule-item__summary div:last-child {
        grid-column: 1 / -1;
    }

    .schedule-item__actions {
        margin-top: 22px;
        flex-direction: row;
    }

    .schedule-item__button {
        flex: 1 1 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .booking-confirmation.is-active,
    .booking-view-exit {
        animation-duration: .01ms;
    }
}

.input {
    margin-top: 10px;
    margin-bottom: 10px;
    max-width: 200px;
}

body {
    overflow-x: hidden !important;
}

.brand-hero {
    position: relative;
    display: grid;
    width: 100%;
    place-items: center;
    overflow: hidden;
    isolation: isolate;
    background-color: var(--brand-hero-color, #1a3f47);
}

.brand-hero--desktop {
    height: 60vh;
    min-height: 360px;
}

.brand-hero--mobile {
    height: clamp(220px, 34vh, 320px);
}

.brand-hero__backdrop,
.brand-hero__overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.brand-hero__backdrop {
    z-index: -2;
    object-fit: cover;
    object-position: center;
}

.brand-hero__backdrop--soft {
    inset: -24px;
    width: calc(100% + 48px);
    height: calc(100% + 48px);
    filter: blur(20px) saturate(.75);
    opacity: .7;
}

.brand-hero__overlay {
    z-index: -1;
    background: linear-gradient(180deg, rgba(0, 0, 0, .08), rgba(0, 0, 0, .36));
}

.brand-hero__logo-frame {
    display: grid;
    width: clamp(150px, 55%, 260px);
    max-height: 42%;
    place-items: center;
}

.brand-hero__logo {
    display: block;
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: calc(25.2vh - 28px);
    object-fit: contain;
    border-radius: 16px;
}

.brand-hero--mobile .brand-hero__logo-frame {
    width: clamp(130px, 42vw, 190px);
    max-height: 72%;
}

.brand-hero--mobile .brand-hero__logo {
    max-height: 180px;
}

.brand-hero__placeholder {
    max-width: 80%;
    padding: 16px 22px;
    color: white;
    font-size: clamp(1.35rem, 3vw, 2rem);
    font-weight: 600;
    line-height: 1.2;
    text-align: center;
    text-wrap: balance;
}
  
@keyframes loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

select:invalid { opacity: .7; }

.swal2-title {
    font-size: x-large;
}

.row-meu-agendamento {
    border-radius: 10px;
    margin-bottom: 18px;
    padding: 6px;
}

a {
    text-decoration: none;
}

.footer-icon {
    width: 35px;
    height: 35px;
    margin: 26px 10px 26px 10px;
    float: right;
}

.confirmAgenda {
    padding-bottom: 1px;
}
