.contact-section-title {
    color: #382E59;
    font-weight: 700;
    margin-bottom: 2rem;
    font-size: 1.75rem;
    position: relative;
    padding-bottom: 1rem;
}
.contact-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #7C6BB0, #9b8ac4);
    border-radius: 2px;
}
.contact-info-card {
    background: white;
    border-radius: 20px;
    padding: 1.75rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 20px rgba(124, 107, 176, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(124, 107, 176, 0.1);
}
.contact-info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(124, 107, 176, 0.15);
}
.contact-info-card h5 {
    color: #382E59;
    font-weight: 600;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
}
.contact-info-card h5 i {
    color: #7C6BB0;
    font-size: 1.3rem;
    flex-shrink: 0;
}
.contact-info-card p {
    color: #5a5a5a;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}
.contact-actions {
    display: grid;
    gap: 14px;
    grid-template-columns: 1fr;
    margin-top: 1rem;
}
@media (min-width: 480px) {
    .contact-actions { grid-template-columns: 1fr 1fr; }
}
.call-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    border-radius: 16px;
    text-decoration: none;
    background: linear-gradient(135deg, #7C6BB0, #9381c7);
    box-shadow: 0 4px 15px rgba(124, 107, 176, 0.25);
    color: white;
    transition: all 0.25s ease;
    border: none;
    position: relative;
    overflow: hidden;
}
.call-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), transparent);
    opacity: 0;
    transition: opacity 0.25s ease;
}
.call-card:hover::before {
    opacity: 1;
}
.call-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(124, 107, 176, 0.35);
    text-decoration: none;
    color: white;
}
.call-card .icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    flex: 0 0 48px;
    font-size: 20px;
    backdrop-filter: blur(10px);
}
.call-card.whatsapp {
    background: linear-gradient(135deg, #25D366, #1ebe5a);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.25);
}
.call-card.whatsapp:hover {
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.35);
}
.call-card .content {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}
.call-card .label {
    font-size: 0.85rem;
    opacity: 0.95;
    font-weight: 500;
}
.call-card .number {
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.3px;
    margin-top: 3px;
}
.schedule-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #5a5a5a;
    margin-bottom: 0.5rem;
}
.schedule-item i {
    color: #7C6BB0;
}
.email-link {
    color: #7C6BB0;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    display: inline-block;
}
.email-link:hover {
    color: #5f4e8f;
    transform: translateX(3px);
}