.quick-links-body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 2.5rem 1rem;
    background:
        radial-gradient(circle at 10% 8%, rgba(53, 76, 150, 0.08), transparent 40%),
        radial-gradient(circle at 90% 14%, rgba(239, 82, 82, 0.08), transparent 36%),
        linear-gradient(180deg, #ffffff 0%, #f4f7fc 100%);
}

.quick-links-wrapper {
    max-width: 460px;
    margin: 0 auto;
    width: 100%;
}

.quick-links-card {
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(53, 76, 150, 0.12);
    border-radius: 28px;
    padding: 2.25rem 1.5rem;
    box-shadow: 0 20px 50px rgba(27, 38, 79, 0.08);
}

.quick-links-header {
    text-align: center;
    margin-bottom: 1.75rem;
}

.quick-links-logo {
    max-width: 220px;
    height: auto;
    margin-bottom: 1.25rem;
}

.quick-links-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(53, 76, 150, 0.08);
    color: var(--secondary-color);
    padding: 0.35rem 0.9rem;
    border-radius: 50px;
    font-size: 0.825rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.quick-links-bio {
    font-size: 0.925rem;
    color: var(--dr-body);
    margin: 0 auto;
    line-height: 1.5;
}

.quick-links-list {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.quick-link-item {
    display: flex;
    align-items: center;
    padding: 0.95rem 1.15rem;
    border-radius: 18px;
    background: #ffffff;
    border: 1px solid rgba(53, 76, 150, 0.12);
    color: var(--dr-ink);
    text-decoration: none;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    box-shadow: 0 4px 12px rgba(27, 38, 79, 0.03);
}

.quick-link-item:hover,
.quick-link-item:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(53, 76, 150, 0.12);
    border-color: var(--secondary-color);
    color: var(--secondary-color);
}

.quick-link-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
    transition: transform 0.25s ease;
}

.quick-link-item:hover .quick-link-icon {
    transform: scale(1.08);
}

.quick-link-icon.whatsapp {
    background: #25D366;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.quick-link-icon.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(220, 39, 67, 0.3);
}

.quick-link-icon.tiktok {
    background: #000000;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.quick-link-icon.website {
    background: var(--secondary-color);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(53, 76, 150, 0.3);
}

.quick-link-icon.phone {
    background: var(--primary-color);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(239, 82, 82, 0.3);
}

.quick-link-icon.email {
    background: #475569;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(71, 85, 105, 0.25);
}

.quick-link-content {
    flex: 1;
    margin-left: 1rem;
    text-align: left;
}

.quick-link-title {
    font-weight: 700;
    font-size: 1.025rem;
    line-height: 1.25;
    margin-bottom: 0.15rem;
    color: var(--dr-ink);
}

.quick-link-subtitle {
    font-size: 0.8rem;
    color: #64748b;
    font-weight: 500;
}

.quick-link-arrow {
    font-size: 0.9rem;
    color: #94a3b8;
    transition: transform 0.25s ease, color 0.25s ease;
}

.quick-link-item:hover .quick-link-arrow {
    transform: translateX(4px);
    color: var(--secondary-color);
}

.quick-link-item.highlight-wa {
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.06) 0%, rgba(255, 255, 255, 1) 100%);
    border-color: rgba(37, 211, 102, 0.35);
}

.quick-links-actions {
    margin-top: 1.5rem;
    display: flex;
    gap: 0.75rem;
}

.quick-action-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem;
    border-radius: 14px;
    font-size: 0.875rem;
    font-weight: 600;
    border: 1px solid rgba(53, 76, 150, 0.15);
    background: #ffffff;
    color: var(--secondary-color);
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
}

.quick-action-btn:hover {
    background: var(--secondary-color);
    color: #ffffff;
    border-color: var(--secondary-color);
}

.quick-links-footer {
    text-align: center;
    margin-top: 2rem;
    font-size: 0.825rem;
    color: #64748b;
}

.quick-links-footer a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
}

.quick-links-footer a:hover {
    text-decoration: underline;
}

.toast-notice {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--dr-ink);
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
    pointer-events: none;
    z-index: 9999;
}

.toast-notice.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}
