/**
 * Sistema de Toast - Sarah World
 * Visual moderno com tema roxo
 */

#toast-container {
    position: fixed;
    z-index: 999999;
    pointer-events: none;
}

#toast-container * {
    box-sizing: border-box;
}

#toast-container > .toast {
    position: relative;
    pointer-events: auto;
    overflow: hidden;
    margin: 0 0 12px;
    padding: 16px 48px 16px 56px;
    width: 360px;
    border-radius: 12px;
    background-position: 18px center;
    background-repeat: no-repeat;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    opacity: 1;
    color: #ffffff;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 500;
    animation: toastSlideIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

#toast-container > .toast:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px) scale(1.02);
}

#toast-container > .toast.toast-closing {
    animation: toastSlideOut 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Posicionamento */
#toast-container.toast-top-right {
    top: 24px;
    right: 24px;
}

#toast-container.toast-top-left {
    top: 24px;
    left: 24px;
}

#toast-container.toast-bottom-right {
    bottom: 24px;
    right: 24px;
}

#toast-container.toast-bottom-left {
    bottom: 24px;
    left: 24px;
}

#toast-container.toast-top-center {
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
}

#toast-container.toast-bottom-center {
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
}

/* Tipos de Toast */

/* Success - Verde */
#toast-container > .toast-success {
    background-color: #10b981;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
}

/* Info - Roxo (tema do Sarah World) */
#toast-container > .toast-info {
    background-color: #9B7EDE;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'%3E%3C/circle%3E%3Cline x1='12' y1='16' x2='12' y2='12'%3E%3C/line%3E%3Cline x1='12' y1='8' x2='12.01' y2='8'%3E%3C/line%3E%3C/svg%3E");
}

/* Warning - Laranja */
#toast-container > .toast-warning {
    background-color: #f59e0b;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M10.29 3.86L1.82 18a2 2 0 0 0 1.71 3h16.94a2 2 0 0 0 1.71-3L13.71 3.86a2 2 0 0 0-3.42 0z'%3E%3C/path%3E%3Cline x1='12' y1='9' x2='12' y2='13'%3E%3C/line%3E%3Cline x1='12' y1='17' x2='12.01' y2='17'%3E%3C/line%3E%3C/svg%3E");
}

/* Error - Vermelho */
#toast-container > .toast-error {
    background-color: #ef4444;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'%3E%3C/circle%3E%3Cline x1='15' y1='9' x2='9' y2='15'%3E%3C/line%3E%3Cline x1='9' y1='9' x2='15' y2='15'%3E%3C/line%3E%3C/svg%3E");
}

/* Tema Escuro */
.dark-theme #toast-container > .toast,
body.dark-theme #toast-container > .toast {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.dark-theme #toast-container > .toast:hover,
body.dark-theme #toast-container > .toast:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
}

/* Barra de Progresso */
#toast-container > .toast .toast-progress {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 4px;
    background-color: rgba(255, 255, 255, 0.7);
    opacity: 1;
    border-radius: 0 0 0 12px;
}

/* Botao de Fechar */
#toast-container > .toast .toast-close-button {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.8);
    opacity: 1;
    font-weight: 700;
    font-size: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: all 0.2s ease;
    flex-shrink: 0;
    z-index: 10;
}

#toast-container > .toast .toast-close-button:hover {
    background-color: rgba(0, 0, 0, 0.1);
    color: #ffffff;
    transform: translateY(-50%) scale(1.1);
}

/* Titulo e Mensagem */
#toast-container > .toast .toast-title {
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 4px;
    color: #ffffff;
    max-width: 100%;
    word-wrap: break-word;
}

#toast-container > .toast .toast-message {
    color: rgba(255, 255, 255, 0.95);
    word-wrap: break-word;
    line-height: 1.5;
    max-width: 100%;
}

/* Responsive */
@media (max-width: 480px) {
    #toast-container > .toast {
        width: calc(100vw - 32px);
        margin: 0 auto 12px;
    }

    #toast-container.toast-top-right,
    #toast-container.toast-top-left,
    #toast-container.toast-bottom-right,
    #toast-container.toast-bottom-left {
        left: 16px;
        right: 16px;
    }

    #toast-container.toast-top-center,
    #toast-container.toast-bottom-center {
        left: 16px;
        right: 16px;
        transform: none;
    }
}

/* Acessibilidade */
@media (prefers-reduced-motion: reduce) {
    #toast-container > .toast {
        animation: none;
        transition: none;
    }
}
