/* Image dimensions: 1470x800 pixels */
.hero-bg {
    background-image: linear-gradient(rgba(0, 0, 0, 0.226), rgba(0, 0, 0, 0.226)), url('../img/union-sentimental.webp');
    background-size: 100% 100%; /* La imagen se ajusta completamente dentro del contenedor */
    background-position: center; /* Centra la imagen */
    background-repeat: no-repeat;
    background-color: #000; /* Color de fondo si la imagen no cubre todo */
}

.testimonial-card {
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.spell-card {
    background: linear-gradient(135deg, #f9f9ff 0%, #f0f0ff 100%);
    border-left: 4px solid #8b5cf6;
}

.pulse-animation {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.floating {
    animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 3px 3px 5px #888;
}

/* Clases utilitarias para evitar repetición */
.btn-purple-link {
    @apply text-purple-600 font-semibold hover:text-purple-800 transition;
}

.btn-whatsapp {
    @apply text-green-600 font-semibold hover:text-green-800 transition;
}

.service-card {
    @apply spell-card rounded-lg p-8 shadow-md;
}
