.shepherd-button {
    background: red;
    border: 0;
    border-radius: 5px; /* Arredondado um pouco mais */
    color: hsla(0, 0%, 100%, .95);
    cursor: pointer;
    margin-right: .5rem;
    padding: .6rem 1.5rem;
    transition: all .3s ease;
    font-weight: 600;
    text-transform: uppercase; /* Letras maiúsculas como na imagem */
    font-size: 0.85rem;
}

    .shepherd-button:not(:disabled):hover {
        background: black;
        color: #fff;
    }

    .shepherd-button.shepherd-button-secondary {
        background: red;
        color: #fff; 
    }

        .shepherd-button.shepherd-button-secondary:not(:disabled):hover {
            background: black;
            color: #fff;
        }

    .shepherd-button:disabled {
        cursor: not-allowed;
        opacity: 0.6;
    }

.shepherd-footer {
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    display: flex;
    justify-content: space-between;
    padding: 0 1.25rem 1.25rem;
}

    .shepherd-footer .shepherd-button:last-child {
        margin-right: 0;
    }

.shepherd-cancel-icon {
    background: transparent;
    border: none;
    color: #9ca3af; /* Cinza claro */
    cursor: pointer;
    font-size: 1.5em;
    font-weight: 400;
    margin: 0;
    padding: 0;
    transition: color .3s ease;
    position: absolute; /* Posiciona no topo direito */
    top: 10px;
    right: 10px;
    z-index: 10;
}

    .shepherd-cancel-icon:hover {
        color: #4b5563;
    }

.shepherd-has-title .shepherd-content .shepherd-cancel-icon {
    color: #9ca3af;
}

    .shepherd-has-title .shepherd-content .shepherd-cancel-icon:hover {
        color: #4b5563;
    }

.shepherd-title {
    display: none;
}

.shepherd-header {
    align-items: center;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    display: flex;
    justify-content: flex-end;
    line-height: 2em;
    padding: 0;
    height: 0; 
}

.shepherd-has-title .shepherd-content .shepherd-header {
    background: transparent;
    padding: 0;
}

.shepherd-text {
    color: #374151;
    font-size: 1rem;
    line-height: 1.5em;
    padding: 1.25rem 1.25rem 0.5rem 1.25rem;
}

    .shepherd-text p {
        margin-top: 0;
    }

        .shepherd-text p:last-child {
            margin-bottom: 0;
        }

.shepherd-content {
    border-radius: 8px;
    outline: none;
    padding: 0;
    position: relative;
}

.shepherd-element {
    background: #fff;
    border: none;
    border-radius: 8px;
    /* MUDANÇA: Sombra mais suave e moderna */
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    margin: 0;
    max-width: 400px;
    opacity: 0;
    outline: none;
    padding: 0;
    transition: opacity .3s, visibility .3s;
    visibility: hidden;
    width: 100%;
    z-index: 9999;
    font-family: sans-serif; /* Garante fonte limpa */
}

.shepherd-enabled.shepherd-element {
    opacity: 1;
    visibility: visible;
}

.shepherd-element[data-popper-reference-hidden]:not(.shepherd-centered) {
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
}

.shepherd-element,
.shepherd-element *,
.shepherd-element :after,
.shepherd-element :before {
    box-sizing: border-box;
}

.shepherd-arrow,
.shepherd-arrow:before {
    height: 16px;
    position: absolute;
    width: 16px;
    z-index: -1;
}

    .shepherd-arrow:before {
        background: linear-gradient(135deg, #fcb9b9 50%, #fff 50%);
        content: "";
        transform: rotate(45deg);
    }

.shepherd-element[data-popper-placement^=top] > .shepherd-arrow {
    bottom: -8px;
}

.shepherd-element[data-popper-placement^=bottom] > .shepherd-arrow {
    top: -8px;
}

.shepherd-element[data-popper-placement^=left] > .shepherd-arrow {
    right: -8px;
}

.shepherd-element[data-popper-placement^=right] > .shepherd-arrow {
    left: -8px;
}

.shepherd-element.shepherd-centered > .shepherd-arrow {
    opacity: 0;
}

.shepherd-element.shepherd-has-title[data-popper-placement^=bottom] > .shepherd-arrow:before {
    background-color: #fff; /* Seta branca para combinar com o fundo */
}

.shepherd-target-click-disabled.shepherd-enabled.shepherd-target,
.shepherd-target-click-disabled.shepherd-enabled.shepherd-target * {
    pointer-events: none;
}

.shepherd-modal-overlay-container {
    height: 0;
    left: 0;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    position: fixed;
    top: 0;
    transition: all .3s ease-out, height 0s .3s, opacity .3s 0s;
    width: 100vw;
    z-index: 9997;
}

    .shepherd-modal-overlay-container.shepherd-modal-is-visible {
        height: 100vh;
        opacity: .5;
        transform: translateZ(0);
        transition: all .3s ease-out, height 0s 0s, opacity .3s 0s;
    }

        .shepherd-modal-overlay-container.shepherd-modal-is-visible path {
            pointer-events: all;
        }


/* --- NOSSAS CLASSES CUSTOMIZADAS (ADICIONE ISSO AO FINAL) --- */

.tour-custom-header {
    margin-bottom: 8px;
}

.tour-custom-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1f2937;
}

.tour-custom-body {
    color: #4b5563;
    font-size: 1rem;
    margin-bottom: 15px;
    font-weight: 300;
}

/* Barra de Progresso Container */
.tour-progress-wrapper {
    margin-top: 10px;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* O trilho cinza da barra */
.tour-progress-track {
    flex-grow: 1;
    height: 4px;
    background-color: #e5e7eb;
    border-radius: 2px;
    overflow: hidden;
}

.tour-progress-fill {
    height: 100%;
    background-color: black; 
    transition: width 0.4s ease;
}

/* O texto "4 / 6" */
.tour-step-count {
    font-size: 0.95rem;
    font-weight: 700;
    color: black;
}
