.service-rotator {
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-rotator-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    border-radius: 50px;
    background: rgba(50, 30, 19, 0.08);
    text-decoration: none;
    transition: all 0.3s ease;
}

.service-rotator-link:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.service-label {
    font-size: 14px;
    color: var(--text-color);
}

.service-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-color);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.service-rotator-link:hover .service-name,
.service-rotator-link:hover .service-label {
    color: #fff;
}

/* animation */
.service-name.fade-out {
    opacity: 0;
    transform: translateY(10px);
}

.service-name.fade-in {
    opacity: 1;
    transform: translateY(0);
}

.btn-contact {
    display: inline-block;
    padding: 12px 28px;
    background: #fff; /* verde principal */
    color: #321e1394;
    text-decoration: none;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-contact:hover {
    background: #688a6ea2; /* café */
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.footer-contact-cta {
    text-align: center;
}

.footer-contact-cta h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #ffffff;
}