html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    font-family: 'Montserrat', sans-serif;  
}

.loader-container {
    text-align: center;
}

.loader-container img {
    width: 180px;
    animation: pulse 1.5s infinite ease-in-out;
}

.loader-text .amor {
    color: #c45a2e; /* naranja */
    font-weight: 600;
}

.loader-text .une {
    color: #164b6f; /* azul */
    font-weight: 600;
}
@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.1);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 0.8;
    }
}