/* Toastify CSS - Versão local para substituir CDN externo */
.toastify {
    padding: 12px 20px;
    color: #ffffff;
    display: inline-block;
    box-shadow: 0 3px 6px -1px rgba(0, 0, 0, 0.12), 0 10px 36px -4px rgba(77, 82, 153, 0.25);
    cursor: pointer;
    text-decoration: none;
    max-width: calc(50vw - 10px);
    z-index: 2147483647;
    position: fixed;
    border-radius: 4px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 14px;
    line-height: 1.4;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.35);
    transform: translate3d(0, 0, 0);
    will-change: transform, opacity;
}

.toastify.on {
    opacity: 1;
}

.toastify.toastify-top {
    top: -150px;
}

.toastify.toastify-bottom {
    bottom: -150px;
}

.toastify.toastify-left {
    left: 20px;
}

.toastify.toastify-center {
    left: 50%;
    transform: translateX(-50%);
}

.toastify.toastify-right {
    right: 20px;
}

.toastify.toastify-rounded {
    border-radius: 25px;
}

.toastify.toastify-avatar {
    width: 1.2em;
    height: 1.2em;
    margin: 0 0.5rem 0 0;
    border-radius: 2px;
    display: inline-block;
    vertical-align: top;
}

.toastify.toastify-center.on {
    transform: translateX(-50%) translateY(0);
}

.toastify.toastify-left.on {
    transform: translateX(0);
}

.toastify.toastify-right.on {
    transform: translateX(0);
}

.toastify.toastify-top.on {
    transform: translateY(0);
}

.toastify.toastify-bottom.on {
    transform: translateY(0);
}

.toastify.toastify-closable {
    padding-right: 40px;
}

.toastify-close {
    opacity: 0.4;
    padding: 0 5px;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background: none;
    border: none;
    color: inherit;
    font-size: 16px;
    font-family: inherit;
    line-height: 1;
}

.toastify-close:hover {
    opacity: 1;
}

.toastify.toastify-info {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.toastify.toastify-success {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.toastify.toastify-warning {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.toastify.toastify-error {
    background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);
}

@media only screen and (max-width: 360px) {
    .toastify {
        margin-left: 0;
        margin-right: 0;
        border-radius: 0;
    }
} 