html,
body {
    width: 100%;
    overflow-x: hidden;
}

img {
    user-select: none !important;
    pointer-events: none !important;
    -webkit-user-drag: none !important;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.accordion-content.active {
    max-height: 500px;
    transition: max-height 0.3s ease-in;
}

.plan-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 94, 0.2);
}

@media (min-width: 768px) {
    .md\:py-16 {
        padding-top: 8rem !important;
        padding-bottom: 8rem !important;
    }
}

@media (min-width: 768px) {
    .md\:py-14 {
        padding-top: 6rem !important;
        padding-bottom: 6rem !important;
    }
}

.copy-button {
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    padding: 12px 20px;
    font-size: 14px;
    border-radius: 8px;
    background-color: #00005e;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.copy-button img {
    margin-right: 8px;
}

.titleInformative {
    margin-bottom: 0.5rem;
}

.PixScreen_payment__Z7ohR>div article#code div {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    gap: 8px;
}

.PixScreen_howToPay__UVsoK {
    padding: 1rem;
    border: 1px solid #d9d9d9;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.PixScreen_howToPay__UVsoK ul {
    display: grid;
    gap: 12px;
}

.PixScreen_howToPay__UVsoK ul li {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 12px;
    text-align: left;
    font-size: 14px;
}

.PixScreen_payment__Z7ohR>div article#code div span {
    font-size: .9rem;
    font-weight: 500;
    max-width: 35ch;
}

.PixScreen_howToPay__UVsoK ul li p {
    color: #222 !important;
}

.checkout-loading {
    position: fixed;
    z-index: 99999;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.checkout-loading-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.checkout-spinner {
    width: 64px;
    height: 64px;
    border: 8px solid #00005e;
    border-top: 8px solid #fff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.checkout-loading-text {
    margin-top: 16px;
    color: #00005e;
    font-size: 18px;
    font-family: sans-serif;
    position: relative;
}

.checkout-loading-text::after {
    content: '';
    position: absolute;
    right: -20px;
    animation: dot-blink 5s infinite steps(1);
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes dot-blink {
    0% {
        content: '...';

    }

    33% {
        content: '..';
    }

    66% {
        content: '.';
    }

    80% {
        content: '';
    }

    100% {
        content: '';
    }
}

.p-4 {
    padding: 0.5rem !important;
}