.scc-click-service {
    cursor: pointer;
    position: relative;
    transition: transform .25s ease, background-color .25s ease, box-shadow .25s ease;
    border-radius: 14px;
}

.scc-click-service:hover {
    transform: translateY(-4px);
    background-color: rgba(255,255,255,.45);
}

.scc-click-service::after {
    content: "⌄";
    position: absolute;
    right: 12px;
    top: 12px;
    font-size: 22px;
    color: #0f4c81;
    opacity: .8;
    transition: transform .25s ease;
}

.scc-click-service.scc-open::after {
    transform: rotate(180deg);
}

.scc-service-panel {
    display: none;
    width: 100%;
    grid-column: 1 / -1;
    margin: 14px 0 24px;
    padding: 22px;
    border-radius: 16px;
    background: #ffffff;
    border-left: 5px solid #0f4c81;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.10);
    color: #334155;
    line-height: 1.6;
}

.scc-service-panel.scc-show {
    display: block;
    animation: sccFadeDown .25s ease;
}

.scc-service-panel h3 {
    margin-top: 0;
    color: #10233f;
}

.scc-service-panel ul {
    margin-left: 18px;
}

.scc-service-panel a.scc-whatsapp {
    display: inline-block;
    margin-top: 12px;
    padding: 10px 18px;
    border-radius: 999px;
    background: #0f4c81;
    color: #ffffff !important;
    text-decoration: none;
    font-weight: 700;
}

@keyframes sccFadeDown {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
