.cst-footer-contact {
    padding: 0 24px 54px;
}

.cst-footer-contact-inner {
    max-width: 1280px;
    margin: 0 auto;
    border: 1px solid rgba(212, 175, 55, 0.24);
    border-radius: 24px;
    background:
        linear-gradient(135deg, rgba(255,255,255,0.055), rgba(255,255,255,0.018)),
        rgba(2, 18, 38, 0.26);
    box-shadow: 0 22px 54px rgba(0,0,0,0.18);
    padding: 28px 30px;
    display: grid;
    grid-template-columns: 1.2fr auto;
    gap: 28px;
    align-items: center;
}

.cst-footer-contact-title {
    margin: 0 0 8px;
    color: #ffffff;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.025em;
}

.cst-footer-contact-text {
    margin: 0;
    color: rgba(255,255,255,0.74);
    font-size: 15px;
    line-height: 1.65;
}

.cst-footer-contact-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.cst-footer-whatsapp,
.cst-footer-instagram {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    border-radius: 999px;
    padding: 12px 18px;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.cst-footer-whatsapp {
    color: #062B57;
    background: #D4AF37;
    box-shadow: 0 12px 26px rgba(212,175,55,0.24);
}

.cst-footer-instagram {
    color: #ffffff;
    border: 1px solid rgba(212,175,55,0.34);
    background: rgba(255,255,255,0.045);
}

.cst-footer-whatsapp:hover,
.cst-footer-instagram:hover {
    transform: translateY(-2px);
}

.cst-footer-whatsapp:hover {
    box-shadow: 0 16px 34px rgba(212,175,55,0.32);
}

.cst-footer-instagram:hover {
    background: rgba(212,175,55,0.10);
}

@media (max-width: 767px) {
    .cst-footer-contact {
        padding: 0 20px 44px;
    }

    .cst-footer-contact-inner {
        grid-template-columns: 1fr;
        padding: 26px 22px;
    }

    .cst-footer-contact-actions {
        justify-content: flex-start;
    }

    .cst-footer-whatsapp,
    .cst-footer-instagram {
        width: 100%;
    }
}