/* Custom Animations and Decorations for Agua y Luna */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 1s ease-out forwards;
    opacity: 0;
}

/* Subtle decorative touches */
.wp-block-group, .wp-block-columns, .wp-block-cover {
    transition: all 0.3s ease-in-out;
}

/* Adding a soft glow or shadow to premium elements */
.premium-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(226, 161, 111, 0.1);
    border: 1px solid #FFF0DD;
}

.therapy-item {
    padding: 1.5rem;
    border-bottom: 1px solid #D1D3D4;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
}

.therapy-item:hover {
    background: #FFF0DD;
}

.agendar-button {
    background-color: #E2A16F !important;
    color: #ffffff !important;
    border-radius: 50px !important;
    padding: 10px 25px !important;
    text-decoration: none;
    font-weight: 500;
    transition: transform 0.2s, background-color 0.2s !important;
}

.agendar-button:hover {
    transform: scale(1.05);
    background-color: #86B0BD !important;
}
