﻿.pixPage-section {
    min-height: calc(100vh - 345px);
    margin-top: 100px;
    padding: 50px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    justify-content: center;
}

.pix-QR-section-studio {
    background-color: #F4F4F4;
    padding: 20px;
    width: 900px;
    border-radius: 20px;   
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

    .pix-QR-section-studio div {
        display: flex;
        align-items: center;
        justify-content: center;
    }

.pix-code-section-studio {
    width: 900px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.pix-code-section-studio span{
    border: 2px solid black;
    padding: 10px;
    font-size: 20px;
    border-radius: 10px;
    margin-top: 10px;
}

.myAccount-button-sh {
    background: none;
    border: none;
    color: #E40E18;
    cursor: pointer;
}

    .myAccount-button-sh:hover {
        text-decoration: underline;
    }

.copied-message {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #4BB543;
    color: #fff;
    padding: 12px 20px;
    border-radius: 6px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    font-weight: 500;
    z-index: 9999;
    animation: fade-in-out 3s ease forwards;
}

@keyframes fade-in-out {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    10% {
        opacity: 1;
        transform: translateY(0);
    }

    90% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: translateY(20px);
    }
}



.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.modal-content {
    background-color: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
    text-align: center;
    max-width: 400px;
    width: 90%;
    pointer-events: auto;
}

.modal-content .plan-button-sh {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    border-radius: 8px;
    margin-top: 10px;
}

body.modal-open {
    overflow: hidden;
}




@media (max-width: 768px) {
    .pixPage-section {
        padding: 20px;
        overflow: hidden;
    }

    .pix-QR-section-studio {
        width: 100%;
    }

    .pix-code-section-studio {
        width: 100%;
    }
}