<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.hero-background {
    background-image: url('imagen/columbario/fondo1.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-background2 {
    background-image: url('imagen/columbario/fondo2.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.service-icon {
    font-size: 3em;
    margin-bottom: 20px;
    color: black;
}

.bg-gray-100:hover,
.bg-gray-100:hover .service-icon {
    color: #60a5fa;
    transition: color 0.3s ease;
}

.slider-container {
    position: relative;
    overflow: hidden;
}

.slider-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 10px;
    border: none;
    cursor: pointer;
    z-index: 10;
}

.slider-button-left {
    left: 10px;
}

.slider-button-right {
    right: 10px;
}


.contribution-option {
    transition: all 0.3s ease;
}

.contribution-option:not(.active):hover {
    background-color: #e5e7eb;
}

.contribution-option.active {
    background-color: #3b82f6;
    color: white;
}

#whatsappButton {
    background-color: #25D366;
    color: white;
    padding: 10px 20px;
    border-radius: 24px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    font-size: 1.1rem;
}

#whatsappButton.show {
    opacity: 1;
    transform: translateY(0);
}

#whatsappButton:hover {
    background-color: #128C7E;
}</pre></body></html>