.semana-santa-banner {
    background: #c5f6ff;
    border-left: 6px solid #02aecc;
    padding: 26px 35px;
    display: flex;
    align-items: center;
    gap: 32px;
    font-family: 'Lato', sans-serif;
    color: #02aecc;
    border-radius: 20px;
}

.ss-icon-wrap {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    background: rgba(62, 156, 200, 0.18);
    border: 2px solid #02aecc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ss-cross {
    position: relative;
    width: 28px;
    height: 28px;
}

.ss-cross::before,
.ss-cross::after {
    content: '';
    position: absolute;
    background: #02aecc;
    border-radius: 2px;
}

.ss-cross::before {
    width: 8px;
    height: 28px;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
}

.ss-cross::after {
    width: 28px;
    height: 8px;
    top: 40%;
    left: 0;
    transform: translateY(-50%);
}

.ss-badge {
    display: inline-block;
    background: #02aecc;
    color: #b5f4ff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 2px;
    margin-bottom: 8px;
}

.ss-title {
    font-size: 25px;
    font-weight: 700;
    color: #02aecc;
    margin: 0 0 6px;
}

.ss-body {
    font-size: 18px;
    color: #02aecc;
    margin: 0;
    line-height: 1.6;
}

.ss-phone {
    color: #02aecc;
    font-weight: 700;
    font-size: 16px;
}

.ss-divider {
    width: 1px;
    height: 60px;
    background: rgba(200, 150, 62, 0.35);
    flex-shrink: 0;
}


@media (max-width: 768px) {
    .semana-santa-banner {
        flex-direction: column;
        padding: 24px 20px;
        gap: 16px;
    }

    .ss-divider {
        display: none;
    }

}