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

.video-cta {
    position: fixed;
    right: 0;
    top: 20%;
    width: 280px;
    cursor: pointer;
    z-index: 1060; /* Ensure modal is above the backdrop */
}

.wrapper-modal-cta {
    height: max-content;
    width: max-content;
    position: fixed;
    left: initial;
    top: 22%;
    transform: none;
    right: 300px;
    padding: 16px;
}

.modal-cta {
    max-width: max-content;
    margin: 0;
}

.modal-cta .modal-content {
    background: none;
    border: none;
}

.wrapper-buttons-cta {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.button-cta {
    color: #e5591d;
    background-color: #ffffff;
    border: 2px solid #e5591d;
    border-radius: 8px;
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 700;
    transition: all 0.3s ease;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 4px 8px rgba(255, 255, 255, 0.4);
}

.button-cta:hover {
    transition: all 0.3s ease;
    background-color: #e5591d;
    color: #ffffff;
    border: 2px solid #e5591d;
    cursor: pointer;
}

.modal-backdrop-custom {
    --bs-backdrop-zindex: 1050;
    --bs-backdrop-bg: #000;
    --bs-backdrop-opacity: 0.5;
    position: fixed;
    top: 0;
    left: 0;
    z-index: var(--bs-backdrop-zindex);
    width: 100vw;
    height: 100vh;
    background-color: var(--bs-backdrop-bg);
    opacity: var(--bs-backdrop-opacity);
    display: none;
    transition: opacity 0.3s ease;
}
.modal-backdrop-custom.show {
    display: block;
}
.modal.show {
    z-index: 1060; /* Ensure modal is above the backdrop */
}
