@font-face {
        font-family: 'Roboto';
        src: url('/fonts/Roboto-Regular.ttf') format('truetype');
        font-weight: 400;
        font-style: normal;
        font-display: swap;
    }

    @font-face {
        font-family: 'Roboto';
        src: url('/fonts/Roboto-Medium.ttf') format('truetype');
        font-weight: 500;
        font-style: medium;
        font-display: swap;
    }

    @font-face {
        font-family: 'Roboto';
        src: url('/fonts/Roboto-Bold.ttf') format('truetype');
        font-weight: 800;
        font-style: bold;
        font-display: swap;
    }

    @font-face {
        font-family: 'Segoe UI';
        src: url('/fonts/SegoeUI-Variable-Static-Regular.woff2') format('woff2');
        font-weight: 400;
        font-style: normal;
        font-display: swap;
    }

    @font-face {
        font-family: 'Segoe UI';
        src: url('/fonts/SegoeUILight.ttf') format('truetype');
        font-weight: 300;
        font-style: light;
        font-display: swap;
    }

    @font-face {
        font-family: 'Inter';
        src: url('/fonts/Inter-Regular.ttf') format('truetype');
        font-weight: 400;
        font-style: normal;
        font-display: swap;
    }

    @font-face {
        font-family: 'Inter';
        src: url('/fonts/Inter-Bold.ttf') format('truetype');
        font-weight: 800;
        font-style: Bold;
        font-display: swap;
    }

    @font-face {
        font-family: 'DM Sans Medium';
        src: url('/fonts/DMSans-Medium.ttf') format('truetype');
        font-weight: 500;
        font-style: Medium;
        font-display: swap;
    }
.logo-modal {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 80px;
    display: block;
    margin: 0 auto 20px;
}

.close-modal {
    position: absolute;
    right: 15px;
    top: 15px;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    padding: 5px;
}

/* Animações */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes modalSantanderIn {
    from {
        opacity: 0;
        transform: translateX(-100%);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Modal Santander */
.modal-santander {
    animation: modalSantanderIn 0.5s ease-out;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    text-shadow: 1px 1px 3px rgba(255, 255, 255, 0.95);
    position: fixed;
}

.modal-santander .modal-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f1f2f4;
}

.modal-santander .modal-content {
    width: 100%;
    max-width: 480px;
    height: 100%;
    background: #f1f2f4;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 0;
    font-family: 'DM Sans Medium', sans-serif;

}

.modal-santander .close-btn {
    position: absolute;
    right: 16px;
    top: 16px;
    font-size: 36px;
    color: #666;
    cursor: pointer;
}

.modal-santander .modal-header {
    text-align: center;

}

.modal-santander .modal-conta {

    border-bottom: 1px solid #ddd;
    padding: 5px;
    align-items: center;
    justify-content: space-between;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 95%;
    font-size: 1rem;
    color: #151515;
}

.modal-santander .pix-logo {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
}

.modal-santander h2 {
    font-size: 24px;
    color: #151515;
    margin: 0;
    font-weight: bold;
}

.modal-santander p {
    color: #151515;
    margin: 0px 0 0;
    font-size: 1.2rem;
    line-height: 1.5;
}

.modal-santander .button-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 0 16px;
}

.modal-santander .button-wrapper {
    background: #f1f2f4;
    border-radius: 12px;
    padding: 16px;
}

.modal-santander .pix-button {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px;
    background: #f76700;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.2s;
}

.modal-santander .pix-button:hover {
    background: #e65e00;
}

.modal-santander .pix-button ion-icon {
    font-size: 24px;
}

.modal-santander .mensagem {
    position: fixed;
    width: 100%;
    max-width: 480px;
    ;
    background: #fff;
    color: white;
    padding: 16px;
    line-height: 1.5;
    text-align: center;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    display: none;
    z-index: 10;
    transition: bottom 0.5s ease-in-out;


}

.modal-santander .pix-options {
    display: flex;
    justify-content: center;
    gap: 40px;
    width: 100%;
    max-width: 320px;
    margin: 30px 0px;
}

.modal-santander .pix-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    padding: 15px;
    border-radius: 12px;
    transition: background 0.2s;
    width: 110px;
    height: 100px;
    background: #fcf8ff;
}


.modal-santander .pix-option:hover {
    background: #fff1b4;
}


.modal-santander .pix-option span {
    color: #151515;
    font-size: 0.9rem;
    font-weight: 600;
}

.mensagem.show {
    bottom: 0;
}

.mensagem-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    text-align: left;
}

.mensagem-alert {
    margin: 15px 0;
    color: #151515;
    font-size: 1.2rem;
    line-height: 1.4;
    font-weight: 600;
    text-align: center;
}

.mensagem-alert .texto-principal {
    color: #181818;
    font-size: 1.5rem;
    font-weight: 800;
}

.mensagem-alert .destaque {
    color: #151515;
    font-weight: 600;
    font-size: 1.2rem;
}

.mensagem-steps {
    margin: 25px 0;
}

.step {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    text-align: left;

}

.step-number {
    background: #F76700;
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    flex-shrink: 0;
    font-weight: 600;
}

.btn-entendi {
    width: 100%;
    background: #F76700;
    color: white;
    border: none;
    padding: 15px;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    margin-top: 20px;
    font-weight: 600;
}

.btn-entendi:hover {
    background: #e55f00;
}

/*
.tab-btn {
    background: none;
    border: none;
    color: #fcf8ff;
    padding: 10px;
    cursor: pointer;
    opacity: 0.7;
}
*/
.tab-btn.active {
    opacity: 1;
    border-bottom: 2px solid #fff;
}


.tab-content.active {
    display: block;
}

#loginForm,
#registerForm {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.auth-message.error {
    background: rgba(255, 59, 48, 0.1);
    color: #ff3b30;
    border: 1px solid rgba(255, 59, 48, 0.2);
}

.auth-message.success {
    background: rgba(52, 199, 89, 0.1);
    color: #34c759;
    border: 1px solid rgba(52, 199, 89, 0.2);
}

.modal-conta strong {
    font-weight: 400;

}
