/* Toast Global Rules */
#global-toast {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px 25px;
    border-radius: 8px;
    color: white;
    font-weight: bold;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    pointer-events: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

#global-toast.show {
    opacity: 1;
    visibility: visible;
}

#global-toast.success {
    background-color: rgba(46, 204, 113, 0.9); /* Verde traslúcido */
}

#global-toast.error {
    background-color: rgba(231, 76, 60, 0.9); /* Rojo traslúcido */
}

/* Animated Ripples Modificados para el Hero (Bordes Azules) */
.ripple-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}
.ripple-background .circle {
    position: absolute;
    border-radius: 50%;
    background: #032448;
    box-shadow: 0 0 1px 0 #032448;
    animation: ripple 15s infinite ease-in-out;
}
.ripple-background .small {
    width: 300px;
    height: 300px;
    left: -150px;
    top: 50%;
    margin-top: -150px;
}
.ripple-background .medium {
    width: 600px;
    height: 600px;
    left: -300px;
    top: 50%;
    margin-top: -300px;
}
.ripple-background .large {
    width: 900px;
    height: 900px;
    left: -450px;
    top: 50%;
    margin-top: -450px;
}
.ripple-background .xlarge {
    width: 1200px;
    height: 1200px;
    left: -600px;
    top: 50%;
    margin-top: -600px;
}
.ripple-background .xxlarge {
    width: 1500px;
    height: 1500px;
    left: -750px;
    top: 50%;
    margin-top: -750px;
}
.ripple-background .shade1 { opacity: 0.05; }
.ripple-background .shade2 { opacity: 0.15; }
.ripple-background .shade3 { opacity: 0.3; }
.ripple-background .shade4 { opacity: 0.5; }
.ripple-background .shade5 { opacity: 0.8; }

@keyframes ripple {
    0% { transform: scale(0.8); }
    100% { transform: scale(1.2); }
}
