/* Main Stylesheet for AMA Turismo */
body {
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.img-logo {
    width: 60px;
    height: auto;
}

/* Newsletter Toast */
.newsletter-toast {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    padding: 1rem 1.5rem;
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 0.875rem;
    color: #fff;
    z-index: 9999;
    transform: translateX(120%);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
    max-width: 360px;
}

.toast-success {
    background: linear-gradient(135deg, #059669, #10b981);
}

.toast-error {
    background: linear-gradient(135deg, #dc2626, #ef4444);
}

.toast-show {
    transform: translateX(0);
    opacity: 1;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.animate-spin {
    animation: spin 1s linear infinite;
}